+
diff --git a/mounts/zoperepo/__root__/index_html/__source-utf8__.html b/mounts/zoperepo/__root__/index_html/__source-utf8__.html
index f8ddc35..78c8508 100644
--- a/mounts/zoperepo/__root__/index_html/__source-utf8__.html
+++ b/mounts/zoperepo/__root__/index_html/__source-utf8__.html
@@ -1,37 +1,70 @@
-
Interfaces
-
-
-
- Home
-
-
-
-
-
- Start Tour
-
-
-
- Tensorflow-JS local live processing
-
-
- Tensorflow-JS local video processing
-
-
- Database
-
-
- p5js playground
-
-
- MediaPipe live scan
-
-
-
- MediaPipe upload scan
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ “Interfaces” is the bridge between dance and computer art. We capture the dynamics and expression of dance and transport them into the world of code generated art.
+ “Interfaces” wants to trigger, push and moderate a dialog between generative artists and choreographers.
+ "Interfaces" is a data and knowledge base loaded with data from choreographies, workflow documentation, sample code, converters, scanners and other open source tools that aim to help creators to run their respective part of collaborations between dance and code art.
+ Be part of “Interfaces” by either providing Your movements as a scan on our servers, or by creating generative art using the json files with the movement data from choreographers in Your code.
+ "Interfaces" is about sharing and remixing. We respect the idea of open source and fair share. So tag the creators of the content You're using and share the profits - fame, coins or just the fun.
+
+
+ Start Playground
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/mounts/zoperepo/__root__/landingpage_js/__meta__ b/mounts/zoperepo/__root__/landingpage_js/__meta__
new file mode 100644
index 0000000..07f7e78
--- /dev/null
+++ b/mounts/zoperepo/__root__/landingpage_js/__meta__
@@ -0,0 +1,8 @@
+[
+ ('owner', (['acl_users'], 'dockerzope')),
+ ('props', [
+ [('id', 'content_type'), ('type', 'string'), ('value', 'text/javascript')],
+ ]),
+ ('title', ''),
+ ('type', 'File'),
+]
diff --git a/mounts/zoperepo/__root__/landingpage_js/__source__.js b/mounts/zoperepo/__root__/landingpage_js/__source__.js
new file mode 100644
index 0000000..891a1b5
--- /dev/null
+++ b/mounts/zoperepo/__root__/landingpage_js/__source__.js
@@ -0,0 +1,108 @@
+const background_color = '#212529';
+const FPS = 30;
+const line_map = {
+ 0 : [1, 4],
+ 1 : [2],
+ 2 : [3],
+ 3 : [7],
+ 4 : [5],
+ 5 : [6],
+ 6 : [8],
+ 9 : [10],
+ 11: [12, 13, 23],
+ 12: [14, 24],
+ 13: [15],
+ 14: [16],
+ 15: [17, 19, 21],
+ 16: [18, 20, 22],
+ 17: [19],
+ 18: [20],
+ 23: [24, 25],
+ 24: [26],
+ 25: [27],
+ 26: [28],
+ 27: [29, 31],
+ 28: [30, 32],
+}
+
+// basic function to find a joint by index from given frame
+// use this as a template to create a function to return joints u desire to use
+function find_by_bpindex(frame, bpindex, joint_type) {
+ for (let joint_index in frame) {
+ let joint = frame[joint_index]
+ if ((joint.index == bpindex) && (joint.type == joint_type)) {
+ return joint
+ }
+ }
+}
+
+function create_sketch(data) {
+ let sketch = function(p) {
+ var index = 0;
+ let canvas;
+
+ p.windowResized = function() {
+ p.resizeCanvas(p.windowWidth, p.windowHeight);
+ }
+
+ p.setup = function() {
+ // Feel free to alter setup method HERE!
+ canvas = p.createCanvas(p.windowWidth, p.windowHeight);
+ canvas.position(0, 0);
+ canvas.style('z-index', '-1')
+ p.background(background_color);
+ p.frameRate(FPS);
+ }
+
+ p.draw = function() {
+ p.clear();
+ p.background(background_color);
+ // fetch current data_chunk aka frame
+ let data_chunk = data[index];
+
+ // early exit data check
+ if (!data_chunk || data_chunk.keypoints) {
+ return
+ }
+
+ // loop to create stickman body from line_map
+ for (let first_bpindex in line_map) {
+ let point_list = line_map[first_bpindex]
+ for (let pindex in point_list) {
+ let second_bpindex = point_list[pindex]
+ let first_point = find_by_bpindex(data_chunk, first_bpindex, "body")
+ let second_point = find_by_bpindex(data_chunk, second_bpindex, "body")
+
+ // make sure we've found useful data, skip if not found
+ if (!first_point || !second_point) {
+ continue
+ }
+
+ // make sure to multiply normalized coordinates to get correct coordinates p.windowWidth, p.windowHeight
+ let x1 = first_point.x * p.windowWidth * 2 - ( p.windowWidth / 2 )
+ let x2 = second_point.x * p.windowWidth * 2 - ( p.windowWidth / 2 )
+ let y1 = first_point.y * p.windowHeight * 2 - ( p.windowHeight / 2 )
+ let y2 = second_point.y * p.windowHeight * 2 - ( p.windowHeight / 2 )
+ p.stroke('white')
+ p.line(x1, y1, x2, y2)
+
+ }
+ }
+
+ if (index >= data.length - 1) {
+ index = 0;
+ } else {
+ index++
+ }
+
+ }
+ }
+ let stage = new p5(sketch, 'body');
+}
+
+$(function() {
+ $.getJSON(
+ 'lib/assets/demo/kpop_short',
+ create_sketch
+ )
+});
diff --git a/mounts/zoperepo/__root__/mediapipe_upload/__meta__ b/mounts/zoperepo/__root__/lib/assets/demo/__meta__
similarity index 100%
rename from mounts/zoperepo/__root__/mediapipe_upload/__meta__
rename to mounts/zoperepo/__root__/lib/assets/demo/__meta__
diff --git a/mounts/zoperepo/__root__/tf_upload_demo/tflw-pose-detection_upload.js/__meta__ b/mounts/zoperepo/__root__/lib/assets/demo/kpop_short/__meta__
similarity index 83%
rename from mounts/zoperepo/__root__/tf_upload_demo/tflw-pose-detection_upload.js/__meta__
rename to mounts/zoperepo/__root__/lib/assets/demo/kpop_short/__meta__
index b9386a5..2163d43 100644
--- a/mounts/zoperepo/__root__/tf_upload_demo/tflw-pose-detection_upload.js/__meta__
+++ b/mounts/zoperepo/__root__/lib/assets/demo/kpop_short/__meta__
@@ -1,6 +1,6 @@
[
('props', [
- [('id', 'content_type'), ('type', 'string'), ('value', 'application/javascript')],
+ [('id', 'content_type'), ('type', 'string'), ('value', 'application/json')],
]),
('title', ''),
('type', 'File'),
diff --git a/mounts/zoperepo/__root__/lib/assets/demo/kpop_short/__source__.json b/mounts/zoperepo/__root__/lib/assets/demo/kpop_short/__source__.json
new file mode 100644
index 0000000..0079905
--- /dev/null
+++ b/mounts/zoperepo/__root__/lib/assets/demo/kpop_short/__source__.json
@@ -0,0 +1 @@
+[[{"x": 0.47686639428138733, "y": 0.7793270349502563, "z": 0.14764170348644257, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2450}, {"x": 0.4788360297679901, "y": 0.38124895095825195, "z": 0.032002199441194534, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2450}, {"x": 0.49125465750694275, "y": 0.3446092903614044, "z": 0.08998425304889679, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2450}, {"x": 0.4768025577068329, "y": 0.37495577335357666, "z": -0.046705566346645355, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2450}, {"x": 0.47537192702293396, "y": 0.37401434779167175, "z": -0.046551547944545746, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2450}, {"x": 0.47862690687179565, "y": 0.3757675886154175, "z": -0.046679895371198654, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2450}, {"x": 0.4922518730163574, "y": 0.8120348453521729, "z": 0.07505448162555695, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2450}, {"x": 0.4707275331020355, "y": 0.7961505055427551, "z": 0.15202689170837402, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2450}, {"x": 0.48610594868659973, "y": 0.5711352825164795, "z": 0.031619757413864136, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2450}, {"x": 0.4574810564517975, "y": 0.3015567362308502, "z": 0.055375535041093826, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2450}, {"x": 0.4834030866622925, "y": 0.6836004257202148, "z": 0.06047184392809868, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2450}, {"x": 0.4599768817424774, "y": 0.2998529374599457, "z": 0.05596217140555382, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2450}, {"x": 0.4871178865432739, "y": 0.43206995725631714, "z": 0.07488858699798584, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2450}, {"x": 0.4596621096134186, "y": 0.30508723855018616, "z": 0.06807482242584229, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2450}, {"x": 0.46707451343536377, "y": 0.3055926263332367, "z": 0.06945131719112396, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2450}, {"x": 0.4745636582374573, "y": 0.3939558267593384, "z": -0.03365279734134674, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2450}, {"x": 0.4673404097557068, "y": 0.3920086920261383, "z": -0.04469836503267288, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2450}, {"x": 0.4720773994922638, "y": 0.3817285895347595, "z": -0.06373477727174759, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2450}, {"x": 0.45652857422828674, "y": 0.7910171151161194, "z": 0.010922925546765327, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2450}, {"x": 0.4601384699344635, "y": 0.37637704610824585, "z": -0.002528908895328641, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2450}, {"x": 0.44956862926483154, "y": 0.5139226317405701, "z": -0.05574852228164673, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2450}, {"x": 0.46582743525505066, "y": 0.37219327688217163, "z": -0.05407306179404259, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2450}, {"x": 0.4687716066837311, "y": 0.37229272723197937, "z": -0.0538928359746933, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2450}, {"x": 0.4633691608905792, "y": 0.372102826833725, "z": -0.05416744947433472, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2450}, {"x": 0.46296796202659607, "y": 0.8297573924064636, "z": -0.07544996589422226, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2450}, {"x": 0.45800310373306274, "y": 0.8048946857452393, "z": 0.014438976533710957, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2450}, {"x": 0.45944565534591675, "y": 0.5684027671813965, "z": -0.03173665702342987, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2450}, {"x": 0.48254480957984924, "y": 0.5154443979263306, "z": -0.1788168102502823, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2450}, {"x": 0.457708477973938, "y": 0.6832581162452698, "z": -0.04118076339364052, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2450}, {"x": 0.481168657541275, "y": 0.5237055420875549, "z": -0.17851242423057556, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2450}, {"x": 0.44507455825805664, "y": 0.44062262773513794, "z": 0.0006724290433339775, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2450}, {"x": 0.4809991419315338, "y": 0.5142573714256287, "z": -0.15129563212394714, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2450}, {"x": 0.4749707281589508, "y": 0.5208641886711121, "z": -0.1486082226037979, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2450}], [{"x": 0.47681060433387756, "y": 0.7794322967529297, "z": 0.1410531997680664, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2451}, {"x": 0.47890549898147583, "y": 0.3817431628704071, "z": 0.010720912367105484, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2451}, {"x": 0.490136057138443, "y": 0.3441073000431061, "z": 0.103289894759655, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2451}, {"x": 0.4768049418926239, "y": 0.375594824552536, "z": -0.06750769168138504, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2451}, {"x": 0.4753310978412628, "y": 0.37473955750465393, "z": -0.06735708564519882, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2451}, {"x": 0.4786122441291809, "y": 0.3763403296470642, "z": -0.06748005002737045, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2451}, {"x": 0.4917618930339813, "y": 0.8115686774253845, "z": 0.0743531733751297, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2451}, {"x": 0.4708690643310547, "y": 0.7961148023605347, "z": 0.14528261125087738, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2451}, {"x": 0.48660850524902344, "y": 0.5711686611175537, "z": 0.031060945242643356, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2451}, {"x": 0.4532311260700226, "y": 0.3157002925872803, "z": 0.1105731874704361, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2451}, {"x": 0.4833163022994995, "y": 0.6839722394943237, "z": 0.05442037433385849, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2451}, {"x": 0.4547259509563446, "y": 0.3125290870666504, "z": 0.11320101469755173, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2451}, {"x": 0.48734888434410095, "y": 0.43209895491600037, "z": 0.06717861443758011, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2451}, {"x": 0.4558664858341217, "y": 0.3176214396953583, "z": 0.11907650530338287, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2451}, {"x": 0.4626680314540863, "y": 0.3058049976825714, "z": 0.12017695605754852, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2451}, {"x": 0.47441715002059937, "y": 0.3940020501613617, "z": -0.05303134396672249, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2451}, {"x": 0.4673377275466919, "y": 0.39234721660614014, "z": -0.062484025955200195, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2451}, {"x": 0.4720339775085449, "y": 0.3822539150714874, "z": -0.08328274637460709, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2451}, {"x": 0.45651352405548096, "y": 0.7914644479751587, "z": 0.010263191536068916, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2451}, {"x": 0.4603208005428314, "y": 0.3767199218273163, "z": -0.018201570957899094, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2451}, {"x": 0.4505440294742584, "y": 0.5144447684288025, "z": -0.05678728595376015, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2451}, {"x": 0.4658588767051697, "y": 0.37304192781448364, "z": -0.07372545450925827, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2451}, {"x": 0.4687700867652893, "y": 0.37320515513420105, "z": -0.07352068275213242, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2451}, {"x": 0.463407963514328, "y": 0.37284713983535767, "z": -0.073843814432621, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2451}, {"x": 0.4628543555736542, "y": 0.8298449516296387, "z": -0.07669590413570404, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2451}, {"x": 0.4578690528869629, "y": 0.8051167130470276, "z": 0.01278434507548809, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2451}, {"x": 0.46018075942993164, "y": 0.5687158703804016, "z": -0.03117995522916317, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2451}, {"x": 0.4859756827354431, "y": 0.5296725034713745, "z": -0.16704139113426208, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2451}, {"x": 0.45834463834762573, "y": 0.6832655668258667, "z": -0.041952382773160934, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2451}, {"x": 0.48469409346580505, "y": 0.5361584424972534, "z": -0.16613776981830597, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2451}, {"x": 0.44625696539878845, "y": 0.44002652168273926, "z": -0.007847349159419537, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2451}, {"x": 0.48411765694618225, "y": 0.5282557606697083, "z": -0.13994352519512177, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2451}, {"x": 0.47845199704170227, "y": 0.5343530178070068, "z": -0.13739913702011108, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2451}], [{"x": 0.47661882638931274, "y": 0.7806316614151001, "z": 0.1288650929927826, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2452}, {"x": 0.4803089499473572, "y": 0.38493260741233826, "z": 0.004674184136092663, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2452}, {"x": 0.4877161979675293, "y": 0.501465380191803, "z": 0.13157185912132263, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2452}, {"x": 0.4795660376548767, "y": 0.3788691461086273, "z": -0.08157800137996674, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2452}, {"x": 0.47788384556770325, "y": 0.37811461091041565, "z": -0.08145125955343246, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2452}, {"x": 0.48092541098594666, "y": 0.37954431772232056, "z": -0.08148138970136642, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2452}, {"x": 0.4925430417060852, "y": 0.8115201592445374, "z": 0.07052972167730331, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2452}, {"x": 0.4697198271751404, "y": 0.7987982034683228, "z": 0.13186079263687134, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2452}, {"x": 0.48727020621299744, "y": 0.5708995461463928, "z": 0.04898962005972862, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2452}, {"x": 0.4826665222644806, "y": 0.5669682621955872, "z": 0.05956514552235603, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2452}, {"x": 0.48349225521087646, "y": 0.6839703321456909, "z": 0.05554620176553726, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2452}, {"x": 0.47898241877555847, "y": 0.570315420627594, "z": 0.07778872549533844, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2452}, {"x": 0.48735493421554565, "y": 0.43728697299957275, "z": 0.08574823290109634, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2452}, {"x": 0.48349061608314514, "y": 0.5606657862663269, "z": 0.07539456337690353, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2452}, {"x": 0.4792880415916443, "y": 0.5558019876480103, "z": 0.08347272127866745, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2452}, {"x": 0.4768608510494232, "y": 0.39586928486824036, "z": -0.06490791589021683, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2452}, {"x": 0.4707770049571991, "y": 0.39399367570877075, "z": -0.08382997661828995, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2452}, {"x": 0.4753122329711914, "y": 0.3848116397857666, "z": -0.09892488270998001, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2452}, {"x": 0.45641034841537476, "y": 0.7919710278511047, "z": -0.07561754435300827, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2452}, {"x": 0.4632851779460907, "y": 0.3797718584537506, "z": -0.057522762566804886, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2452}, {"x": 0.4532128572463989, "y": 0.5091056823730469, "z": -0.10675951093435287, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2452}, {"x": 0.4695471227169037, "y": 0.3763733506202698, "z": -0.09507869929075241, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2452}, {"x": 0.4722467362880707, "y": 0.3767445981502533, "z": -0.09485483169555664, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2452}, {"x": 0.4673042595386505, "y": 0.37599340081214905, "z": -0.09519781172275543, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2452}, {"x": 0.46338504552841187, "y": 0.829410970211029, "z": -0.16425050795078278, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2452}, {"x": 0.45656076073646545, "y": 0.8069124221801758, "z": -0.07655118405818939, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2452}, {"x": 0.46319177746772766, "y": 0.5684565305709839, "z": -0.049093056470155716, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2452}, {"x": 0.49397775530815125, "y": 0.5555948615074158, "z": -0.19305424392223358, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2452}, {"x": 0.4610241651535034, "y": 0.6829742193222046, "z": -0.09555482119321823, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2452}, {"x": 0.49110424518585205, "y": 0.5619908571243286, "z": -0.1954331248998642, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2452}, {"x": 0.45181477069854736, "y": 0.43933701515197754, "z": -0.07068778574466705, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2452}, {"x": 0.4919030964374542, "y": 0.5515820384025574, "z": -0.16671833395957947, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2452}, {"x": 0.4836671054363251, "y": 0.5491762757301331, "z": -0.1668054312467575, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2452}, {"x": 0.5062069296836853, "y": 0.5635905265808105, "z": -0.1719890940003097, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2452}, {"x": 0.49773848056793213, "y": 0.5617231130599976, "z": -0.16881194268353283, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2452}, {"x": 0.5028436183929443, "y": 0.5626369714736938, "z": -0.1705889143049717, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2452}, {"x": 0.5085694193840027, "y": 0.5646288394927979, "z": -0.17294696578755975, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2452}, {"x": 0.5061377286911011, "y": 0.5713109970092773, "z": -0.17185731511563063, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2452}, {"x": 0.4981324076652527, "y": 0.5635182857513428, "z": -0.16870316199492663, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2452}, {"x": 0.5033115148544312, "y": 0.5675122737884521, "z": -0.17048413981683552, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2452}, {"x": 0.5078896880149841, "y": 0.5750535726547241, "z": -0.17274355934932828, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2452}, {"x": 0.49872103333473206, "y": 0.5753533244132996, "z": -0.17164002126082778, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2452}, {"x": 0.4956553280353546, "y": 0.5659855604171753, "z": -0.16921175131574273, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2452}, {"x": 0.4979229271411896, "y": 0.5711398124694824, "z": -0.17098277900367975, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2452}, {"x": 0.4988571107387543, "y": 0.5791508555412292, "z": -0.17195313284173608, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2452}, {"x": 0.5034002661705017, "y": 0.5758258700370789, "z": -0.1722498144954443, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2452}, {"x": 0.4973759949207306, "y": 0.564966082572937, "z": -0.16888791881501675, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2452}, {"x": 0.5017511248588562, "y": 0.570412278175354, "z": -0.17097584530711174, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2452}, {"x": 0.5040770769119263, "y": 0.580653727054596, "z": -0.1729750852100551, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2452}, {"x": 0.48853862285614014, "y": 0.5606288313865662, "z": -0.16906639095395803, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2452}, {"x": 0.4968017041683197, "y": 0.5653693675994873, "z": -0.17091869516298175, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2452}, {"x": 0.4930039644241333, "y": 0.563027024269104, "z": -0.17010314436629415, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2452}, {"x": 0.49961695075035095, "y": 0.5677374601364136, "z": -0.1716239219531417, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2452}, {"x": 0.48561230301856995, "y": 0.5576706528663635, "z": -0.1668053996626604, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2452}], [{"x": 0.47633177042007446, "y": 0.7811314463615417, "z": 0.1244230717420578, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2453}, {"x": 0.48173120617866516, "y": 0.38477781414985657, "z": 0.010312914848327637, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2453}, {"x": 0.4858223795890808, "y": 0.5105713605880737, "z": 0.13094104826450348, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2453}, {"x": 0.4811663329601288, "y": 0.3795384168624878, "z": -0.07488985359668732, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2453}, {"x": 0.47950515151023865, "y": 0.37907952070236206, "z": -0.07475566864013672, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2453}, {"x": 0.48229408264160156, "y": 0.3799504041671753, "z": -0.07481535524129868, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2453}, {"x": 0.4930168390274048, "y": 0.8108996748924255, "z": 0.06425387412309647, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2453}, {"x": 0.4689105451107025, "y": 0.799808144569397, "z": 0.12707220017910004, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2453}, {"x": 0.4878717064857483, "y": 0.5695493817329407, "z": 0.05180726200342178, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2453}, {"x": 0.488925039768219, "y": 0.5748634934425354, "z": 0.039614226669073105, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2453}, {"x": 0.483662486076355, "y": 0.6839314699172974, "z": 0.05650030076503754, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2453}, {"x": 0.48623329401016235, "y": 0.5762959718704224, "z": 0.058110084384679794, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2453}, {"x": 0.48727843165397644, "y": 0.4381938874721527, "z": 0.09771573543548584, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2453}, {"x": 0.4890771210193634, "y": 0.5692915320396423, "z": 0.057677481323480606, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2453}, {"x": 0.4857999086380005, "y": 0.5620667338371277, "z": 0.06645925343036652, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2453}, {"x": 0.4789246916770935, "y": 0.39639461040496826, "z": -0.05978037044405937, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2453}, {"x": 0.47280117869377136, "y": 0.39464133977890015, "z": -0.07632250338792801, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2453}, {"x": 0.47721195220947266, "y": 0.38602328300476074, "z": -0.09216582775115967, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2453}, {"x": 0.45639124512672424, "y": 0.7919250130653381, "z": -0.07932734489440918, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2453}, {"x": 0.4648999571800232, "y": 0.3803408443927765, "z": -0.04747029393911362, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2453}, {"x": 0.45508578419685364, "y": 0.506633460521698, "z": -0.10845896601676941, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2453}, {"x": 0.47139662504196167, "y": 0.37752342224121094, "z": -0.08694375306367874, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2453}, {"x": 0.4740997850894928, "y": 0.37788116931915283, "z": -0.08673224598169327, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2453}, {"x": 0.4691767394542694, "y": 0.3771102726459503, "z": -0.08704797178506851, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2453}, {"x": 0.46411749720573425, "y": 0.8288668394088745, "z": -0.16911904513835907, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2453}, {"x": 0.45585522055625916, "y": 0.8071727752685547, "z": -0.08068649470806122, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2453}, {"x": 0.4650416970252991, "y": 0.5667504668235779, "z": -0.05191120132803917, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2453}, {"x": 0.4926231801509857, "y": 0.5692404508590698, "z": -0.19617412984371185, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2453}, {"x": 0.46247342228889465, "y": 0.681779682636261, "z": -0.09620837867259979, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2453}, {"x": 0.4899640679359436, "y": 0.5727822184562683, "z": -0.1973346769809723, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2453}, {"x": 0.45524540543556213, "y": 0.4361336827278137, "z": -0.06381061673164368, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2453}, {"x": 0.49098604917526245, "y": 0.5636211037635803, "z": -0.1684388816356659, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2453}, {"x": 0.48387593030929565, "y": 0.5553118586540222, "z": -0.16798874735832214, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2453}, {"x": 0.5029110312461853, "y": 0.5797758102416992, "z": 0.06117621576413512, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2453}, {"x": 0.4960380494594574, "y": 0.572191059589386, "z": 0.06430033291690052, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2453}, {"x": 0.4998944103717804, "y": 0.5770819783210754, "z": 0.0623568925075233, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2453}, {"x": 0.5054892897605896, "y": 0.5816659927368164, "z": 0.06038967240601778, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2453}, {"x": 0.4960354268550873, "y": 0.5864561200141907, "z": 0.06018869485706091, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2453}, {"x": 0.4945549964904785, "y": 0.5701387524604797, "z": 0.06310470961034298, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2453}, {"x": 0.49584871530532837, "y": 0.5797508358955383, "z": 0.06102462625131011, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2453}, {"x": 0.4959140717983246, "y": 0.5915704965591431, "z": 0.05970261013135314, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2453}, {"x": 0.4858340620994568, "y": 0.5723484754562378, "z": 0.05992529634386301, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2453}, {"x": 0.4889337122440338, "y": 0.5649169087409973, "z": 0.060717955231666565, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2453}, {"x": 0.48736828565597534, "y": 0.5723377466201782, "z": 0.05928174266591668, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2453}, {"x": 0.4849402606487274, "y": 0.5708363652229309, "z": 0.06069367844611406, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2453}, {"x": 0.4885675013065338, "y": 0.5755643248558044, "z": 0.06027126545086503, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2453}, {"x": 0.4921325147151947, "y": 0.5675407648086548, "z": 0.0619367565959692, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2453}, {"x": 0.4904194176197052, "y": 0.576429009437561, "z": 0.05980873527005315, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2453}, {"x": 0.4874124825000763, "y": 0.5733832120895386, "z": 0.06096774712204933, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2453}, {"x": 0.48808518052101135, "y": 0.566473662853241, "z": 0.06628587612067349, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2453}, {"x": 0.49397310614585876, "y": 0.5781598091125488, "z": 0.06437292066402733, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2453}, {"x": 0.49159127473831177, "y": 0.573360800743103, "z": 0.06546324410010129, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2453}, {"x": 0.49582090973854065, "y": 0.5813414454460144, "z": 0.0633764408994466, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2453}, {"x": 0.48525330424308777, "y": 0.5583951473236084, "z": 0.06645928974737103, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2453}, {"x": 0.5006292462348938, "y": 0.580234944820404, "z": -0.17151883291080594, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2453}, {"x": 0.49547243118286133, "y": 0.5697715878486633, "z": -0.16868334158789366, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2453}, {"x": 0.4988875091075897, "y": 0.5762437582015991, "z": -0.1703461348079145, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2453}, {"x": 0.501655101776123, "y": 0.5836536884307861, "z": -0.17235157871618867, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2453}, {"x": 0.49825069308280945, "y": 0.5827573537826538, "z": -0.17245842702686787, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2453}, {"x": 0.4944363832473755, "y": 0.5690386891365051, "z": -0.17005687369965017, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2453}, {"x": 0.4975862503051758, "y": 0.5775622725486755, "z": -0.17158188577741385, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2453}, {"x": 0.498293936252594, "y": 0.586747407913208, "z": -0.17304201563820243, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2453}, {"x": 0.4902406930923462, "y": 0.5752049088478088, "z": -0.1731589655391872, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2453}, {"x": 0.48939189314842224, "y": 0.5672205686569214, "z": -0.17279966082423925, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2453}, {"x": 0.4900875687599182, "y": 0.5725879669189453, "z": -0.1734275226481259, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2453}, {"x": 0.49029994010925293, "y": 0.5769206285476685, "z": -0.17300121765583754, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2453}, {"x": 0.4950840175151825, "y": 0.5813214182853699, "z": -0.17279866570606828, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2453}, {"x": 0.49236470460891724, "y": 0.568249523639679, "z": -0.17143452423624694, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2453}, {"x": 0.494721382856369, "y": 0.5764800310134888, "z": -0.17266503581777215, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2453}, {"x": 0.4951982796192169, "y": 0.5848424434661865, "z": -0.1729240925051272, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2453}, {"x": 0.48801684379577637, "y": 0.5620570778846741, "z": -0.1674641976132989, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2453}, {"x": 0.49451756477355957, "y": 0.5736830830574036, "z": -0.16868205415084958, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2453}, {"x": 0.4919738173484802, "y": 0.5689562559127808, "z": -0.1678801182715688, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2453}, {"x": 0.4961684048175812, "y": 0.5780957937240601, "z": -0.16960693337023258, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2453}, {"x": 0.4836266338825226, "y": 0.5555996894836426, "z": -0.16798873074489507, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2453}], [{"x": 0.4767715036869049, "y": 0.7811165452003479, "z": 0.12278232723474503, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2454}, {"x": 0.4829564392566681, "y": 0.38486114144325256, "z": 0.018822554498910904, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2454}, {"x": 0.4831034243106842, "y": 0.5084158778190613, "z": 0.14456984400749207, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2454}, {"x": 0.4824524223804474, "y": 0.38043105602264404, "z": -0.0747632309794426, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2454}, {"x": 0.4809647798538208, "y": 0.3800424337387085, "z": -0.07453453540802002, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2454}, {"x": 0.4835883677005768, "y": 0.3807322680950165, "z": -0.07463962584733963, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2454}, {"x": 0.49321475625038147, "y": 0.8106209635734558, "z": 0.06385337561368942, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2454}, {"x": 0.468940794467926, "y": 0.7996020913124084, "z": 0.12549829483032227, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2454}, {"x": 0.4885673522949219, "y": 0.5667507648468018, "z": 0.05547685921192169, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2454}, {"x": 0.49105313420295715, "y": 0.57551509141922, "z": 0.058763038367033005, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2454}, {"x": 0.48389932513237, "y": 0.6827781796455383, "z": 0.05759124457836151, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2454}, {"x": 0.4888633191585541, "y": 0.5776695013046265, "z": 0.07843486219644547, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2454}, {"x": 0.4853399097919464, "y": 0.43747445940971375, "z": 0.10794169455766678, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2454}, {"x": 0.49062997102737427, "y": 0.5692421793937683, "z": 0.07522523403167725, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2454}, {"x": 0.48771563172340393, "y": 0.5570464730262756, "z": 0.08454235643148422, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2454}, {"x": 0.48065832257270813, "y": 0.39713776111602783, "z": -0.05613715201616287, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2454}, {"x": 0.4745241105556488, "y": 0.3955373764038086, "z": -0.07283656299114227, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2454}, {"x": 0.47908148169517517, "y": 0.38729000091552734, "z": -0.08973044902086258, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2454}, {"x": 0.4562934935092926, "y": 0.7918520569801331, "z": -0.07650060951709747, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2454}, {"x": 0.4661160707473755, "y": 0.38064390420913696, "z": -0.046275243163108826, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2454}, {"x": 0.46053388714790344, "y": 0.50503009557724, "z": -0.11280643194913864, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2454}, {"x": 0.47284644842147827, "y": 0.3780975937843323, "z": -0.0832628384232521, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2454}, {"x": 0.47550123929977417, "y": 0.3785477578639984, "z": -0.08305402100086212, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2454}, {"x": 0.470465749502182, "y": 0.3776833117008209, "z": -0.08336233347654343, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2454}, {"x": 0.4644950330257416, "y": 0.8284139633178711, "z": -0.1619998961687088, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2454}, {"x": 0.45491349697113037, "y": 0.8072531223297119, "z": -0.07731916010379791, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2454}, {"x": 0.46814239025115967, "y": 0.5645548105239868, "z": -0.055585265159606934, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2454}, {"x": 0.49192315340042114, "y": 0.5792355537414551, "z": -0.1924484819173813, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2454}, {"x": 0.4641522467136383, "y": 0.680679440498352, "z": -0.09589623659849167, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2454}, {"x": 0.4889630675315857, "y": 0.5800638794898987, "z": -0.19353893399238586, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2454}, {"x": 0.45852479338645935, "y": 0.4324890375137329, "z": -0.06736244261264801, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2454}, {"x": 0.4905191957950592, "y": 0.5739070177078247, "z": -0.16577386856079102, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2454}, {"x": 0.4841756522655487, "y": 0.5611588358879089, "z": -0.16545049846172333, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2454}], [{"x": 0.47700345516204834, "y": 0.7804090976715088, "z": 0.104722760617733, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2455}, {"x": 0.4831869900226593, "y": 0.3848828971385956, "z": 0.03928209841251373, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2455}, {"x": 0.49190911650657654, "y": 0.41949957609176636, "z": 0.2458062320947647, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2455}, {"x": 0.4838329553604126, "y": 0.3816359341144562, "z": -0.042249102145433426, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2455}, {"x": 0.4827340543270111, "y": 0.38149404525756836, "z": -0.04213980212807655, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2455}, {"x": 0.484855979681015, "y": 0.38173115253448486, "z": -0.04218945652246475, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2455}, {"x": 0.4933917820453644, "y": 0.8096528053283691, "z": 0.04983647167682648, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2455}, {"x": 0.4690127670764923, "y": 0.7993733286857605, "z": 0.10662288218736649, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2455}, {"x": 0.48896995186805725, "y": 0.5636910796165466, "z": 0.057572800666093826, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2455}, {"x": 0.4832075834274292, "y": 0.4023222327232361, "z": 0.32336559891700745, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2455}, {"x": 0.484306275844574, "y": 0.6807899475097656, "z": 0.05620722100138664, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2455}, {"x": 0.4830034673213959, "y": 0.41045135259628296, "z": 0.3353285491466522, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2455}, {"x": 0.4834621846675873, "y": 0.4362369179725647, "z": 0.1285146176815033, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2455}, {"x": 0.4864118993282318, "y": 0.4039875566959381, "z": 0.317234605550766, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2455}, {"x": 0.4868229925632477, "y": 0.4092176854610443, "z": 0.319790780544281, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2455}, {"x": 0.4821517765522003, "y": 0.3973144292831421, "z": -0.026773324236273766, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2455}, {"x": 0.47710826992988586, "y": 0.3958664834499359, "z": -0.04757006838917732, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2455}, {"x": 0.48158708214759827, "y": 0.3885003328323364, "z": -0.05878574773669243, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2455}, {"x": 0.4562782645225525, "y": 0.7918586134910583, "z": -0.07375684380531311, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2455}, {"x": 0.46836164593696594, "y": 0.3805995285511017, "z": -0.03371558338403702, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2455}, {"x": 0.46332424879074097, "y": 0.5015988945960999, "z": -0.0799722820520401, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2455}, {"x": 0.4759441912174225, "y": 0.37935158610343933, "z": -0.05651301145553589, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2455}, {"x": 0.47807541489601135, "y": 0.3801232576370239, "z": -0.05628063157200813, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2455}, {"x": 0.47392553091049194, "y": 0.3786465525627136, "z": -0.05664806067943573, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2455}, {"x": 0.4643830955028534, "y": 0.828246533870697, "z": -0.15363158285617828, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2455}, {"x": 0.45462092757225037, "y": 0.8072690963745117, "z": -0.07526618987321854, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2455}, {"x": 0.46983328461647034, "y": 0.5618690848350525, "z": -0.057716693729162216, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2455}, {"x": 0.4898071587085724, "y": 0.5752740502357483, "z": -0.12034290283918381, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2455}, {"x": 0.46610674262046814, "y": 0.6798698306083679, "z": -0.08332263678312302, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2455}, {"x": 0.4865371286869049, "y": 0.5746891498565674, "z": -0.12325909733772278, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2455}, {"x": 0.46116504073143005, "y": 0.42888695001602173, "z": -0.05256113037467003, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2455}, {"x": 0.4887422025203705, "y": 0.5683948397636414, "z": -0.10414662212133408, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2455}, {"x": 0.4838503897190094, "y": 0.5544066429138184, "z": -0.1054847463965416, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2455}, {"x": 0.48932936787605286, "y": 0.5996888875961304, "z": -0.10508315998595208, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2455}, {"x": 0.4894442856311798, "y": 0.583097517490387, "z": -0.10331136547029018, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2455}, {"x": 0.48968106508255005, "y": 0.5942345261573792, "z": -0.10420664260163903, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2455}, {"x": 0.4890672266483307, "y": 0.6030251383781433, "z": -0.10558965234667994, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2455}, {"x": 0.4873974025249481, "y": 0.6004303097724915, "z": -0.10601284768199548, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2455}, {"x": 0.48872092366218567, "y": 0.5838866233825684, "z": -0.10460983461234719, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2455}, {"x": 0.4881777763366699, "y": 0.5951535701751709, "z": -0.10526508443581406, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2455}, {"x": 0.4867539703845978, "y": 0.6040450930595398, "z": -0.10650593705940992, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2455}, {"x": 0.48470476269721985, "y": 0.5984992384910583, "z": -0.10701392381452024, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2455}, {"x": 0.4854033291339874, "y": 0.5844261050224304, "z": -0.1074489273596555, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2455}, {"x": 0.48516345024108887, "y": 0.593209981918335, "z": -0.10745323542505503, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2455}, {"x": 0.48420897126197815, "y": 0.6027389764785767, "z": -0.10673732170835137, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2455}, {"x": 0.4863503575325012, "y": 0.6008766889572144, "z": -0.10656103165820241, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2455}, {"x": 0.48737403750419617, "y": 0.5843367576599121, "z": -0.10603048134362325, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2455}, {"x": 0.487005352973938, "y": 0.5956233739852905, "z": -0.10648011812008917, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2455}, {"x": 0.48578476905822754, "y": 0.6046559810638428, "z": -0.10665018658619374, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2455}, {"x": 0.48608675599098206, "y": 0.5687373876571655, "z": -0.1043432179139927, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2455}, {"x": 0.48771750926971436, "y": 0.5869175791740417, "z": -0.10425261547788978, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2455}, {"x": 0.4871239960193634, "y": 0.579051673412323, "z": -0.10403389448765665, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2455}, {"x": 0.4883102476596832, "y": 0.5930280685424805, "z": -0.10438069445081055, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2455}, {"x": 0.48461058735847473, "y": 0.5607485771179199, "z": -0.10548474664257168, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2455}], [{"x": 0.4773658812046051, "y": 0.7798848748207092, "z": 0.0772956907749176, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2456}, {"x": 0.48300644755363464, "y": 0.3863106369972229, "z": 0.06015555188059807, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2456}, {"x": 0.4979653060436249, "y": 0.41958022117614746, "z": 0.25873059034347534, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2456}, {"x": 0.4839291274547577, "y": 0.3842885494232178, "z": -0.010954925790429115, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2456}, {"x": 0.4832136929035187, "y": 0.3844469487667084, "z": -0.01085865031927824, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2456}, {"x": 0.48470085859298706, "y": 0.38415494561195374, "z": -0.010909193195402622, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2456}, {"x": 0.49348360300064087, "y": 0.8095054030418396, "z": 0.026124505326151848, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2456}, {"x": 0.4692220687866211, "y": 0.799287736415863, "z": 0.07742580771446228, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2456}, {"x": 0.4888845682144165, "y": 0.5636599659919739, "z": 0.0606888011097908, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2456}, {"x": 0.48304784297943115, "y": 0.389924019575119, "z": 0.33940038084983826, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2456}, {"x": 0.48441797494888306, "y": 0.6799361109733582, "z": 0.05261737480759621, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2456}, {"x": 0.48261159658432007, "y": 0.3934563398361206, "z": 0.35123687982559204, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2456}, {"x": 0.4815133213996887, "y": 0.43581637740135193, "z": 0.14176718890666962, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2456}, {"x": 0.4859106242656708, "y": 0.3925773799419403, "z": 0.33150970935821533, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2456}, {"x": 0.48691242933273315, "y": 0.39969348907470703, "z": 0.33403873443603516, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2456}, {"x": 0.4826171100139618, "y": 0.4008076786994934, "z": 0.0018763637635856867, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2456}, {"x": 0.47907015681266785, "y": 0.39956870675086975, "z": -0.021001581102609634, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2456}, {"x": 0.48274481296539307, "y": 0.3923565745353699, "z": -0.026448773220181465, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2456}, {"x": 0.45615535974502563, "y": 0.7921417355537415, "z": -0.11100341379642487, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2456}, {"x": 0.4704817235469818, "y": 0.3823741376399994, "z": -0.016860786825418472, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2456}, {"x": 0.46743181347846985, "y": 0.5008818507194519, "z": -0.08491779118776321, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2456}, {"x": 0.4782887101173401, "y": 0.3829241693019867, "z": -0.02717316523194313, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2456}, {"x": 0.4799700677394867, "y": 0.38363224267959595, "z": -0.026945967227220535, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2456}, {"x": 0.4766760766506195, "y": 0.38204485177993774, "z": -0.027297768741846085, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2456}, {"x": 0.46452516317367554, "y": 0.8283424377441406, "z": -0.1864059865474701, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2456}, {"x": 0.4532003402709961, "y": 0.8074345588684082, "z": -0.11445163190364838, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2456}, {"x": 0.470627099275589, "y": 0.5616068840026855, "z": -0.06084273010492325, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2456}, {"x": 0.4893341362476349, "y": 0.5731680393218994, "z": -0.12989495694637299, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2456}, {"x": 0.46703511476516724, "y": 0.6791356205940247, "z": -0.09424883872270584, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2456}, {"x": 0.4858555495738983, "y": 0.571673572063446, "z": -0.13266345858573914, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2456}, {"x": 0.4630856215953827, "y": 0.4281369745731354, "z": -0.04704459011554718, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2456}, {"x": 0.48844850063323975, "y": 0.5666451454162598, "z": -0.11384529620409012, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2456}, {"x": 0.4840943217277527, "y": 0.5522084832191467, "z": -0.11496452242136002, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2456}, {"x": 0.48780497908592224, "y": 0.5976523160934448, "z": -0.1141132537741214, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2456}, {"x": 0.4886755645275116, "y": 0.5827948451042175, "z": -0.11249410104937851, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2456}, {"x": 0.4880758821964264, "y": 0.5918318629264832, "z": -0.1131533362204209, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2456}, {"x": 0.48755690455436707, "y": 0.6024888157844543, "z": -0.1148948739937623, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2456}, {"x": 0.4860072731971741, "y": 0.5988366007804871, "z": -0.11492641646327684, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2456}, {"x": 0.4875057637691498, "y": 0.5834894180297852, "z": -0.11328524048440158, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2456}, {"x": 0.4863740801811218, "y": 0.592920184135437, "z": -0.11390229943208396, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2456}, {"x": 0.48585498332977295, "y": 0.6039522886276245, "z": -0.1156987079884857, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2456}, {"x": 0.4834034740924835, "y": 0.5934931635856628, "z": -0.11609243438579142, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2456}, {"x": 0.4844667613506317, "y": 0.5813250541687012, "z": -0.11560719803674147, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2456}, {"x": 0.4838256239891052, "y": 0.5887560248374939, "z": -0.11612572055310011, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2456}, {"x": 0.48303958773612976, "y": 0.5976126194000244, "z": -0.11609867285005748, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2456}, {"x": 0.48475465178489685, "y": 0.5977768301963806, "z": -0.11550934659317136, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2456}, {"x": 0.4860542416572571, "y": 0.5829285979270935, "z": -0.11438647040631622, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2456}, {"x": 0.4851638376712799, "y": 0.5921145677566528, "z": -0.1151171388628427, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2456}, {"x": 0.4845479130744934, "y": 0.6024566888809204, "z": -0.1158056422136724, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2456}, {"x": 0.4873930513858795, "y": 0.5674851536750793, "z": -0.1149430118057353, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2456}, {"x": 0.4890841245651245, "y": 0.5864542722702026, "z": -0.11458145262440667, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2456}, {"x": 0.4885592460632324, "y": 0.5780810713768005, "z": -0.11459401829051785, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2456}, {"x": 0.48963049054145813, "y": 0.5933036804199219, "z": -0.11455185213708319, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2456}, {"x": 0.48564890027046204, "y": 0.5589728951454163, "z": -0.11496449914587359, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2456}], [{"x": 0.47763025760650635, "y": 0.7798096537590027, "z": 0.056514449417591095, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2457}, {"x": 0.48173046112060547, "y": 0.38687044382095337, "z": 0.08252818137407303, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2457}, {"x": 0.49611976742744446, "y": 0.4552472233772278, "z": 0.26531994342803955, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2457}, {"x": 0.48429203033447266, "y": 0.38575655221939087, "z": 0.02865772508084774, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2457}, {"x": 0.4841267168521881, "y": 0.38616856932640076, "z": 0.028754128143191338, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2457}, {"x": 0.4846591651439667, "y": 0.38537371158599854, "z": 0.02869397960603237, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2457}, {"x": 0.4939590394496918, "y": 0.8095749020576477, "z": 0.006308136973530054, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2457}, {"x": 0.4694076180458069, "y": 0.7992884516716003, "z": 0.055480167269706726, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2457}, {"x": 0.48844629526138306, "y": 0.5627138018608093, "z": 0.061928145587444305, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2457}, {"x": 0.4825443923473358, "y": 0.39930692315101624, "z": 0.34740954637527466, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2457}, {"x": 0.4850371778011322, "y": 0.6765024662017822, "z": 0.04317811504006386, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2457}, {"x": 0.4823574423789978, "y": 0.40165185928344727, "z": 0.35896697640419006, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2457}, {"x": 0.4795730412006378, "y": 0.43567538261413574, "z": 0.15314725041389465, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2457}, {"x": 0.4852571487426758, "y": 0.4023919403553009, "z": 0.3379499614238739, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2457}, {"x": 0.4865468144416809, "y": 0.4020090401172638, "z": 0.3405417501926422, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2457}, {"x": 0.4833712577819824, "y": 0.4039837718009949, "z": 0.03820467367768288, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2457}, {"x": 0.481078177690506, "y": 0.40294745564460754, "z": 0.012309483252465725, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2457}, {"x": 0.4845507740974426, "y": 0.39548224210739136, "z": 0.016011212021112442, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2457}, {"x": 0.4561741054058075, "y": 0.7922067046165466, "z": -0.09456831961870193, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2457}, {"x": 0.472662091255188, "y": 0.383745014667511, "z": -0.003964920993894339, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2457}, {"x": 0.4720185399055481, "y": 0.5004417896270752, "z": -0.08869367092847824, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2457}, {"x": 0.48109063506126404, "y": 0.3849915564060211, "z": 0.010034059174358845, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2457}, {"x": 0.48244568705558777, "y": 0.3856853246688843, "z": 0.010246279649436474, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2457}, {"x": 0.47956764698028564, "y": 0.3841225802898407, "z": 0.009925438091158867, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2457}, {"x": 0.46474382281303406, "y": 0.8288595080375671, "z": -0.16526207327842712, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2457}, {"x": 0.453069269657135, "y": 0.807404100894928, "z": -0.09743643552064896, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2457}, {"x": 0.47142788767814636, "y": 0.56004798412323, "z": -0.062050819396972656, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2457}, {"x": 0.49022728204727173, "y": 0.5731230974197388, "z": -0.12419503182172775, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2457}, {"x": 0.4696851074695587, "y": 0.6777166724205017, "z": -0.08611596375703812, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2457}, {"x": 0.48661357164382935, "y": 0.5717682838439941, "z": -0.12952013313770294, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2457}, {"x": 0.4642387926578522, "y": 0.4259141683578491, "z": -0.045325007289648056, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2457}, {"x": 0.4893803894519806, "y": 0.5668604373931885, "z": -0.11056286841630936, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2457}, {"x": 0.4851604402065277, "y": 0.5519382953643799, "z": -0.11269911378622055, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2457}, {"x": 0.4932895600795746, "y": 0.5959595441818237, "z": -0.11142448999453336, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2457}, {"x": 0.4913915693759918, "y": 0.5810883045196533, "z": -0.1105769444257021, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2457}, {"x": 0.49253347516059875, "y": 0.5904856324195862, "z": -0.11086343438364565, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2457}, {"x": 0.4939969480037689, "y": 0.5998908877372742, "z": -0.11183391156373546, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2457}, {"x": 0.4916330873966217, "y": 0.5964199304580688, "z": -0.11222533622640185, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2457}, {"x": 0.4908248782157898, "y": 0.5817047357559204, "z": -0.11103298864327371, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2457}, {"x": 0.4914751350879669, "y": 0.5908617377281189, "z": -0.11139732867013663, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2457}, {"x": 0.49169033765792847, "y": 0.600919783115387, "z": -0.11278801753360312, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2457}, {"x": 0.4869535267353058, "y": 0.594292938709259, "z": -0.11249275176669471, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2457}, {"x": 0.4876575171947479, "y": 0.5815381407737732, "z": -0.1124109108641278, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2457}, {"x": 0.48718518018722534, "y": 0.5892773866653442, "z": -0.11252872906334233, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2457}, {"x": 0.4866138994693756, "y": 0.5987040400505066, "z": -0.1124723185057519, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2457}, {"x": 0.4890752136707306, "y": 0.5967729091644287, "z": -0.11259057340066647, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2457}, {"x": 0.4895147979259491, "y": 0.5817604064941406, "z": -0.1116878652246669, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2457}, {"x": 0.48950111865997314, "y": 0.5909326672554016, "z": -0.11205716140102595, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2457}, {"x": 0.4885503649711609, "y": 0.6017415523529053, "z": -0.11296674332697876, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2457}, {"x": 0.4880402386188507, "y": 0.5671351552009583, "z": -0.11264967027454986, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2457}, {"x": 0.48888450860977173, "y": 0.5854557156562805, "z": -0.11193692754022777, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2457}, {"x": 0.48880642652511597, "y": 0.5775219202041626, "z": -0.1121962447068654, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2457}, {"x": 0.48899516463279724, "y": 0.5913633108139038, "z": -0.11152514338027686, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2457}, {"x": 0.4873316287994385, "y": 0.5596972703933716, "z": -0.1126990990985739, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2457}], [{"x": 0.4777781069278717, "y": 0.7802544832229614, "z": 0.07693136483430862, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2458}, {"x": 0.48171868920326233, "y": 0.38770791888237, "z": 0.05977512151002884, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2458}, {"x": 0.4859229326248169, "y": 0.4989604949951172, "z": 0.23519212007522583, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2458}, {"x": 0.4844663441181183, "y": 0.38653045892715454, "z": -0.006869828328490257, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2458}, {"x": 0.48426610231399536, "y": 0.3869984745979309, "z": -0.006767247803509235, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2458}, {"x": 0.4847710430622101, "y": 0.3861450254917145, "z": -0.0067894612438976765, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2458}, {"x": 0.49432677030563354, "y": 0.8096240162849426, "z": 0.017696324735879898, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2458}, {"x": 0.46930548548698425, "y": 0.8001766800880432, "z": 0.07661236822605133, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2458}, {"x": 0.4875096082687378, "y": 0.5624757409095764, "z": 0.062443532049655914, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2458}, {"x": 0.4878433346748352, "y": 0.5707312226295471, "z": 0.09089166671037674, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2458}, {"x": 0.4851154088973999, "y": 0.6755249500274658, "z": 0.04441581293940544, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2458}, {"x": 0.4861782193183899, "y": 0.5700176954269409, "z": 0.10994896292686462, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2458}, {"x": 0.47843658924102783, "y": 0.4360733926296234, "z": 0.13420632481575012, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2458}, {"x": 0.4880436062812805, "y": 0.5624592304229736, "z": 0.10433126240968704, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2458}, {"x": 0.4871302545070648, "y": 0.550298810005188, "z": 0.11379173398017883, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2458}, {"x": 0.48372313380241394, "y": 0.4040778875350952, "z": 0.005367028061300516, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2458}, {"x": 0.48125967383384705, "y": 0.4033527374267578, "z": -0.018327752128243446, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2458}, {"x": 0.48459917306900024, "y": 0.3961490988731384, "z": -0.021421290934085846, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2458}, {"x": 0.45653894543647766, "y": 0.7921185493469238, "z": -0.08883025497198105, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2458}, {"x": 0.4724894165992737, "y": 0.384101539850235, "z": -0.016129285097122192, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2458}, {"x": 0.4745071232318878, "y": 0.49877527356147766, "z": -0.13019980490207672, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2458}, {"x": 0.4805430769920349, "y": 0.38601911067962646, "z": -0.024042511358857155, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2458}, {"x": 0.4821586012840271, "y": 0.3867081105709076, "z": -0.023836305364966393, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2458}, {"x": 0.4787890613079071, "y": 0.3851146399974823, "z": -0.024138370528817177, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2458}, {"x": 0.46467939019203186, "y": 0.8288846015930176, "z": -0.16761860251426697, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2458}, {"x": 0.4532076418399811, "y": 0.8069732189178467, "z": -0.09103871136903763, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2458}, {"x": 0.47251245379447937, "y": 0.5593755841255188, "z": -0.06257046014070511, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2458}, {"x": 0.4914773404598236, "y": 0.5748763084411621, "z": -0.19431854784488678, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2458}, {"x": 0.4718819260597229, "y": 0.6773805022239685, "z": -0.09179787337779999, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2458}, {"x": 0.4883888065814972, "y": 0.5735070705413818, "z": -0.1976906657218933, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2458}, {"x": 0.4661864638328552, "y": 0.42311617732048035, "z": -0.06926727294921875, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2458}, {"x": 0.4907003939151764, "y": 0.5683714747428894, "z": -0.1701972484588623, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2458}, {"x": 0.4873189330101013, "y": 0.5541151762008667, "z": -0.1711346060037613, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2458}, {"x": 0.493502140045166, "y": 0.5963566899299622, "z": 0.11753428401425481, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2458}, {"x": 0.49292874336242676, "y": 0.581194281578064, "z": 0.11770184058696032, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2458}, {"x": 0.49383020401000977, "y": 0.5905717611312866, "z": 0.118037314619869, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2458}, {"x": 0.4934089779853821, "y": 0.6003686785697937, "z": 0.11719181318767369, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2458}, {"x": 0.490524560213089, "y": 0.5973506569862366, "z": 0.11784438230097294, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2458}, {"x": 0.49204158782958984, "y": 0.5815963745117188, "z": 0.11789751937612891, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2458}, {"x": 0.49176597595214844, "y": 0.5916037559509277, "z": 0.11859519453719258, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2458}, {"x": 0.48939451575279236, "y": 0.6015030741691589, "z": 0.11725989519618452, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2458}, {"x": 0.48712459206581116, "y": 0.5944727063179016, "z": 0.11873963987454772, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2458}, {"x": 0.4885557293891907, "y": 0.5810372233390808, "z": 0.11725866654887795, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2458}, {"x": 0.4879071116447449, "y": 0.5894187688827515, "z": 0.11824485519900918, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2458}, {"x": 0.4864802956581116, "y": 0.5981818437576294, "z": 0.11902286810800433, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2458}, {"x": 0.4884834289550781, "y": 0.5964958071708679, "z": 0.1181702883914113, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2458}, {"x": 0.4904705584049225, "y": 0.5815652012825012, "z": 0.11768641625531018, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2458}, {"x": 0.48983120918273926, "y": 0.5912045240402222, "z": 0.11843492556363344, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2458}, {"x": 0.48733457922935486, "y": 0.6002986431121826, "z": 0.11788144195452332, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2458}, {"x": 0.4879973828792572, "y": 0.5678046941757202, "z": 0.1131547661498189, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2458}, {"x": 0.48839443922042847, "y": 0.5883510112762451, "z": 0.11413595214253291, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2458}, {"x": 0.488540381193161, "y": 0.579187273979187, "z": 0.11372236535680713, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2458}, {"x": 0.4882185757160187, "y": 0.5957069993019104, "z": 0.1148074516095221, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2458}, {"x": 0.4881773591041565, "y": 0.5573558807373047, "z": 0.11379176481379716, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2458}, {"x": 0.48943668603897095, "y": 0.5947358012199402, "z": -0.16916304919868708, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2458}, {"x": 0.4919823110103607, "y": 0.5790179967880249, "z": -0.16811731387861073, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2458}, {"x": 0.4908415377140045, "y": 0.5882015824317932, "z": -0.1684314131271094, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2458}, {"x": 0.488269567489624, "y": 0.5993659496307373, "z": -0.16969257255550474, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2458}, {"x": 0.48887163400650024, "y": 0.5953567624092102, "z": -0.169996777898632, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2458}, {"x": 0.49175986647605896, "y": 0.579472005367279, "z": -0.1692844006465748, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2458}, {"x": 0.49033671617507935, "y": 0.589106559753418, "z": -0.16935369314160198, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2458}, {"x": 0.4874042272567749, "y": 0.6000093817710876, "z": -0.1705357261816971, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2458}, {"x": 0.48776209354400635, "y": 0.5931984782218933, "z": -0.17112606650061934, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2458}, {"x": 0.4892041087150574, "y": 0.5798460841178894, "z": -0.17191177909262478, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2458}, {"x": 0.4884960353374481, "y": 0.5880440473556519, "z": -0.1715464369917754, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2458}, {"x": 0.4870036244392395, "y": 0.5973204970359802, "z": -0.17090250265027862, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2458}, {"x": 0.48843610286712646, "y": 0.5951529741287231, "z": -0.17038057546596974, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2458}, {"x": 0.4908348321914673, "y": 0.5797969102859497, "z": -0.17057450773427263, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2458}, {"x": 0.48967695236206055, "y": 0.5892624258995056, "z": -0.17038392834365368, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2458}, {"x": 0.48727232217788696, "y": 0.5996148586273193, "z": -0.1705062544788234, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2458}, {"x": 0.48847997188568115, "y": 0.5655893087387085, "z": -0.16985419124830514, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2458}, {"x": 0.48892924189567566, "y": 0.5809170603752136, "z": -0.16920169827062637, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2458}, {"x": 0.48892664909362793, "y": 0.5746600031852722, "z": -0.1692515251925215, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2458}, {"x": 0.48859137296676636, "y": 0.5862536430358887, "z": -0.16917688795365393, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2458}, {"x": 0.4892748296260834, "y": 0.5577059984207153, "z": -0.17113457678991573, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2458}], [{"x": 0.47788238525390625, "y": 0.7808408737182617, "z": 0.08349104225635529, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2459}, {"x": 0.48170366883277893, "y": 0.3886699676513672, "z": 0.05546518787741661, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2459}, {"x": 0.48569193482398987, "y": 0.4990117847919464, "z": 0.15025530755519867, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2459}, {"x": 0.4849826395511627, "y": 0.3885466158390045, "z": -0.002028736984357238, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2459}, {"x": 0.4848833680152893, "y": 0.3890191912651062, "z": -0.0019329929491505027, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2459}, {"x": 0.4851277470588684, "y": 0.3881908655166626, "z": -0.0019475540611892939, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2459}, {"x": 0.49444979429244995, "y": 0.8096679449081421, "z": 0.025721339508891106, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2459}, {"x": 0.46940842270851135, "y": 0.8008453249931335, "z": 0.08332955837249756, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2459}, {"x": 0.48678427934646606, "y": 0.5625725388526917, "z": 0.06208273023366928, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2459}, {"x": 0.4909723401069641, "y": 0.5647608637809753, "z": 0.03619213029742241, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2459}, {"x": 0.485150009393692, "y": 0.675618052482605, "z": 0.04896549880504608, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2459}, {"x": 0.48919230699539185, "y": 0.5737133622169495, "z": 0.05188041925430298, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2459}, {"x": 0.4774625897407532, "y": 0.4358460009098053, "z": 0.12744852900505066, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2459}, {"x": 0.4907931685447693, "y": 0.5609773397445679, "z": 0.05070286989212036, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2459}, {"x": 0.4893353283405304, "y": 0.5517622828483582, "z": 0.05950756371021271, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2459}, {"x": 0.4843085706233978, "y": 0.4058282971382141, "z": 0.009500035084784031, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2459}, {"x": 0.4819956123828888, "y": 0.40481647849082947, "z": -0.015487800352275372, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2459}, {"x": 0.4853062033653259, "y": 0.39801186323165894, "z": -0.014069989323616028, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2459}, {"x": 0.4569772481918335, "y": 0.7919567823410034, "z": -0.07520410418510437, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2459}, {"x": 0.4733179807662964, "y": 0.3850097954273224, "z": -0.02415488474071026, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2459}, {"x": 0.4783293902873993, "y": 0.4991864860057831, "z": -0.1247371956706047, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2459}, {"x": 0.4814186096191406, "y": 0.3879023790359497, "z": -0.02026403322815895, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2459}, {"x": 0.4829396903514862, "y": 0.38862794637680054, "z": -0.020063491538167, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2459}, {"x": 0.479687362909317, "y": 0.38707685470581055, "z": -0.020357806235551834, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2459}, {"x": 0.46476441621780396, "y": 0.8288573026657104, "z": -0.1535416692495346, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2459}, {"x": 0.45329388976097107, "y": 0.806487500667572, "z": -0.07628507167100906, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2459}, {"x": 0.47303488850593567, "y": 0.5591432452201843, "z": -0.062210969626903534, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2459}, {"x": 0.4936847388744354, "y": 0.5800051689147949, "z": -0.17022767663002014, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2459}, {"x": 0.47311073541641235, "y": 0.6772319078445435, "z": -0.08599899709224701, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2459}, {"x": 0.4907290041446686, "y": 0.5785189270973206, "z": -0.17162030935287476, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2459}, {"x": 0.46721550822257996, "y": 0.4220081865787506, "z": -0.07708645612001419, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2459}, {"x": 0.49329954385757446, "y": 0.5739616751670837, "z": -0.14781920611858368, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2459}, {"x": 0.4900783598423004, "y": 0.5597590208053589, "z": -0.14838123321533203, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2459}, {"x": 0.4884229898452759, "y": 0.5928844809532166, "z": -0.14670261030551046, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2459}, {"x": 0.49077531695365906, "y": 0.5794718265533447, "z": -0.1456822999753058, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2459}, {"x": 0.48933061957359314, "y": 0.5875596404075623, "z": -0.14609896973706782, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2459}, {"x": 0.4877455532550812, "y": 0.5971370935440063, "z": -0.14718059240840375, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2459}, {"x": 0.4889068603515625, "y": 0.592986524105072, "z": -0.14814356382703409, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2459}, {"x": 0.49119940400123596, "y": 0.5793031454086304, "z": -0.14738810143899173, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2459}, {"x": 0.4897279143333435, "y": 0.5877956748008728, "z": -0.1476470194174908, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2459}, {"x": 0.48833730816841125, "y": 0.597470223903656, "z": -0.14860612449410837, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2459}, {"x": 0.4913526773452759, "y": 0.5860098004341125, "z": -0.1508078589104116, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2459}, {"x": 0.4917205572128296, "y": 0.5768584609031677, "z": -0.15083217341452837, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2459}, {"x": 0.4915986955165863, "y": 0.5826345086097717, "z": -0.15098242228850722, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2459}, {"x": 0.49112197756767273, "y": 0.5889747738838196, "z": -0.1507882378064096, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2459}, {"x": 0.4901539385318756, "y": 0.5910133123397827, "z": -0.14942874771077186, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2459}, {"x": 0.4915704131126404, "y": 0.5783368945121765, "z": -0.14914606953971088, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2459}, {"x": 0.4906735420227051, "y": 0.5864090919494629, "z": -0.1493590873433277, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2459}, {"x": 0.48983022570610046, "y": 0.5950779914855957, "z": -0.14965199248399585, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2459}, {"x": 0.4896298944950104, "y": 0.5674728155136108, "z": -0.14634581329301, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2459}, {"x": 0.48964568972587585, "y": 0.5818520188331604, "z": -0.14551795995794237, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2459}, {"x": 0.48960748314857483, "y": 0.5761429071426392, "z": -0.14559802156873047, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2459}, {"x": 0.48938748240470886, "y": 0.5863888263702393, "z": -0.14555266685783863, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2459}, {"x": 0.4903666079044342, "y": 0.5580112934112549, "z": -0.1483812127760462, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2459}], [{"x": 0.4779634177684784, "y": 0.7805317044258118, "z": 0.11070652306079865, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2460}, {"x": 0.4807080626487732, "y": 0.3884623348712921, "z": 0.05951665714383125, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2460}, {"x": 0.4832656681537628, "y": 0.500343918800354, "z": 0.14435675740242004, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2460}, {"x": 0.48554009199142456, "y": 0.38974982500076294, "z": 0.015112269669771194, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2460}, {"x": 0.48600026965141296, "y": 0.3902669847011566, "z": 0.015215770341455936, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2460}, {"x": 0.4852078855037689, "y": 0.3893236517906189, "z": 0.01518480945378542, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2460}, {"x": 0.4945954382419586, "y": 0.8094509840011597, "z": 0.06070900335907936, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2460}, {"x": 0.4694473445415497, "y": 0.8007771968841553, "z": 0.1113075464963913, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2460}, {"x": 0.48594850301742554, "y": 0.5626749396324158, "z": 0.06521046906709671, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2460}, {"x": 0.4898720681667328, "y": 0.5795543193817139, "z": 0.06553181260824203, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2460}, {"x": 0.48517507314682007, "y": 0.6758070588111877, "z": 0.07108146697282791, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2460}, {"x": 0.4881194531917572, "y": 0.5790559649467468, "z": 0.08272378146648407, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2460}, {"x": 0.4755939841270447, "y": 0.43431273102760315, "z": 0.12372712045907974, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2460}, {"x": 0.4898192286491394, "y": 0.5711247324943542, "z": 0.07732779532670975, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2460}, {"x": 0.48880112171173096, "y": 0.5590061545372009, "z": 0.08603373914957047, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2460}, {"x": 0.48493874073028564, "y": 0.4072682559490204, "z": 0.024865809828042984, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2460}, {"x": 0.4838443994522095, "y": 0.40628352761268616, "z": -0.003500406164675951, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2460}, {"x": 0.48710793256759644, "y": 0.39949607849121094, "z": 0.005660234950482845, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2460}, {"x": 0.4571297764778137, "y": 0.7922183275222778, "z": -0.07419652491807938, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2460}, {"x": 0.4757825434207916, "y": 0.38578659296035767, "z": -0.03211317956447601, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2460}, {"x": 0.4781390130519867, "y": 0.49792781472206116, "z": -0.14828282594680786, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2460}, {"x": 0.48427897691726685, "y": 0.3891228139400482, "z": -0.005598795134574175, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2460}, {"x": 0.4853315055370331, "y": 0.3899165093898773, "z": -0.005413977429270744, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2460}, {"x": 0.48307254910469055, "y": 0.38831377029418945, "z": -0.005683401133865118, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2460}, {"x": 0.4651532769203186, "y": 0.8288733959197998, "z": -0.15010659396648407, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2460}, {"x": 0.45337167382240295, "y": 0.8066509962081909, "z": -0.07590317726135254, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2460}, {"x": 0.4730168581008911, "y": 0.5593798756599426, "z": -0.06531894207000732, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2460}, {"x": 0.494461327791214, "y": 0.5781161785125732, "z": -0.19681622087955475, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2460}, {"x": 0.4732531011104584, "y": 0.6773619055747986, "z": -0.08460088819265366, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2460}, {"x": 0.4916367530822754, "y": 0.5771377086639404, "z": -0.2012985646724701, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2460}, {"x": 0.4684351980686188, "y": 0.4218311011791229, "z": -0.0895962193608284, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2460}, {"x": 0.4941238760948181, "y": 0.5721293091773987, "z": -0.17433780431747437, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2460}, {"x": 0.49106308817863464, "y": 0.55720055103302, "z": -0.17546503245830536, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2460}, {"x": 0.4915037155151367, "y": 0.601959228515625, "z": 0.08567650002078153, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2460}, {"x": 0.4886879026889801, "y": 0.588219404220581, "z": 0.08741510240361094, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2460}, {"x": 0.4884184002876282, "y": 0.5996896028518677, "z": 0.08636934086098336, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2460}, {"x": 0.49378302693367004, "y": 0.6006531715393066, "z": 0.0855545675731264, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2460}, {"x": 0.49201875925064087, "y": 0.6021348237991333, "z": 0.08552138059167191, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2460}, {"x": 0.48878225684165955, "y": 0.5878345370292664, "z": 0.0863969064084813, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2460}, {"x": 0.4889069199562073, "y": 0.6004139184951782, "z": 0.08573306916514412, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2460}, {"x": 0.49409472942352295, "y": 0.6004368662834167, "z": 0.08555222890572622, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2460}, {"x": 0.49199551343917847, "y": 0.5979605317115784, "z": 0.0841263021575287, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2460}, {"x": 0.49061262607574463, "y": 0.5855274200439453, "z": 0.08422381896525621, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2460}, {"x": 0.4906472861766815, "y": 0.5942667722702026, "z": 0.08413539070170373, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2460}, {"x": 0.49314790964126587, "y": 0.598946213722229, "z": 0.08418268128298223, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2460}, {"x": 0.4920974671840668, "y": 0.6007862687110901, "z": 0.08542253042105585, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2460}, {"x": 0.4895167350769043, "y": 0.5867790579795837, "z": 0.0852840231382288, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2460}, {"x": 0.48938795924186707, "y": 0.5987869501113892, "z": 0.08524441008921713, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2460}, {"x": 0.49401432275772095, "y": 0.5995703935623169, "z": 0.08550663251662627, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2460}, {"x": 0.49212947487831116, "y": 0.5732688903808594, "z": 0.08733007882256061, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2460}, {"x": 0.4924926161766052, "y": 0.5892297029495239, "z": 0.08770268748048693, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2460}, {"x": 0.4922599792480469, "y": 0.5826385617256165, "z": 0.08771965431515127, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2460}, {"x": 0.49261853098869324, "y": 0.5944048166275024, "z": 0.08784148748964071, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2460}, {"x": 0.49150633811950684, "y": 0.5641949772834778, "z": 0.08603370207902472, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2460}], [{"x": 0.478027880191803, "y": 0.7798022031784058, "z": 0.11473290622234344, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2461}, {"x": 0.47989338636398315, "y": 0.38815316557884216, "z": 0.04756470024585724, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2461}, {"x": 0.48318058252334595, "y": 0.5001187920570374, "z": 0.1318274289369583, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2461}, {"x": 0.48525765538215637, "y": 0.38906311988830566, "z": -0.0019120625220239162, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2461}, {"x": 0.4855894446372986, "y": 0.38939371705055237, "z": -0.0018062334274873137, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2461}, {"x": 0.4851754605770111, "y": 0.38875746726989746, "z": -0.0018429867923259735, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2461}, {"x": 0.49477991461753845, "y": 0.8090017437934875, "z": 0.06466560810804367, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2461}, {"x": 0.46922871470451355, "y": 0.800667941570282, "z": 0.11492398381233215, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2461}, {"x": 0.4851926267147064, "y": 0.5627235174179077, "z": 0.06708512455224991, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2461}, {"x": 0.48898962140083313, "y": 0.5746021270751953, "z": 0.052179429680109024, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2461}, {"x": 0.48466241359710693, "y": 0.6757689118385315, "z": 0.07834044098854065, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2461}, {"x": 0.48746567964553833, "y": 0.5747226476669312, "z": 0.07047852128744125, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2461}, {"x": 0.4764555096626282, "y": 0.4318191707134247, "z": 0.11370030790567398, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2461}, {"x": 0.48893487453460693, "y": 0.5684576630592346, "z": 0.0647919625043869, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2461}, {"x": 0.4887586832046509, "y": 0.5549875497817993, "z": 0.07398510724306107, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2461}, {"x": 0.48488539457321167, "y": 0.4067287743091583, "z": 0.008683156222105026, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2461}, {"x": 0.48398256301879883, "y": 0.4054710865020752, "z": -0.016510512679815292, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2461}, {"x": 0.486793577671051, "y": 0.3984500467777252, "z": -0.01235298439860344, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2461}, {"x": 0.45733749866485596, "y": 0.7933105230331421, "z": -0.07274384051561356, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2461}, {"x": 0.47624024748802185, "y": 0.38554394245147705, "z": -0.051439713686704636, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2461}, {"x": 0.4786032438278198, "y": 0.4970313310623169, "z": -0.15984295308589935, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2461}, {"x": 0.4839085340499878, "y": 0.38808155059814453, "z": -0.021030645817518234, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2461}, {"x": 0.48490485548973083, "y": 0.38882017135620117, "z": -0.020839573815464973, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2461}, {"x": 0.4828026592731476, "y": 0.38731783628463745, "z": -0.021120421588420868, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2461}, {"x": 0.4656514525413513, "y": 0.8288882970809937, "z": -0.1481325328350067, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2461}, {"x": 0.45342960953712463, "y": 0.8071457147598267, "z": -0.0748000219464302, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2461}, {"x": 0.4728063941001892, "y": 0.5594140291213989, "z": -0.06716670840978622, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2461}, {"x": 0.4946146607398987, "y": 0.5782371163368225, "z": -0.20690439641475677, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2461}, {"x": 0.47500643134117126, "y": 0.6774010062217712, "z": -0.07999388128519058, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2461}, {"x": 0.4919339120388031, "y": 0.5767912864685059, "z": -0.21027611196041107, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2461}, {"x": 0.47114261984825134, "y": 0.4218299686908722, "z": -0.1073184683918953, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2461}, {"x": 0.49412819743156433, "y": 0.5726734399795532, "z": -0.18332363665103912, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2461}, {"x": 0.49089041352272034, "y": 0.5575773119926453, "z": -0.18400952219963074, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2461}, {"x": 0.4931366741657257, "y": 0.599715530872345, "z": 0.07517259602900594, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2461}, {"x": 0.49309805035591125, "y": 0.58540940284729, "z": 0.07678704964928329, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2461}, {"x": 0.49349144101142883, "y": 0.5959041714668274, "z": 0.07603533728979528, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2461}, {"x": 0.49295350909233093, "y": 0.600095808506012, "z": 0.07496117748087272, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2461}, {"x": 0.49323704838752747, "y": 0.6002563834190369, "z": 0.07521599030587822, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2461}, {"x": 0.49295341968536377, "y": 0.5852737426757812, "z": 0.07605279074050486, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2461}, {"x": 0.49353766441345215, "y": 0.596752941608429, "z": 0.0757957415189594, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2461}, {"x": 0.49308574199676514, "y": 0.599963366985321, "z": 0.07501740602310747, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2461}, {"x": 0.4901745319366455, "y": 0.5965709090232849, "z": 0.07480915531050414, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2461}, {"x": 0.4914310872554779, "y": 0.5831530094146729, "z": 0.07411178716574796, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2461}, {"x": 0.4904320240020752, "y": 0.5920606255531311, "z": 0.07450085080927238, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2461}, {"x": 0.49029502272605896, "y": 0.5983104109764099, "z": 0.07512126152869314, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2461}, {"x": 0.49225494265556335, "y": 0.5995295643806458, "z": 0.07496280956547707, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2461}, {"x": 0.4924051761627197, "y": 0.5845435261726379, "z": 0.07508946140296757, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2461}, {"x": 0.49243688583374023, "y": 0.5957139134407043, "z": 0.07510380435269326, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2461}, {"x": 0.49214932322502136, "y": 0.5997987389564514, "z": 0.07500458823051304, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2461}, {"x": 0.4907126724720001, "y": 0.571801483631134, "z": 0.07489632000215352, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2461}, {"x": 0.49123111367225647, "y": 0.5894027948379517, "z": 0.0755854434100911, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2461}, {"x": 0.4910927712917328, "y": 0.5820159912109375, "z": 0.07546633633319288, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2461}, {"x": 0.4914090633392334, "y": 0.5953623652458191, "z": 0.07590498554054648, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2461}, {"x": 0.4907895028591156, "y": 0.5614075064659119, "z": 0.07398510659071783, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2461}, {"x": 0.4924774467945099, "y": 0.6016584038734436, "z": -0.1834897109074518, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2461}, {"x": 0.4933846592903137, "y": 0.5876749157905579, "z": -0.18143885117024183, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2461}, {"x": 0.49404066801071167, "y": 0.5973206162452698, "z": -0.18229764350689948, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2461}, {"x": 0.49076083302497864, "y": 0.6032664179801941, "z": -0.18408956846542424, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2461}, {"x": 0.49270468950271606, "y": 0.60062575340271, "z": -0.18354342845850624, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2461}, {"x": 0.49342310428619385, "y": 0.5865736603736877, "z": -0.18220495572313666, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2461}, {"x": 0.4940747916698456, "y": 0.5964208245277405, "z": -0.18250765872653574, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2461}, {"x": 0.49116694927215576, "y": 0.6021794676780701, "z": -0.1842580062802881, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2461}, {"x": 0.4917851686477661, "y": 0.5947250723838806, "z": -0.18325679807458073, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2461}, {"x": 0.49241194128990173, "y": 0.5826649069786072, "z": -0.18423074613383505, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2461}, {"x": 0.4923822581768036, "y": 0.5905464887619019, "z": -0.18373657832853496, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2461}, {"x": 0.4911641478538513, "y": 0.5971170663833618, "z": -0.18294126202818006, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2461}, {"x": 0.4921445846557617, "y": 0.5986350774765015, "z": -0.18331385625060648, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2461}, {"x": 0.49311625957489014, "y": 0.5849393010139465, "z": -0.1831845071283169, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2461}, {"x": 0.4932631850242615, "y": 0.5944018959999084, "z": -0.18312366085592657, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2461}, {"x": 0.4909435212612152, "y": 0.6005454063415527, "z": -0.18350353796267882, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2461}, {"x": 0.49042701721191406, "y": 0.5730740427970886, "z": -0.18340261484263465, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2461}, {"x": 0.48988690972328186, "y": 0.5916647911071777, "z": -0.18317391845630482, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2461}, {"x": 0.4903993010520935, "y": 0.5837236046791077, "z": -0.18308315612375736, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2461}, {"x": 0.49001461267471313, "y": 0.5980790853500366, "z": -0.183177882747259, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2461}, {"x": 0.4913526177406311, "y": 0.562383234500885, "z": -0.1840095026285038, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2461}], [{"x": 0.4776976406574249, "y": 0.77982097864151, "z": 0.10440918803215027, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2462}, {"x": 0.47971251606941223, "y": 0.38806870579719543, "z": 0.059140875935554504, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2462}, {"x": 0.48211902379989624, "y": 0.500580906867981, "z": 0.13944388926029205, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2462}, {"x": 0.48515164852142334, "y": 0.3884507715702057, "z": 0.01564035564661026, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2462}, {"x": 0.485575407743454, "y": 0.38874736428260803, "z": 0.01573888398706913, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2462}, {"x": 0.48506954312324524, "y": 0.3881990313529968, "z": 0.015712657943367958, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2462}, {"x": 0.49487966299057007, "y": 0.8084074258804321, "z": 0.059430018067359924, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2462}, {"x": 0.4685557782649994, "y": 0.8007173538208008, "z": 0.1032380685210228, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2462}, {"x": 0.4843331575393677, "y": 0.5628105998039246, "z": 0.06733565032482147, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2462}, {"x": 0.48833560943603516, "y": 0.5765822529792786, "z": 0.06566265225410461, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2462}, {"x": 0.4846552908420563, "y": 0.6758158206939697, "z": 0.07286190241575241, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2462}, {"x": 0.4853937029838562, "y": 0.5768769383430481, "z": 0.08384941518306732, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2462}, {"x": 0.4765990376472473, "y": 0.43100976943969727, "z": 0.12286984175443649, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2462}, {"x": 0.4883318841457367, "y": 0.5701330900192261, "z": 0.07729674875736237, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2462}, {"x": 0.48692888021469116, "y": 0.5579515695571899, "z": 0.08631855994462967, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2462}, {"x": 0.48524805903434753, "y": 0.4060138761997223, "z": 0.024891259148716927, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2462}, {"x": 0.4847157299518585, "y": 0.40480196475982666, "z": -0.0035270473454147577, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2462}, {"x": 0.48711109161376953, "y": 0.39760449528694153, "z": 0.005966542288661003, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2462}, {"x": 0.45837652683258057, "y": 0.7933772802352905, "z": -0.07772795110940933, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2462}, {"x": 0.47738116979599, "y": 0.38561707735061646, "z": -0.043559178709983826, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2462}, {"x": 0.4781322479248047, "y": 0.4948510527610779, "z": -0.15033277869224548, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2462}, {"x": 0.48436886072158813, "y": 0.3875407576560974, "z": -0.005282203201204538, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2462}, {"x": 0.4852033853530884, "y": 0.3882105350494385, "z": -0.005095102824270725, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2462}, {"x": 0.4834578335285187, "y": 0.3868679404258728, "z": -0.0053674206137657166, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2462}, {"x": 0.4664575159549713, "y": 0.8288966417312622, "z": -0.14824731647968292, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2462}, {"x": 0.4540044963359833, "y": 0.8071197271347046, "z": -0.08000729978084564, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2462}, {"x": 0.47253111004829407, "y": 0.5594910979270935, "z": -0.06742352992296219, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2462}, {"x": 0.4938035011291504, "y": 0.5773798227310181, "z": -0.20015443861484528, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2462}, {"x": 0.4764604866504669, "y": 0.6781249046325684, "z": -0.0799323171377182, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2462}, {"x": 0.4911537170410156, "y": 0.5760521292686462, "z": -0.2041497528553009, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2462}, {"x": 0.4729052484035492, "y": 0.42138993740081787, "z": -0.09442250430583954, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2462}, {"x": 0.4932764768600464, "y": 0.5718315243721008, "z": -0.1771225482225418, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2462}, {"x": 0.49018236994743347, "y": 0.5565467476844788, "z": -0.177958682179451, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2462}, {"x": 0.49323296546936035, "y": 0.6010165214538574, "z": 0.08729030785616487, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2462}, {"x": 0.4949197769165039, "y": 0.5865452885627747, "z": 0.08949449216015637, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2462}, {"x": 0.4958709478378296, "y": 0.5963923335075378, "z": 0.08855375275015831, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2462}, {"x": 0.4906804859638214, "y": 0.602405309677124, "z": 0.08662729794741608, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2462}, {"x": 0.49273374676704407, "y": 0.6006907224655151, "z": 0.08629793008003617, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2462}, {"x": 0.4947049021720886, "y": 0.5857025384902954, "z": 0.08814243343658745, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2462}, {"x": 0.4954165816307068, "y": 0.5962021350860596, "z": 0.08753298257943243, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2462}, {"x": 0.49023741483688354, "y": 0.6017639636993408, "z": 0.08551117696333677, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2462}, {"x": 0.49142986536026, "y": 0.5960173010826111, "z": 0.08578676119213924, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2462}, {"x": 0.49234527349472046, "y": 0.583207905292511, "z": 0.08510625641793013, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2462}, {"x": 0.49262478947639465, "y": 0.5914741158485413, "z": 0.08541566762141883, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2462}, {"x": 0.49021807312965393, "y": 0.5981731414794922, "z": 0.08604156956425868, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2462}, {"x": 0.4918763339519501, "y": 0.5988707542419434, "z": 0.08601357493898831, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2462}, {"x": 0.493849515914917, "y": 0.584655225276947, "z": 0.08662747970083728, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2462}, {"x": 0.49416762590408325, "y": 0.5948324799537659, "z": 0.08643853705143556, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2462}, {"x": 0.4897839426994324, "y": 0.6002320051193237, "z": 0.08570995018817484, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2462}, {"x": 0.4890410304069519, "y": 0.5745691657066345, "z": 0.08766034222207963, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2462}, {"x": 0.4891314208507538, "y": 0.5911099910736084, "z": 0.08803627139423043, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2462}, {"x": 0.48957639932632446, "y": 0.584328293800354, "z": 0.08816784468945116, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2462}, {"x": 0.4888974726200104, "y": 0.5968963503837585, "z": 0.08800147357396781, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2462}, {"x": 0.49022579193115234, "y": 0.5633789300918579, "z": 0.08631858416860183, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2462}, {"x": 0.4924909770488739, "y": 0.6008598208427429, "z": -0.1759209840092808, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2462}, {"x": 0.49497219920158386, "y": 0.5867516994476318, "z": -0.17423490015789866, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2462}, {"x": 0.49528977274894714, "y": 0.5968245267868042, "z": -0.17480357852764428, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2462}, {"x": 0.4899875223636627, "y": 0.6013597249984741, "z": -0.17646432959008962, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2462}, {"x": 0.49202993512153625, "y": 0.6005027294158936, "z": -0.17672744032461196, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2462}, {"x": 0.49460458755493164, "y": 0.5864688158035278, "z": -0.17524192878045142, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2462}, {"x": 0.4948064386844635, "y": 0.5967647433280945, "z": -0.17545574088580906, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2462}, {"x": 0.48956364393234253, "y": 0.6008032560348511, "z": -0.17756746811210178, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2462}, {"x": 0.4905516803264618, "y": 0.5973393321037292, "z": -0.17660177731886506, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2462}, {"x": 0.4920596182346344, "y": 0.5853632092475891, "z": -0.17763719451613724, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2462}, {"x": 0.4920002222061157, "y": 0.593576192855835, "z": -0.17698668135562912, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2462}, {"x": 0.489126592874527, "y": 0.5984115600585938, "z": -0.1763510446762666, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2462}, {"x": 0.4911822974681854, "y": 0.5991482138633728, "z": -0.17675241793040186, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2462}, {"x": 0.49364998936653137, "y": 0.5861008763313293, "z": -0.17642783466726542, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2462}, {"x": 0.49360769987106323, "y": 0.5959633588790894, "z": -0.17622314346954226, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2462}, {"x": 0.48910894989967346, "y": 0.5994521379470825, "z": -0.17716307227965444, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2462}, {"x": 0.4894755184650421, "y": 0.5742763876914978, "z": -0.17680682055652142, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2462}, {"x": 0.4889432489871979, "y": 0.5910066366195679, "z": -0.17601139144971967, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2462}, {"x": 0.4897191524505615, "y": 0.5840467214584351, "z": -0.17612326238304377, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2462}, {"x": 0.4887782037258148, "y": 0.5966464281082153, "z": -0.1757206639740616, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2462}, {"x": 0.49021947383880615, "y": 0.5643165707588196, "z": -0.17795865975245917, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2462}], [{"x": 0.4765323996543884, "y": 0.7800456881523132, "z": 0.09610351920127869, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2463}, {"x": 0.47968295216560364, "y": 0.3883990943431854, "z": 0.05332070216536522, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2463}, {"x": 0.47935014963150024, "y": 0.5010635852813721, "z": 0.13224579393863678, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2463}, {"x": 0.48543035984039307, "y": 0.3898939788341522, "z": 0.004378466866910458, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2463}, {"x": 0.486063688993454, "y": 0.3903425931930542, "z": 0.004480128176510334, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2463}, {"x": 0.48507970571517944, "y": 0.38951849937438965, "z": 0.004447744693607092, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2463}, {"x": 0.49487629532814026, "y": 0.808436930179596, "z": 0.054067082703113556, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2463}, {"x": 0.46750137209892273, "y": 0.8006292581558228, "z": 0.09495793282985687, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2463}, {"x": 0.483208030462265, "y": 0.5630814433097839, "z": 0.06753558665513992, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2463}, {"x": 0.48579141497612, "y": 0.5763612389564514, "z": 0.05443178489804268, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2463}, {"x": 0.4840070903301239, "y": 0.6759716272354126, "z": 0.06955209374427795, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2463}, {"x": 0.48243075609207153, "y": 0.5773283243179321, "z": 0.07252392172813416, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2463}, {"x": 0.4746417701244354, "y": 0.4310145378112793, "z": 0.11666680872440338, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2463}, {"x": 0.48653510212898254, "y": 0.5701950788497925, "z": 0.06646903604269028, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2463}, {"x": 0.4839183986186981, "y": 0.5569533705711365, "z": 0.0755847692489624, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2463}, {"x": 0.48585236072540283, "y": 0.40758684277534485, "z": 0.014491559937596321, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2463}, {"x": 0.48550572991371155, "y": 0.40670889616012573, "z": -0.012718350626528263, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2463}, {"x": 0.4879046380519867, "y": 0.3995395302772522, "z": -0.005377305205911398, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2463}, {"x": 0.4589541554450989, "y": 0.793163537979126, "z": -0.0748772919178009, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2463}, {"x": 0.47810956835746765, "y": 0.3871937692165375, "z": -0.05000711977481842, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2463}, {"x": 0.47772830724716187, "y": 0.4948272705078125, "z": -0.16144655644893646, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2463}, {"x": 0.48518818616867065, "y": 0.38949015736579895, "z": -0.015826966613531113, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2463}, {"x": 0.4859600365161896, "y": 0.39010849595069885, "z": -0.015639355406165123, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2463}, {"x": 0.4843415319919586, "y": 0.3888934552669525, "z": -0.015913713723421097, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2463}, {"x": 0.46690264344215393, "y": 0.8295318484306335, "z": -0.14102785289287567, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2463}, {"x": 0.45428943634033203, "y": 0.8068546652793884, "z": -0.07671446353197098, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2463}, {"x": 0.4725925326347351, "y": 0.5599960684776306, "z": -0.06762652844190598, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2463}, {"x": 0.4931465983390808, "y": 0.5793395042419434, "z": -0.20358428359031677, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2463}, {"x": 0.47783687710762024, "y": 0.6781654357910156, "z": -0.07982652634382248, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2463}, {"x": 0.4904712736606598, "y": 0.5778708457946777, "z": -0.20794248580932617, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2463}, {"x": 0.47328948974609375, "y": 0.4217800498008728, "z": -0.10658619552850723, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2463}, {"x": 0.4926849901676178, "y": 0.5739695429801941, "z": -0.1811692863702774, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2463}, {"x": 0.48958832025527954, "y": 0.5584954023361206, "z": -0.18239004909992218, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2463}, {"x": 0.4910838007926941, "y": 0.6012678146362305, "z": 0.07587078446522355, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2463}, {"x": 0.49273550510406494, "y": 0.5870880484580994, "z": 0.07790359831415117, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2463}, {"x": 0.49325746297836304, "y": 0.5965805053710938, "z": 0.07713115925434977, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2463}, {"x": 0.4889247417449951, "y": 0.603050947189331, "z": 0.07509556168224663, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2463}, {"x": 0.49036335945129395, "y": 0.6012501120567322, "z": 0.07596681267023087, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2463}, {"x": 0.4919787049293518, "y": 0.5870649814605713, "z": 0.07742239744402468, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2463}, {"x": 0.4924125075340271, "y": 0.5967661738395691, "z": 0.07718300702981651, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2463}, {"x": 0.4882778823375702, "y": 0.6032323241233826, "z": 0.07506781339179724, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2463}, {"x": 0.487918496131897, "y": 0.5973991751670837, "z": 0.07669872720725834, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2463}, {"x": 0.48850181698799133, "y": 0.585421621799469, "z": 0.07584560045506805, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2463}, {"x": 0.4887464642524719, "y": 0.5934248566627502, "z": 0.0763033272814937, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2463}, {"x": 0.4871067404747009, "y": 0.5992521047592163, "z": 0.07693114853464067, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2463}, {"x": 0.48930540680885315, "y": 0.6002288460731506, "z": 0.07632282451959327, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2463}, {"x": 0.4906049370765686, "y": 0.5865682363510132, "z": 0.07669349480420351, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2463}, {"x": 0.49099603295326233, "y": 0.596051812171936, "z": 0.0767338783480227, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2463}, {"x": 0.48772668838500977, "y": 0.6020393967628479, "z": 0.0759347234852612, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2463}, {"x": 0.4873315393924713, "y": 0.5716190338134766, "z": 0.07551990624051541, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2463}, {"x": 0.4880495071411133, "y": 0.5886602401733398, "z": 0.07527193074929528, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2463}, {"x": 0.48803043365478516, "y": 0.5814631581306458, "z": 0.07555420709468308, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2463}, {"x": 0.4878586530685425, "y": 0.5949018001556396, "z": 0.07512890777434222, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2463}, {"x": 0.4885696768760681, "y": 0.5626593232154846, "z": 0.07558478946696034, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2463}, {"x": 0.4906981885433197, "y": 0.6009090542793274, "z": -0.1828139772405848, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2463}, {"x": 0.49201256036758423, "y": 0.5869237184524536, "z": -0.1805087123066187, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2463}, {"x": 0.4926650822162628, "y": 0.5960826873779297, "z": -0.18147315655369312, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2463}, {"x": 0.48872509598731995, "y": 0.6030703783035278, "z": -0.18363885127473623, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2463}, {"x": 0.4902343153953552, "y": 0.6008109450340271, "z": -0.18255793482239824, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2463}, {"x": 0.4916154742240906, "y": 0.5867514610290527, "z": -0.18090904678683728, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2463}, {"x": 0.49212419986724854, "y": 0.5962182283401489, "z": -0.18134287314023823, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2463}, {"x": 0.48828792572021484, "y": 0.6031123399734497, "z": -0.18343893915880471, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2463}, {"x": 0.48861485719680786, "y": 0.5964178442955017, "z": -0.181950866128318, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2463}, {"x": 0.4890483319759369, "y": 0.5846856236457825, "z": -0.1823865664857749, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2463}, {"x": 0.48937928676605225, "y": 0.5924364328384399, "z": -0.18222119826532435, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2463}, {"x": 0.48782700300216675, "y": 0.5984153747558594, "z": -0.18177059484878555, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2463}, {"x": 0.48951226472854614, "y": 0.5996150374412537, "z": -0.18229219203203684, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2463}, {"x": 0.4906529486179352, "y": 0.5860379338264465, "z": -0.18158390995813534, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2463}, {"x": 0.4910964369773865, "y": 0.5953190326690674, "z": -0.18182391772279516, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2463}, {"x": 0.48800164461135864, "y": 0.6017348170280457, "z": -0.1826638162310701, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2463}, {"x": 0.48672980070114136, "y": 0.5714162588119507, "z": -0.18270058117923327, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2463}, {"x": 0.48769691586494446, "y": 0.5886141061782837, "z": -0.18293517193524167, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2463}, {"x": 0.48741447925567627, "y": 0.5813596248626709, "z": -0.1826943792984821, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2463}, {"x": 0.48784685134887695, "y": 0.5947957038879395, "z": -0.18305755639448762, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2463}, {"x": 0.4884699583053589, "y": 0.562791109085083, "z": -0.1823900308015176, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2463}], [{"x": 0.475443959236145, "y": 0.7797552347183228, "z": 0.09758757799863815, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2464}, {"x": 0.47969186305999756, "y": 0.3893623948097229, "z": 0.04602140560746193, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2464}, {"x": 0.4792254567146301, "y": 0.5039064884185791, "z": 0.12516647577285767, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2464}, {"x": 0.4859714210033417, "y": 0.39044642448425293, "z": -0.0007306424085982144, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2464}, {"x": 0.48678258061408997, "y": 0.390766978263855, "z": -0.0006268339930102229, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2464}, {"x": 0.48533275723457336, "y": 0.3902147710323334, "z": -0.0006627122638747096, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2464}, {"x": 0.49462565779685974, "y": 0.8081896305084229, "z": 0.05360424518585205, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2464}, {"x": 0.46676209568977356, "y": 0.8004401922225952, "z": 0.09716197848320007, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2464}, {"x": 0.48256877064704895, "y": 0.5631321668624878, "z": 0.06743943691253662, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2464}, {"x": 0.48576635122299194, "y": 0.5760728716850281, "z": 0.040773507207632065, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2464}, {"x": 0.48402926325798035, "y": 0.6760510206222534, "z": 0.0703028067946434, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2464}, {"x": 0.48248952627182007, "y": 0.5773206949234009, "z": 0.059082332998514175, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2464}, {"x": 0.4749877154827118, "y": 0.4318781793117523, "z": 0.10926850885152817, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2464}, {"x": 0.48643743991851807, "y": 0.5697817206382751, "z": 0.05428415164351463, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2464}, {"x": 0.48380976915359497, "y": 0.5575354099273682, "z": 0.06374232470989227, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2464}, {"x": 0.4865543246269226, "y": 0.40786004066467285, "z": 0.009828362613916397, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2464}, {"x": 0.4863211512565613, "y": 0.4069859981536865, "z": -0.014510363340377808, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2464}, {"x": 0.4889061748981476, "y": 0.3995080888271332, "z": -0.011141432449221611, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2464}, {"x": 0.4609759449958801, "y": 0.7921294569969177, "z": -0.07994762063026428, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2464}, {"x": 0.47886744141578674, "y": 0.3887367248535156, "z": -0.055899880826473236, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2464}, {"x": 0.4762692153453827, "y": 0.49463483691215515, "z": -0.16391901671886444, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2464}, {"x": 0.486022025346756, "y": 0.3899567425251007, "z": -0.019211646169424057, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2464}, {"x": 0.4867989122867584, "y": 0.39047735929489136, "z": -0.019009985029697418, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2464}, {"x": 0.4851839244365692, "y": 0.3894902765750885, "z": -0.019311726093292236, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2464}, {"x": 0.4760756492614746, "y": 0.8253196477890015, "z": -0.14678430557250977, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2464}, {"x": 0.45557159185409546, "y": 0.8067961931228638, "z": -0.08219672739505768, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2464}, {"x": 0.47252118587493896, "y": 0.5601421594619751, "z": -0.06750761717557907, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2464}, {"x": 0.49235624074935913, "y": 0.5792735815048218, "z": -0.21259786188602448, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2464}, {"x": 0.4786241948604584, "y": 0.6781951189041138, "z": -0.08187512308359146, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2464}, {"x": 0.48997196555137634, "y": 0.5782527923583984, "z": -0.2160346359014511, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2464}, {"x": 0.47375059127807617, "y": 0.4237627685070038, "z": -0.1097080409526825, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2464}, {"x": 0.4921146631240845, "y": 0.5735923051834106, "z": -0.18905258178710938, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2464}, {"x": 0.48922035098075867, "y": 0.5585364699363708, "z": -0.1897430568933487, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2464}, {"x": 0.48908427357673645, "y": 0.5992535948753357, "z": 0.06310330220730975, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2464}, {"x": 0.49028557538986206, "y": 0.5831239819526672, "z": 0.06552469916641712, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2464}, {"x": 0.49035754799842834, "y": 0.5929545760154724, "z": 0.06441223301226273, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2464}, {"x": 0.4877268373966217, "y": 0.6034507751464844, "z": 0.06229211110621691, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2464}, {"x": 0.4886990785598755, "y": 0.5993607044219971, "z": 0.0628326044534333, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2464}, {"x": 0.4901858866214752, "y": 0.5822029709815979, "z": 0.0642985797021538, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2464}, {"x": 0.4899583160877228, "y": 0.5928915739059448, "z": 0.06378951963051804, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2464}, {"x": 0.48722270131111145, "y": 0.6037881970405579, "z": 0.062065201927907765, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2464}, {"x": 0.4871808588504791, "y": 0.592678964138031, "z": 0.06214843282941729, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2464}, {"x": 0.4880197048187256, "y": 0.5793362259864807, "z": 0.061599491629749537, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2464}, {"x": 0.4878130257129669, "y": 0.5873891115188599, "z": 0.06179173546843231, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2464}, {"x": 0.4864882826805115, "y": 0.596477746963501, "z": 0.062301902449689806, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2464}, {"x": 0.4877813756465912, "y": 0.5978427529335022, "z": 0.0625811000354588, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2464}, {"x": 0.4893941581249237, "y": 0.580999493598938, "z": 0.0629605624708347, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2464}, {"x": 0.4888685643672943, "y": 0.591619610786438, "z": 0.06281364004826173, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2464}, {"x": 0.4865865409374237, "y": 0.6021842360496521, "z": 0.06226366863120347, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2464}, {"x": 0.4860534965991974, "y": 0.5694680213928223, "z": 0.0647985904943198, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2464}, {"x": 0.48754724860191345, "y": 0.5855583548545837, "z": 0.0647855867864564, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2464}, {"x": 0.48691999912261963, "y": 0.5794007778167725, "z": 0.0650376791600138, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2464}, {"x": 0.487632155418396, "y": 0.5910449028015137, "z": 0.06452554959105328, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2464}, {"x": 0.4874128997325897, "y": 0.5589814782142639, "z": 0.0637423457027051, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2464}, {"x": 0.48823726177215576, "y": 0.599618136882782, "z": -0.18946915774722584, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2464}, {"x": 0.4893909692764282, "y": 0.5852469801902771, "z": -0.18749692104756832, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2464}, {"x": 0.4894407391548157, "y": 0.5942431688308716, "z": -0.18831259943544865, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2464}, {"x": 0.48697522282600403, "y": 0.6031693816184998, "z": -0.19019020593259484, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2464}, {"x": 0.4879591763019562, "y": 0.5992262959480286, "z": -0.1896440058844746, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2464}, {"x": 0.48928481340408325, "y": 0.5841734409332275, "z": -0.18854674173053354, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2464}, {"x": 0.4890981614589691, "y": 0.5937524437904358, "z": -0.18879004259360954, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2464}, {"x": 0.4866332709789276, "y": 0.6029654741287231, "z": -0.19031488930340856, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2464}, {"x": 0.48692241311073303, "y": 0.5929406881332397, "z": -0.19003159989370033, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2464}, {"x": 0.48798978328704834, "y": 0.580412745475769, "z": -0.19103419233579189, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2464}, {"x": 0.48767808079719543, "y": 0.588219165802002, "z": -0.19062710728030652, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2464}, {"x": 0.48617881536483765, "y": 0.5961927771568298, "z": -0.1896640986960847, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2464}, {"x": 0.48738792538642883, "y": 0.5973594784736633, "z": -0.1896865064445592, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2464}, {"x": 0.4888373613357544, "y": 0.5826197862625122, "z": -0.18975832449177688, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2464}, {"x": 0.4883763790130615, "y": 0.5921244025230408, "z": -0.18970297058694996, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2464}, {"x": 0.48634451627731323, "y": 0.6008239388465881, "z": -0.18978670519936713, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2464}, {"x": 0.4861011803150177, "y": 0.5706061720848083, "z": -0.18888807418989018, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2464}, {"x": 0.4874989092350006, "y": 0.5871120095252991, "z": -0.18872135924175382, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2464}, {"x": 0.48701411485671997, "y": 0.5807685256004333, "z": -0.18856986868195236, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2464}, {"x": 0.48772457242012024, "y": 0.592437744140625, "z": -0.188866920536384, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2464}, {"x": 0.48704227805137634, "y": 0.5604557991027832, "z": -0.18974303451170904, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2464}], [{"x": 0.4750188887119293, "y": 0.7805121541023254, "z": 0.08235763013362885, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2465}, {"x": 0.47978633642196655, "y": 0.3898291289806366, "z": 0.05843714252114296, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2465}, {"x": 0.4787517189979553, "y": 0.5039822459220886, "z": 0.1291637271642685, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2465}, {"x": 0.4865836799144745, "y": 0.3906049132347107, "z": 0.013211344368755817, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2465}, {"x": 0.48741307854652405, "y": 0.3908865451812744, "z": 0.013301553204655647, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2465}, {"x": 0.48582449555397034, "y": 0.39043018221855164, "z": 0.01327774953097105, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2465}, {"x": 0.4946242868900299, "y": 0.807942271232605, "z": 0.034821417182683945, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2465}, {"x": 0.4665040969848633, "y": 0.8009256720542908, "z": 0.08107606321573257, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2465}, {"x": 0.48134762048721313, "y": 0.5630428194999695, "z": 0.06811198592185974, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2465}, {"x": 0.48604854941368103, "y": 0.5743533968925476, "z": 0.05222219601273537, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2465}, {"x": 0.48373860120773315, "y": 0.6760574579238892, "z": 0.06403320282697678, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2465}, {"x": 0.4831743538379669, "y": 0.5747458338737488, "z": 0.07006817311048508, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2465}, {"x": 0.47519731521606445, "y": 0.4327293336391449, "z": 0.12142570316791534, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2465}, {"x": 0.48652130365371704, "y": 0.5687326788902283, "z": 0.06514980643987656, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2465}, {"x": 0.48387569189071655, "y": 0.5561922192573547, "z": 0.07441557943820953, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2465}, {"x": 0.4873439371585846, "y": 0.40827614068984985, "z": 0.022544628009200096, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2465}, {"x": 0.48696833848953247, "y": 0.40757155418395996, "z": -0.00623960280790925, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2465}, {"x": 0.48970121145248413, "y": 0.3996175229549408, "z": 0.002905681263655424, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2465}, {"x": 0.4626617133617401, "y": 0.7918436527252197, "z": -0.10605510324239731, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2465}, {"x": 0.47871625423431396, "y": 0.3892630934715271, "z": -0.047969650477170944, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2465}, {"x": 0.47549405694007874, "y": 0.49458450078964233, "z": -0.1520950347185135, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2465}, {"x": 0.4863094687461853, "y": 0.3901365399360657, "z": -0.00809730775654316, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2465}, {"x": 0.48720577359199524, "y": 0.39059868454933167, "z": -0.007916022092103958, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2465}, {"x": 0.48534640669822693, "y": 0.3897416293621063, "z": -0.008172017522156239, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2465}, {"x": 0.4837980270385742, "y": 0.822575569152832, "z": -0.1770259439945221, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2465}, {"x": 0.4566200077533722, "y": 0.8071774840354919, "z": -0.10970673710107803, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2465}, {"x": 0.4723801612854004, "y": 0.5602337121963501, "z": -0.0681777149438858, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2465}, {"x": 0.4910048842430115, "y": 0.5791621208190918, "z": -0.2011876106262207, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2465}, {"x": 0.47941312193870544, "y": 0.6776335835456848, "z": -0.09420522302389145, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2465}, {"x": 0.4888485372066498, "y": 0.5788121819496155, "z": -0.20450140535831451, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2465}, {"x": 0.47322896122932434, "y": 0.4241693913936615, "z": -0.09755334258079529, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2465}, {"x": 0.490705668926239, "y": 0.5735142230987549, "z": -0.17874589562416077, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2465}, {"x": 0.4881487190723419, "y": 0.5598085522651672, "z": -0.17969395220279694, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2465}, {"x": 0.49072569608688354, "y": 0.593283474445343, "z": 0.07445432908571092, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2465}, {"x": 0.49015161395072937, "y": 0.5760700702667236, "z": 0.0764762565959245, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2465}, {"x": 0.4907216429710388, "y": 0.5861466526985168, "z": 0.07539023429853842, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2465}, {"x": 0.49062231183052063, "y": 0.5986167192459106, "z": 0.07385901326779276, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2465}, {"x": 0.48905208706855774, "y": 0.5957491993904114, "z": 0.07296075718477368, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2465}, {"x": 0.48979827761650085, "y": 0.576431155204773, "z": 0.07432123844773741, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2465}, {"x": 0.48974311351776123, "y": 0.5882700681686401, "z": 0.07354680792195722, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2465}, {"x": 0.4883476495742798, "y": 0.6010516285896301, "z": 0.07250176486559212, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2465}, {"x": 0.4860016405582428, "y": 0.590985894203186, "z": 0.07036930322647095, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2465}, {"x": 0.48699313402175903, "y": 0.5759122371673584, "z": 0.07015628181397915, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2465}, {"x": 0.4865989685058594, "y": 0.5850778222084045, "z": 0.07008280418813229, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2465}, {"x": 0.48546507954597473, "y": 0.5955045223236084, "z": 0.0704588396474719, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2465}, {"x": 0.4876369535923004, "y": 0.595468282699585, "z": 0.07160472427494824, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2465}, {"x": 0.48877981305122375, "y": 0.5763089656829834, "z": 0.0721766259521246, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2465}, {"x": 0.4883536994457245, "y": 0.5883708000183105, "z": 0.0717238774523139, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2465}, {"x": 0.48698368668556213, "y": 0.6005284190177917, "z": 0.0714018982835114, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2465}, {"x": 0.4859154522418976, "y": 0.5661540031433105, "z": 0.07688893703743815, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2465}, {"x": 0.4879850149154663, "y": 0.5822007060050964, "z": 0.07695590890944004, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2465}, {"x": 0.4872789978981018, "y": 0.5753603577613831, "z": 0.07731610396876931, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2465}, {"x": 0.4884366989135742, "y": 0.5881471037864685, "z": 0.07645806414075196, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2465}, {"x": 0.48509132862091064, "y": 0.555418074131012, "z": 0.07441559524681374, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2465}, {"x": 0.48958277702331543, "y": 0.595018208026886, "z": -0.18135984719265252, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2465}, {"x": 0.49031296372413635, "y": 0.5772051811218262, "z": -0.17883869668003172, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2465}, {"x": 0.4901832044124603, "y": 0.5877767205238342, "z": -0.18024623929522932, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2465}, {"x": 0.48900970816612244, "y": 0.6003827452659607, "z": -0.18201433192007244, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2465}, {"x": 0.48863089084625244, "y": 0.5964720845222473, "z": -0.18218311970122159, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2465}, {"x": 0.489935964345932, "y": 0.5774102210998535, "z": -0.1804625663207844, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2465}, {"x": 0.48955878615379333, "y": 0.5891648530960083, "z": -0.181533437455073, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2465}, {"x": 0.48776882886886597, "y": 0.601701557636261, "z": -0.1826094405259937, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2465}, {"x": 0.4859192371368408, "y": 0.5917326807975769, "z": -0.1836422593332827, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2465}, {"x": 0.4868658185005188, "y": 0.5765783190727234, "z": -0.1837559575214982, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2465}, {"x": 0.4865238666534424, "y": 0.5857462882995605, "z": -0.1839553862810135, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2465}, {"x": 0.4852885901927948, "y": 0.5961044430732727, "z": -0.18343058740720153, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2465}, {"x": 0.48758018016815186, "y": 0.5960591435432434, "z": -0.18286902084946632, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2465}, {"x": 0.4887954294681549, "y": 0.5771560668945312, "z": -0.18212356232106686, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2465}, {"x": 0.48830512166023254, "y": 0.589023232460022, "z": -0.18279589479789138, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2465}, {"x": 0.4868805706501007, "y": 0.6008983254432678, "z": -0.1829218501225114, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2465}, {"x": 0.48596274852752686, "y": 0.5661388635635376, "z": -0.17827412812039256, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2465}, {"x": 0.4879865348339081, "y": 0.5813105702400208, "z": -0.17874018184375018, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2465}, {"x": 0.48722144961357117, "y": 0.5749150514602661, "z": -0.17822030279785395, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2465}, {"x": 0.4883634150028229, "y": 0.586820125579834, "z": -0.1793418739689514, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2465}, {"x": 0.48539823293685913, "y": 0.5565735101699829, "z": -0.1796939312358603, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2465}], [{"x": 0.475067675113678, "y": 0.7813761234283447, "z": 0.05417255312204361, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2466}, {"x": 0.4811209440231323, "y": 0.3897091746330261, "z": 0.04703063890337944, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2466}, {"x": 0.4792904853820801, "y": 0.5043531060218811, "z": 0.1295672357082367, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2466}, {"x": 0.48689332604408264, "y": 0.38995248079299927, "z": -0.017391007393598557, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2466}, {"x": 0.487430602312088, "y": 0.39024782180786133, "z": -0.017304886132478714, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2466}, {"x": 0.4864433705806732, "y": 0.3897251784801483, "z": -0.01730431243777275, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2466}, {"x": 0.4948316514492035, "y": 0.8078793287277222, "z": -0.0003706392308231443, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2466}, {"x": 0.46739837527275085, "y": 0.8014249801635742, "z": 0.05165127292275429, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2466}, {"x": 0.4813719093799591, "y": 0.5645448565483093, "z": 0.06724034994840622, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2466}, {"x": 0.48699501156806946, "y": 0.5703134536743164, "z": 0.051755521446466446, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2466}, {"x": 0.4836246073246002, "y": 0.6761369705200195, "z": 0.044645823538303375, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2466}, {"x": 0.48464733362197876, "y": 0.5698837637901306, "z": 0.06980779021978378, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2466}, {"x": 0.4769552946090698, "y": 0.43603333830833435, "z": 0.12001091986894608, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2466}, {"x": 0.48748210072517395, "y": 0.5634728670120239, "z": 0.06559690833091736, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2466}, {"x": 0.48486343026161194, "y": 0.5516504049301147, "z": 0.07485275715589523, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2466}, {"x": 0.48799142241477966, "y": 0.40792059898376465, "z": -0.0054456088691949844, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2466}, {"x": 0.4868926703929901, "y": 0.40721407532691956, "z": -0.032267164438962936, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2466}, {"x": 0.48976680636405945, "y": 0.398943692445755, "z": -0.03154604882001877, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2466}, {"x": 0.4656737446784973, "y": 0.7911086082458496, "z": -0.13838830590248108, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2466}, {"x": 0.4786049723625183, "y": 0.3892313241958618, "z": -0.04675250127911568, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2466}, {"x": 0.4728763699531555, "y": 0.49527978897094727, "z": -0.14803051948547363, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2466}, {"x": 0.48569101095199585, "y": 0.38994091749191284, "z": -0.03713534027338028, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2466}, {"x": 0.4866512417793274, "y": 0.39026984572410583, "z": -0.03693363815546036, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2466}, {"x": 0.48496493697166443, "y": 0.38965463638305664, "z": -0.03721698746085167, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2466}, {"x": 0.48315244913101196, "y": 0.8198242783546448, "z": -0.21857468783855438, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2466}, {"x": 0.4593236744403839, "y": 0.8080191016197205, "z": -0.1440795212984085, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2466}, {"x": 0.47193443775177, "y": 0.561377227306366, "z": -0.06730794161558151, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2466}, {"x": 0.48869046568870544, "y": 0.5779270529747009, "z": -0.20346026122570038, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2466}, {"x": 0.4794374406337738, "y": 0.6774581074714661, "z": -0.10864470154047012, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2466}, {"x": 0.4857935905456543, "y": 0.5781073570251465, "z": -0.20610247552394867, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2466}, {"x": 0.47270211577415466, "y": 0.42600467801094055, "z": -0.09380282461643219, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2466}, {"x": 0.48845189809799194, "y": 0.5722900629043579, "z": -0.1796969771385193, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2466}, {"x": 0.4850636422634125, "y": 0.5591608881950378, "z": -0.18030652403831482, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2466}, {"x": 0.49103158712387085, "y": 0.5898343324661255, "z": 0.07450949097983539, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2466}, {"x": 0.4879641830921173, "y": 0.5750697255134583, "z": 0.0764126805588603, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2466}, {"x": 0.48975256085395813, "y": 0.5838587284088135, "z": 0.07548985036555678, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2466}, {"x": 0.49214550852775574, "y": 0.5942241549491882, "z": 0.07381974020972848, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2466}, {"x": 0.4886767566204071, "y": 0.592851459980011, "z": 0.07332996663171798, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2466}, {"x": 0.4879400432109833, "y": 0.5752213001251221, "z": 0.07501451893767808, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2466}, {"x": 0.4888032376766205, "y": 0.5859940052032471, "z": 0.07418280659476295, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2466}, {"x": 0.48835837841033936, "y": 0.597947359085083, "z": 0.07269906112924218, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2466}, {"x": 0.4843595325946808, "y": 0.5911463499069214, "z": 0.07142986101098359, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2466}, {"x": 0.4849544167518616, "y": 0.5758760571479797, "z": 0.07198883802630007, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2466}, {"x": 0.48479709029197693, "y": 0.5849767327308655, "z": 0.07154636387713253, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2466}, {"x": 0.48379039764404297, "y": 0.5959885716438293, "z": 0.07129525044001639, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2466}, {"x": 0.4867972433567047, "y": 0.5941038131713867, "z": 0.07204314670525491, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2466}, {"x": 0.4869191348552704, "y": 0.5754084587097168, "z": 0.07350043463520706, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2466}, {"x": 0.48728519678115845, "y": 0.5867026448249817, "z": 0.07275440939702094, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2466}, {"x": 0.4861312508583069, "y": 0.5997200608253479, "z": 0.07152132503688335, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2466}, {"x": 0.48147979378700256, "y": 0.5642510056495667, "z": 0.07582314015598968, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2466}, {"x": 0.4835027754306793, "y": 0.5773545503616333, "z": 0.07558922725729644, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2466}, {"x": 0.48277223110198975, "y": 0.5720462203025818, "z": 0.07598340499680489, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2466}, {"x": 0.48383599519729614, "y": 0.5819944143295288, "z": 0.07515678784693591, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2466}, {"x": 0.4821464419364929, "y": 0.5553743243217468, "z": 0.07485277149201064, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2466}, {"x": 0.49084532260894775, "y": 0.5907357931137085, "z": -0.18126000766642392, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2466}, {"x": 0.48821938037872314, "y": 0.5753655433654785, "z": -0.17902514291927218, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2466}, {"x": 0.4897887408733368, "y": 0.5844084620475769, "z": -0.1801543402398238, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2466}, {"x": 0.4918166697025299, "y": 0.5953398942947388, "z": -0.1819965378381312, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2466}, {"x": 0.48845618963241577, "y": 0.5935613512992859, "z": -0.18226492893882096, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2466}, {"x": 0.4880964159965515, "y": 0.5753622055053711, "z": -0.18028992640211072, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2466}, {"x": 0.4887272119522095, "y": 0.5863685011863708, "z": -0.18131999904289842, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2466}, {"x": 0.4880673885345459, "y": 0.5988697409629822, "z": -0.18291136249899864, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2466}, {"x": 0.4844512641429901, "y": 0.5909303426742554, "z": -0.18383593880571425, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2466}, {"x": 0.48491328954696655, "y": 0.5754608511924744, "z": -0.18309561582282186, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2466}, {"x": 0.4848552644252777, "y": 0.5846229195594788, "z": -0.18367560277692974, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2466}, {"x": 0.4839009642601013, "y": 0.595753014087677, "z": -0.18395158182829618, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2466}, {"x": 0.48659777641296387, "y": 0.5942067503929138, "z": -0.18333184532821178, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2466}, {"x": 0.4869351387023926, "y": 0.5753628611564636, "z": -0.1816860381513834, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2466}, {"x": 0.4871805012226105, "y": 0.5866230726242065, "z": -0.18260885728523135, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2466}, {"x": 0.48587751388549805, "y": 0.5998905897140503, "z": -0.18379145278595388, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2466}, {"x": 0.48168736696243286, "y": 0.5653385519981384, "z": -0.17956553731346503, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2466}, {"x": 0.4837301969528198, "y": 0.5797667503356934, "z": -0.17975650617154315, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2466}, {"x": 0.48304441571235657, "y": 0.5737209916114807, "z": -0.17942131799645722, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2466}, {"x": 0.4841667413711548, "y": 0.5849883556365967, "z": -0.18011045971070416, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2466}, {"x": 0.4821874797344208, "y": 0.5557123422622681, "z": -0.18030650740121956, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2466}], [{"x": 0.4752963185310364, "y": 0.7816017866134644, "z": 0.06133606284856796, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2467}, {"x": 0.48123112320899963, "y": 0.389618456363678, "z": 0.023412557318806648, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2467}, {"x": 0.4786120057106018, "y": 0.503242552280426, "z": 0.13105244934558868, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2467}, {"x": 0.48694759607315063, "y": 0.38921111822128296, "z": -0.04284881800413132, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2467}, {"x": 0.4874340295791626, "y": 0.38968226313591003, "z": -0.042758163064718246, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2467}, {"x": 0.4865395128726959, "y": 0.3887915313243866, "z": -0.042762868106365204, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2467}, {"x": 0.4949581027030945, "y": 0.8076406121253967, "z": 0.006665046326816082, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2467}, {"x": 0.4692825675010681, "y": 0.8017104268074036, "z": 0.059321947395801544, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2467}, {"x": 0.4815922677516937, "y": 0.5652690529823303, "z": 0.06659550219774246, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2467}, {"x": 0.4881061911582947, "y": 0.5695032477378845, "z": 0.056345898658037186, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2467}, {"x": 0.4832608103752136, "y": 0.6761564016342163, "z": 0.046047136187553406, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2467}, {"x": 0.48544782400131226, "y": 0.5691775679588318, "z": 0.07473301142454147, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2467}, {"x": 0.47884026169776917, "y": 0.43789973855018616, "z": 0.10293430835008621, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2467}, {"x": 0.4884820878505707, "y": 0.562440037727356, "z": 0.06959106028079987, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2467}, {"x": 0.4867161214351654, "y": 0.5461440682411194, "z": 0.0786547139286995, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2467}, {"x": 0.4886331260204315, "y": 0.40672567486763, "z": -0.029963256791234016, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2467}, {"x": 0.48725998401641846, "y": 0.40697434544563293, "z": -0.05586598068475723, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2467}, {"x": 0.490140438079834, "y": 0.3981996178627014, "z": -0.056741293519735336, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2467}, {"x": 0.4690774977207184, "y": 0.7897065281867981, "z": -0.1323104053735733, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2467}, {"x": 0.4782964885234833, "y": 0.38994529843330383, "z": -0.06357616931200027, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2467}, {"x": 0.4671543836593628, "y": 0.4952162504196167, "z": -0.15955719351768494, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2467}, {"x": 0.48526081442832947, "y": 0.38981080055236816, "z": -0.0618928000330925, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2467}, {"x": 0.4863778054714203, "y": 0.3900170922279358, "z": -0.06169290468096733, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2467}, {"x": 0.48451492190361023, "y": 0.3895156979560852, "z": -0.06198140233755112, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2467}, {"x": 0.4847894310951233, "y": 0.8183054327964783, "z": -0.21393348276615143, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2467}, {"x": 0.4632154703140259, "y": 0.8080012202262878, "z": -0.13772179186344147, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2467}, {"x": 0.47170618176460266, "y": 0.5627601742744446, "z": -0.06667307019233704, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2467}, {"x": 0.48657771944999695, "y": 0.5779862999916077, "z": -0.22875498235225677, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2467}, {"x": 0.4793994128704071, "y": 0.6773360371589661, "z": -0.10612063854932785, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2467}, {"x": 0.4827871322631836, "y": 0.5783107280731201, "z": -0.23172901570796967, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2467}, {"x": 0.4724859297275543, "y": 0.4277742803096771, "z": -0.10397912561893463, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2467}, {"x": 0.4864862859249115, "y": 0.5720077753067017, "z": -0.20341219007968903, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2467}, {"x": 0.482313334941864, "y": 0.5590100884437561, "z": -0.2038692981004715, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2467}, {"x": 0.48774561285972595, "y": 0.5888206958770752, "z": 0.07708078599534929, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2467}, {"x": 0.48716476559638977, "y": 0.5717159509658813, "z": 0.07952481374377385, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2467}, {"x": 0.48789259791374207, "y": 0.5817568898200989, "z": 0.07822029461385682, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2467}, {"x": 0.4873333275318146, "y": 0.5942673087120056, "z": 0.07638060487806797, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2467}, {"x": 0.48958098888397217, "y": 0.5883522033691406, "z": 0.07608038163743913, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2467}, {"x": 0.4865971505641937, "y": 0.5723250508308411, "z": 0.07813310605706647, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2467}, {"x": 0.488554447889328, "y": 0.5819990038871765, "z": 0.07701494614593685, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2467}, {"x": 0.49038583040237427, "y": 0.5932834148406982, "z": 0.0754339846316725, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2467}, {"x": 0.48346877098083496, "y": 0.5875884294509888, "z": 0.07491962891072035, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2467}, {"x": 0.482668936252594, "y": 0.5736472606658936, "z": 0.07522244052961469, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2467}, {"x": 0.48330381512641907, "y": 0.5821486711502075, "z": 0.07483723713085055, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2467}, {"x": 0.4834442138671875, "y": 0.5920704007148743, "z": 0.07497377903200686, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2467}, {"x": 0.4877179265022278, "y": 0.5893319845199585, "z": 0.07543996558524668, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2467}, {"x": 0.48502907156944275, "y": 0.5728939175605774, "z": 0.07667117728851736, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2467}, {"x": 0.4867689907550812, "y": 0.5828321576118469, "z": 0.07582948729395866, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2467}, {"x": 0.48826372623443604, "y": 0.5944867730140686, "z": 0.07517130277119577, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2467}, {"x": 0.4829990565776825, "y": 0.5610775351524353, "z": 0.07968080521095544, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2467}, {"x": 0.48603305220603943, "y": 0.5753777623176575, "z": 0.07901853532530367, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2467}, {"x": 0.485152930021286, "y": 0.569129228591919, "z": 0.07959561550524086, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2467}, {"x": 0.4864371120929718, "y": 0.5801433324813843, "z": 0.07839822955429554, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2467}, {"x": 0.48026859760284424, "y": 0.5538239479064941, "z": 0.07865473685731672, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2467}], [{"x": 0.47651442885398865, "y": 0.7803930640220642, "z": 0.06391354650259018, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2468}, {"x": 0.48315057158470154, "y": 0.3891243636608124, "z": 0.0063259475864470005, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2468}, {"x": 0.4780726730823517, "y": 0.5032854080200195, "z": 0.1404622495174408, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2468}, {"x": 0.48696380853652954, "y": 0.38687053322792053, "z": -0.0760110542178154, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2468}, {"x": 0.48732081055641174, "y": 0.38729721307754517, "z": -0.0759211853146553, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2468}, {"x": 0.4870119094848633, "y": 0.3864078223705292, "z": -0.07591722160577774, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2468}, {"x": 0.495202898979187, "y": 0.8076490759849548, "z": 0.01384762953966856, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2468}, {"x": 0.4719609320163727, "y": 0.7988492846488953, "z": 0.06312913447618484, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2468}, {"x": 0.48351094126701355, "y": 0.5673791170120239, "z": 0.0660342127084732, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2468}, {"x": 0.4885796010494232, "y": 0.5695599317550659, "z": 0.08020209521055222, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2468}, {"x": 0.4835653007030487, "y": 0.6761412024497986, "z": 0.03858713060617447, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2468}, {"x": 0.4863837659358978, "y": 0.5672256946563721, "z": 0.10059142112731934, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2468}, {"x": 0.48317280411720276, "y": 0.43935656547546387, "z": 0.09857248514890671, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2468}, {"x": 0.4889044165611267, "y": 0.562431275844574, "z": 0.0923866406083107, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2468}, {"x": 0.4868827164173126, "y": 0.547403872013092, "z": 0.1014319509267807, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2468}, {"x": 0.48896169662475586, "y": 0.4039209187030792, "z": -0.0599275566637516, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2468}, {"x": 0.48688793182373047, "y": 0.4049557149410248, "z": -0.08277614414691925, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2468}, {"x": 0.4897559881210327, "y": 0.3959212303161621, "z": -0.09261058270931244, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2468}, {"x": 0.47133275866508484, "y": 0.7886815667152405, "z": -0.1712627112865448, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2468}, {"x": 0.47737106680870056, "y": 0.39054247736930847, "z": -0.06999681890010834, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2468}, {"x": 0.4622550904750824, "y": 0.495206356048584, "z": -0.15426866710186005, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2468}, {"x": 0.48340168595314026, "y": 0.3882830739021301, "z": -0.09274282306432724, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2468}, {"x": 0.48498639464378357, "y": 0.3878682851791382, "z": -0.09251908957958221, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2468}, {"x": 0.481837660074234, "y": 0.38882386684417725, "z": -0.09284999221563339, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2468}, {"x": 0.48184940218925476, "y": 0.81928551197052, "z": -0.25401076674461365, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2468}, {"x": 0.46620479226112366, "y": 0.8079423904418945, "z": -0.17767447233200073, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2468}, {"x": 0.47113195061683655, "y": 0.5639806985855103, "z": -0.06610677391290665, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2468}, {"x": 0.48453572392463684, "y": 0.5774407386779785, "z": -0.22583289444446564, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2468}, {"x": 0.47911038994789124, "y": 0.6766366362571716, "z": -0.1311154067516327, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2468}, {"x": 0.48030683398246765, "y": 0.5776882767677307, "z": -0.22835469245910645, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2468}, {"x": 0.4722018539905548, "y": 0.4282546043395996, "z": -0.09974350780248642, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2468}, {"x": 0.4847624599933624, "y": 0.5714712142944336, "z": -0.20102491974830627, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2468}, {"x": 0.4802965521812439, "y": 0.5582921504974365, "z": -0.20149007439613342, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2468}, {"x": 0.4879031777381897, "y": 0.5861169099807739, "z": 0.09862005687318742, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2468}, {"x": 0.48417043685913086, "y": 0.5721224546432495, "z": 0.10052831773646176, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2468}, {"x": 0.486490398645401, "y": 0.5808277726173401, "z": 0.09937633736990392, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2468}, {"x": 0.48911499977111816, "y": 0.5903128385543823, "z": 0.09816471231169999, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2468}, {"x": 0.4816775619983673, "y": 0.5883591771125793, "z": 0.09790250263176858, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2468}, {"x": 0.4821765422821045, "y": 0.5720065236091614, "z": 0.09984426270239055, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2468}, {"x": 0.48210644721984863, "y": 0.5821501612663269, "z": 0.09866139036603272, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2468}, {"x": 0.4813644289970398, "y": 0.5929214358329773, "z": 0.0974844815209508, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2468}, {"x": 0.4780828058719635, "y": 0.5695387721061707, "z": 0.09828114160336554, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2468}, {"x": 0.4778980016708374, "y": 0.5680270195007324, "z": 0.09841108182445168, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2468}, {"x": 0.4777473509311676, "y": 0.5712826251983643, "z": 0.09785543591715395, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2468}, {"x": 0.47825267910957336, "y": 0.5674480199813843, "z": 0.0987833277322352, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2468}, {"x": 0.4795643389225006, "y": 0.5722611546516418, "z": 0.09753257711417973, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2468}, {"x": 0.48001205921173096, "y": 0.570311427116394, "z": 0.09913019882515073, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2468}, {"x": 0.47939586639404297, "y": 0.5747603178024292, "z": 0.0978004103526473, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2468}, {"x": 0.4798171818256378, "y": 0.5696386694908142, "z": 0.09772542025893927, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2468}, {"x": 0.48065030574798584, "y": 0.5595344305038452, "z": 0.10123158142960165, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2468}, {"x": 0.482466459274292, "y": 0.5729504227638245, "z": 0.10035017714835703, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2468}, {"x": 0.48244330286979675, "y": 0.5670551657676697, "z": 0.10088136926060542, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2468}, {"x": 0.48216068744659424, "y": 0.5766313672065735, "z": 0.09988282457925379, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2468}, {"x": 0.47772663831710815, "y": 0.5531474351882935, "z": 0.10143198844583878, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2468}], [{"x": 0.4768200218677521, "y": 0.7803890109062195, "z": 0.03775830939412117, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2469}, {"x": 0.48415547609329224, "y": 0.3890403211116791, "z": 0.008296878077089787, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2469}, {"x": 0.47818461060523987, "y": 0.5048432946205139, "z": 0.15304945409297943, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2469}, {"x": 0.4869639277458191, "y": 0.3858102262020111, "z": -0.07595708966255188, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2469}, {"x": 0.48724105954170227, "y": 0.3863005042076111, "z": -0.07587926089763641, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2469}, {"x": 0.4874003827571869, "y": 0.3853299915790558, "z": -0.07586494088172913, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2469}, {"x": 0.49521586298942566, "y": 0.807647705078125, "z": -0.013809642754495144, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2469}, {"x": 0.4722272455692291, "y": 0.7991893887519836, "z": 0.036116499453783035, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2469}, {"x": 0.48539578914642334, "y": 0.5689942836761475, "z": 0.0644136592745781, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2469}, {"x": 0.4884338974952698, "y": 0.5683740973472595, "z": 0.10483722388744354, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2469}, {"x": 0.483574241399765, "y": 0.6762163043022156, "z": 0.02077546902000904, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2469}, {"x": 0.4865264296531677, "y": 0.5648109316825867, "z": 0.12490195780992508, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2469}, {"x": 0.4849138855934143, "y": 0.4430619478225708, "z": 0.09994892030954361, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2469}, {"x": 0.4887191355228424, "y": 0.5627683997154236, "z": 0.11542282998561859, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2469}, {"x": 0.4868123233318329, "y": 0.5473200678825378, "z": 0.12394008040428162, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2469}, {"x": 0.4890960156917572, "y": 0.40324893593788147, "z": -0.059777844697237015, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2469}, {"x": 0.48637402057647705, "y": 0.4049310088157654, "z": -0.08212807029485703, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2469}, {"x": 0.4895027279853821, "y": 0.39520102739334106, "z": -0.09310607612133026, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2469}, {"x": 0.47345322370529175, "y": 0.78809654712677, "z": -0.20868618786334991, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2469}, {"x": 0.47588053345680237, "y": 0.3925229609012604, "z": -0.06627334654331207, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2469}, {"x": 0.4581354856491089, "y": 0.4951629638671875, "z": -0.14298410713672638, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2469}, {"x": 0.48149868845939636, "y": 0.38818100094795227, "z": -0.09228654205799103, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2469}, {"x": 0.48350846767425537, "y": 0.38758355379104614, "z": -0.09205801784992218, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2469}, {"x": 0.4796189069747925, "y": 0.3887130618095398, "z": -0.09238888323307037, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2469}, {"x": 0.48521339893341064, "y": 0.8174128532409668, "z": -0.2928961217403412, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2469}, {"x": 0.46880868077278137, "y": 0.8080148100852966, "z": -0.21580758690834045, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2469}, {"x": 0.4707842469215393, "y": 0.5648196935653687, "z": -0.06448426842689514, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2469}, {"x": 0.48162779211997986, "y": 0.5770135521888733, "z": -0.2177744358778, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2469}, {"x": 0.4788406491279602, "y": 0.6762091517448425, "z": -0.1603851020336151, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2469}, {"x": 0.4762859344482422, "y": 0.5773435831069946, "z": -0.22093640267848969, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2469}, {"x": 0.4719664454460144, "y": 0.4298150837421417, "z": -0.0941714197397232, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2469}, {"x": 0.48195043206214905, "y": 0.5710975527763367, "z": -0.19356343150138855, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2469}, {"x": 0.47666844725608826, "y": 0.5579479932785034, "z": -0.19405943155288696, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2469}, {"x": 0.4858134686946869, "y": 0.5844870209693909, "z": 0.12154030846431851, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2469}, {"x": 0.4824545383453369, "y": 0.5706625580787659, "z": 0.12387802301236661, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2469}, {"x": 0.48455458879470825, "y": 0.5789615511894226, "z": 0.12261581572238356, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2469}, {"x": 0.48679935932159424, "y": 0.5889151692390442, "z": 0.12077451520599425, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2469}, {"x": 0.48226749897003174, "y": 0.5898013114929199, "z": 0.12083949404768646, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2469}, {"x": 0.4807708263397217, "y": 0.5728028416633606, "z": 0.12301456689601764, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2469}, {"x": 0.48190876841545105, "y": 0.5830478072166443, "z": 0.12184830103069544, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2469}, {"x": 0.48242518305778503, "y": 0.595243513584137, "z": 0.12017591577023268, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2469}, {"x": 0.47716447710990906, "y": 0.5851929783821106, "z": 0.12005103565752506, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2469}, {"x": 0.47609156370162964, "y": 0.5730736255645752, "z": 0.12088115001097322, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2469}, {"x": 0.4768657982349396, "y": 0.5804262161254883, "z": 0.12012793682515621, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2469}, {"x": 0.47723570466041565, "y": 0.589239776134491, "z": 0.12003617244772613, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2469}, {"x": 0.4797409176826477, "y": 0.5894976854324341, "z": 0.12026589526794851, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2469}, {"x": 0.47862353920936584, "y": 0.5735233426094055, "z": 0.12198668951168656, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2469}, {"x": 0.4796205163002014, "y": 0.5830045342445374, "z": 0.12090822239406407, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2469}, {"x": 0.4797213077545166, "y": 0.5948061347007751, "z": 0.11985728610306978, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2469}, {"x": 0.4782010614871979, "y": 0.5572298169136047, "z": 0.12359565318911336, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2469}, {"x": 0.4808933734893799, "y": 0.5691535472869873, "z": 0.1225315616466105, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2469}, {"x": 0.4804598391056061, "y": 0.5633422136306763, "z": 0.12314390460960567, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2469}, {"x": 0.4806710183620453, "y": 0.5739917755126953, "z": 0.1219292578753084, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2469}, {"x": 0.47464361786842346, "y": 0.5533725023269653, "z": 0.12394010067643002, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2469}, {"x": 0.48199164867401123, "y": 0.5907476544380188, "z": -0.19575675309170038, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2469}, {"x": 0.48077431321144104, "y": 0.5726600289344788, "z": -0.1933113725972362, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2469}, {"x": 0.4817398190498352, "y": 0.5834387540817261, "z": -0.1945665716775693, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2469}, {"x": 0.48218101263046265, "y": 0.5964780449867249, "z": -0.19659205223433673, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2469}, {"x": 0.4815065860748291, "y": 0.5936199426651001, "z": -0.19661619001999497, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2469}, {"x": 0.4804443418979645, "y": 0.5735942721366882, "z": -0.19431682996219024, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2469}, {"x": 0.48132771253585815, "y": 0.5857300162315369, "z": -0.19545171898789704, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2469}, {"x": 0.48160311579704285, "y": 0.5998276472091675, "z": -0.19743442232720554, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2469}, {"x": 0.4796421229839325, "y": 0.5866637229919434, "z": -0.1977022117935121, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2469}, {"x": 0.4782196283340454, "y": 0.5725151300430298, "z": -0.1967752822674811, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2469}, {"x": 0.47905072569847107, "y": 0.5808807015419006, "z": -0.19749674014747143, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2469}, {"x": 0.4800660312175751, "y": 0.5915541052818298, "z": -0.19785432354547083, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2469}, {"x": 0.48049670457839966, "y": 0.5924761891365051, "z": -0.19726792280562222, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2469}, {"x": 0.47953012585639954, "y": 0.573560357093811, "z": -0.19551342632621527, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2469}, {"x": 0.4802943766117096, "y": 0.5849802494049072, "z": -0.19651806657202542, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2469}, {"x": 0.4805857241153717, "y": 0.5982319116592407, "z": -0.19779246393591166, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2469}, {"x": 0.47466468811035156, "y": 0.5592972040176392, "z": -0.19403081114796805, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2469}, {"x": 0.47818228602409363, "y": 0.5733256340026855, "z": -0.19458126137033105, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2469}, {"x": 0.47677794098854065, "y": 0.5671788454055786, "z": -0.194145829496847, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2469}, {"x": 0.47881245613098145, "y": 0.5780104398727417, "z": -0.19507774792145938, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2469}, {"x": 0.47360050678253174, "y": 0.5514569282531738, "z": -0.19405940820212209, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2469}], [{"x": 0.47702842950820923, "y": 0.781262218952179, "z": 0.006848153192549944, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2470}, {"x": 0.48493391275405884, "y": 0.3888324797153473, "z": 0.001083961222320795, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2470}, {"x": 0.47834497690200806, "y": 0.507359504699707, "z": 0.1501908004283905, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2470}, {"x": 0.48680198192596436, "y": 0.3846355080604553, "z": -0.08264831453561783, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2470}, {"x": 0.48619017004966736, "y": 0.3851141333580017, "z": -0.08256778120994568, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2470}, {"x": 0.48732250928878784, "y": 0.3842483162879944, "z": -0.08256221562623978, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2470}, {"x": 0.4952603578567505, "y": 0.8082605004310608, "z": -0.049593571573495865, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2470}, {"x": 0.4722842574119568, "y": 0.800506055355072, "z": 0.0034438506700098515, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2470}, {"x": 0.48648256063461304, "y": 0.5690819621086121, "z": 0.06183558329939842, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2470}, {"x": 0.48834365606307983, "y": 0.5699427127838135, "z": 0.09423680603504181, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2470}, {"x": 0.4836021363735199, "y": 0.6762465834617615, "z": 0.006561990361660719, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2470}, {"x": 0.48661404848098755, "y": 0.5649594664573669, "z": 0.11330331116914749, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2470}, {"x": 0.4857173562049866, "y": 0.44399261474609375, "z": 0.09448004513978958, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2470}, {"x": 0.4885909855365753, "y": 0.5640581250190735, "z": 0.1052556186914444, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2470}, {"x": 0.48676103353500366, "y": 0.547591507434845, "z": 0.11354289948940277, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2470}, {"x": 0.48894864320755005, "y": 0.40241315960884094, "z": -0.06650951504707336, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2470}, {"x": 0.48394575715065, "y": 0.40465474128723145, "z": -0.08747018873691559, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2470}, {"x": 0.48693546652793884, "y": 0.3940650224685669, "z": -0.09951078146696091, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2470}, {"x": 0.4740752577781677, "y": 0.7878307104110718, "z": -0.1859760582447052, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2470}, {"x": 0.473056823015213, "y": 0.39234215021133423, "z": -0.0685281753540039, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2470}, {"x": 0.45345354080200195, "y": 0.4952825903892517, "z": -0.13692308962345123, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2470}, {"x": 0.4792473018169403, "y": 0.3878207802772522, "z": -0.09798170626163483, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2470}, {"x": 0.48125332593917847, "y": 0.3869170546531677, "z": -0.09775111079216003, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2470}, {"x": 0.4769724905490875, "y": 0.38865727186203003, "z": -0.09808395802974701, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2470}, {"x": 0.4847365915775299, "y": 0.8173868060112, "z": -0.2654789984226227, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2470}, {"x": 0.469794899225235, "y": 0.8079569339752197, "z": -0.19202308356761932, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2470}, {"x": 0.46966996788978577, "y": 0.5649555921554565, "z": -0.06193733587861061, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2470}, {"x": 0.480195552110672, "y": 0.57659512758255, "z": -0.20719821751117706, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2470}, {"x": 0.47846364974975586, "y": 0.6748984456062317, "z": -0.14820154011249542, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2470}, {"x": 0.4745161235332489, "y": 0.5770761966705322, "z": -0.20909911394119263, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2470}, {"x": 0.47102415561676025, "y": 0.43070900440216064, "z": -0.0931105688214302, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2470}, {"x": 0.4804946780204773, "y": 0.5707519054412842, "z": -0.18457069993019104, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2470}, {"x": 0.4747738838195801, "y": 0.5576804280281067, "z": -0.18535417318344116, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2470}, {"x": 0.4818653464317322, "y": 0.5820736885070801, "z": 0.11002415441907942, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2470}, {"x": 0.4776317775249481, "y": 0.569953978061676, "z": 0.11268386745359749, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2470}, {"x": 0.48039013147354126, "y": 0.577472448348999, "z": 0.1112879253923893, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2470}, {"x": 0.48294520378112793, "y": 0.5859755873680115, "z": 0.10908576427027583, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2470}, {"x": 0.48041510581970215, "y": 0.5861095190048218, "z": 0.10987328481860459, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2470}, {"x": 0.4772489666938782, "y": 0.5720000863075256, "z": 0.11250093602575362, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2470}, {"x": 0.4794166088104248, "y": 0.580701470375061, "z": 0.11111375386826694, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2470}, {"x": 0.481048047542572, "y": 0.590614914894104, "z": 0.10903158131986856, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2470}, {"x": 0.4769412577152252, "y": 0.5830691456794739, "z": 0.11019683303311467, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2470}, {"x": 0.4751691222190857, "y": 0.5721666216850281, "z": 0.11117818858474493, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2470}, {"x": 0.47638940811157227, "y": 0.578880786895752, "z": 0.1103275294881314, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2470}, {"x": 0.47724029421806335, "y": 0.5866490602493286, "z": 0.1101344923954457, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2470}, {"x": 0.478751540184021, "y": 0.585892915725708, "z": 0.11000101105310023, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2470}, {"x": 0.4764057397842407, "y": 0.5726609826087952, "z": 0.11196891160216182, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2470}, {"x": 0.478148877620697, "y": 0.580862820148468, "z": 0.11068984516896307, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2470}, {"x": 0.47906145453453064, "y": 0.5900126695632935, "z": 0.109581985976547, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2470}, {"x": 0.47113490104675293, "y": 0.5559415221214294, "z": 0.11154439439997077, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2470}, {"x": 0.4734152853488922, "y": 0.5658266544342041, "z": 0.10951616335660219, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2470}, {"x": 0.4725792407989502, "y": 0.5610087513923645, "z": 0.11050706100650132, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2470}, {"x": 0.4738401174545288, "y": 0.5693656802177429, "z": 0.10860043531283736, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2470}, {"x": 0.47027233242988586, "y": 0.5530239939689636, "z": 0.11354291927978011, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2470}, {"x": 0.483598917722702, "y": 0.5830172300338745, "z": -0.18740128865465522, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2470}, {"x": 0.47958457469940186, "y": 0.5698865056037903, "z": -0.18500525489798747, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2470}, {"x": 0.48221996426582336, "y": 0.5779719352722168, "z": -0.18620816915063187, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2470}, {"x": 0.48468735814094543, "y": 0.5870850682258606, "z": -0.1882879533804953, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2470}, {"x": 0.480831116437912, "y": 0.5862659811973572, "z": -0.18777176085859537, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2470}, {"x": 0.4779943823814392, "y": 0.5718898773193359, "z": -0.1858385823725257, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2470}, {"x": 0.4800775945186615, "y": 0.5810085535049438, "z": -0.18681436404585838, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2470}, {"x": 0.4813368320465088, "y": 0.5904102921485901, "z": -0.18848896026611328, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2470}, {"x": 0.47482359409332275, "y": 0.5845277905464172, "z": -0.18869854789227247, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2470}, {"x": 0.4730096459388733, "y": 0.5723809003829956, "z": -0.18824675120413303, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2470}, {"x": 0.474176287651062, "y": 0.5798178911209106, "z": -0.18875939259305596, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2470}, {"x": 0.4752402901649475, "y": 0.5886280536651611, "z": -0.18868211307562888, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2470}, {"x": 0.4780585467815399, "y": 0.5869837999343872, "z": -0.18825359176844358, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2470}, {"x": 0.47577595710754395, "y": 0.5727046132087708, "z": -0.1869559461483732, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2470}, {"x": 0.4774339199066162, "y": 0.5817472338676453, "z": -0.18780571944080293, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2470}, {"x": 0.47841334342956543, "y": 0.5911121368408203, "z": -0.18860504101030529, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2470}, {"x": 0.47376078367233276, "y": 0.5556293725967407, "z": -0.18600669759325683, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2470}, {"x": 0.4774603843688965, "y": 0.5659612417221069, "z": -0.1875478932633996, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2470}, {"x": 0.47659873962402344, "y": 0.5609481930732727, "z": -0.18666401668451726, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2470}, {"x": 0.4773247539997101, "y": 0.5699461698532104, "z": -0.1883782590739429, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2470}, {"x": 0.4698929488658905, "y": 0.5514004826545715, "z": -0.18535416161571572, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2470}], [{"x": 0.4769110083580017, "y": 0.7822455167770386, "z": -0.022956224158406258, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2471}, {"x": 0.48589566349983215, "y": 0.3888116478919983, "z": 0.01329862792044878, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2471}, {"x": 0.47857755422592163, "y": 0.5081171989440918, "z": 0.16000764071941376, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2471}, {"x": 0.486757755279541, "y": 0.38435059785842896, "z": -0.06790407747030258, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2471}, {"x": 0.4856008291244507, "y": 0.38477760553359985, "z": -0.06783366203308105, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2471}, {"x": 0.48730871081352234, "y": 0.38402843475341797, "z": -0.06781964004039764, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2471}, {"x": 0.49493592977523804, "y": 0.8090233206748962, "z": -0.08538065105676651, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2471}, {"x": 0.47223538160324097, "y": 0.8023250102996826, "z": -0.027431229129433632, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2471}, {"x": 0.4870564043521881, "y": 0.5696218013763428, "z": 0.05919519439339638, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2471}, {"x": 0.48786985874176025, "y": 0.5681161284446716, "z": 0.11514788120985031, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2471}, {"x": 0.4832577109336853, "y": 0.6765027046203613, "z": -0.013461947441101074, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2471}, {"x": 0.48619017004966736, "y": 0.5641190409660339, "z": 0.1329406201839447, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2471}, {"x": 0.4861074388027191, "y": 0.44492417573928833, "z": 0.10280712693929672, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2471}, {"x": 0.48756590485572815, "y": 0.5627186298370361, "z": 0.12416497617959976, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2471}, {"x": 0.48554831743240356, "y": 0.548086941242218, "z": 0.13153129816055298, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2471}, {"x": 0.4883349537849426, "y": 0.40224096179008484, "z": -0.052178166806697845, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2471}, {"x": 0.4815923571586609, "y": 0.4045080244541168, "z": -0.07271607965230942, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2471}, {"x": 0.48500820994377136, "y": 0.3936772346496582, "z": -0.08530473709106445, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2471}, {"x": 0.4742735028266907, "y": 0.7860020399093628, "z": -0.2320321947336197, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2471}, {"x": 0.4713915288448334, "y": 0.3922445774078369, "z": -0.05131811276078224, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2471}, {"x": 0.44984501600265503, "y": 0.4959052801132202, "z": -0.113615021109581, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2471}, {"x": 0.4777092933654785, "y": 0.3874620199203491, "z": -0.08274704962968826, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2471}, {"x": 0.48009246587753296, "y": 0.3865266740322113, "z": -0.0825105756521225, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2471}, {"x": 0.4754527807235718, "y": 0.38830721378326416, "z": -0.0828525498509407, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2471}, {"x": 0.4852619767189026, "y": 0.8160039782524109, "z": -0.3145501911640167, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2471}, {"x": 0.4705854058265686, "y": 0.8058639168739319, "z": -0.2383064478635788, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2471}, {"x": 0.4687991142272949, "y": 0.5655795335769653, "z": -0.05932290107011795, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2471}, {"x": 0.47703662514686584, "y": 0.5760848522186279, "z": -0.18425491452217102, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2471}, {"x": 0.4772605895996094, "y": 0.6739033460617065, "z": -0.18966589868068695, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2471}, {"x": 0.4716794788837433, "y": 0.5767126679420471, "z": -0.18576498329639435, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2471}, {"x": 0.4689842462539673, "y": 0.430847704410553, "z": -0.06821075081825256, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2471}, {"x": 0.4772535562515259, "y": 0.5701323747634888, "z": -0.16261084377765656, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2471}, {"x": 0.47128826379776, "y": 0.5573992133140564, "z": -0.16327902674674988, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2471}, {"x": 0.4817157983779907, "y": 0.5832195281982422, "z": 0.1292479275725782, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2471}, {"x": 0.47749629616737366, "y": 0.5693638324737549, "z": 0.13129288694472052, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2471}, {"x": 0.4802166819572449, "y": 0.5777350068092346, "z": 0.13019892666488886, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2471}, {"x": 0.4828515350818634, "y": 0.5874921679496765, "z": 0.12855463987216353, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2471}, {"x": 0.4788355529308319, "y": 0.5863562226295471, "z": 0.12900025490671396, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2471}, {"x": 0.4757406413555145, "y": 0.5720989108085632, "z": 0.13063425826840103, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2471}, {"x": 0.47799211740493774, "y": 0.5808948278427124, "z": 0.12978889618534595, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2471}, {"x": 0.4793981909751892, "y": 0.5905805826187134, "z": 0.12842916115187109, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2471}, {"x": 0.47255048155784607, "y": 0.5859032869338989, "z": 0.12843704828992486, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2471}, {"x": 0.4703077971935272, "y": 0.5743768811225891, "z": 0.12893180642277002, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2471}, {"x": 0.47175168991088867, "y": 0.5814989805221558, "z": 0.12845534761436284, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2471}, {"x": 0.47321873903274536, "y": 0.5896914601325989, "z": 0.12845598347485065, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2471}, {"x": 0.47606876492500305, "y": 0.5874053239822388, "z": 0.12865571537986398, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2471}, {"x": 0.4732712209224701, "y": 0.5737029314041138, "z": 0.12983227090444416, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2471}, {"x": 0.4752466082572937, "y": 0.5820176601409912, "z": 0.12910665455274284, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2471}, {"x": 0.4767206311225891, "y": 0.5915865898132324, "z": 0.1283167744986713, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2471}, {"x": 0.47205448150634766, "y": 0.5560811161994934, "z": 0.13109489349881187, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2471}, {"x": 0.4748370349407196, "y": 0.5678370594978333, "z": 0.12991218047682196, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2471}, {"x": 0.4744577705860138, "y": 0.5617927312850952, "z": 0.13055895420257002, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2471}, {"x": 0.4745798707008362, "y": 0.5723514556884766, "z": 0.12935301731340587, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2471}, {"x": 0.4681379795074463, "y": 0.55332350730896, "z": 0.1315313149756836, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2471}, {"x": 0.48188403248786926, "y": 0.5833170413970947, "z": -0.1639110535616055, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2471}, {"x": 0.47770580649375916, "y": 0.5691800713539124, "z": -0.1623997628921643, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2471}, {"x": 0.48038771748542786, "y": 0.5778411030769348, "z": -0.16315982775995508, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2471}, {"x": 0.4830264449119568, "y": 0.5876885652542114, "z": -0.1644922539126128, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2471}, {"x": 0.47897467017173767, "y": 0.5865898132324219, "z": -0.16464233538135886, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2471}, {"x": 0.47592735290527344, "y": 0.5718588829040527, "z": -0.1634474800375756, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2471}, {"x": 0.4781590402126312, "y": 0.5811117887496948, "z": -0.16400111239636317, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2471}, {"x": 0.4795236587524414, "y": 0.5908829569816589, "z": -0.16513913171365857, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2471}, {"x": 0.47282376885414124, "y": 0.5862637162208557, "z": -0.16580535797402263, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2471}, {"x": 0.4704049527645111, "y": 0.5742574334144592, "z": -0.1657942037563771, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2471}, {"x": 0.47201982140541077, "y": 0.5817130208015442, "z": -0.16599095449782908, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2471}, {"x": 0.47349563241004944, "y": 0.5901872515678406, "z": -0.1656801907811314, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2471}, {"x": 0.47639521956443787, "y": 0.5875979661941528, "z": -0.16534879454411566, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2471}, {"x": 0.4734472930431366, "y": 0.573496401309967, "z": -0.16459892003331333, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2471}, {"x": 0.4755081534385681, "y": 0.5823003053665161, "z": -0.1650488928426057, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2471}, {"x": 0.4771200716495514, "y": 0.591688871383667, "z": -0.1656241852324456, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2471}, {"x": 0.47233253717422485, "y": 0.5566339492797852, "z": -0.16282693113316782, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2471}, {"x": 0.4749568700790405, "y": 0.5683963894844055, "z": -0.1633768440078711, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2471}, {"x": 0.47470685839653015, "y": 0.5626717209815979, "z": -0.16294930226285942, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2471}, {"x": 0.4745081961154938, "y": 0.5727584362030029, "z": -0.16376830206718296, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2471}, {"x": 0.4679564833641052, "y": 0.5523744225502014, "z": -0.16327901143830026, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2471}], [{"x": 0.4769231379032135, "y": 0.7833732962608337, "z": -0.007579085882753134, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2472}, {"x": 0.48785609006881714, "y": 0.38879263401031494, "z": 0.016321765258908272, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2472}, {"x": 0.4786486327648163, "y": 0.5087868571281433, "z": 0.15604548156261444, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2472}, {"x": 0.4865589737892151, "y": 0.3837707042694092, "z": -0.06747227162122726, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2472}, {"x": 0.4847412705421448, "y": 0.3839913010597229, "z": -0.06740432232618332, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2472}, {"x": 0.48727673292160034, "y": 0.383658230304718, "z": -0.0673881322145462, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2472}, {"x": 0.49524354934692383, "y": 0.8102800250053406, "z": -0.07032310962677002, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2472}, {"x": 0.4721096158027649, "y": 0.8035898208618164, "z": -0.011538944207131863, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2472}, {"x": 0.4875182807445526, "y": 0.5698498487472534, "z": 0.054994333535432816, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2472}, {"x": 0.4878847897052765, "y": 0.5670390725135803, "z": 0.10681311786174774, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2472}, {"x": 0.4831731617450714, "y": 0.6769601106643677, "z": -0.004841544199734926, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2472}, {"x": 0.48650503158569336, "y": 0.5607686638832092, "z": 0.1245969608426094, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2472}, {"x": 0.4883034825325012, "y": 0.4453205466270447, "z": 0.10348813235759735, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2472}, {"x": 0.48755747079849243, "y": 0.5611951351165771, "z": 0.11716365069150925, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2472}, {"x": 0.4861833155155182, "y": 0.5444009304046631, "z": 0.12476407736539841, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2472}, {"x": 0.487577348947525, "y": 0.4019368290901184, "z": -0.05185055360198021, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2472}, {"x": 0.48022276163101196, "y": 0.4040851294994354, "z": -0.07031220942735672, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2472}, {"x": 0.48301756381988525, "y": 0.39287930727005005, "z": -0.08499986678361893, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2472}, {"x": 0.473310261964798, "y": 0.7850225567817688, "z": -0.19892822206020355, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2472}, {"x": 0.4714132249355316, "y": 0.3918866515159607, "z": -0.0434441938996315, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2472}, {"x": 0.44598743319511414, "y": 0.4955555200576782, "z": -0.09888061881065369, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2472}, {"x": 0.476495623588562, "y": 0.38690873980522156, "z": -0.08078006654977798, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2472}, {"x": 0.4787875711917877, "y": 0.38576674461364746, "z": -0.08054087311029434, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2472}, {"x": 0.47464093565940857, "y": 0.38787922263145447, "z": -0.08088992536067963, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2472}, {"x": 0.48360130190849304, "y": 0.8166009783744812, "z": -0.28073015809059143, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2472}, {"x": 0.4702933728694916, "y": 0.8043445944786072, "z": -0.20449458062648773, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2472}, {"x": 0.4676794707775116, "y": 0.5657027363777161, "z": -0.05511325225234032, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2472}, {"x": 0.47411537170410156, "y": 0.5743899941444397, "z": -0.16953523457050323, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2472}, {"x": 0.4748303294181824, "y": 0.6726678013801575, "z": -0.16582205891609192, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2472}, {"x": 0.46920105814933777, "y": 0.5763225555419922, "z": -0.17032845318317413, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2472}, {"x": 0.46694740653038025, "y": 0.43159863352775574, "z": -0.05787644907832146, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2472}, {"x": 0.4738883674144745, "y": 0.5682823657989502, "z": -0.14792540669441223, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2472}, {"x": 0.4669329822063446, "y": 0.5569899678230286, "z": -0.14809086918830872, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2472}, {"x": 0.47940149903297424, "y": 0.5827937126159668, "z": 0.12251682090573013, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2472}, {"x": 0.47511717677116394, "y": 0.5703652501106262, "z": 0.1250019598082872, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2472}, {"x": 0.4777127206325531, "y": 0.5778733491897583, "z": 0.12374077516142279, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2472}, {"x": 0.48083195090293884, "y": 0.5869551301002502, "z": 0.12159524485468864, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2472}, {"x": 0.47634443640708923, "y": 0.5858637690544128, "z": 0.12207863479852676, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2472}, {"x": 0.4730333685874939, "y": 0.5730735659599304, "z": 0.12423938064603135, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2472}, {"x": 0.4752616286277771, "y": 0.5808916687965393, "z": 0.12314948183484375, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2472}, {"x": 0.47727441787719727, "y": 0.5901522636413574, "z": 0.12130541447550058, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2472}, {"x": 0.4705343246459961, "y": 0.585915744304657, "z": 0.12117892201058567, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2472}, {"x": 0.46754616498947144, "y": 0.5749493837356567, "z": 0.12208968726918101, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2472}, {"x": 0.4693087339401245, "y": 0.5816163420677185, "z": 0.1212786347605288, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2472}, {"x": 0.4716714024543762, "y": 0.5896888375282288, "z": 0.1211559078656137, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2472}, {"x": 0.47382432222366333, "y": 0.5870980024337769, "z": 0.12169886520132422, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2472}, {"x": 0.4705033004283905, "y": 0.5745596885681152, "z": 0.12323748250491917, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2472}, {"x": 0.4726257026195526, "y": 0.582166314125061, "z": 0.12221118132583797, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2472}, {"x": 0.4749072194099426, "y": 0.5912237763404846, "z": 0.12135167745873332, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2472}, {"x": 0.47011643648147583, "y": 0.556530773639679, "z": 0.12413433199981228, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2472}, {"x": 0.47545406222343445, "y": 0.5673738718032837, "z": 0.12312240269966424, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2472}, {"x": 0.47362908720970154, "y": 0.5620571374893188, "z": 0.12370594521053135, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2472}, {"x": 0.47652116417884827, "y": 0.5717276334762573, "z": 0.12257476849481463, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2472}, {"x": 0.46532872319221497, "y": 0.5538524389266968, "z": 0.12476409076424666, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2472}, {"x": 0.47947221994400024, "y": 0.5827791690826416, "z": -0.1506382857915014, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2472}, {"x": 0.4752311408519745, "y": 0.5704380869865417, "z": -0.14798496562434593, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2472}, {"x": 0.4778030514717102, "y": 0.5778964161872864, "z": -0.1493162236874923, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2472}, {"x": 0.4808686375617981, "y": 0.5870242118835449, "z": -0.15164208062924445, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2472}, {"x": 0.4764569103717804, "y": 0.5858567953109741, "z": -0.150902388850227, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2472}, {"x": 0.47307583689689636, "y": 0.5732128620147705, "z": -0.1486385095049627, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2472}, {"x": 0.4753017723560333, "y": 0.5809974074363708, "z": -0.1497718831524253, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2472}, {"x": 0.47746530175209045, "y": 0.5901175141334534, "z": -0.15173132461495697, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2472}, {"x": 0.4705398678779602, "y": 0.5858142971992493, "z": -0.15161823946982622, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2472}, {"x": 0.46750181913375854, "y": 0.5749469995498657, "z": -0.15068553923629224, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2472}, {"x": 0.46927398443222046, "y": 0.5815492868423462, "z": -0.15150215849280357, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2472}, {"x": 0.47170567512512207, "y": 0.5895767211914062, "z": -0.1516691385768354, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2472}, {"x": 0.4739312529563904, "y": 0.5870581269264221, "z": -0.15115395141765475, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2472}, {"x": 0.47048839926719666, "y": 0.5746669769287109, "z": -0.14956975704990327, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2472}, {"x": 0.47264546155929565, "y": 0.5822010040283203, "z": -0.1506195415277034, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2472}, {"x": 0.4750809967517853, "y": 0.5911991000175476, "z": -0.1515327903907746, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2472}, {"x": 0.4701377749443054, "y": 0.5558417439460754, "z": -0.14902402454754338, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2472}, {"x": 0.4754270315170288, "y": 0.5665687918663025, "z": -0.1502983549144119, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2472}, {"x": 0.47364479303359985, "y": 0.5612123608589172, "z": -0.14960445184260607, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2472}, {"x": 0.4763956367969513, "y": 0.5707902908325195, "z": -0.15093723335303366, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2472}, {"x": 0.46531111001968384, "y": 0.5530986785888672, "z": -0.148090855167875, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2472}], [{"x": 0.476820170879364, "y": 0.7835143208503723, "z": -0.0039055512752383947, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2473}, {"x": 0.48884353041648865, "y": 0.388760507106781, "z": 0.01473292987793684, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2473}, {"x": 0.4786578416824341, "y": 0.5099908113479614, "z": 0.14579759538173676, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2473}, {"x": 0.48641878366470337, "y": 0.38359585404396057, "z": -0.06964710354804993, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2473}, {"x": 0.4840119481086731, "y": 0.38373127579689026, "z": -0.06957625597715378, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2473}, {"x": 0.48725974559783936, "y": 0.3835524618625641, "z": -0.06956352293491364, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2473}, {"x": 0.49485644698143005, "y": 0.8106702566146851, "z": -0.07064202427864075, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2473}, {"x": 0.47200316190719604, "y": 0.8034716844558716, "z": -0.007904930040240288, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2473}, {"x": 0.4874928891658783, "y": 0.5698215961456299, "z": 0.0493585579097271, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2473}, {"x": 0.4870169460773468, "y": 0.5721046924591064, "z": 0.09786141663789749, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2473}, {"x": 0.4831790030002594, "y": 0.677064836025238, "z": -0.0030541352462023497, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2473}, {"x": 0.48514601588249207, "y": 0.5722804069519043, "z": 0.11372838914394379, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2473}, {"x": 0.4899810552597046, "y": 0.44643527269363403, "z": 0.09814811497926712, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2473}, {"x": 0.4865776300430298, "y": 0.5661579966545105, "z": 0.1102452203631401, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2473}, {"x": 0.4856339693069458, "y": 0.54792720079422, "z": 0.1160508245229721, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2473}, {"x": 0.48655298352241516, "y": 0.40183454751968384, "z": -0.054189860820770264, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2473}, {"x": 0.47878625988960266, "y": 0.4035300612449646, "z": -0.07088920474052429, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2473}, {"x": 0.4816116392612457, "y": 0.39254477620124817, "z": -0.08702938258647919, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2473}, {"x": 0.47284233570098877, "y": 0.7841859459877014, "z": -0.17818842828273773, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2473}, {"x": 0.4711790084838867, "y": 0.3915064334869385, "z": -0.040471192449331284, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2473}, {"x": 0.44376441836357117, "y": 0.4955655634403229, "z": -0.08759493380784988, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2473}, {"x": 0.4757004976272583, "y": 0.3863769471645355, "z": -0.08165883272886276, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2473}, {"x": 0.4776296019554138, "y": 0.3853081166744232, "z": -0.08142212778329849, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2473}, {"x": 0.4738510549068451, "y": 0.387245237827301, "z": -0.0817696824669838, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2473}, {"x": 0.48063385486602783, "y": 0.8169920444488525, "z": -0.2582961320877075, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2473}, {"x": 0.47026875615119934, "y": 0.8028391003608704, "z": -0.1836410015821457, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2473}, {"x": 0.46653854846954346, "y": 0.5658892393112183, "z": -0.049480538815259933, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2473}, {"x": 0.47180429100990295, "y": 0.5735490322113037, "z": -0.1617119014263153, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2473}, {"x": 0.4725634455680847, "y": 0.6723264455795288, "z": -0.1538853496313095, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2473}, {"x": 0.46699878573417664, "y": 0.5761993527412415, "z": -0.16149663925170898, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2473}, {"x": 0.46427398920059204, "y": 0.4326138198375702, "z": -0.050562936812639236, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2473}, {"x": 0.47148674726486206, "y": 0.5674936175346375, "z": -0.1394215226173401, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2473}, {"x": 0.4644639194011688, "y": 0.5568456053733826, "z": -0.13911741971969604, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2473}, {"x": 0.47749432921409607, "y": 0.5817593336105347, "z": 0.11322099412791431, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2473}, {"x": 0.4724738895893097, "y": 0.5700780749320984, "z": 0.1156507714476902, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2473}, {"x": 0.475598007440567, "y": 0.577240526676178, "z": 0.11435621918644756, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2473}, {"x": 0.47890859842300415, "y": 0.5856373906135559, "z": 0.11242235545068979, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2473}, {"x": 0.4750879406929016, "y": 0.583954930305481, "z": 0.11292013293132186, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2473}, {"x": 0.470567911863327, "y": 0.5723459124565125, "z": 0.11512809386476874, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2473}, {"x": 0.47344502806663513, "y": 0.5794980525970459, "z": 0.11394629091955721, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2473}, {"x": 0.4763107895851135, "y": 0.5878494381904602, "z": 0.11224288656376302, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2473}, {"x": 0.4691505432128906, "y": 0.5836772918701172, "z": 0.1125788502395153, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2473}, {"x": 0.4656500518321991, "y": 0.5733852386474609, "z": 0.11354073276743293, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2473}, {"x": 0.4676360785961151, "y": 0.5795950293540955, "z": 0.11264286073856056, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2473}, {"x": 0.4703809916973114, "y": 0.5872501134872437, "z": 0.11264827568084002, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2473}, {"x": 0.47259095311164856, "y": 0.5851371884346008, "z": 0.11282942816615105, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2473}, {"x": 0.46825724840164185, "y": 0.5733707547187805, "z": 0.11439933045767248, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2473}, {"x": 0.4709157645702362, "y": 0.5803382396697998, "z": 0.11326888273470104, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2473}, {"x": 0.47383105754852295, "y": 0.5891674160957336, "z": 0.11260194820351899, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2473}, {"x": 0.46747079491615295, "y": 0.5562537908554077, "z": 0.1151981910225004, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2473}, {"x": 0.4732033908367157, "y": 0.5670782923698425, "z": 0.11410032166168094, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2473}, {"x": 0.4712027907371521, "y": 0.5618491172790527, "z": 0.11466957861557603, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2473}, {"x": 0.47484323382377625, "y": 0.5713872909545898, "z": 0.11358290910720825, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2473}, {"x": 0.46305835247039795, "y": 0.5538486242294312, "z": 0.11605083732257437, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2473}, {"x": 0.47778084874153137, "y": 0.5815427303314209, "z": -0.14184585493057966, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2473}, {"x": 0.4728814363479614, "y": 0.5702618956565857, "z": -0.13933122134767473, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2473}, {"x": 0.47595924139022827, "y": 0.577172577381134, "z": -0.14062809792812914, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2473}, {"x": 0.4791829288005829, "y": 0.5853732228279114, "z": -0.1427309897262603, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2473}, {"x": 0.47575944662094116, "y": 0.5844089984893799, "z": -0.14213990326970816, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2473}, {"x": 0.4709342420101166, "y": 0.5728589296340942, "z": -0.13982413947815076, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2473}, {"x": 0.47396665811538696, "y": 0.5799268484115601, "z": -0.14102566032670438, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2473}, {"x": 0.477156400680542, "y": 0.5883469581604004, "z": -0.14288793364539742, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2473}, {"x": 0.469338595867157, "y": 0.5847172737121582, "z": -0.14268442592583597, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2473}, {"x": 0.4657902419567108, "y": 0.5743500590324402, "z": -0.1415413843933493, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2473}, {"x": 0.46782055497169495, "y": 0.5806455016136169, "z": -0.14251309353858232, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2473}, {"x": 0.47064054012298584, "y": 0.5883954763412476, "z": -0.14270782005041838, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2473}, {"x": 0.47295624017715454, "y": 0.58589768409729, "z": -0.14238168927840889, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2473}, {"x": 0.46856173872947693, "y": 0.5741397738456726, "z": -0.14059615263249725, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2473}, {"x": 0.47131818532943726, "y": 0.5811618566513062, "z": -0.141802309313789, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2473}, {"x": 0.4742145836353302, "y": 0.5899373292922974, "z": -0.14270673599094152, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2473}, {"x": 0.46739429235458374, "y": 0.555552065372467, "z": -0.14027434517629445, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2473}, {"x": 0.47359499335289, "y": 0.565392017364502, "z": -0.14158327062614262, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2473}, {"x": 0.471412718296051, "y": 0.5604339838027954, "z": -0.14091278437990695, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2473}, {"x": 0.47523996233940125, "y": 0.5695770978927612, "z": -0.14216681942343712, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2473}, {"x": 0.46274617314338684, "y": 0.5539506077766418, "z": -0.1391174057963216, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2473}], [{"x": 0.4767601191997528, "y": 0.7839574813842773, "z": -0.0037841787561774254, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2474}, {"x": 0.48924896121025085, "y": 0.38888004422187805, "z": 0.014925527386367321, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2474}, {"x": 0.48020628094673157, "y": 0.5126674771308899, "z": 0.13798284530639648, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2474}, {"x": 0.4863954186439514, "y": 0.3836246728897095, "z": -0.06716922670602798, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2474}, {"x": 0.4839901328086853, "y": 0.38372430205345154, "z": -0.06709353625774384, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2474}, {"x": 0.4874151945114136, "y": 0.38357213139533997, "z": -0.06708783656358719, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2474}, {"x": 0.4948611259460449, "y": 0.8110619783401489, "z": -0.06989611685276031, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2474}, {"x": 0.4719359278678894, "y": 0.803882360458374, "z": -0.008033446036279202, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2474}, {"x": 0.48751506209373474, "y": 0.5697680711746216, "z": 0.04650164023041725, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2474}, {"x": 0.4864792227745056, "y": 0.5807750225067139, "z": 0.08486511558294296, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2474}, {"x": 0.4831993877887726, "y": 0.6774441003799438, "z": -0.000904521846678108, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2474}, {"x": 0.4844764769077301, "y": 0.5827990770339966, "z": 0.10102022439241409, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2474}, {"x": 0.4904840588569641, "y": 0.4478842616081238, "z": 0.09470484405755997, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2474}, {"x": 0.4860611855983734, "y": 0.5744830369949341, "z": 0.097723588347435, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2474}, {"x": 0.4853532016277313, "y": 0.5549922585487366, "z": 0.10419313609600067, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2474}, {"x": 0.48624494671821594, "y": 0.40184518694877625, "z": -0.05201026424765587, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2474}, {"x": 0.47840920090675354, "y": 0.40335890650749207, "z": -0.06846208870410919, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2474}, {"x": 0.4815767705440521, "y": 0.3925190269947052, "z": -0.08395463973283768, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2474}, {"x": 0.4727773368358612, "y": 0.7843946218490601, "z": -0.17303338646888733, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2474}, {"x": 0.4712255597114563, "y": 0.39093175530433655, "z": -0.03739102929830551, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2474}, {"x": 0.4413822591304779, "y": 0.49559342861175537, "z": -0.08347209542989731, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2474}, {"x": 0.4757697880268097, "y": 0.3859331011772156, "z": -0.07892585545778275, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2474}, {"x": 0.4776962697505951, "y": 0.384991854429245, "z": -0.07869565486907959, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2474}, {"x": 0.473980575799942, "y": 0.38664427399635315, "z": -0.07903113216161728, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2474}, {"x": 0.4796280562877655, "y": 0.8171090483665466, "z": -0.2519401013851166, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2474}, {"x": 0.4706191122531891, "y": 0.8030478954315186, "z": -0.17805786430835724, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2474}, {"x": 0.4658450186252594, "y": 0.5658843517303467, "z": -0.04661818966269493, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2474}, {"x": 0.47060713171958923, "y": 0.5723292827606201, "z": -0.16063620150089264, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2474}, {"x": 0.47129514813423157, "y": 0.6723594069480896, "z": -0.1485937535762787, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2474}, {"x": 0.465879887342453, "y": 0.5759583711624146, "z": -0.16016680002212524, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2474}, {"x": 0.4624541997909546, "y": 0.4327786862850189, "z": -0.04613734036684036, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2474}, {"x": 0.4702346920967102, "y": 0.5667665600776672, "z": -0.13813994824886322, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2474}, {"x": 0.4630366265773773, "y": 0.5567254424095154, "z": -0.13759684562683105, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2474}, {"x": 0.47605565190315247, "y": 0.5799610018730164, "z": -0.13923642958980054, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2474}, {"x": 0.47210365533828735, "y": 0.5665920376777649, "z": -0.13723914671572857, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2474}, {"x": 0.47470349073410034, "y": 0.5746583342552185, "z": -0.13833599188365042, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2474}, {"x": 0.4771004915237427, "y": 0.5839560031890869, "z": -0.1398451621644199, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2474}, {"x": 0.47448089718818665, "y": 0.5837200880050659, "z": -0.14011786365881562, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2474}, {"x": 0.47006478905677795, "y": 0.5696697235107422, "z": -0.1383111048489809, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2474}, {"x": 0.472940057516098, "y": 0.5782789587974548, "z": -0.13925445568747818, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2474}, {"x": 0.4759196937084198, "y": 0.5880909562110901, "z": -0.1407004634384066, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2474}, {"x": 0.46754172444343567, "y": 0.5853993892669678, "z": -0.14134016633033752, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2474}, {"x": 0.46393945813179016, "y": 0.5739278793334961, "z": -0.140690854517743, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2474}, {"x": 0.4661064147949219, "y": 0.5810784697532654, "z": -0.14133105357177556, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2474}, {"x": 0.46883147954940796, "y": 0.5890675187110901, "z": -0.14126263745129108, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2474}, {"x": 0.47175198793411255, "y": 0.5859933495521545, "z": -0.14089664560742676, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2474}, {"x": 0.4673202633857727, "y": 0.5721882581710815, "z": -0.1394902941538021, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2474}, {"x": 0.4701347053050995, "y": 0.5807052850723267, "z": -0.1404027217067778, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2474}, {"x": 0.4732901155948639, "y": 0.5901507139205933, "z": -0.1411900024395436, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2474}, {"x": 0.4663470685482025, "y": 0.5561632513999939, "z": -0.13738147399271838, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2474}, {"x": 0.4732535779476166, "y": 0.5663567781448364, "z": -0.1380533511401154, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2474}, {"x": 0.4706194996833801, "y": 0.5612545609474182, "z": -0.1375782590603194, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2474}, {"x": 0.4749395549297333, "y": 0.5706855654716492, "z": -0.13850589300272986, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2474}, {"x": 0.46089616417884827, "y": 0.5537859201431274, "z": -0.13759683341664797, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2474}], [{"x": 0.47676193714141846, "y": 0.7841347455978394, "z": 0.010901755653321743, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2475}, {"x": 0.48941415548324585, "y": 0.38889890909194946, "z": 0.011573076248168945, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2475}, {"x": 0.48363828659057617, "y": 0.5116653442382812, "z": 0.13075026869773865, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2475}, {"x": 0.48637714982032776, "y": 0.38364043831825256, "z": -0.06994341313838959, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2475}, {"x": 0.4839615225791931, "y": 0.3836502134799957, "z": -0.06986118108034134, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2475}, {"x": 0.48747745156288147, "y": 0.3835912048816681, "z": -0.06986856460571289, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2475}, {"x": 0.49499762058258057, "y": 0.8111822009086609, "z": -0.05295279994606972, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2475}, {"x": 0.47190138697624207, "y": 0.8040419220924377, "z": 0.007656487170606852, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2475}, {"x": 0.48804739117622375, "y": 0.5697081685066223, "z": 0.04479074850678444, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2475}, {"x": 0.4867863357067108, "y": 0.5764064788818359, "z": 0.07014334946870804, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2475}, {"x": 0.4834660291671753, "y": 0.6774089932441711, "z": 0.00661002192646265, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2475}, {"x": 0.48541316390037537, "y": 0.5779595971107483, "z": 0.08574391156435013, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2475}, {"x": 0.4918023347854614, "y": 0.4479844570159912, "z": 0.08980707824230194, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2475}, {"x": 0.486496239900589, "y": 0.5703337788581848, "z": 0.08370473980903625, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2475}, {"x": 0.4864215552806854, "y": 0.5529851913452148, "z": 0.09059750288724899, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2475}, {"x": 0.48575979471206665, "y": 0.4018442928791046, "z": -0.05479125306010246, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2475}, {"x": 0.47766974568367004, "y": 0.4026002287864685, "z": -0.07063079625368118, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2475}, {"x": 0.4813787639141083, "y": 0.3923821449279785, "z": -0.08655759692192078, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2475}, {"x": 0.4724511504173279, "y": 0.784420371055603, "z": -0.1194089874625206, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2475}, {"x": 0.47106537222862244, "y": 0.38973334431648254, "z": -0.040036626160144806, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2475}, {"x": 0.4398595988750458, "y": 0.4967154562473297, "z": -0.08354531973600388, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2475}, {"x": 0.47565460205078125, "y": 0.3848784565925598, "z": -0.0812990814447403, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2475}, {"x": 0.4775395691394806, "y": 0.38426315784454346, "z": -0.08107594400644302, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2475}, {"x": 0.47382333874702454, "y": 0.385258287191391, "z": -0.08140408247709274, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2475}, {"x": 0.47857946157455444, "y": 0.81731778383255, "z": -0.20047630369663239, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2475}, {"x": 0.4702267348766327, "y": 0.8031901121139526, "z": -0.12306908518075943, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2475}, {"x": 0.4658559560775757, "y": 0.5661317110061646, "z": -0.044907767325639725, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2475}, {"x": 0.4688754081726074, "y": 0.5715311765670776, "z": -0.1608341634273529, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2475}, {"x": 0.4706821143627167, "y": 0.6722398400306702, "z": -0.1107969731092453, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2475}, {"x": 0.46420174837112427, "y": 0.5759075880050659, "z": -0.16037103533744812, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2475}, {"x": 0.459521621465683, "y": 0.4331139028072357, "z": -0.047852762043476105, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2475}, {"x": 0.46849319338798523, "y": 0.5661244988441467, "z": -0.13806743919849396, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2475}, {"x": 0.46172401309013367, "y": 0.5566705465316772, "z": -0.13750042021274567, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2475}, {"x": 0.4746832251548767, "y": 0.5791010856628418, "z": -0.1397884211037308, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2475}, {"x": 0.4696100354194641, "y": 0.5690783858299255, "z": -0.13755071070772829, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2475}, {"x": 0.47291287779808044, "y": 0.5752200484275818, "z": -0.1386965410783887, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2475}, {"x": 0.4760749042034149, "y": 0.5824962854385376, "z": -0.14060350507497787, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2475}, {"x": 0.47299817204475403, "y": 0.5832362771034241, "z": -0.14013566356152296, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2475}, {"x": 0.46772301197052, "y": 0.5725299715995789, "z": -0.13808966608485207, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2475}, {"x": 0.4710526168346405, "y": 0.5790671110153198, "z": -0.1390965370228514, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2475}, {"x": 0.47459807991981506, "y": 0.5869462490081787, "z": -0.1408845887053758, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2475}, {"x": 0.4655616283416748, "y": 0.5847783088684082, "z": -0.1408318446483463, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2475}, {"x": 0.46210163831710815, "y": 0.575588583946228, "z": -0.13976314384490252, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2475}, {"x": 0.46410349011421204, "y": 0.5812951326370239, "z": -0.14070668863132596, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2475}, {"x": 0.46696335077285767, "y": 0.5877077579498291, "z": -0.14084168546833098, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2475}, {"x": 0.47025492787361145, "y": 0.5854241847991943, "z": -0.14057917660102248, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2475}, {"x": 0.4652343988418579, "y": 0.5746849775314331, "z": -0.13887239480391145, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2475}, {"x": 0.4683133065700531, "y": 0.5812329649925232, "z": -0.13998976652510464, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2475}, {"x": 0.4719190299510956, "y": 0.5890734791755676, "z": -0.14096080558374524, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2475}, {"x": 0.46417394280433655, "y": 0.5563556551933289, "z": -0.13837469212012365, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2475}, {"x": 0.47216713428497314, "y": 0.5632485151290894, "z": -0.1394017537822947, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2475}, {"x": 0.46899136900901794, "y": 0.5597094893455505, "z": -0.13884938380215317, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2475}, {"x": 0.4743940830230713, "y": 0.5668299198150635, "z": -0.13993679452687502, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2475}, {"x": 0.4590774178504944, "y": 0.5552905797958374, "z": -0.1375004059074536, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2475}], [{"x": 0.47678840160369873, "y": 0.784258246421814, "z": 0.025423161685466766, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2476}, {"x": 0.48947733640670776, "y": 0.38926830887794495, "z": -0.004014258738607168, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2476}, {"x": 0.4837234914302826, "y": 0.5117988586425781, "z": 0.11116746813058853, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2476}, {"x": 0.48636552691459656, "y": 0.38373810052871704, "z": -0.08398254960775375, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2476}, {"x": 0.483948290348053, "y": 0.38366496562957764, "z": -0.08389152586460114, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2476}, {"x": 0.48749610781669617, "y": 0.38396725058555603, "z": -0.08390843123197556, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2476}, {"x": 0.49514278769493103, "y": 0.8114367723464966, "z": -0.049759235233068466, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2476}, {"x": 0.4720810651779175, "y": 0.8040512204170227, "z": 0.022414185106754303, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2476}, {"x": 0.48850372433662415, "y": 0.5696420073509216, "z": 0.04354376345872879, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2476}, {"x": 0.48738232254981995, "y": 0.5752965807914734, "z": 0.04507218673825264, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2476}, {"x": 0.48373672366142273, "y": 0.6774703860282898, "z": 0.013189622201025486, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2476}, {"x": 0.4854067862033844, "y": 0.5818871855735779, "z": 0.06159362941980362, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2476}, {"x": 0.49210232496261597, "y": 0.44775277376174927, "z": 0.07338172942399979, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2476}, {"x": 0.48711034655570984, "y": 0.5686941742897034, "z": 0.06005223095417023, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2476}, {"x": 0.4865318536758423, "y": 0.5566474199295044, "z": 0.06752172112464905, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2476}, {"x": 0.4852098226547241, "y": 0.4019055664539337, "z": -0.06831672787666321, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2476}, {"x": 0.47707507014274597, "y": 0.4018550515174866, "z": -0.08354251086711884, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2476}, {"x": 0.48122966289520264, "y": 0.3922536075115204, "z": -0.0997161790728569, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2476}, {"x": 0.4722258746623993, "y": 0.7845072150230408, "z": -0.10689277201890945, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2476}, {"x": 0.47102582454681396, "y": 0.38885217905044556, "z": -0.05247475206851959, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2476}, {"x": 0.439069002866745, "y": 0.4982559084892273, "z": -0.09148605912923813, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2476}, {"x": 0.4756333529949188, "y": 0.3841250240802765, "z": -0.09486186504364014, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2476}, {"x": 0.477541446685791, "y": 0.38375675678253174, "z": -0.09464330971240997, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2476}, {"x": 0.47379451990127563, "y": 0.38431084156036377, "z": -0.09496719390153885, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2476}, {"x": 0.47767525911331177, "y": 0.8181741833686829, "z": -0.1887972056865692, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2476}, {"x": 0.4699608087539673, "y": 0.8035217523574829, "z": -0.11027368903160095, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2476}, {"x": 0.4658032953739166, "y": 0.5667157173156738, "z": -0.04364906996488571, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2476}, {"x": 0.46642929315567017, "y": 0.5705575346946716, "z": -0.1686698943376541, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2476}, {"x": 0.4701175093650818, "y": 0.6722702980041504, "z": -0.10152236372232437, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2476}, {"x": 0.4617195725440979, "y": 0.5757942795753479, "z": -0.16801698505878448, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2476}, {"x": 0.4582008719444275, "y": 0.43361377716064453, "z": -0.056140825152397156, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2476}, {"x": 0.46619659662246704, "y": 0.5650905966758728, "z": -0.14542126655578613, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2476}, {"x": 0.45891818404197693, "y": 0.5566011071205139, "z": -0.1447194367647171, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2476}, {"x": 0.47318795323371887, "y": 0.5809939503669739, "z": -0.14746639598160982, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2476}, {"x": 0.468658983707428, "y": 0.570600688457489, "z": -0.1448435944330413, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2476}, {"x": 0.4716213345527649, "y": 0.5768691301345825, "z": -0.14619730622507632, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2476}, {"x": 0.47428882122039795, "y": 0.5844904184341431, "z": -0.1483598849736154, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2476}, {"x": 0.4713989794254303, "y": 0.5840412974357605, "z": -0.1474743983708322, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2476}, {"x": 0.4665570557117462, "y": 0.5733919143676758, "z": -0.14526246226159856, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2476}, {"x": 0.46966245770454407, "y": 0.5798851251602173, "z": -0.14638511661905795, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2476}, {"x": 0.4727676808834076, "y": 0.5875641107559204, "z": -0.1482182601466775, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2476}, {"x": 0.46444112062454224, "y": 0.5841366052627563, "z": -0.14795663696713746, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2476}, {"x": 0.4607604146003723, "y": 0.5753525495529175, "z": -0.14688514894805849, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2476}, {"x": 0.4628828465938568, "y": 0.5807942748069763, "z": -0.14784895558841527, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2476}, {"x": 0.46594563126564026, "y": 0.5871587991714478, "z": -0.14791258540935814, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2476}, {"x": 0.4686448574066162, "y": 0.5850330591201782, "z": -0.14755711471661925, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2476}, {"x": 0.4639611840248108, "y": 0.5749370455741882, "z": -0.14598586107604206, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2476}, {"x": 0.4668768644332886, "y": 0.5811764001846313, "z": -0.14710353245027363, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2476}, {"x": 0.4701922833919525, "y": 0.5884349942207336, "z": -0.14781079697422683, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2476}, {"x": 0.4625155031681061, "y": 0.5569266080856323, "z": -0.14595798775553703, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2476}, {"x": 0.47020837664604187, "y": 0.5643941760063171, "z": -0.1472767658997327, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2476}, {"x": 0.4671059846878052, "y": 0.5606369376182556, "z": -0.1465986882103607, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2476}, {"x": 0.472859650850296, "y": 0.5678552985191345, "z": -0.14788807788863778, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2476}, {"x": 0.4577418565750122, "y": 0.5563151836395264, "z": -0.1447194208202447, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2476}], [{"x": 0.47679513692855835, "y": 0.7843652367591858, "z": 0.029108576476573944, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2477}, {"x": 0.48938480019569397, "y": 0.38974595069885254, "z": -0.008691820316016674, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2477}, {"x": 0.486907422542572, "y": 0.5110726356506348, "z": 0.10550602525472641, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2477}, {"x": 0.4861883223056793, "y": 0.384328693151474, "z": -0.08916052430868149, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2477}, {"x": 0.48365792632102966, "y": 0.3839889168739319, "z": -0.08906848728656769, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2477}, {"x": 0.48747381567955017, "y": 0.38476014137268066, "z": -0.08909444510936737, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2477}, {"x": 0.4951467216014862, "y": 0.8119829297065735, "z": -0.04522249847650528, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2477}, {"x": 0.4721813499927521, "y": 0.8040215969085693, "z": 0.02647298015654087, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2477}, {"x": 0.4890786111354828, "y": 0.570285975933075, "z": 0.0404711477458477, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2477}, {"x": 0.49003738164901733, "y": 0.5656713247299194, "z": 0.03450965881347656, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2477}, {"x": 0.48406165838241577, "y": 0.6783237457275391, "z": 0.013340655714273453, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2477}, {"x": 0.488614022731781, "y": 0.5768836736679077, "z": 0.05068087577819824, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2477}, {"x": 0.49329516291618347, "y": 0.4474201798439026, "z": 0.06789149343967438, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2477}, {"x": 0.48904576897621155, "y": 0.5633103847503662, "z": 0.05055384337902069, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2477}, {"x": 0.48906347155570984, "y": 0.5547049641609192, "z": 0.05798513442277908, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2477}, {"x": 0.48461052775382996, "y": 0.4022057056427002, "z": -0.07331342995166779, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2477}, {"x": 0.47654473781585693, "y": 0.4018124043941498, "z": -0.08804365992546082, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2477}, {"x": 0.4808688759803772, "y": 0.39226698875427246, "z": -0.10491181910037994, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2477}, {"x": 0.47207432985305786, "y": 0.7846059203147888, "z": -0.10099710524082184, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2477}, {"x": 0.47081488370895386, "y": 0.38862165808677673, "z": -0.0560678206384182, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2477}, {"x": 0.4380074441432953, "y": 0.4999661445617676, "z": -0.08440728485584259, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2477}, {"x": 0.47536978125572205, "y": 0.38400688767433167, "z": -0.09966327995061874, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2477}, {"x": 0.4772009551525116, "y": 0.38374125957489014, "z": -0.0994463637471199, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2477}, {"x": 0.4734845459461212, "y": 0.3841075003147125, "z": -0.09976840019226074, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2477}, {"x": 0.47595247626304626, "y": 0.8196057677268982, "z": -0.18523897230625153, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2477}, {"x": 0.4700066149234772, "y": 0.8036004304885864, "z": -0.10413669049739838, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2477}, {"x": 0.46571099758148193, "y": 0.5681426525115967, "z": -0.04057321697473526, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2477}, {"x": 0.4644791781902313, "y": 0.5692301392555237, "z": -0.16718952357769012, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2477}, {"x": 0.4698103070259094, "y": 0.672759473323822, "z": -0.10065032541751862, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2477}, {"x": 0.4604763686656952, "y": 0.575478196144104, "z": -0.1650354564189911, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2477}, {"x": 0.456198126077652, "y": 0.4359654188156128, "z": -0.05505531653761864, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2477}, {"x": 0.46422702074050903, "y": 0.5637617707252502, "z": -0.14292089641094208, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2477}, {"x": 0.45707622170448303, "y": 0.5565429329872131, "z": -0.1415054202079773, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2477}, {"x": 0.47120338678359985, "y": 0.5802793502807617, "z": -0.1433482504216954, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2477}, {"x": 0.46634629368782043, "y": 0.5686712861061096, "z": -0.1413624877895927, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2477}, {"x": 0.4694921374320984, "y": 0.5757272839546204, "z": -0.14239050343167037, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2477}, {"x": 0.4724193513393402, "y": 0.5837500691413879, "z": -0.14397344272583723, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2477}, {"x": 0.4696122109889984, "y": 0.583755612373352, "z": -0.1433895748341456, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2477}, {"x": 0.46442723274230957, "y": 0.5719575881958008, "z": -0.1419003312184941, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2477}, {"x": 0.46765023469924927, "y": 0.5793017745018005, "z": -0.14262534212321043, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2477}, {"x": 0.4712236821651459, "y": 0.5871586799621582, "z": -0.14388339989818633, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2477}, {"x": 0.46359777450561523, "y": 0.5850598812103271, "z": -0.14373481506481767, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2477}, {"x": 0.45927584171295166, "y": 0.5757641792297363, "z": -0.14345869654789567, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2477}, {"x": 0.4618307948112488, "y": 0.5814977288246155, "z": -0.14392729080282152, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2477}, {"x": 0.4650351405143738, "y": 0.5879135131835938, "z": -0.14346526307053864, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2477}, {"x": 0.4674041271209717, "y": 0.5853615403175354, "z": -0.14343720290344208, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2477}, {"x": 0.46206745505332947, "y": 0.574298620223999, "z": -0.14261653670109808, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2477}, {"x": 0.4652847647666931, "y": 0.5811315178871155, "z": -0.1432554041966796, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2477}, {"x": 0.4691469669342041, "y": 0.5886675715446472, "z": -0.1435155759099871, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2477}, {"x": 0.4608314633369446, "y": 0.5551109313964844, "z": -0.1420879265642725, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2477}, {"x": 0.46875980496406555, "y": 0.5636781454086304, "z": -0.14290916442405432, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2477}, {"x": 0.46561166644096375, "y": 0.5588656663894653, "z": -0.1424561056192033, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2477}, {"x": 0.4711822271347046, "y": 0.5678604245185852, "z": -0.14327919576317072, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2477}, {"x": 0.45559418201446533, "y": 0.5554909110069275, "z": -0.1415054104020843, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2477}], [{"x": 0.4767998456954956, "y": 0.7848284244537354, "z": 0.028599431738257408, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2478}, {"x": 0.48923224210739136, "y": 0.38985535502433777, "z": -0.004777979571372271, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2478}, {"x": 0.4898434579372406, "y": 0.5102946758270264, "z": 0.10437837988138199, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2478}, {"x": 0.48617613315582275, "y": 0.38440021872520447, "z": -0.08541607111692429, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2478}, {"x": 0.48364952206611633, "y": 0.38399848341941833, "z": -0.08532082289457321, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2478}, {"x": 0.48746368288993835, "y": 0.38492393493652344, "z": -0.08535805344581604, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2478}, {"x": 0.4949633479118347, "y": 0.8125665187835693, "z": -0.04543391615152359, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2478}, {"x": 0.47219228744506836, "y": 0.8040317296981812, "z": 0.026128066703677177, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2478}, {"x": 0.48954933881759644, "y": 0.5713198781013489, "z": 0.03984491899609566, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2478}, {"x": 0.4941217303276062, "y": 0.5563861131668091, "z": 0.019334793090820312, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2478}, {"x": 0.4844318926334381, "y": 0.679174542427063, "z": 0.00965757854282856, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2478}, {"x": 0.4937154948711395, "y": 0.5624797940254211, "z": 0.035995326936244965, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2478}, {"x": 0.4935683012008667, "y": 0.44722187519073486, "z": 0.07042599469423294, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2478}, {"x": 0.49324843287467957, "y": 0.5525370240211487, "z": 0.03749747946858406, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2478}, {"x": 0.4929460287094116, "y": 0.549588143825531, "z": 0.045427728444337845, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2478}, {"x": 0.4843064546585083, "y": 0.402209609746933, "z": -0.06983164697885513, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2478}, {"x": 0.4763447940349579, "y": 0.4013656675815582, "z": -0.0851258710026741, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2478}, {"x": 0.48089176416397095, "y": 0.3921786844730377, "z": -0.10138407349586487, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2478}, {"x": 0.47204849123954773, "y": 0.7846288681030273, "z": -0.11064735054969788, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2478}, {"x": 0.4707328975200653, "y": 0.3878571689128876, "z": -0.05467420443892479, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2478}, {"x": 0.43761521577835083, "y": 0.5013338923454285, "z": -0.07902027666568756, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2478}, {"x": 0.47539621591567993, "y": 0.38369324803352356, "z": -0.09633993357419968, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2478}, {"x": 0.47722285985946655, "y": 0.38353630900382996, "z": -0.09613073617219925, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2478}, {"x": 0.4735383689403534, "y": 0.38367894291877747, "z": -0.09643509984016418, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2478}, {"x": 0.4751611649990082, "y": 0.8208960890769958, "z": -0.19397816061973572, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2478}, {"x": 0.4698505401611328, "y": 0.803608238697052, "z": -0.11385640501976013, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2478}, {"x": 0.4656536281108856, "y": 0.5694988965988159, "z": -0.039949990808963776, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2478}, {"x": 0.46343716979026794, "y": 0.5679901838302612, "z": -0.16663099825382233, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2478}, {"x": 0.4695034325122833, "y": 0.6729756593704224, "z": -0.10914357751607895, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2478}, {"x": 0.46006539463996887, "y": 0.5750977396965027, "z": -0.16310283541679382, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2478}, {"x": 0.4546174108982086, "y": 0.4370787739753723, "z": -0.051093973219394684, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2478}, {"x": 0.4629908502101898, "y": 0.5625558495521545, "z": -0.1413048654794693, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2478}, {"x": 0.4556894898414612, "y": 0.5565091371536255, "z": -0.13921508193016052, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2478}, {"x": 0.4703530967235565, "y": 0.5805326700210571, "z": -0.14036380511242896, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2478}, {"x": 0.46528360247612, "y": 0.569794237613678, "z": -0.13851367321331054, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2478}, {"x": 0.4685191512107849, "y": 0.5762383341789246, "z": -0.13941028442059178, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2478}, {"x": 0.47176527976989746, "y": 0.5838752388954163, "z": -0.14102371968328953, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2478}, {"x": 0.4686692953109741, "y": 0.5835160613059998, "z": -0.1405998523114249, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2478}, {"x": 0.46346697211265564, "y": 0.5732851028442383, "z": -0.13914451227901736, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2478}, {"x": 0.4667151868343353, "y": 0.5796521902084351, "z": -0.13977225811686367, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2478}, {"x": 0.4703534245491028, "y": 0.5866360664367676, "z": -0.14117155596613884, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2478}, {"x": 0.4628494083881378, "y": 0.5856468677520752, "z": -0.141003955504857, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2478}, {"x": 0.4586678743362427, "y": 0.5772919058799744, "z": -0.14086016186047345, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2478}, {"x": 0.4611395597457886, "y": 0.5825402140617371, "z": -0.14121456653811038, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2478}, {"x": 0.4643484055995941, "y": 0.5882236957550049, "z": -0.14076156541705132, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2478}, {"x": 0.4664923846721649, "y": 0.5854963064193726, "z": -0.14065784076228738, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2478}, {"x": 0.461298406124115, "y": 0.5757753849029541, "z": -0.13994784007081762, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2478}, {"x": 0.4644547402858734, "y": 0.5819211006164551, "z": -0.1404713517986238, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2478}, {"x": 0.468250572681427, "y": 0.588435709476471, "z": -0.1407824541674927, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2478}, {"x": 0.4602796137332916, "y": 0.5565957427024841, "z": -0.13949249181314372, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2478}, {"x": 0.4682754874229431, "y": 0.5646252632141113, "z": -0.13998886034823954, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2478}, {"x": 0.46520233154296875, "y": 0.5601654052734375, "z": -0.1396579209540505, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2478}, {"x": 0.4708283841609955, "y": 0.5682167410850525, "z": -0.14025907986797392, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2478}, {"x": 0.4545985758304596, "y": 0.5567935109138489, "z": -0.1392150727025463, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2478}], [{"x": 0.47683241963386536, "y": 0.7849991321563721, "z": 0.03983369842171669, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2479}, {"x": 0.48910292983055115, "y": 0.39030691981315613, "z": -0.008866866119205952, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2479}, {"x": 0.49182870984077454, "y": 0.5105204582214355, "z": 0.08593833446502686, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2479}, {"x": 0.4861035645008087, "y": 0.3846569061279297, "z": -0.08784099668264389, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2479}, {"x": 0.4835831820964813, "y": 0.38410159945487976, "z": -0.0877424031496048, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2479}, {"x": 0.48744311928749084, "y": 0.38528621196746826, "z": -0.08778552711009979, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2479}, {"x": 0.4948534071445465, "y": 0.812870442867279, "z": -0.031110724434256554, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2479}, {"x": 0.4724677801132202, "y": 0.8039929270744324, "z": 0.03873511031270027, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2479}, {"x": 0.48994600772857666, "y": 0.571336030960083, "z": 0.032756462693214417, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2479}, {"x": 0.49415895342826843, "y": 0.5589461326599121, "z": -0.005359669681638479, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2479}, {"x": 0.48466920852661133, "y": 0.6798263192176819, "z": 0.009085367433726788, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2479}, {"x": 0.49396470189094543, "y": 0.5628407001495361, "z": 0.01094771921634674, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2479}, {"x": 0.49451377987861633, "y": 0.447183221578598, "z": 0.059612393379211426, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2479}, {"x": 0.49374252557754517, "y": 0.5528973340988159, "z": 0.014686853624880314, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2479}, {"x": 0.49318090081214905, "y": 0.5520145297050476, "z": 0.022557534277439117, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2479}, {"x": 0.4840668737888336, "y": 0.40228384733200073, "z": -0.07249758392572403, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2479}, {"x": 0.4762410819530487, "y": 0.40134504437446594, "z": -0.08578252047300339, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2479}, {"x": 0.48079347610473633, "y": 0.39218658208847046, "z": -0.10336162894964218, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2479}, {"x": 0.47203484177589417, "y": 0.7847662568092346, "z": -0.08221451938152313, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2479}, {"x": 0.47058001160621643, "y": 0.3876148462295532, "z": -0.05386245623230934, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2479}, {"x": 0.43698909878730774, "y": 0.50403892993927, "z": -0.06628473848104477, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2479}, {"x": 0.47534215450286865, "y": 0.38361459970474243, "z": -0.09722471237182617, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2479}, {"x": 0.4771791696548462, "y": 0.3835057020187378, "z": -0.09702016413211823, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2479}, {"x": 0.47350943088531494, "y": 0.38355597853660583, "z": -0.0973193347454071, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2479}, {"x": 0.4727412760257721, "y": 0.8230292201042175, "z": -0.16399583220481873, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2479}, {"x": 0.46989428997039795, "y": 0.8033792972564697, "z": -0.08405110239982605, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2479}, {"x": 0.4656045138835907, "y": 0.5698437094688416, "z": -0.032863419502973557, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2479}, {"x": 0.4627479314804077, "y": 0.5677793622016907, "z": -0.15962032973766327, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2479}, {"x": 0.4691934287548065, "y": 0.6736829280853271, "z": -0.09636350721120834, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2479}, {"x": 0.4594968259334564, "y": 0.5750634074211121, "z": -0.15492023527622223, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2479}, {"x": 0.453485369682312, "y": 0.439863383769989, "z": -0.04201216250658035, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2479}, {"x": 0.462327778339386, "y": 0.5624364614486694, "z": -0.1333640068769455, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2479}, {"x": 0.4549342393875122, "y": 0.5566819906234741, "z": -0.13060548901557922, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2479}, {"x": 0.46970564126968384, "y": 0.5830625891685486, "z": -0.13388202898204327, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2479}, {"x": 0.46481573581695557, "y": 0.5733794569969177, "z": -0.1312327131163329, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2479}, {"x": 0.4677431285381317, "y": 0.5792398452758789, "z": -0.13261120580136776, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2479}, {"x": 0.47120922803878784, "y": 0.58603835105896, "z": -0.1348181744106114, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2479}, {"x": 0.4679219126701355, "y": 0.586058497428894, "z": -0.13435965590178967, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2479}, {"x": 0.4623434245586395, "y": 0.5760520696640015, "z": -0.13197297975420952, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2479}, {"x": 0.4656199514865875, "y": 0.5825693607330322, "z": -0.1331243459135294, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2479}, {"x": 0.46989861130714417, "y": 0.5886328816413879, "z": -0.13521852623671293, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2479}, {"x": 0.4567236304283142, "y": 0.5844094157218933, "z": -0.13562964787706733, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2479}, {"x": 0.4556083679199219, "y": 0.5757531523704529, "z": -0.13393518258817494, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2479}, {"x": 0.4561198651790619, "y": 0.5810036659240723, "z": -0.13528786646202207, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2479}, {"x": 0.45738595724105835, "y": 0.5874292850494385, "z": -0.13575432263314724, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2479}, {"x": 0.4642600119113922, "y": 0.5864282250404358, "z": -0.13505396014079452, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2479}, {"x": 0.45926252007484436, "y": 0.5768599510192871, "z": -0.132910423213616, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2479}, {"x": 0.4620141386985779, "y": 0.5830814242362976, "z": -0.13424174417741597, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2479}, {"x": 0.4663388133049011, "y": 0.5893303155899048, "z": -0.13562262384220958, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2479}, {"x": 0.4596264660358429, "y": 0.5581105351448059, "z": -0.13154564937576652, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2479}, {"x": 0.4672333002090454, "y": 0.5651807188987732, "z": -0.13268607342615724, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2479}, {"x": 0.46427878737449646, "y": 0.5615597367286682, "z": -0.13209528755396605, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2479}, {"x": 0.4698858857154846, "y": 0.568043053150177, "z": -0.13330958457663655, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2479}, {"x": 0.45437195897102356, "y": 0.5579126477241516, "z": -0.13060546629544056, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2479}], [{"x": 0.4769756495952606, "y": 0.7852470278739929, "z": 0.06382198631763458, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2480}, {"x": 0.48902490735054016, "y": 0.39059144258499146, "z": -0.021367302164435387, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2480}, {"x": 0.4916020333766937, "y": 0.5165450572967529, "z": 0.07683244347572327, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2480}, {"x": 0.4860977828502655, "y": 0.38497355580329895, "z": -0.09968505054712296, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2480}, {"x": 0.4835922122001648, "y": 0.38425177335739136, "z": -0.09957843273878098, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2480}, {"x": 0.4874348044395447, "y": 0.38565880060195923, "z": -0.09962878376245499, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2480}, {"x": 0.4948403537273407, "y": 0.8129643797874451, "z": -0.006431388668715954, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2480}, {"x": 0.4729475975036621, "y": 0.8033030033111572, "z": 0.0640951618552208, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2480}, {"x": 0.4905444085597992, "y": 0.5714377164840698, "z": 0.03161837160587311, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2480}, {"x": 0.4933459162712097, "y": 0.5754846930503845, "z": -0.004574227146804333, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2480}, {"x": 0.4847988784313202, "y": 0.6808195114135742, "z": 0.015030981972813606, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2480}, {"x": 0.49281075596809387, "y": 0.5759214758872986, "z": 0.012361874803900719, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2480}, {"x": 0.49462223052978516, "y": 0.44800689816474915, "z": 0.04614029452204704, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2480}, {"x": 0.492969810962677, "y": 0.5701183676719666, "z": 0.014843402430415154, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2480}, {"x": 0.4923454821109772, "y": 0.5627803206443787, "z": 0.022679533809423447, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2480}, {"x": 0.4838963747024536, "y": 0.4025207757949829, "z": -0.08423075079917908, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2480}, {"x": 0.4761274755001068, "y": 0.4013439118862152, "z": -0.09741786122322083, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2480}, {"x": 0.4807946979999542, "y": 0.39220574498176575, "z": -0.11487043648958206, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2480}, {"x": 0.4713369905948639, "y": 0.7850887179374695, "z": -0.07331276684999466, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2480}, {"x": 0.4705784022808075, "y": 0.3872106075286865, "z": -0.06387393921613693, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2480}, {"x": 0.43718308210372925, "y": 0.5067122578620911, "z": -0.07937871664762497, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2480}, {"x": 0.47535404562950134, "y": 0.38352906703948975, "z": -0.10890987515449524, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2480}, {"x": 0.47723808884620667, "y": 0.3834790289402008, "z": -0.10870912671089172, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2480}, {"x": 0.4735695421695709, "y": 0.383417010307312, "z": -0.10900972783565521, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2480}, {"x": 0.4703122675418854, "y": 0.8252485990524292, "z": -0.15625013411045074, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2480}, {"x": 0.4697950780391693, "y": 0.8026725053787231, "z": -0.07394876331090927, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2480}, {"x": 0.46563977003097534, "y": 0.5706769227981567, "z": -0.03171714395284653, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2480}, {"x": 0.4619496762752533, "y": 0.5686395764350891, "z": -0.1755623072385788, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2480}, {"x": 0.4687301814556122, "y": 0.6747087836265564, "z": -0.09878701716661453, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2480}, {"x": 0.45867428183555603, "y": 0.5758084058761597, "z": -0.1693536639213562, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2480}, {"x": 0.4523521661758423, "y": 0.4412834644317627, "z": -0.04816034808754921, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2480}, {"x": 0.46139463782310486, "y": 0.5632369518280029, "z": -0.14669738709926605, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2480}, {"x": 0.4537076950073242, "y": 0.5582948923110962, "z": -0.14211736619472504, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2480}, {"x": 0.46966004371643066, "y": 0.5828249454498291, "z": -0.14426184026524425, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2480}, {"x": 0.4642907381057739, "y": 0.5746510624885559, "z": -0.1421211071512971, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2480}, {"x": 0.4677852988243103, "y": 0.5796539187431335, "z": -0.1431993436999619, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2480}, {"x": 0.47117990255355835, "y": 0.5853551626205444, "z": -0.14500517374835908, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2480}, {"x": 0.4681923985481262, "y": 0.5863465070724487, "z": -0.14394369104411453, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2480}, {"x": 0.46272391080856323, "y": 0.5781893134117126, "z": -0.14240970902028494, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2480}, {"x": 0.46616071462631226, "y": 0.5835668444633484, "z": -0.14320095698349178, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2480}, {"x": 0.46992647647857666, "y": 0.5883994102478027, "z": -0.1444381601177156, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2480}, {"x": 0.4620996117591858, "y": 0.588352382183075, "z": -0.14406050078105181, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2480}, {"x": 0.4580792188644409, "y": 0.58186936378479, "z": -0.14366699859965593, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2480}, {"x": 0.4604986906051636, "y": 0.586177408695221, "z": -0.14420098718255758, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2480}, {"x": 0.4634888172149658, "y": 0.5901435613632202, "z": -0.14384741033427417, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2480}, {"x": 0.46602359414100647, "y": 0.5882038474082947, "z": -0.1438771567773074, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2480}, {"x": 0.4606643319129944, "y": 0.5805265307426453, "z": -0.14295771776232868, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2480}, {"x": 0.46391141414642334, "y": 0.5855333209037781, "z": -0.14368585613556206, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2480}, {"x": 0.46779948472976685, "y": 0.5902478694915771, "z": -0.1439664145000279, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2480}, {"x": 0.457644522190094, "y": 0.5618050694465637, "z": -0.14311455201823264, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2480}, {"x": 0.4660670757293701, "y": 0.5662468075752258, "z": -0.1442399846855551, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2480}, {"x": 0.46264946460723877, "y": 0.5633105635643005, "z": -0.1436741838697344, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2480}, {"x": 0.46868976950645447, "y": 0.5694374442100525, "z": -0.14469933998771012, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2480}, {"x": 0.4524848461151123, "y": 0.5632811784744263, "z": -0.142117358493846, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2480}], [{"x": 0.477007120847702, "y": 0.7852270603179932, "z": 0.06986808031797409, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2481}, {"x": 0.48896732926368713, "y": 0.39180925488471985, "z": -0.046709705144166946, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2481}, {"x": 0.494225412607193, "y": 0.5192021131515503, "z": 0.05329984799027443, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2481}, {"x": 0.48609402775764465, "y": 0.38582661747932434, "z": -0.12563402950763702, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2481}, {"x": 0.4836057424545288, "y": 0.38475391268730164, "z": -0.12551763653755188, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2481}, {"x": 0.48743268847465515, "y": 0.38666197657585144, "z": -0.12558718025684357, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2481}, {"x": 0.4942023456096649, "y": 0.813101053237915, "z": -0.004480547271668911, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2481}, {"x": 0.4729490280151367, "y": 0.802980363368988, "z": 0.07024533301591873, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2481}, {"x": 0.491099089384079, "y": 0.5714882016181946, "z": 0.02895156480371952, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2481}, {"x": 0.49417299032211304, "y": 0.5824534893035889, "z": -0.030656427145004272, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2481}, {"x": 0.48490676283836365, "y": 0.6814779043197632, "z": 0.018009662628173828, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2481}, {"x": 0.4938347637653351, "y": 0.5814307928085327, "z": -0.013073435053229332, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2481}, {"x": 0.4950394928455353, "y": 0.4491416811943054, "z": 0.021601198241114616, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2481}, {"x": 0.49381086230278015, "y": 0.5773561000823975, "z": -0.009425762109458447, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2481}, {"x": 0.49308955669403076, "y": 0.5675660967826843, "z": -0.0013813612749800086, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2481}, {"x": 0.4835816025733948, "y": 0.40302711725234985, "z": -0.10923247039318085, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2481}, {"x": 0.4755791127681732, "y": 0.40132787823677063, "z": -0.12142495065927505, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2481}, {"x": 0.4807366728782654, "y": 0.3922324776649475, "z": -0.14025476574897766, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2481}, {"x": 0.4704364240169525, "y": 0.7861350774765015, "z": -0.07386347651481628, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2481}, {"x": 0.47052085399627686, "y": 0.38682857155799866, "z": -0.0856470838189125, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2481}, {"x": 0.43825215101242065, "y": 0.5105904340744019, "z": -0.08397907763719559, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2481}, {"x": 0.47537556290626526, "y": 0.3834761381149292, "z": -0.13405843079090118, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2481}, {"x": 0.4773038923740387, "y": 0.3834777772426605, "z": -0.1338619738817215, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2481}, {"x": 0.4736217260360718, "y": 0.38331589102745056, "z": -0.1341562271118164, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2481}, {"x": 0.4703734219074249, "y": 0.8264862895011902, "z": -0.16328687965869904, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2481}, {"x": 0.4694838225841522, "y": 0.8027769923210144, "z": -0.07508952915668488, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2481}, {"x": 0.4656148850917816, "y": 0.5711785554885864, "z": -0.02904478833079338, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2481}, {"x": 0.46136680245399475, "y": 0.5743802785873413, "z": -0.18616703152656555, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2481}, {"x": 0.46807241439819336, "y": 0.6752085089683533, "z": -0.09749791771173477, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2481}, {"x": 0.4579533040523529, "y": 0.5793313980102539, "z": -0.17889820039272308, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2481}, {"x": 0.45092758536338806, "y": 0.4429904818534851, "z": -0.06274505704641342, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2481}, {"x": 0.4609648585319519, "y": 0.568557858467102, "z": -0.15677867829799652, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2481}, {"x": 0.4535635709762573, "y": 0.5619704723358154, "z": -0.15209592878818512, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2481}], [{"x": 0.47718939185142517, "y": 0.7849451303482056, "z": 0.08649998158216476, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2482}, {"x": 0.48902687430381775, "y": 0.3930853605270386, "z": -0.06432763487100601, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2482}, {"x": 0.49532967805862427, "y": 0.5212587714195251, "z": 0.03991271182894707, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2482}, {"x": 0.48612430691719055, "y": 0.3867816925048828, "z": -0.14422455430030823, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2482}, {"x": 0.4837431311607361, "y": 0.385550320148468, "z": -0.1441051959991455, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2482}, {"x": 0.4876422882080078, "y": 0.3877982497215271, "z": -0.14417794346809387, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2482}, {"x": 0.4940928518772125, "y": 0.8130248188972473, "z": 0.012182735837996006, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2482}, {"x": 0.47322002053260803, "y": 0.8020737171173096, "z": 0.08784229308366776, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2482}, {"x": 0.4911307394504547, "y": 0.5714774131774902, "z": 0.028826264664530754, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2482}, {"x": 0.49443185329437256, "y": 0.5900564193725586, "z": -0.04657088965177536, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2482}, {"x": 0.48508813977241516, "y": 0.6816012859344482, "z": 0.02451692335307598, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2482}, {"x": 0.49408215284347534, "y": 0.5884808301925659, "z": -0.028583552688360214, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2482}, {"x": 0.4951460659503937, "y": 0.4496197998523712, "z": 0.006719238590449095, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2482}, {"x": 0.49418750405311584, "y": 0.5858851671218872, "z": -0.02431866154074669, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2482}, {"x": 0.49341660737991333, "y": 0.5736983418464661, "z": -0.016142049804329872, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2482}, {"x": 0.48349371552467346, "y": 0.4038514196872711, "z": -0.12702879309654236, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2482}, {"x": 0.47540128231048584, "y": 0.40143051743507385, "z": -0.13923043012619019, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2482}, {"x": 0.4807884097099304, "y": 0.39253315329551697, "z": -0.15858587622642517, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2482}, {"x": 0.46962183713912964, "y": 0.7871254086494446, "z": -0.07261515408754349, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2482}, {"x": 0.47054141759872437, "y": 0.3868339955806732, "z": -0.10331442207098007, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2482}, {"x": 0.4388735890388489, "y": 0.5138809680938721, "z": -0.09067081660032272, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2482}, {"x": 0.4754191040992737, "y": 0.3835239112377167, "z": -0.15261554718017578, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2482}, {"x": 0.47731903195381165, "y": 0.3836117386817932, "z": -0.15242061018943787, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2482}, {"x": 0.473666250705719, "y": 0.38334909081459045, "z": -0.1527087241411209, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2482}, {"x": 0.470377117395401, "y": 0.8261792063713074, "z": -0.16565562784671783, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2482}, {"x": 0.4691198170185089, "y": 0.8030586242675781, "z": -0.07401885092258453, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2482}, {"x": 0.46538135409355164, "y": 0.5714925527572632, "z": -0.028919240459799767, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2482}, {"x": 0.4606783986091614, "y": 0.5825969576835632, "z": -0.1928364783525467, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2482}, {"x": 0.4677295982837677, "y": 0.675906777381897, "z": -0.09630715101957321, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2482}, {"x": 0.45695096254348755, "y": 0.5859812498092651, "z": -0.18485696613788605, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2482}, {"x": 0.45061591267585754, "y": 0.4442710280418396, "z": -0.07828526943922043, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2482}, {"x": 0.46069395542144775, "y": 0.5776786208152771, "z": -0.16305208206176758, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2482}, {"x": 0.4529542326927185, "y": 0.5696306824684143, "z": -0.15852554142475128, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2482}], [{"x": 0.4773328900337219, "y": 0.7839030623435974, "z": 0.07344348728656769, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2483}, {"x": 0.48900917172431946, "y": 0.39436933398246765, "z": -0.0515521764755249, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2483}, {"x": 0.497835248708725, "y": 0.5204803347587585, "z": 0.05068369209766388, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2483}, {"x": 0.4861986041069031, "y": 0.387622594833374, "z": -0.1312459409236908, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2483}, {"x": 0.4839140474796295, "y": 0.38616466522216797, "z": -0.1311323344707489, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2483}, {"x": 0.48782843351364136, "y": 0.3888927698135376, "z": -0.1311997026205063, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2483}, {"x": 0.49324995279312134, "y": 0.8126088380813599, "z": -0.00115953607019037, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2483}, {"x": 0.47330576181411743, "y": 0.8007169365882874, "z": 0.07399056851863861, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2483}, {"x": 0.4911235272884369, "y": 0.5714578628540039, "z": 0.0288532804697752, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2483}, {"x": 0.4963480830192566, "y": 0.5900296568870544, "z": -0.037355296313762665, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2483}, {"x": 0.4858385920524597, "y": 0.6812714338302612, "z": 0.02279951609671116, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2483}, {"x": 0.496211975812912, "y": 0.5885226130485535, "z": -0.01953238435089588, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2483}, {"x": 0.4955245852470398, "y": 0.44973689317703247, "z": 0.01855410262942314, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2483}, {"x": 0.49623027443885803, "y": 0.5849813222885132, "z": -0.015452294610440731, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2483}, {"x": 0.4968509078025818, "y": 0.5720185041427612, "z": -0.007325512357056141, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2483}, {"x": 0.4834214746952057, "y": 0.4042382538318634, "z": -0.11480720341205597, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2483}, {"x": 0.47532549500465393, "y": 0.4014163315296173, "z": -0.12697909772396088, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2483}, {"x": 0.4808206260204315, "y": 0.3925958275794983, "z": -0.14607052505016327, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2483}, {"x": 0.46837514638900757, "y": 0.7883763313293457, "z": -0.0774732381105423, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2483}, {"x": 0.4705546200275421, "y": 0.3868393301963806, "z": -0.0905969887971878, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2483}, {"x": 0.43901196122169495, "y": 0.5148208141326904, "z": -0.08570678532123566, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2483}, {"x": 0.47548437118530273, "y": 0.3835254907608032, "z": -0.13963793218135834, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2483}, {"x": 0.47747930884361267, "y": 0.38363319635391235, "z": -0.13944268226623535, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2483}, {"x": 0.47369450330734253, "y": 0.3833545744419098, "z": -0.13973011076450348, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2483}, {"x": 0.46987631916999817, "y": 0.8259692192077637, "z": -0.17099176347255707, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2483}, {"x": 0.46833536028862, "y": 0.8038517236709595, "z": -0.07954881340265274, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2483}, {"x": 0.4651729166507721, "y": 0.57157301902771, "z": -0.02896004542708397, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2483}, {"x": 0.4605867266654968, "y": 0.586068332195282, "z": -0.18774978816509247, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2483}, {"x": 0.4673692584037781, "y": 0.6765323877334595, "z": -0.0948411077260971, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2483}, {"x": 0.4566415250301361, "y": 0.5891290903091431, "z": -0.18324409425258636, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2483}, {"x": 0.45055848360061646, "y": 0.444784551858902, "z": -0.07187188416719437, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2483}, {"x": 0.4606899917125702, "y": 0.581415593624115, "z": -0.16228032112121582, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2483}, {"x": 0.452759712934494, "y": 0.5730229020118713, "z": -0.15558408200740814, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2483}, {"x": 0.4666166305541992, "y": 0.5935497283935547, "z": -0.1587184441741556, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2483}, {"x": 0.4616827070713043, "y": 0.5858162045478821, "z": -0.1563258096575737, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2483}, {"x": 0.46465975046157837, "y": 0.5912287831306458, "z": -0.15762286121025681, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2483}, {"x": 0.4682358205318451, "y": 0.5949233174324036, "z": -0.15945790568366647, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2483}, {"x": 0.4651183784008026, "y": 0.595342755317688, "z": -0.15860144817270339, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2483}, {"x": 0.4596097767353058, "y": 0.5882061719894409, "z": -0.15679889649618417, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2483}, {"x": 0.4629010558128357, "y": 0.5933385491371155, "z": -0.15777356992475688, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2483}, {"x": 0.46705466508865356, "y": 0.5962141156196594, "z": -0.15921176504343748, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2483}, {"x": 0.45636236667633057, "y": 0.5972581505775452, "z": -0.15891171735711396, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2483}, {"x": 0.4537874162197113, "y": 0.5896592140197754, "z": -0.15814744401723146, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2483}, {"x": 0.4550924003124237, "y": 0.5948672294616699, "z": -0.15895984112285078, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2483}, {"x": 0.45759665966033936, "y": 0.5983480215072632, "z": -0.15875789849087596, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2483}, {"x": 0.46155086159706116, "y": 0.5963066220283508, "z": -0.1585740251466632, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2483}, {"x": 0.45693114399909973, "y": 0.5894163846969604, "z": -0.15742867218796164, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2483}, {"x": 0.45975399017333984, "y": 0.5945172309875488, "z": -0.15840160567313433, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2483}, {"x": 0.4631578326225281, "y": 0.5968087911605835, "z": -0.15864682593382895, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2483}, {"x": 0.4568501114845276, "y": 0.5747877955436707, "z": -0.15630135918036103, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2483}, {"x": 0.46338459849357605, "y": 0.5833116769790649, "z": -0.15758336777798831, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2483}, {"x": 0.46119454503059387, "y": 0.5785688161849976, "z": -0.15691970090847462, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2483}, {"x": 0.4646940231323242, "y": 0.5877292156219482, "z": -0.1581828286871314, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2483}, {"x": 0.4521307945251465, "y": 0.5733045339584351, "z": -0.15558407342346836, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2483}], [{"x": 0.47756966948509216, "y": 0.7821663022041321, "z": 0.07809285819530487, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2484}, {"x": 0.48910242319107056, "y": 0.3952762484550476, "z": -0.07013140618801117, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2484}, {"x": 0.501581072807312, "y": 0.5200693011283875, "z": 0.027143385261297226, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2484}, {"x": 0.48633795976638794, "y": 0.38841623067855835, "z": -0.14966869354248047, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2484}, {"x": 0.484085351228714, "y": 0.3867560029029846, "z": -0.14954200387001038, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2484}, {"x": 0.4880385100841522, "y": 0.3898245692253113, "z": -0.14963670074939728, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2484}, {"x": 0.4917915165424347, "y": 0.8125311136245728, "z": 0.00041238812264055014, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2484}, {"x": 0.47371289134025574, "y": 0.7981374263763428, "z": 0.07975123077630997, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2484}, {"x": 0.49163928627967834, "y": 0.5710397958755493, "z": 0.022092662751674652, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2484}, {"x": 0.5023289918899536, "y": 0.5862618088722229, "z": -0.07040952891111374, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2484}, {"x": 0.48582667112350464, "y": 0.681145429611206, "z": 0.01703515648841858, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2484}, {"x": 0.5036821365356445, "y": 0.585567831993103, "z": -0.051952067762613297, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2484}, {"x": 0.4960322082042694, "y": 0.4501623809337616, "z": -0.0036986316554248333, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2484}, {"x": 0.5016208291053772, "y": 0.5811353921890259, "z": -0.044783007353544235, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2484}, {"x": 0.5046612620353699, "y": 0.5688704252243042, "z": -0.036282192915678024, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2484}, {"x": 0.48340633511543274, "y": 0.40454763174057007, "z": -0.13282254338264465, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2484}, {"x": 0.4753040373325348, "y": 0.40142303705215454, "z": -0.14226433634757996, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2484}, {"x": 0.4808334708213806, "y": 0.39266932010650635, "z": -0.16397753357887268, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2484}, {"x": 0.4680083692073822, "y": 0.7885728478431702, "z": -0.03608625382184982, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2484}, {"x": 0.47056302428245544, "y": 0.3869243860244751, "z": -0.09956108778715134, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2484}, {"x": 0.43923303484916687, "y": 0.5177828073501587, "z": -0.0787297859787941, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2484}, {"x": 0.47560518980026245, "y": 0.3835276961326599, "z": -0.15595735609531403, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2484}, {"x": 0.47763457894325256, "y": 0.3836700916290283, "z": -0.15577451884746552, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2484}, {"x": 0.47370922565460205, "y": 0.38335832953453064, "z": -0.1560399830341339, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2484}, {"x": 0.4702198803424835, "y": 0.8258960247039795, "z": -0.12941737473011017, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2484}, {"x": 0.4680580794811249, "y": 0.8038589954376221, "z": -0.03667520359158516, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2484}, {"x": 0.46519768238067627, "y": 0.5714952349662781, "z": -0.02221743017435074, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2484}, {"x": 0.4615231454372406, "y": 0.5864216685295105, "z": -0.18749412894248962, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2484}, {"x": 0.4669651687145233, "y": 0.6770984530448914, "z": -0.07103105634450912, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2484}, {"x": 0.4576006531715393, "y": 0.5896012187004089, "z": -0.18126554787158966, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2484}, {"x": 0.450032114982605, "y": 0.44671502709388733, "z": -0.06934331357479095, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2484}, {"x": 0.4615325331687927, "y": 0.5812598466873169, "z": -0.15952439606189728, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2484}, {"x": 0.4537859261035919, "y": 0.5725681781768799, "z": -0.15541885793209076, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2484}, {"x": 0.46738678216934204, "y": 0.595430850982666, "z": -0.15511941112345085, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2484}, {"x": 0.4626666009426117, "y": 0.5866603255271912, "z": -0.1540015396894887, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2484}, {"x": 0.4655774235725403, "y": 0.5923191905021667, "z": -0.1544967363588512, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2484}, {"x": 0.46874988079071045, "y": 0.5974422097206116, "z": -0.1555051447430742, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2484}, {"x": 0.46770066022872925, "y": 0.595374584197998, "z": -0.1555336008168524, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2484}, {"x": 0.46303048729896545, "y": 0.5861828923225403, "z": -0.15460715675726533, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2484}, {"x": 0.4659222662448883, "y": 0.5920971632003784, "z": -0.1549852891766932, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2484}, {"x": 0.4691128134727478, "y": 0.5978100299835205, "z": -0.15586487835389562, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2484}, {"x": 0.4664853811264038, "y": 0.5915666818618774, "z": -0.15576694440096617, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2484}, {"x": 0.46280452609062195, "y": 0.5836183428764343, "z": -0.1560539593338035, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2484}, {"x": 0.4651212692260742, "y": 0.5886813402175903, "z": -0.15610525908414274, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2484}, {"x": 0.4675171375274658, "y": 0.5938866138458252, "z": -0.15544042574765626, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2484}, {"x": 0.4673575460910797, "y": 0.5944488048553467, "z": -0.15560745932452846, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2484}, {"x": 0.4630952477455139, "y": 0.5851045250892639, "z": -0.15532270070980303, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2484}, {"x": 0.4658263325691223, "y": 0.5911204218864441, "z": -0.15559451309673022, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2484}, {"x": 0.46850451827049255, "y": 0.5968675017356873, "z": -0.1555609433708014, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2484}, {"x": 0.45700448751449585, "y": 0.5789327621459961, "z": -0.15499888887279667, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2484}, {"x": 0.46227577328681946, "y": 0.5887994170188904, "z": -0.15471386641729623, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2484}, {"x": 0.46004435420036316, "y": 0.5845157504081726, "z": -0.15475716977380216, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2484}, {"x": 0.46398040652275085, "y": 0.5911154747009277, "z": -0.15464701305609196, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2484}, {"x": 0.4550515413284302, "y": 0.5727918744087219, "z": -0.1554188397069023, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2484}], [{"x": 0.4775809347629547, "y": 0.7821798920631409, "z": 0.08034109324216843, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2485}, {"x": 0.4892681837081909, "y": 0.39705365896224976, "z": -0.06448826193809509, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2485}, {"x": 0.5014139413833618, "y": 0.519466757774353, "z": 0.04548061639070511, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2485}, {"x": 0.48744839429855347, "y": 0.3904806971549988, "z": -0.14637427031993866, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2485}, {"x": 0.4855813682079315, "y": 0.3889293372631073, "z": -0.1462501585483551, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2485}, {"x": 0.4888440668582916, "y": 0.3917975127696991, "z": -0.1463358998298645, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2485}, {"x": 0.49117764830589294, "y": 0.812522292137146, "z": 0.005557399708777666, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2485}, {"x": 0.4737936854362488, "y": 0.798366904258728, "z": 0.08156060427427292, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2485}, {"x": 0.49205029010772705, "y": 0.568547785282135, "z": 0.02612450160086155, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2485}, {"x": 0.5051725506782532, "y": 0.5925707221031189, "z": -0.03861897438764572, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2485}, {"x": 0.4858318567276001, "y": 0.6808825135231018, "z": 0.01911349408328533, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2485}, {"x": 0.505724310874939, "y": 0.5912947058677673, "z": -0.019385594874620438, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2485}, {"x": 0.4957987666130066, "y": 0.4507341682910919, "z": 0.00597993191331625, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2485}, {"x": 0.50437331199646, "y": 0.5873315334320068, "z": -0.01588822342455387, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2485}, {"x": 0.5062700510025024, "y": 0.5745423436164856, "z": -0.007359059061855078, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2485}, {"x": 0.4835868179798126, "y": 0.4057356119155884, "z": -0.1292160004377365, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2485}, {"x": 0.4757343530654907, "y": 0.4017127454280853, "z": -0.14231188595294952, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2485}, {"x": 0.4821711778640747, "y": 0.3938726484775543, "z": -0.16136197745800018, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2485}, {"x": 0.46757373213768005, "y": 0.7886350154876709, "z": -0.06436975300312042, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2485}, {"x": 0.47065192461013794, "y": 0.38693371415138245, "z": -0.10653790831565857, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2485}, {"x": 0.43929773569107056, "y": 0.5167283415794373, "z": -0.11117413640022278, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2485}, {"x": 0.47664347290992737, "y": 0.38358235359191895, "z": -0.15537407994270325, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2485}, {"x": 0.4791899621486664, "y": 0.384064257144928, "z": -0.15519537031650543, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2485}, {"x": 0.474721223115921, "y": 0.38335323333740234, "z": -0.1554519534111023, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2485}, {"x": 0.47031059861183167, "y": 0.8253996968269348, "z": -0.15496470034122467, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2485}, {"x": 0.4676978290081024, "y": 0.8039661049842834, "z": -0.06575935333967209, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2485}, {"x": 0.46519801020622253, "y": 0.5701578259468079, "z": -0.026240266859531403, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2485}, {"x": 0.46643078327178955, "y": 0.5835543870925903, "z": -0.22964875400066376, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2485}, {"x": 0.4667133092880249, "y": 0.6770784854888916, "z": -0.08464092761278152, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2485}, {"x": 0.4626106917858124, "y": 0.5835543870925903, "z": -0.22446078062057495, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2485}, {"x": 0.4499437212944031, "y": 0.44613391160964966, "z": -0.08084747940301895, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2485}, {"x": 0.46636709570884705, "y": 0.5782049894332886, "z": -0.19885577261447906, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2485}, {"x": 0.46027153730392456, "y": 0.5642923712730408, "z": -0.19528451561927795, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2485}, {"x": 0.5058698654174805, "y": 0.6179391741752625, "z": -0.00510831899009645, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2485}, {"x": 0.506989598274231, "y": 0.6045020818710327, "z": -0.0038991891779005527, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2485}, {"x": 0.5072412490844727, "y": 0.6134859919548035, "z": -0.004349554888904095, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2485}, {"x": 0.5042786002159119, "y": 0.6201955080032349, "z": -0.005473465076647699, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2485}, {"x": 0.5064723491668701, "y": 0.6185087561607361, "z": -0.006032534525729716, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2485}, {"x": 0.5077129006385803, "y": 0.6043694019317627, "z": -0.005249288864433765, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2485}, {"x": 0.5078645348548889, "y": 0.614066481590271, "z": -0.0053797028958797455, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2485}, {"x": 0.5047739148139954, "y": 0.6205253005027771, "z": -0.006456644041463733, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2485}, {"x": 0.5068888068199158, "y": 0.6151072978973389, "z": -0.0071691286721033975, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2485}, {"x": 0.5074949860572815, "y": 0.6034504175186157, "z": -0.008187100989744067, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2485}, {"x": 0.5075583457946777, "y": 0.6109840273857117, "z": -0.007638119102921337, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2485}, {"x": 0.5058541297912598, "y": 0.6175145506858826, "z": -0.006873994949273765, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2485}, {"x": 0.5067464709281921, "y": 0.6175153255462646, "z": -0.006593382160644978, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2485}, {"x": 0.5079476833343506, "y": 0.6040480136871338, "z": -0.006718949240166694, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2485}, {"x": 0.5079198479652405, "y": 0.6133114695549011, "z": -0.006517297122627497, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2485}, {"x": 0.5052744150161743, "y": 0.6195276379585266, "z": -0.006703235674649477, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2485}, {"x": 0.5035598874092102, "y": 0.590878427028656, "z": -0.005657541332766414, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2485}, {"x": 0.5026243329048157, "y": 0.6053957343101501, "z": -0.004952536895871162, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2485}, {"x": 0.5030372142791748, "y": 0.5994722247123718, "z": -0.00497528025880456, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2485}, {"x": 0.502773106098175, "y": 0.6101619005203247, "z": -0.0048357483465224504, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2485}, {"x": 0.5055109262466431, "y": 0.5820373296737671, "z": -0.007359037367436372, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2485}, {"x": 0.47017917037010193, "y": 0.6022328734397888, "z": -0.1950535348878475, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2485}, {"x": 0.46744656562805176, "y": 0.5844033360481262, "z": -0.1933559130411595, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2485}, {"x": 0.4687756299972534, "y": 0.5957560539245605, "z": -0.19405635120347142, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2485}, {"x": 0.4716622531414032, "y": 0.6071711778640747, "z": -0.19575099568464793, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2485}, {"x": 0.4684707224369049, "y": 0.6023603081703186, "z": -0.19528435355074691, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2485}, {"x": 0.465935081243515, "y": 0.585260272026062, "z": -0.19379975891206414, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2485}, {"x": 0.46719035506248474, "y": 0.596056342124939, "z": -0.19431260059354827, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2485}, {"x": 0.4697433412075043, "y": 0.6077551245689392, "z": -0.19593805604381487, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2485}, {"x": 0.46474888920783997, "y": 0.6001408100128174, "z": -0.1950883468380198, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2485}, {"x": 0.4627477824687958, "y": 0.5857393741607666, "z": -0.1954612246627221, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2485}, {"x": 0.46376198530197144, "y": 0.5947951078414917, "z": -0.19552617335284594, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2485}, {"x": 0.46561986207962036, "y": 0.6046475768089294, "z": -0.19467420753790066, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2485}, {"x": 0.4668412208557129, "y": 0.6014803051948547, "z": -0.19496905407868326, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2485}, {"x": 0.4643951952457428, "y": 0.5856984257698059, "z": -0.19453512714244425, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2485}, {"x": 0.4656127691268921, "y": 0.5957026481628418, "z": -0.1948942627350334, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2485}, {"x": 0.4679742157459259, "y": 0.6063524484634399, "z": -0.1949779585993383, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2485}, {"x": 0.46636176109313965, "y": 0.563501238822937, "z": -0.19571434034151025, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2485}, {"x": 0.470950722694397, "y": 0.5843122601509094, "z": -0.19564148440258577, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2485}, {"x": 0.4694869816303253, "y": 0.5747603178024292, "z": -0.19560422335052863, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2485}, {"x": 0.4719478487968445, "y": 0.5916931629180908, "z": -0.19545966798614245, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2485}, {"x": 0.46148377656936646, "y": 0.556677520275116, "z": -0.19528451454638807, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2485}], [{"x": 0.4776199162006378, "y": 0.7822954654693604, "z": 0.08085544407367706, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2486}, {"x": 0.4895409345626831, "y": 0.39861416816711426, "z": -0.09057784825563431, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2486}, {"x": 0.501261293888092, "y": 0.5230371952056885, "z": 0.01545911654829979, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2486}, {"x": 0.4878632128238678, "y": 0.39169037342071533, "z": -0.1687164455652237, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2486}, {"x": 0.48629695177078247, "y": 0.39016014337539673, "z": -0.16856630146503448, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2486}, {"x": 0.4892599284648895, "y": 0.3931960463523865, "z": -0.16869349777698517, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2486}, {"x": 0.4909377098083496, "y": 0.8125929832458496, "z": 0.003734581172466278, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2486}, {"x": 0.47392088174819946, "y": 0.7985326051712036, "z": 0.08188449591398239, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2486}, {"x": 0.49235010147094727, "y": 0.5689029693603516, "z": 0.023406604304909706, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2486}, {"x": 0.5083248019218445, "y": 0.6009949445724487, "z": -0.05482213571667671, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2486}, {"x": 0.48595333099365234, "y": 0.6808528304100037, "z": 0.01889035850763321, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2486}, {"x": 0.5073931217193604, "y": 0.598648726940155, "z": -0.03549428656697273, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2486}, {"x": 0.495752215385437, "y": 0.45146626234054565, "z": -0.025832409039139748, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2486}, {"x": 0.5067793130874634, "y": 0.5961004495620728, "z": -0.032198503613471985, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2486}, {"x": 0.5060738921165466, "y": 0.5848920345306396, "z": -0.02431255392730236, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2486}, {"x": 0.48371782898902893, "y": 0.40652644634246826, "z": -0.15104669332504272, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2486}, {"x": 0.47604048252105713, "y": 0.40221619606018066, "z": -0.16182608902454376, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2486}, {"x": 0.4828319847583771, "y": 0.39458951354026794, "z": -0.18190494179725647, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2486}, {"x": 0.4675251245498657, "y": 0.7886616587638855, "z": -0.06886469572782516, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2486}, {"x": 0.4708873927593231, "y": 0.38732606172561646, "z": -0.12481644004583359, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2486}, {"x": 0.4391402006149292, "y": 0.5157501697540283, "z": -0.14753304421901703, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2486}, {"x": 0.477395236492157, "y": 0.38401299715042114, "z": -0.1758723258972168, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2486}, {"x": 0.48026803135871887, "y": 0.38496166467666626, "z": -0.17570604383945465, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2486}, {"x": 0.4754169285297394, "y": 0.3835725784301758, "z": -0.1759539544582367, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2486}, {"x": 0.4701862335205078, "y": 0.8253740668296814, "z": -0.1580541580915451, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2486}, {"x": 0.4676051437854767, "y": 0.8039335012435913, "z": -0.06905326247215271, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2486}, {"x": 0.46545663475990295, "y": 0.5703983902931213, "z": -0.02350965328514576, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2486}, {"x": 0.4701004922389984, "y": 0.5496060252189636, "z": -0.2915743589401245, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2486}, {"x": 0.4667183458805084, "y": 0.6770704984664917, "z": -0.10522127896547318, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2486}, {"x": 0.4674834609031677, "y": 0.5498749613761902, "z": -0.28819331526756287, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2486}, {"x": 0.4502442479133606, "y": 0.4456114172935486, "z": -0.09132559597492218, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2486}, {"x": 0.4695989191532135, "y": 0.5449691414833069, "z": -0.2604043483734131, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2486}, {"x": 0.46433696150779724, "y": 0.532897412776947, "z": -0.2567957043647766, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2486}, {"x": 0.5022377967834473, "y": 0.6372050642967224, "z": -0.029487171210348606, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2486}, {"x": 0.5054298043251038, "y": 0.618584394454956, "z": -0.02604112948756665, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2486}, {"x": 0.5032415986061096, "y": 0.6296137571334839, "z": -0.028105647768825293, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2486}, {"x": 0.501641035079956, "y": 0.6430123448371887, "z": -0.030281822197139263, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2486}, {"x": 0.5067840814590454, "y": 0.6211985349655151, "z": -0.029724678955972195, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2486}, {"x": 0.5085899233818054, "y": 0.6179738640785217, "z": -0.02604117465671152, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2486}, {"x": 0.5074944496154785, "y": 0.6257636547088623, "z": -0.02896961197257042, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2486}, {"x": 0.5062967538833618, "y": 0.6163334846496582, "z": -0.029391520656645298, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2486}, {"x": 0.512370765209198, "y": 0.6118127107620239, "z": -0.027381390100345016, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2486}, {"x": 0.5147716999053955, "y": 0.6127980351448059, "z": -0.02661665598861873, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2486}, {"x": 0.5136449337005615, "y": 0.6153531670570374, "z": -0.028029676526784897, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2486}, {"x": 0.511880099773407, "y": 0.6086862087249756, "z": -0.02634992520324886, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2486}, {"x": 0.5096604228019714, "y": 0.6149261593818665, "z": -0.02826080610975623, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2486}, {"x": 0.5117930769920349, "y": 0.6160788536071777, "z": -0.026252842275425792, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2486}, {"x": 0.5105953812599182, "y": 0.6200074553489685, "z": -0.028740434907376766, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2486}, {"x": 0.5092698931694031, "y": 0.6105518341064453, "z": -0.0271095207426697, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2486}, {"x": 0.5059502124786377, "y": 0.60219407081604, "z": -0.026038359384983778, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2486}, {"x": 0.5070682764053345, "y": 0.6147017478942871, "z": -0.028042274992913008, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2486}, {"x": 0.5056915879249573, "y": 0.6090233325958252, "z": -0.027075021527707577, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2486}, {"x": 0.5088223218917847, "y": 0.6179165244102478, "z": -0.028972984291613102, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2486}, {"x": 0.5088678598403931, "y": 0.595375120639801, "z": -0.024312524945164782, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2486}, {"x": 0.4734032452106476, "y": 0.5617893934249878, "z": -0.2596750766970217, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2486}, {"x": 0.4744042456150055, "y": 0.5457248687744141, "z": -0.25705343575100414, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2486}, {"x": 0.47408851981163025, "y": 0.5556138157844543, "z": -0.2585041228448972, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2486}, {"x": 0.47260475158691406, "y": 0.5666213035583496, "z": -0.26046337629668415, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2486}, {"x": 0.46996018290519714, "y": 0.5633417963981628, "z": -0.2598638648632914, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2486}, {"x": 0.4722326695919037, "y": 0.5467509627342224, "z": -0.25756151659879833, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2486}, {"x": 0.47126391530036926, "y": 0.5572637319564819, "z": -0.25885241967625916, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2486}, {"x": 0.4686723053455353, "y": 0.5679677128791809, "z": -0.2605710718780756, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2486}, {"x": 0.4652349054813385, "y": 0.5583980679512024, "z": -0.2601184812374413, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2486}, {"x": 0.46757781505584717, "y": 0.5451193451881409, "z": -0.2592846821062267, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2486}, {"x": 0.46625298261642456, "y": 0.5531747341156006, "z": -0.2600547857582569, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2486}, {"x": 0.46430885791778564, "y": 0.5625086426734924, "z": -0.2601580305490643, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2486}, {"x": 0.46729013323783875, "y": 0.5624694228172302, "z": -0.25999502185732126, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2486}, {"x": 0.4698992967605591, "y": 0.546592652797699, "z": -0.25835200934670866, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2486}, {"x": 0.46861687302589417, "y": 0.556763768196106, "z": -0.2595613480079919, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2486}, {"x": 0.46610409021377563, "y": 0.566663920879364, "z": -0.26026943093165755, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2486}, {"x": 0.4724383056163788, "y": 0.531234860420227, "z": -0.25775742111727595, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2486}, {"x": 0.4747949540615082, "y": 0.5484379529953003, "z": -0.25904343626461923, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2486}, {"x": 0.4742622971534729, "y": 0.5403361916542053, "z": -0.25835653592366725, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2486}, {"x": 0.47518390417099, "y": 0.5549286603927612, "z": -0.2596467814873904, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2486}, {"x": 0.46943947672843933, "y": 0.5241497159004211, "z": -0.25679567474482035, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2486}], [{"x": 0.47769415378570557, "y": 0.7823077440261841, "z": 0.08987481147050858, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2487}, {"x": 0.4900325834751129, "y": 0.3990366756916046, "z": -0.07527922838926315, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2487}, {"x": 0.5008341073989868, "y": 0.522903561592102, "z": 0.03985552862286568, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2487}, {"x": 0.48843511939048767, "y": 0.39179739356040955, "z": -0.1552387773990631, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2487}, {"x": 0.4870069622993469, "y": 0.39021608233451843, "z": -0.1550847440958023, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2487}, {"x": 0.4900074601173401, "y": 0.39346370100975037, "z": -0.15521499514579773, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2487}, {"x": 0.4905600845813751, "y": 0.8125872611999512, "z": 0.0142799848690629, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2487}, {"x": 0.4740031957626343, "y": 0.7982101440429688, "z": 0.09212620556354523, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2487}, {"x": 0.4924224615097046, "y": 0.569334864616394, "z": 0.02569173462688923, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2487}, {"x": 0.5092980265617371, "y": 0.6021414995193481, "z": -0.03762911632657051, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2487}, {"x": 0.4862734377384186, "y": 0.681219220161438, "z": 0.018820490688085556, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2487}, {"x": 0.5084285140037537, "y": 0.599635124206543, "z": -0.015706920996308327, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2487}, {"x": 0.49577686190605164, "y": 0.45205289125442505, "z": -0.006352592725306749, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2487}, {"x": 0.5075129866600037, "y": 0.5969657897949219, "z": -0.018195969983935356, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2487}, {"x": 0.5066759586334229, "y": 0.5848945379257202, "z": -0.0122192008420825, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2487}, {"x": 0.4841248691082001, "y": 0.406471848487854, "z": -0.1379924863576889, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2487}, {"x": 0.47659388184547424, "y": 0.4014511704444885, "z": -0.15027831494808197, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2487}, {"x": 0.48348158597946167, "y": 0.3945710062980652, "z": -0.16935224831104279, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2487}, {"x": 0.4675883650779724, "y": 0.7884536385536194, "z": -0.04083559662103653, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2487}, {"x": 0.47144004702568054, "y": 0.38718733191490173, "z": -0.11485383659601212, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2487}, {"x": 0.43855515122413635, "y": 0.5150212049484253, "z": -0.16644828021526337, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2487}, {"x": 0.47840243577957153, "y": 0.3838479816913605, "z": -0.16358427703380585, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2487}, {"x": 0.4810602366924286, "y": 0.3849145472049713, "z": -0.16341589391231537, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2487}, {"x": 0.47619929909706116, "y": 0.3833578824996948, "z": -0.16367574036121368, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2487}, {"x": 0.47034314274787903, "y": 0.8253058791160583, "z": -0.12572473287582397, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2487}, {"x": 0.4675523340702057, "y": 0.8031503558158875, "z": -0.03882306069135666, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2487}, {"x": 0.46550390124320984, "y": 0.5707336664199829, "z": -0.025798648595809937, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2487}, {"x": 0.48023805022239685, "y": 0.5044464468955994, "z": -0.3112871050834656, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2487}, {"x": 0.4666261672973633, "y": 0.6773767471313477, "z": -0.09892145544290543, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2487}, {"x": 0.47763141989707947, "y": 0.5093713998794556, "z": -0.31371936202049255, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2487}, {"x": 0.4506163001060486, "y": 0.44531434774398804, "z": -0.0898437425494194, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2487}, {"x": 0.4776584804058075, "y": 0.5032506585121155, "z": -0.2823024094104767, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2487}, {"x": 0.46824154257774353, "y": 0.5048468708992004, "z": -0.2809296250343323, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2487}, {"x": 0.5063619613647461, "y": 0.6239094734191895, "z": -0.01488189771771431, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2487}, {"x": 0.5078473091125488, "y": 0.6181158423423767, "z": -0.010691494797356427, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2487}, {"x": 0.5075337290763855, "y": 0.6262200474739075, "z": -0.013045755389612168, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2487}, {"x": 0.505425751209259, "y": 0.6182978749275208, "z": -0.015534485457465053, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2487}, {"x": 0.5082656145095825, "y": 0.6203441023826599, "z": -0.014565331162884831, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2487}, {"x": 0.5100898146629333, "y": 0.6169376373291016, "z": -0.011761572590330616, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2487}, {"x": 0.5095808506011963, "y": 0.6236658096313477, "z": -0.013536517508327961, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2487}, {"x": 0.5072838664054871, "y": 0.6152735352516174, "z": -0.014812227804213762, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2487}, {"x": 0.5144505500793457, "y": 0.6119322776794434, "z": -0.014462410705164075, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2487}, {"x": 0.5154874324798584, "y": 0.6111345887184143, "z": -0.014464386506006122, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2487}, {"x": 0.5155935287475586, "y": 0.6150186061859131, "z": -0.015197304310277104, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2487}, {"x": 0.5136844515800476, "y": 0.6081779599189758, "z": -0.01351231918670237, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2487}, {"x": 0.511353075504303, "y": 0.6142257452011108, "z": -0.014753366820514202, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2487}, {"x": 0.5126452445983887, "y": 0.6145637035369873, "z": -0.01311472151428461, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2487}, {"x": 0.5123207569122314, "y": 0.6185963749885559, "z": -0.0147773795761168, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2487}, {"x": 0.5106574892997742, "y": 0.6095179319381714, "z": -0.014173581963405013, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2487}, {"x": 0.5063537359237671, "y": 0.6036515831947327, "z": -0.011690394079778343, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2487}, {"x": 0.5067145228385925, "y": 0.6184317469596863, "z": -0.012636507774004713, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2487}, {"x": 0.5062587857246399, "y": 0.6119570732116699, "z": -0.011840476508950815, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2487}, {"x": 0.5075193643569946, "y": 0.6225697994232178, "z": -0.013357375049963593, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2487}, {"x": 0.5086314082145691, "y": 0.5925840735435486, "z": -0.012219208632032519, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2487}], [{"x": 0.47779756784439087, "y": 0.7822260856628418, "z": 0.09344441443681717, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2488}, {"x": 0.4907211661338806, "y": 0.39995095133781433, "z": -0.027333715930581093, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2488}, {"x": 0.4999111294746399, "y": 0.52322918176651, "z": 0.06363924592733383, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2488}, {"x": 0.4891517758369446, "y": 0.3921245038509369, "z": -0.0998324379324913, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2488}, {"x": 0.4876779615879059, "y": 0.3904608190059662, "z": -0.09967911243438721, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2488}, {"x": 0.49080294370651245, "y": 0.3938763439655304, "z": -0.09981033951044083, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2488}, {"x": 0.49036672711372375, "y": 0.8125742673873901, "z": 0.020247794687747955, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2488}, {"x": 0.4740898013114929, "y": 0.7977136969566345, "z": 0.09649553894996643, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2488}, {"x": 0.492563396692276, "y": 0.5692864656448364, "z": 0.02302892878651619, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2488}, {"x": 0.5083528161048889, "y": 0.601067304611206, "z": -0.0006765838479623199, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2488}, {"x": 0.4866470694541931, "y": 0.6812959313392639, "z": 0.018005678430199623, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2488}, {"x": 0.5073395371437073, "y": 0.5990684032440186, "z": 0.01623738743364811, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2488}, {"x": 0.496308833360672, "y": 0.45283037424087524, "z": 0.026240894570946693, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2488}, {"x": 0.5070931315422058, "y": 0.5957428216934204, "z": 0.017734406515955925, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2488}, {"x": 0.5058897733688354, "y": 0.5829734206199646, "z": 0.024194899946451187, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2488}, {"x": 0.4846888482570648, "y": 0.40663084387779236, "z": -0.08529003709554672, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2488}, {"x": 0.4778520166873932, "y": 0.4013947546482086, "z": -0.09397108107805252, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2488}, {"x": 0.4843389391899109, "y": 0.39463934302330017, "z": -0.1133919209241867, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2488}, {"x": 0.46763768792152405, "y": 0.7884491682052612, "z": -0.03192838653922081, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2488}, {"x": 0.4724053144454956, "y": 0.3871423006057739, "z": -0.05445846542716026, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2488}, {"x": 0.4398767650127411, "y": 0.5146355628967285, "z": -0.13314415514469147, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2488}, {"x": 0.47975045442581177, "y": 0.38386353850364685, "z": -0.10546577721834183, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2488}, {"x": 0.48197391629219055, "y": 0.385055273771286, "z": -0.10529814660549164, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2488}, {"x": 0.4773959517478943, "y": 0.3833431303501129, "z": -0.10556457191705704, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2488}, {"x": 0.47046250104904175, "y": 0.8251545429229736, "z": -0.11510398983955383, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2488}, {"x": 0.46753591299057007, "y": 0.803170382976532, "z": -0.029443247243762016, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2488}, {"x": 0.46550849080085754, "y": 0.5709614157676697, "z": -0.023142093792557716, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2488}, {"x": 0.480835497379303, "y": 0.4630316197872162, "z": -0.2620803117752075, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2488}, {"x": 0.46662983298301697, "y": 0.6774212718009949, "z": -0.0900876596570015, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2488}, {"x": 0.4801877737045288, "y": 0.4688180088996887, "z": -0.2646290361881256, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2488}, {"x": 0.4506555199623108, "y": 0.4450620412826538, "z": -0.03626615181565285, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2488}, {"x": 0.4794158637523651, "y": 0.46759170293807983, "z": -0.23473162949085236, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2488}, {"x": 0.4731997549533844, "y": 0.48250359296798706, "z": -0.2331288605928421, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2488}, {"x": 0.480025053024292, "y": 0.42461729049682617, "z": -0.23570496984757483, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2488}, {"x": 0.4803704619407654, "y": 0.4431249499320984, "z": -0.23269945522770286, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2488}, {"x": 0.48004207015037537, "y": 0.4313218891620636, "z": -0.2342229668283835, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2488}, {"x": 0.48015862703323364, "y": 0.4194406569004059, "z": -0.23674128320999444, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2488}, {"x": 0.4776119291782379, "y": 0.4238571524620056, "z": -0.23649234417825937, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2488}, {"x": 0.47827333211898804, "y": 0.4441293776035309, "z": -0.23373943008482456, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2488}, {"x": 0.47770556807518005, "y": 0.43168139457702637, "z": -0.23501758475322276, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2488}, {"x": 0.4775823950767517, "y": 0.41732126474380493, "z": -0.23754215985536575, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2488}, {"x": 0.471551775932312, "y": 0.4375351369380951, "z": -0.23819964518770576, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2488}, {"x": 0.47434186935424805, "y": 0.45137110352516174, "z": -0.23646143823862076, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2488}, {"x": 0.47250983119010925, "y": 0.4429185688495636, "z": -0.23776478599756956, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2488}, {"x": 0.4709474742412567, "y": 0.43313130736351013, "z": -0.2384361200965941, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2488}, {"x": 0.4748545289039612, "y": 0.42687374353408813, "z": -0.23746998235583305, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2488}, {"x": 0.47627755999565125, "y": 0.4469907581806183, "z": -0.23504615249112248, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2488}, {"x": 0.47534477710723877, "y": 0.4347768723964691, "z": -0.2364092473872006, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2488}, {"x": 0.4746455252170563, "y": 0.4203052520751953, "z": -0.23822114523500204, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2488}, {"x": 0.4822077751159668, "y": 0.46543213725090027, "z": -0.23363882640842348, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2488}, {"x": 0.4853176474571228, "y": 0.4462324380874634, "z": -0.23414685775060207, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2488}, {"x": 0.48441869020462036, "y": 0.4543432295322418, "z": -0.23374835326103494, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2488}, {"x": 0.48519355058670044, "y": 0.440692275762558, "z": -0.2346741899382323, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2488}, {"x": 0.47806015610694885, "y": 0.4760477542877197, "z": -0.2331288504056479, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2488}], [{"x": 0.477868914604187, "y": 0.782000720500946, "z": 0.08710666000843048, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2489}, {"x": 0.49135908484458923, "y": 0.39989185333251953, "z": 0.001951598096638918, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2489}, {"x": 0.500547468662262, "y": 0.5227420926094055, "z": 0.08163774013519287, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2489}, {"x": 0.4898741543292999, "y": 0.39200857281684875, "z": -0.07049855589866638, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2489}, {"x": 0.4882707893848419, "y": 0.3903409540653229, "z": -0.07034771144390106, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2489}, {"x": 0.4915618300437927, "y": 0.3937860131263733, "z": -0.0704776793718338, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2489}, {"x": 0.49026453495025635, "y": 0.8125699162483215, "z": 0.013609950430691242, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2489}, {"x": 0.4740932881832123, "y": 0.7971379160881042, "z": 0.08952579647302628, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2489}, {"x": 0.4926663637161255, "y": 0.5692360997200012, "z": 0.023659598082304, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2489}, {"x": 0.5130556225776672, "y": 0.5983425378799438, "z": 0.004194207023829222, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2489}, {"x": 0.48741021752357483, "y": 0.6812912821769714, "z": 0.015459786169230938, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2489}, {"x": 0.5123903751373291, "y": 0.5966269373893738, "z": 0.021438652649521828, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2489}, {"x": 0.49677345156669617, "y": 0.45268696546554565, "z": 0.05218198522925377, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2489}, {"x": 0.5107572078704834, "y": 0.592873752117157, "z": 0.02420642040669918, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2489}, {"x": 0.5099003314971924, "y": 0.5805224180221558, "z": 0.031670697033405304, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2489}, {"x": 0.48510462045669556, "y": 0.40648865699768066, "z": -0.056866977363824844, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2489}, {"x": 0.47861340641975403, "y": 0.40051546692848206, "z": -0.06656082719564438, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2489}, {"x": 0.4849449694156647, "y": 0.39444220066070557, "z": -0.08473920822143555, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2489}, {"x": 0.4676660895347595, "y": 0.788703441619873, "z": -0.04014184698462486, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2489}, {"x": 0.473336786031723, "y": 0.38660070300102234, "z": -0.0285707488656044, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2489}, {"x": 0.4442059397697449, "y": 0.5113759636878967, "z": -0.10764438658952713, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2489}, {"x": 0.48076772689819336, "y": 0.3836776316165924, "z": -0.07681675255298615, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2489}, {"x": 0.48269394040107727, "y": 0.38491034507751465, "z": -0.07666140049695969, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2489}, {"x": 0.478475421667099, "y": 0.38303041458129883, "z": -0.07689501345157623, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2489}, {"x": 0.47056907415390015, "y": 0.8251307606697083, "z": -0.12444277852773666, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2489}, {"x": 0.46753403544425964, "y": 0.8034890294075012, "z": -0.03877833113074303, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2489}, {"x": 0.4654897153377533, "y": 0.5709991455078125, "z": -0.023777274414896965, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2489}, {"x": 0.47870010137557983, "y": 0.45676523447036743, "z": -0.2553195059299469, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2489}, {"x": 0.46662983298301697, "y": 0.6774716973304749, "z": -0.088546983897686, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2489}, {"x": 0.4771714508533478, "y": 0.4613340497016907, "z": -0.25763723254203796, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2489}, {"x": 0.45053818821907043, "y": 0.444900780916214, "z": -0.017168322578072548, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2489}, {"x": 0.47814610600471497, "y": 0.4631088972091675, "z": -0.2274683117866516, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2489}, {"x": 0.4721193313598633, "y": 0.47503674030303955, "z": -0.22528472542762756, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2489}, {"x": 0.47932663559913635, "y": 0.42834270000457764, "z": -0.22696409921627492, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2489}, {"x": 0.47485336661338806, "y": 0.4431379735469818, "z": -0.22363416175357997, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2489}, {"x": 0.47714871168136597, "y": 0.4337276816368103, "z": -0.22543288390443195, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2489}, {"x": 0.48141318559646606, "y": 0.42440274357795715, "z": -0.22777261142618954, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2489}, {"x": 0.47883927822113037, "y": 0.4295303523540497, "z": -0.22753479657694697, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2489}, {"x": 0.4734500050544739, "y": 0.4446701407432556, "z": -0.22482531584682874, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2489}, {"x": 0.47622427344322205, "y": 0.4349745810031891, "z": -0.22646163718309253, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2489}, {"x": 0.4812031388282776, "y": 0.4260355234146118, "z": -0.22803612775169313, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2489}, {"x": 0.47858574986457825, "y": 0.4523812234401703, "z": -0.22868530149571598, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2489}, {"x": 0.47198623418807983, "y": 0.4520593285560608, "z": -0.22816872829571366, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2489}, {"x": 0.477326899766922, "y": 0.4488486647605896, "z": -0.22925603296607733, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2489}, {"x": 0.4784107208251953, "y": 0.4564872682094574, "z": -0.22781744040548801, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2489}, {"x": 0.47963064908981323, "y": 0.44888460636138916, "z": -0.2288130889646709, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2489}, {"x": 0.47232216596603394, "y": 0.44771450757980347, "z": -0.22642030927818269, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2489}, {"x": 0.4783717691898346, "y": 0.4433938264846802, "z": -0.22872083145193756, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2489}, {"x": 0.47953537106513977, "y": 0.4545518159866333, "z": -0.22810361394658685, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2489}, {"x": 0.4775426685810089, "y": 0.46593987941741943, "z": -0.22564226109534502, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2489}, {"x": 0.48223191499710083, "y": 0.4487666189670563, "z": -0.22736300551332533, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2489}, {"x": 0.4807285964488983, "y": 0.45620980858802795, "z": -0.22618492477340624, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2489}, {"x": 0.48263561725616455, "y": 0.4424790143966675, "z": -0.22834061016328633, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2489}, {"x": 0.4713098108768463, "y": 0.47646522521972656, "z": -0.22528467806467845, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2489}], [{"x": 0.4778765141963959, "y": 0.7811765074729919, "z": 0.08716527372598648, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2490}, {"x": 0.4917594790458679, "y": 0.39962413907051086, "z": 0.036637790501117706, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2490}, {"x": 0.5000578761100769, "y": 0.5164674520492554, "z": 0.11847404390573502, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2490}, {"x": 0.4902667701244354, "y": 0.3917311728000641, "z": -0.035936977714300156, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2490}, {"x": 0.4885686933994293, "y": 0.3897194266319275, "z": -0.03579678386449814, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2490}, {"x": 0.49193429946899414, "y": 0.39368972182273865, "z": -0.03591124713420868, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2490}, {"x": 0.49011754989624023, "y": 0.8125655055046082, "z": 0.015937475487589836, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2490}, {"x": 0.47405147552490234, "y": 0.7953466176986694, "z": 0.08935031294822693, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2490}, {"x": 0.4926464855670929, "y": 0.5692459940910339, "z": 0.026139426976442337, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2490}, {"x": 0.5157017707824707, "y": 0.5759871006011963, "z": 0.04016762599349022, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2490}, {"x": 0.48758238554000854, "y": 0.6814442276954651, "z": 0.018104495480656624, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2490}, {"x": 0.5147048234939575, "y": 0.576958417892456, "z": 0.05824308842420578, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2490}, {"x": 0.49667975306510925, "y": 0.45223569869995117, "z": 0.08867023885250092, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2490}, {"x": 0.5125925540924072, "y": 0.5708593726158142, "z": 0.05831311270594597, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2490}, {"x": 0.5100079774856567, "y": 0.5622039437294006, "z": 0.06653917580842972, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2490}, {"x": 0.485373854637146, "y": 0.4060211479663849, "z": -0.02380821481347084, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2490}, {"x": 0.4792359173297882, "y": 0.39940619468688965, "z": -0.0355025976896286, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2490}, {"x": 0.48520755767822266, "y": 0.3932556211948395, "z": -0.05141391232609749, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2490}, {"x": 0.4676080048084259, "y": 0.7884528040885925, "z": -0.02586318366229534, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2490}, {"x": 0.47431305050849915, "y": 0.3859671354293823, "z": -0.0008150498033501208, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2490}, {"x": 0.4510782063007355, "y": 0.5052874684333801, "z": -0.09478645771741867, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2490}, {"x": 0.4813981056213379, "y": 0.3831389844417572, "z": -0.043839480727910995, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2490}, {"x": 0.4831221401691437, "y": 0.38413551449775696, "z": -0.04368859902024269, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2490}, {"x": 0.47936326265335083, "y": 0.3824874758720398, "z": -0.04390735924243927, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2490}, {"x": 0.47070440649986267, "y": 0.8250842094421387, "z": -0.1057618111371994, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2490}, {"x": 0.46725380420684814, "y": 0.802661657333374, "z": -0.024046283215284348, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2490}, {"x": 0.46552956104278564, "y": 0.5708694458007812, "z": -0.0262618325650692, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2490}, {"x": 0.4785424768924713, "y": 0.4520969092845917, "z": -0.25161290168762207, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2490}, {"x": 0.46663349866867065, "y": 0.6775060296058655, "z": -0.07783906906843185, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2490}, {"x": 0.47705474495887756, "y": 0.4574553072452545, "z": -0.2460877150297165, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2490}, {"x": 0.4507138431072235, "y": 0.4438340961933136, "z": -0.0040724813006818295, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2490}, {"x": 0.47816145420074463, "y": 0.45745494961738586, "z": -0.22113947570323944, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2490}, {"x": 0.47220611572265625, "y": 0.4684930145740509, "z": -0.21676619350910187, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2490}], [{"x": 0.4778609275817871, "y": 0.7802931666374207, "z": 0.0855461061000824, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2491}, {"x": 0.4921884536743164, "y": 0.39948371052742004, "z": 0.04532811790704727, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2491}, {"x": 0.4994277060031891, "y": 0.5093212723731995, "z": 0.1090259850025177, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2491}, {"x": 0.4906776547431946, "y": 0.3916855752468109, "z": -0.029375635087490082, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2491}, {"x": 0.4889187812805176, "y": 0.3894563913345337, "z": -0.02924000658094883, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2491}, {"x": 0.4922678768634796, "y": 0.39357495307922363, "z": -0.02934911474585533, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2491}, {"x": 0.4898851811885834, "y": 0.8125611543655396, "z": 0.015594085678458214, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2491}, {"x": 0.4737769365310669, "y": 0.7938218712806702, "z": 0.08783825486898422, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2491}, {"x": 0.49241429567337036, "y": 0.569496750831604, "z": 0.02630259282886982, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2491}, {"x": 0.5145865082740784, "y": 0.5434961915016174, "z": 0.016088880598545074, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2491}, {"x": 0.48774898052215576, "y": 0.6815868616104126, "z": 0.017423788085579872, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2491}, {"x": 0.5142503976821899, "y": 0.5459666848182678, "z": 0.03487439453601837, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2491}, {"x": 0.4965774416923523, "y": 0.4495552182197571, "z": 0.09575359523296356, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2491}, {"x": 0.5116856098175049, "y": 0.5403371453285217, "z": 0.035296548157930374, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2491}, {"x": 0.5087519288063049, "y": 0.5348957180976868, "z": 0.04327407106757164, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2491}, {"x": 0.4855291247367859, "y": 0.4055793583393097, "z": -0.017150552943348885, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2491}, {"x": 0.47982433438301086, "y": 0.3986898362636566, "z": -0.028430890291929245, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2491}, {"x": 0.4855997860431671, "y": 0.39262309670448303, "z": -0.04540814831852913, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2491}, {"x": 0.4671252965927124, "y": 0.7870350480079651, "z": -0.0069639598950743675, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2491}, {"x": 0.4750278890132904, "y": 0.3857077658176422, "z": 0.009346435777842999, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2491}, {"x": 0.45400819182395935, "y": 0.49953922629356384, "z": -0.08748608082532883, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2491}, {"x": 0.4819422960281372, "y": 0.38280385732650757, "z": -0.03700815141201019, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2491}, {"x": 0.4837644398212433, "y": 0.3837442994117737, "z": -0.036857061088085175, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2491}, {"x": 0.48015880584716797, "y": 0.38214802742004395, "z": -0.03707514703273773, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2491}, {"x": 0.4706510007381439, "y": 0.8250318169593811, "z": -0.08102497458457947, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2491}, {"x": 0.4663834273815155, "y": 0.7992163896560669, "z": -0.0037307278253138065, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2491}, {"x": 0.46552616357803345, "y": 0.5709013342857361, "z": -0.026428481563925743, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2491}, {"x": 0.4790729284286499, "y": 0.4500291645526886, "z": -0.24562498927116394, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2491}, {"x": 0.4664697051048279, "y": 0.6775423884391785, "z": -0.07049152255058289, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2491}, {"x": 0.4779197871685028, "y": 0.45513424277305603, "z": -0.24205514788627625, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2491}, {"x": 0.45080533623695374, "y": 0.44307222962379456, "z": 0.0050592925399541855, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2491}, {"x": 0.47852200269699097, "y": 0.45546820759773254, "z": -0.21907755732536316, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2491}, {"x": 0.4727187752723694, "y": 0.4659847021102905, "z": -0.2151530236005783, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2491}], [{"x": 0.4777145981788635, "y": 0.7800067067146301, "z": 0.06913430243730545, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2492}, {"x": 0.4931122362613678, "y": 0.3993968963623047, "z": 0.06256003677845001, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2492}, {"x": 0.4971279799938202, "y": 0.5103179216384888, "z": 0.09422189742326736, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2492}, {"x": 0.4907887876033783, "y": 0.3909982144832611, "z": -0.01097180787473917, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2492}, {"x": 0.48889562487602234, "y": 0.38828784227371216, "z": -0.010857674293220043, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2492}, {"x": 0.4924624264240265, "y": 0.393169105052948, "z": -0.01093344297260046, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2492}, {"x": 0.4898211359977722, "y": 0.812559187412262, "z": 0.0012637486215680838, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2492}, {"x": 0.47276344895362854, "y": 0.7937256693840027, "z": 0.06998755037784576, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2492}, {"x": 0.4923875033855438, "y": 0.5702312588691711, "z": 0.027554119005799294, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2492}, {"x": 0.5127229690551758, "y": 0.5064571499824524, "z": -0.04895440489053726, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2492}, {"x": 0.48786458373069763, "y": 0.681735634803772, "z": 0.016480261459946632, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2492}, {"x": 0.5125253200531006, "y": 0.5146426558494568, "z": -0.03644580394029617, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2492}, {"x": 0.49645423889160156, "y": 0.449712872505188, "z": 0.10858367383480072, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2492}, {"x": 0.5103433728218079, "y": 0.5071540474891663, "z": -0.025640279054641724, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2492}, {"x": 0.5083599090576172, "y": 0.5156620144844055, "z": -0.01764640212059021, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2492}, {"x": 0.4855670928955078, "y": 0.40411847829818726, "z": 0.0004762681492138654, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2492}, {"x": 0.47981566190719604, "y": 0.39738908410072327, "z": -0.011656061746180058, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2492}, {"x": 0.4855514466762543, "y": 0.3912315368652344, "z": -0.027223972603678703, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2492}, {"x": 0.46635958552360535, "y": 0.7861304879188538, "z": -0.02828144282102585, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2492}, {"x": 0.47566238045692444, "y": 0.38486039638519287, "z": 0.02367520146071911, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2492}, {"x": 0.455230712890625, "y": 0.49338892102241516, "z": -0.06790414452552795, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2492}, {"x": 0.4820675253868103, "y": 0.38203394412994385, "z": -0.019285324960947037, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2492}, {"x": 0.48381805419921875, "y": 0.38289588689804077, "z": -0.019131332635879517, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2492}, {"x": 0.48042038083076477, "y": 0.3812331557273865, "z": -0.01934277079999447, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2492}, {"x": 0.47065824270248413, "y": 0.8247244954109192, "z": -0.10305269807577133, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2492}, {"x": 0.4649588465690613, "y": 0.7989383339881897, "z": -0.02647964470088482, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2492}, {"x": 0.4655078947544098, "y": 0.5711721777915955, "z": -0.02767212502658367, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2492}, {"x": 0.4789200723171234, "y": 0.4389951825141907, "z": -0.20008571445941925, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2492}, {"x": 0.4662669599056244, "y": 0.6774373054504395, "z": -0.07763435691595078, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2492}, {"x": 0.478830486536026, "y": 0.4442072808742523, "z": -0.20442456007003784, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2492}, {"x": 0.451270192861557, "y": 0.4416404068470001, "z": 0.016013795509934425, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2492}, {"x": 0.4780942499637604, "y": 0.4436919689178467, "z": -0.17574448883533478, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2492}, {"x": 0.4735097587108612, "y": 0.4547337293624878, "z": -0.17461195588111877, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2492}, {"x": 0.4860524833202362, "y": 0.43934622406959534, "z": -0.17932936223223805, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2492}, {"x": 0.48163655400276184, "y": 0.4405663013458252, "z": -0.17590630159247667, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2492}, {"x": 0.48472991585731506, "y": 0.4357146918773651, "z": -0.1779957797843963, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2492}, {"x": 0.4861130714416504, "y": 0.44337600469589233, "z": -0.17988413106650114, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2492}, {"x": 0.4837687611579895, "y": 0.44429701566696167, "z": -0.18102803779765964, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2492}, {"x": 0.47930610179901123, "y": 0.44086554646492004, "z": -0.17690287926234305, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2492}, {"x": 0.4828924238681793, "y": 0.4387911260128021, "z": -0.17955907760187984, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2492}, {"x": 0.48332157731056213, "y": 0.4489805996417999, "z": -0.18154836725443602, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2492}, {"x": 0.47330260276794434, "y": 0.435090035200119, "z": -0.18132928805425763, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2492}, {"x": 0.47396430373191833, "y": 0.444129079580307, "z": -0.17903273459523916, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2492}, {"x": 0.47364333271980286, "y": 0.43861037492752075, "z": -0.1807415084913373, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2492}, {"x": 0.47286704182624817, "y": 0.4318500757217407, "z": -0.18149435799568892, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2492}, {"x": 0.48097822070121765, "y": 0.44502338767051697, "z": -0.18153708102181554, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2492}, {"x": 0.4766341745853424, "y": 0.4421447217464447, "z": -0.17801420320756733, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2492}, {"x": 0.479610413312912, "y": 0.44057556986808777, "z": -0.18056564358994365, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2492}, {"x": 0.4813244342803955, "y": 0.44849294424057007, "z": -0.18166426988318563, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2492}, {"x": 0.47861120104789734, "y": 0.45434197783470154, "z": -0.1749076676205732, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2492}, {"x": 0.48578518629074097, "y": 0.4450768828392029, "z": -0.176506690797396, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2492}, {"x": 0.4829173684120178, "y": 0.4495050311088562, "z": -0.17556707712356, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2492}, {"x": 0.4870392978191376, "y": 0.44135111570358276, "z": -0.17744945385493338, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2492}, {"x": 0.4734463095664978, "y": 0.45832809805870056, "z": -0.17461197770063563, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2492}], [{"x": 0.47758159041404724, "y": 0.7790823578834534, "z": 0.0820203498005867, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2493}, {"x": 0.4935581088066101, "y": 0.3993667662143707, "z": 0.0579630471765995, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2493}, {"x": 0.49946558475494385, "y": 0.5111797451972961, "z": 0.04949093982577324, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2493}, {"x": 0.4911651015281677, "y": 0.39022156596183777, "z": -0.014980209991335869, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2493}, {"x": 0.4891178011894226, "y": 0.38710248470306396, "z": -0.014868012629449368, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2493}, {"x": 0.4927579164505005, "y": 0.3926647901535034, "z": -0.014942219480872154, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2493}, {"x": 0.48985210061073303, "y": 0.8123942613601685, "z": 0.008871067315340042, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2493}, {"x": 0.47207096219062805, "y": 0.7928783893585205, "z": 0.0840177908539772, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2493}, {"x": 0.4922771453857422, "y": 0.5702482461929321, "z": 0.027603860944509506, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2493}, {"x": 0.507523238658905, "y": 0.5036196708679199, "z": -0.13677705824375153, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2493}, {"x": 0.48793378472328186, "y": 0.6817511320114136, "z": 0.01847197860479355, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2493}, {"x": 0.5083562731742859, "y": 0.5098753571510315, "z": -0.1272210329771042, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2493}, {"x": 0.49638909101486206, "y": 0.449631005525589, "z": 0.09882485121488571, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2493}, {"x": 0.5051769614219666, "y": 0.5010457634925842, "z": -0.10712964087724686, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2493}, {"x": 0.5067489743232727, "y": 0.5075487494468689, "z": -0.0992727279663086, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2493}, {"x": 0.4857538938522339, "y": 0.4031769633293152, "z": -0.0038720821030437946, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2493}, {"x": 0.4798964560031891, "y": 0.39611703157424927, "z": -0.013736412860453129, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2493}, {"x": 0.48559442162513733, "y": 0.3896902799606323, "z": -0.03110312484204769, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2493}, {"x": 0.4660341143608093, "y": 0.7850079536437988, "z": -0.01760619319975376, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2493}, {"x": 0.4762781858444214, "y": 0.3838897943496704, "z": 0.027038145810365677, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2493}, {"x": 0.45454612374305725, "y": 0.4930671453475952, "z": -0.06811057031154633, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2493}, {"x": 0.4822438359260559, "y": 0.3812209665775299, "z": -0.021558744832873344, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2493}, {"x": 0.48401710391044617, "y": 0.3820631802082062, "z": -0.021421590819954872, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2493}, {"x": 0.4807285666465759, "y": 0.3803083896636963, "z": -0.021611148491501808, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2493}, {"x": 0.47153690457344055, "y": 0.8232854008674622, "z": -0.09714741259813309, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2493}, {"x": 0.46405258774757385, "y": 0.7984639406204224, "z": -0.0152493417263031, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2493}, {"x": 0.4654669761657715, "y": 0.5711117386817932, "z": -0.027721023187041283, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2493}, {"x": 0.4783025085926056, "y": 0.43671682476997375, "z": -0.21469072997570038, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2493}, {"x": 0.4662395119667053, "y": 0.6775162816047668, "z": -0.07275272905826569, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2493}, {"x": 0.47753217816352844, "y": 0.443252295255661, "z": -0.21627753973007202, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2493}, {"x": 0.4516764283180237, "y": 0.43924838304519653, "z": 0.020207567140460014, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2493}, {"x": 0.47748830914497375, "y": 0.4413849413394928, "z": -0.18824109435081482, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2493}, {"x": 0.47240400314331055, "y": 0.45260903239250183, "z": -0.1864495724439621, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2493}], [{"x": 0.47756922245025635, "y": 0.7787442207336426, "z": 0.08160759508609772, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2494}, {"x": 0.4940360486507416, "y": 0.3973252475261688, "z": 0.044829972088336945, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2494}, {"x": 0.5009346604347229, "y": 0.5093256831169128, "z": 0.009018934331834316, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2494}, {"x": 0.49150002002716064, "y": 0.38833871483802795, "z": -0.026509026065468788, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2494}, {"x": 0.4894202947616577, "y": 0.38538894057273865, "z": -0.026406288146972656, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2494}, {"x": 0.49302026629447937, "y": 0.39096924662590027, "z": -0.026466717943549156, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2494}, {"x": 0.4898819923400879, "y": 0.81235671043396, "z": 0.009883360005915165, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2494}, {"x": 0.4719758927822113, "y": 0.7924275994300842, "z": 0.08394605666399002, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2494}, {"x": 0.49226808547973633, "y": 0.57027268409729, "z": 0.024661071598529816, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2494}, {"x": 0.49735206365585327, "y": 0.45167943835258484, "z": -0.17522947490215302, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2494}, {"x": 0.4879089593887329, "y": 0.6818256974220276, "z": 0.01352978777140379, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2494}, {"x": 0.49777188897132874, "y": 0.45684167742729187, "z": -0.171843022108078, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2494}, {"x": 0.4971078336238861, "y": 0.4494379162788391, "z": 0.0828380361199379, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2494}, {"x": 0.49578142166137695, "y": 0.45814087986946106, "z": -0.14773234724998474, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2494}, {"x": 0.4992941617965698, "y": 0.470863938331604, "z": -0.14238356053829193, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2494}, {"x": 0.4866976737976074, "y": 0.40043655037879944, "z": -0.01508145872503519, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2494}, {"x": 0.4806486666202545, "y": 0.39443960785865784, "z": -0.02368726022541523, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2494}, {"x": 0.4861612915992737, "y": 0.38788604736328125, "z": -0.041815679520368576, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2494}, {"x": 0.4660734236240387, "y": 0.7843888401985168, "z": -0.01093294657766819, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2494}, {"x": 0.4771604537963867, "y": 0.38305673003196716, "z": 0.018472177907824516, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2494}, {"x": 0.45380041003227234, "y": 0.49250370264053345, "z": -0.06331208348274231, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2494}, {"x": 0.48262470960617065, "y": 0.37964946031570435, "z": -0.03205433860421181, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2494}, {"x": 0.4845893085002899, "y": 0.3806461691856384, "z": -0.03191152960062027, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2494}, {"x": 0.48122721910476685, "y": 0.3786357641220093, "z": -0.03210609406232834, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2494}, {"x": 0.4726327061653137, "y": 0.8227002024650574, "z": -0.08938351273536682, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2494}, {"x": 0.46384546160697937, "y": 0.7982323169708252, "z": -0.008477519266307354, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2494}, {"x": 0.4654678404331207, "y": 0.5710555911064148, "z": -0.0247871782630682, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2494}, {"x": 0.47787803411483765, "y": 0.43587467074394226, "z": -0.20727509260177612, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2494}, {"x": 0.4663395881652832, "y": 0.6776282787322998, "z": -0.06743660569190979, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2494}, {"x": 0.476826936006546, "y": 0.44099879264831543, "z": -0.2108556479215622, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2494}, {"x": 0.45313531160354614, "y": 0.4369022250175476, "z": 0.02012748457491398, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2494}, {"x": 0.4771084487438202, "y": 0.44128674268722534, "z": -0.1809329092502594, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2494}, {"x": 0.4717946946620941, "y": 0.45145511627197266, "z": -0.1791761964559555, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2494}, {"x": 0.48998215794563293, "y": 0.43683433532714844, "z": -0.14252848931937478, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2494}, {"x": 0.4920305907726288, "y": 0.44930487871170044, "z": -0.14091911760624498, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2494}, {"x": 0.49071407318115234, "y": 0.44123345613479614, "z": -0.1418770902673714, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2494}, {"x": 0.4895971119403839, "y": 0.4333231449127197, "z": -0.14278433957952075, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2494}, {"x": 0.49307844042778015, "y": 0.4338701665401459, "z": -0.14380692318081856, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2494}, {"x": 0.4940566420555115, "y": 0.44904381036758423, "z": -0.14179456286365166, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2494}, {"x": 0.49371108412742615, "y": 0.4395301043987274, "z": -0.1429903779644519, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2494}, {"x": 0.49275699257850647, "y": 0.4296405613422394, "z": -0.1440698535880074, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2494}, {"x": 0.495862752199173, "y": 0.44811728596687317, "z": -0.14414767501875758, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2494}, {"x": 0.4985862672328949, "y": 0.4520609974861145, "z": -0.14400869642850012, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2494}, {"x": 0.49770259857177734, "y": 0.44765034317970276, "z": -0.14453493431210518, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2494}, {"x": 0.4945700168609619, "y": 0.4497697055339813, "z": -0.14359140698798, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2494}, {"x": 0.4933430850505829, "y": 0.44897839426994324, "z": -0.1450554863549769, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2494}, {"x": 0.4962823688983917, "y": 0.45014235377311707, "z": -0.1428904245258309, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2494}, {"x": 0.4951026737689972, "y": 0.44549360871315, "z": -0.14461810188367963, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2494}, {"x": 0.4925686717033386, "y": 0.4531683623790741, "z": -0.14463857701048255, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2494}, {"x": 0.49220260977745056, "y": 0.46371030807495117, "z": -0.14236575536051532, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2494}, {"x": 0.49166297912597656, "y": 0.4493613541126251, "z": -0.1430713810841553, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2494}, {"x": 0.49104130268096924, "y": 0.45584893226623535, "z": -0.14246781436668243, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2494}, {"x": 0.4931964576244354, "y": 0.44639214873313904, "z": -0.14356837479863316, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2494}, {"x": 0.49574077129364014, "y": 0.47116270661354065, "z": -0.1423835497626742, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2494}], [{"x": 0.4775550067424774, "y": 0.7788113355636597, "z": 0.08663805574178696, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2495}, {"x": 0.4941829741001129, "y": 0.39574792981147766, "z": 0.045287054032087326, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2495}, {"x": 0.506598711013794, "y": 0.5043200850486755, "z": 0.01982676424086094, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2495}, {"x": 0.4914666414260864, "y": 0.3874887526035309, "z": -0.02770467847585678, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2495}, {"x": 0.48949307203292847, "y": 0.38507524132728577, "z": -0.0276101753115654, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2495}, {"x": 0.49300214648246765, "y": 0.38966238498687744, "z": -0.027654673904180527, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2495}, {"x": 0.48986658453941345, "y": 0.8123534321784973, "z": 0.014957337640225887, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2495}, {"x": 0.4719839096069336, "y": 0.7926422953605652, "z": 0.09004024416208267, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2495}, {"x": 0.49224159121513367, "y": 0.5701509118080139, "z": 0.023677190765738487, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2495}, {"x": 0.49154630303382874, "y": 0.4351021945476532, "z": -0.1543228030204773, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2495}, {"x": 0.48788076639175415, "y": 0.6818482279777527, "z": 0.012539072893559933, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2495}, {"x": 0.49214792251586914, "y": 0.439446359872818, "z": -0.15320773422718048, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2495}, {"x": 0.49793100357055664, "y": 0.4459491968154907, "z": 0.08459494262933731, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2495}, {"x": 0.4907534420490265, "y": 0.4419580399990082, "z": -0.12907841801643372, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2495}, {"x": 0.4950332045555115, "y": 0.4548582434654236, "z": -0.12528544664382935, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2495}, {"x": 0.4868304133415222, "y": 0.40054091811180115, "z": -0.015085840597748756, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2495}, {"x": 0.48080721497535706, "y": 0.3946877121925354, "z": -0.02359699457883835, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2495}, {"x": 0.4861741364002228, "y": 0.3881691098213196, "z": -0.04281748831272125, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2495}, {"x": 0.46610164642333984, "y": 0.7844643592834473, "z": -0.0035417729523032904, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2495}, {"x": 0.47712844610214233, "y": 0.3829043209552765, "z": 0.019389750435948372, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2495}, {"x": 0.4533533751964569, "y": 0.4909813702106476, "z": -0.0550885908305645, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2495}, {"x": 0.4826327860355377, "y": 0.379658579826355, "z": -0.03310640901327133, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2495}, {"x": 0.4845428764820099, "y": 0.38065335154533386, "z": -0.03296832740306854, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2495}, {"x": 0.4811709523200989, "y": 0.3786427676677704, "z": -0.03315029665827751, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2495}, {"x": 0.47281932830810547, "y": 0.8226801753044128, "z": -0.08416711539030075, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2495}, {"x": 0.4639177620410919, "y": 0.7984240651130676, "z": -0.0007483718218281865, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2495}, {"x": 0.4654460847377777, "y": 0.5708081126213074, "z": -0.023802420124411583, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2495}, {"x": 0.4775939881801605, "y": 0.42951416969299316, "z": -0.19739460945129395, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2495}, {"x": 0.4667021930217743, "y": 0.6780648231506348, "z": -0.06452488154172897, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2495}, {"x": 0.4767701029777527, "y": 0.4337478280067444, "z": -0.20295928418636322, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2495}, {"x": 0.4537854790687561, "y": 0.4347943663597107, "z": 0.027766192331910133, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2495}, {"x": 0.4769495725631714, "y": 0.43478819727897644, "z": -0.17263466119766235, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2495}, {"x": 0.47201550006866455, "y": 0.4445255398750305, "z": -0.17165638506412506, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2495}, {"x": 0.48529934883117676, "y": 0.42064836621284485, "z": -0.12713361019268632, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2495}, {"x": 0.48778173327445984, "y": 0.4301735758781433, "z": -0.12367863429244608, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2495}, {"x": 0.486724853515625, "y": 0.41978350281715393, "z": -0.12563764452352189, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2495}, {"x": 0.48503053188323975, "y": 0.4244101941585541, "z": -0.12779230973683298, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2495}, {"x": 0.4864937365055084, "y": 0.4284649193286896, "z": -0.12792503042146564, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2495}, {"x": 0.48993030190467834, "y": 0.43099990487098694, "z": -0.1249535157403443, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2495}, {"x": 0.48794427514076233, "y": 0.42449504137039185, "z": -0.1268636779859662, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2495}, {"x": 0.48646700382232666, "y": 0.4333568811416626, "z": -0.12827732902951539, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2495}, {"x": 0.49031752347946167, "y": 0.4298308193683624, "z": -0.12822770909406245, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2495}, {"x": 0.494748592376709, "y": 0.43359506130218506, "z": -0.1280175386928022, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2495}, {"x": 0.49259787797927856, "y": 0.4285346269607544, "z": -0.1285359552130103, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2495}, {"x": 0.4890250861644745, "y": 0.4327116012573242, "z": -0.12780418945476413, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2495}, {"x": 0.48799628019332886, "y": 0.42972761392593384, "z": -0.12803330761380494, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2495}, {"x": 0.49217119812965393, "y": 0.43215951323509216, "z": -0.1264742307830602, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2495}, {"x": 0.48990005254745483, "y": 0.4262523353099823, "z": -0.12788676074706018, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2495}, {"x": 0.4875927269458771, "y": 0.43453311920166016, "z": -0.12781040603294969, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2495}, {"x": 0.48819342255592346, "y": 0.44569796323776245, "z": -0.12455262301955372, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2495}, {"x": 0.4835854470729828, "y": 0.4321158528327942, "z": -0.12543761434790213, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2495}, {"x": 0.4852546751499176, "y": 0.43844079971313477, "z": -0.1246432465268299, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2495}, {"x": 0.48351049423217773, "y": 0.4276571273803711, "z": -0.12615131365600973, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2495}, {"x": 0.49343210458755493, "y": 0.4533545672893524, "z": -0.12528548584618449, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2495}, {"x": 0.485726922750473, "y": 0.42024874687194824, "z": -0.17950570583343506, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2495}, {"x": 0.4799101650714874, "y": 0.4261619746685028, "z": -0.17457207012921572, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2495}, {"x": 0.48391878604888916, "y": 0.4174974858760834, "z": -0.17759885312989354, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2495}, {"x": 0.48651838302612305, "y": 0.4249475300312042, "z": -0.18043330870568752, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2495}, {"x": 0.4813005030155182, "y": 0.42768654227256775, "z": -0.18059424497187138, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2495}, {"x": 0.4770202338695526, "y": 0.4261632561683655, "z": -0.17552457586862147, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2495}, {"x": 0.4802057445049286, "y": 0.4222818911075592, "z": -0.1789298001676798, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2495}, {"x": 0.4812643826007843, "y": 0.433260053396225, "z": -0.18128614593297243, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2495}, {"x": 0.4742700457572937, "y": 0.42661088705062866, "z": -0.18032291531562805, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2495}, {"x": 0.4710404574871063, "y": 0.4309714138507843, "z": -0.17787357605993748, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2495}, {"x": 0.4723668396472931, "y": 0.42636439204216003, "z": -0.1800300581380725, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2495}, {"x": 0.47580358386039734, "y": 0.42851752042770386, "z": -0.18012983351945877, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2495}, {"x": 0.4781630337238312, "y": 0.42732545733451843, "z": -0.18012080620974302, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2495}, {"x": 0.47398674488067627, "y": 0.4279589056968689, "z": -0.17666671937331557, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2495}, {"x": 0.4766896367073059, "y": 0.42398107051849365, "z": -0.1795345265418291, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2495}, {"x": 0.4787038266658783, "y": 0.4315091073513031, "z": -0.18006075080484152, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2495}, {"x": 0.4758701026439667, "y": 0.44114020466804504, "z": -0.172821496729739, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2495}, {"x": 0.482181191444397, "y": 0.43290337920188904, "z": -0.1762016974389553, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2495}, {"x": 0.47999119758605957, "y": 0.4369843602180481, "z": -0.17437113914638758, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2495}, {"x": 0.4837185740470886, "y": 0.42897269129753113, "z": -0.1780173359438777, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2495}, {"x": 0.47042614221572876, "y": 0.44533053040504456, "z": -0.17165638473544503, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2495}], [{"x": 0.47755077481269836, "y": 0.7792322039604187, "z": 0.07607328146696091, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2496}, {"x": 0.49479004740715027, "y": 0.3948952257633209, "z": 0.037113387137651443, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2496}, {"x": 0.5072771906852722, "y": 0.4885730743408203, "z": -0.016714690253138542, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2496}, {"x": 0.4914860129356384, "y": 0.3866903483867645, "z": -0.03378390520811081, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2496}, {"x": 0.4894932806491852, "y": 0.38457927107810974, "z": -0.03367964178323746, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2496}, {"x": 0.49310970306396484, "y": 0.388604074716568, "z": -0.03373982384800911, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2496}, {"x": 0.4898628890514374, "y": 0.8124168515205383, "z": 0.0012820946285501122, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2496}, {"x": 0.4719923734664917, "y": 0.7933838963508606, "z": 0.07892309129238129, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2496}, {"x": 0.4921942353248596, "y": 0.5701695680618286, "z": 0.018068956211209297, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2496}, {"x": 0.4873257577419281, "y": 0.4224061369895935, "z": -0.17952655255794525, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2496}, {"x": 0.4876825213432312, "y": 0.6818940043449402, "z": 0.004753832705318928, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2496}, {"x": 0.48759064078330994, "y": 0.4271741807460785, "z": -0.18197321891784668, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2496}, {"x": 0.4987844228744507, "y": 0.4446009397506714, "z": 0.06963600963354111, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2496}, {"x": 0.4871678650379181, "y": 0.4272480607032776, "z": -0.15556035935878754, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2496}, {"x": 0.4914467930793762, "y": 0.44089460372924805, "z": -0.15314432978630066, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2496}, {"x": 0.48692217469215393, "y": 0.4005465805530548, "z": -0.02168678492307663, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2496}, {"x": 0.4807916581630707, "y": 0.39490801095962524, "z": -0.02790282852947712, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2496}, {"x": 0.4861273169517517, "y": 0.3883368670940399, "z": -0.048420872539281845, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2496}, {"x": 0.4661330580711365, "y": 0.7845789790153503, "z": -0.0032451015431433916, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2496}, {"x": 0.4774574637413025, "y": 0.38295742869377136, "z": 0.01944522187113762, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2496}, {"x": 0.4543699622154236, "y": 0.48268380761146545, "z": -0.05866336077451706, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2496}, {"x": 0.48269122838974, "y": 0.379716694355011, "z": -0.03741128742694855, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2496}, {"x": 0.48448407649993896, "y": 0.38066476583480835, "z": -0.037273891270160675, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2496}, {"x": 0.481174111366272, "y": 0.3787524998188019, "z": -0.037451278418302536, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2496}, {"x": 0.47277551889419556, "y": 0.8228799104690552, "z": -0.08431994169950485, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2496}, {"x": 0.4640270173549652, "y": 0.7984852194786072, "z": -0.0008880617097020149, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2496}, {"x": 0.46538886427879333, "y": 0.5708496570587158, "z": -0.018190421164035797, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2496}, {"x": 0.477085143327713, "y": 0.4199283719062805, "z": -0.2022869884967804, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2496}, {"x": 0.4669915735721588, "y": 0.6784214377403259, "z": -0.06129048764705658, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2496}, {"x": 0.47659286856651306, "y": 0.4242466390132904, "z": -0.2077106088399887, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2496}, {"x": 0.4547621011734009, "y": 0.4331999123096466, "z": 0.029689908027648926, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2496}, {"x": 0.47652190923690796, "y": 0.4250040352344513, "z": -0.17812199890613556, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2496}, {"x": 0.4719638228416443, "y": 0.43614521622657776, "z": -0.17680573463439941, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2496}, {"x": 0.48032641410827637, "y": 0.40583425760269165, "z": -0.15474933292716742, "name": "INDEX_FINGER_DIP", "type": "left_hand", "index": 7, "frame_index": 2496}, {"x": 0.48438560962677, "y": 0.4153434932231903, "z": -0.15141453640535474, "name": "INDEX_FINGER_MCP", "type": "left_hand", "index": 5, "frame_index": 2496}, {"x": 0.4826057553291321, "y": 0.4078823924064636, "z": -0.1532093226123834, "name": "INDEX_FINGER_PIP", "type": "left_hand", "index": 6, "frame_index": 2496}, {"x": 0.47861918807029724, "y": 0.4053056836128235, "z": -0.1555665961932391, "name": "INDEX_FINGER_TIP", "type": "left_hand", "index": 8, "frame_index": 2496}, {"x": 0.4824349880218506, "y": 0.40696412324905396, "z": -0.1557137230411172, "name": "MIDDLE_FINGER_DIP", "type": "left_hand", "index": 11, "frame_index": 2496}, {"x": 0.48688238859176636, "y": 0.4158172011375427, "z": -0.15282954918802716, "name": "MIDDLE_FINGER_MCP", "type": "left_hand", "index": 9, "frame_index": 2496}, {"x": 0.48479682207107544, "y": 0.4085824489593506, "z": -0.15450088470242918, "name": "MIDDLE_FINGER_PIP", "type": "left_hand", "index": 10, "frame_index": 2496}, {"x": 0.4805857837200165, "y": 0.4064972400665283, "z": -0.15626319637522101, "name": "MIDDLE_FINGER_TIP", "type": "left_hand", "index": 12, "frame_index": 2496}, {"x": 0.4868572950363159, "y": 0.42145586013793945, "z": -0.15648718154989183, "name": "PINKY_DIP", "type": "left_hand", "index": 19, "frame_index": 2496}, {"x": 0.4921700060367584, "y": 0.420483261346817, "z": -0.1561532572377473, "name": "PINKY_MCP", "type": "left_hand", "index": 17, "frame_index": 2496}, {"x": 0.48896780610084534, "y": 0.41748517751693726, "z": -0.15717493603006005, "name": "PINKY_PIP", "type": "left_hand", "index": 18, "frame_index": 2496}, {"x": 0.4858170449733734, "y": 0.4264489412307739, "z": -0.1555974232032895, "name": "PINKY_TIP", "type": "left_hand", "index": 20, "frame_index": 2496}, {"x": 0.4847519099712372, "y": 0.4202675223350525, "z": -0.15655684401281178, "name": "RING_FINGER_DIP", "type": "left_hand", "index": 15, "frame_index": 2496}, {"x": 0.4895641803741455, "y": 0.41754457354545593, "z": -0.15447684249375015, "name": "RING_FINGER_MCP", "type": "left_hand", "index": 13, "frame_index": 2496}, {"x": 0.4861624836921692, "y": 0.4142244756221771, "z": -0.15649126167409122, "name": "RING_FINGER_PIP", "type": "left_hand", "index": 14, "frame_index": 2496}, {"x": 0.48441821336746216, "y": 0.4265180826187134, "z": -0.15597302722744644, "name": "RING_FINGER_TIP", "type": "left_hand", "index": 16, "frame_index": 2496}, {"x": 0.4842386245727539, "y": 0.43410560488700867, "z": -0.1526659511437174, "name": "THUMB_CMC", "type": "left_hand", "index": 1, "frame_index": 2496}, {"x": 0.4794153571128845, "y": 0.41841062903404236, "z": -0.15400655224220827, "name": "THUMB_IP", "type": "left_hand", "index": 3, "frame_index": 2496}, {"x": 0.4810032248497009, "y": 0.42567044496536255, "z": -0.15299644027254544, "name": "THUMB_MCP", "type": "left_hand", "index": 2, "frame_index": 2496}, {"x": 0.47910207509994507, "y": 0.41423845291137695, "z": -0.15499339753296226, "name": "THUMB_TIP", "type": "left_hand", "index": 4, "frame_index": 2496}, {"x": 0.4898885488510132, "y": 0.442899227142334, "z": -0.15314435451446862, "name": "WRIST", "type": "left_hand", "index": 0, "frame_index": 2496}], [{"x": 0.47751912474632263, "y": 0.7793159484863281, "z": 0.06436435133218765, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2497}, {"x": 0.4947340786457062, "y": 0.39355430006980896, "z": 0.04585593193769455, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2497}, {"x": 0.5061840415000916, "y": 0.47641023993492126, "z": -0.029485471546649933, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2497}, {"x": 0.4916153848171234, "y": 0.38627803325653076, "z": -0.023520780727267265, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2497}, {"x": 0.48968470096588135, "y": 0.3844829201698303, "z": -0.02341892383992672, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2497}, {"x": 0.4933007061481476, "y": 0.38785743713378906, "z": -0.023474836722016335, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2497}, {"x": 0.4898524284362793, "y": 0.8123862147331238, "z": -0.010515826754271984, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2497}, {"x": 0.4720151722431183, "y": 0.7940264940261841, "z": 0.06589080393314362, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2497}, {"x": 0.4921647012233734, "y": 0.5702820420265198, "z": 0.017977571114897728, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2497}, {"x": 0.48836663365364075, "y": 0.4133477807044983, "z": -0.20125308632850647, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2497}, {"x": 0.48729008436203003, "y": 0.6819572448730469, "z": 0.0031848354265093803, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2497}, {"x": 0.4886559545993805, "y": 0.4181327223777771, "z": -0.20468762516975403, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2497}, {"x": 0.4986562728881836, "y": 0.44466620683670044, "z": 0.06952862441539764, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2497}, {"x": 0.4877171814441681, "y": 0.4187846779823303, "z": -0.17678767442703247, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2497}, {"x": 0.49231502413749695, "y": 0.43269437551498413, "z": -0.17403700947761536, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2497}, {"x": 0.4871273636817932, "y": 0.40060660243034363, "z": -0.012981917709112167, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2497}, {"x": 0.4811168313026428, "y": 0.3954812288284302, "z": -0.018806178122758865, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2497}, {"x": 0.4862222969532013, "y": 0.3889591097831726, "z": -0.0387207493185997, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2497}, {"x": 0.4661552309989929, "y": 0.7845979928970337, "z": -0.009466229006648064, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2497}, {"x": 0.47749701142311096, "y": 0.38300469517707825, "z": 0.02924453839659691, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2497}, {"x": 0.4538879692554474, "y": 0.47636112570762634, "z": -0.06240227445960045, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2497}, {"x": 0.4828082323074341, "y": 0.3797774016857147, "z": -0.026933329179883003, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2497}, {"x": 0.48458021879196167, "y": 0.3807174265384674, "z": -0.026804925873875618, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2497}, {"x": 0.4811371862888336, "y": 0.37882715463638306, "z": -0.02695620432496071, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2497}, {"x": 0.47337478399276733, "y": 0.8226068019866943, "z": -0.09042105078697205, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2497}, {"x": 0.46405020356178284, "y": 0.7989498972892761, "z": -0.007784051354974508, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2497}, {"x": 0.4653926491737366, "y": 0.5709307193756104, "z": -0.018098147585988045, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2497}, {"x": 0.4757212996482849, "y": 0.41089630126953125, "z": -0.20166493952274323, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2497}, {"x": 0.4671086072921753, "y": 0.678705632686615, "z": -0.06034223362803459, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2497}, {"x": 0.4764178991317749, "y": 0.4145079255104065, "z": -0.20744439959526062, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2497}, {"x": 0.45641806721687317, "y": 0.4336681067943573, "z": 0.031336404383182526, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2497}, {"x": 0.47530481219291687, "y": 0.4155297875404358, "z": -0.17841674387454987, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2497}, {"x": 0.47175467014312744, "y": 0.4273863136768341, "z": -0.17705686390399933, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2497}], [{"x": 0.4775238037109375, "y": 0.7793379426002502, "z": 0.05508481711149216, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2498}, {"x": 0.4948582053184509, "y": 0.39242562651634216, "z": 0.04328637570142746, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2498}, {"x": 0.5053402781486511, "y": 0.4655861258506775, "z": -0.06944818794727325, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2498}, {"x": 0.4915868639945984, "y": 0.3859597146511078, "z": -0.02428252622485161, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2498}, {"x": 0.48964694142341614, "y": 0.3844178020954132, "z": -0.02417626604437828, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2498}, {"x": 0.4932544529438019, "y": 0.3872060775756836, "z": -0.024237031117081642, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2498}, {"x": 0.48985251784324646, "y": 0.8122867345809937, "z": -0.024261580780148506, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2498}, {"x": 0.4720214307308197, "y": 0.7945252060890198, "z": 0.05561727285385132, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2498}, {"x": 0.49214571714401245, "y": 0.5704615712165833, "z": 0.016161693260073662, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2498}, {"x": 0.4881039261817932, "y": 0.40838703513145447, "z": -0.24463415145874023, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2498}, {"x": 0.4871499836444855, "y": 0.6819708347320557, "z": -0.00043224464752711356, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2498}, {"x": 0.48890018463134766, "y": 0.4137343168258667, "z": -0.2504431903362274, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2498}, {"x": 0.4996689558029175, "y": 0.4454657733440399, "z": 0.05612471327185631, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2498}, {"x": 0.48719021677970886, "y": 0.41392573714256287, "z": -0.2196647971868515, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2498}, {"x": 0.4924878478050232, "y": 0.42751336097717285, "z": -0.21740861237049103, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2498}, {"x": 0.4871457517147064, "y": 0.4006669819355011, "z": -0.014996778219938278, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2498}, {"x": 0.48106831312179565, "y": 0.39646071195602417, "z": -0.01849963888525963, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2498}, {"x": 0.4861558675765991, "y": 0.38944917917251587, "z": -0.03964094817638397, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2498}, {"x": 0.46615082025527954, "y": 0.7848199605941772, "z": -0.014381307177245617, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2498}, {"x": 0.47744446992874146, "y": 0.3844043016433716, "z": 0.03500163182616234, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2498}, {"x": 0.4530216157436371, "y": 0.47119563817977905, "z": -0.06425074487924576, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2498}, {"x": 0.4827950894832611, "y": 0.3800824284553528, "z": -0.025992324575781822, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2498}, {"x": 0.4845311939716339, "y": 0.3807937502861023, "z": -0.02586578018963337, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2498}, {"x": 0.48096928000450134, "y": 0.3796422481536865, "z": -0.02600964531302452, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2498}, {"x": 0.4741467237472534, "y": 0.8223713040351868, "z": -0.09881197661161423, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2498}, {"x": 0.4640708267688751, "y": 0.7996973395347595, "z": -0.011731138452887535, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2498}, {"x": 0.46539270877838135, "y": 0.5711749196052551, "z": -0.01627802476286888, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2498}, {"x": 0.4743685722351074, "y": 0.4060111939907074, "z": -0.21875552833080292, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2498}, {"x": 0.4671173095703125, "y": 0.6787030100822449, "z": -0.05891420319676399, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2498}, {"x": 0.47503358125686646, "y": 0.40975239872932434, "z": -0.22648896276950836, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2498}, {"x": 0.45744138956069946, "y": 0.43399176001548767, "z": 0.032281868159770966, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2498}, {"x": 0.47459056973457336, "y": 0.41088736057281494, "z": -0.1963794231414795, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2498}, {"x": 0.4716416895389557, "y": 0.42352283000946045, "z": -0.1947634071111679, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2498}, {"x": 0.47660425305366516, "y": 0.3911040723323822, "z": -0.19632763171102852, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2498}, {"x": 0.4747562110424042, "y": 0.3968863785266876, "z": -0.193466434488073, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2498}, {"x": 0.47542843222618103, "y": 0.3896431028842926, "z": -0.194998121689423, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2498}, {"x": 0.47766149044036865, "y": 0.3940832018852234, "z": -0.19672418548725545, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2498}, {"x": 0.47347119450569153, "y": 0.39413580298423767, "z": -0.1974386132787913, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2498}, {"x": 0.47235599160194397, "y": 0.3970988094806671, "z": -0.19404752971604466, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2498}, {"x": 0.47228875756263733, "y": 0.3909246027469635, "z": -0.1959005706012249, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2498}, {"x": 0.4743991196155548, "y": 0.3988683223724365, "z": -0.19782649003900588, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2498}, {"x": 0.46702858805656433, "y": 0.3867368698120117, "z": -0.19542803190415725, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2498}, {"x": 0.4677145481109619, "y": 0.399237722158432, "z": -0.19573647010838613, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2498}, {"x": 0.4673032760620117, "y": 0.39115720987319946, "z": -0.1958932166453451, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2498}, {"x": 0.4667963683605194, "y": 0.3839038014411926, "z": -0.19480529694556026, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2498}, {"x": 0.4714755415916443, "y": 0.3956487774848938, "z": -0.19706041109748185, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2498}, {"x": 0.4699344336986542, "y": 0.39785632491111755, "z": -0.19487223764008377, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2498}, {"x": 0.4701308608055115, "y": 0.3923911154270172, "z": -0.19649789156392217, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2498}, {"x": 0.4724898636341095, "y": 0.40022996068000793, "z": -0.19671225175261497, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2498}, {"x": 0.47546854615211487, "y": 0.41407644748687744, "z": -0.19518889443133958, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2498}, {"x": 0.47672250866889954, "y": 0.39906448125839233, "z": -0.19604112242814153, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2498}, {"x": 0.4771004319190979, "y": 0.4059962332248688, "z": -0.19540159188909456, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2498}, {"x": 0.4750160872936249, "y": 0.39528509974479675, "z": -0.196595158893615, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2498}, {"x": 0.4717561602592468, "y": 0.4212328791618347, "z": -0.19476342549928205, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2498}], [{"x": 0.47752758860588074, "y": 0.7790513634681702, "z": 0.04815017059445381, "name": "LEFT_ANKLE", "type": "body", "index": 27, "frame_index": 2499}, {"x": 0.49482962489128113, "y": 0.39048585295677185, "z": 0.040406566113233566, "name": "LEFT_EAR", "type": "body", "index": 7, "frame_index": 2499}, {"x": 0.5051645636558533, "y": 0.4663974940776825, "z": -0.07635702192783356, "name": "LEFT_ELBOW", "type": "body", "index": 13, "frame_index": 2499}, {"x": 0.491115540266037, "y": 0.38466528058052063, "z": -0.024621838703751564, "name": "LEFT_EYE", "type": "body", "index": 2, "frame_index": 2499}, {"x": 0.48886457085609436, "y": 0.38379377126693726, "z": -0.02451413869857788, "name": "LEFT_EYE_INNER", "type": "body", "index": 1, "frame_index": 2499}, {"x": 0.492850124835968, "y": 0.3853408396244049, "z": -0.024578610435128212, "name": "LEFT_EYE_OUTER", "type": "body", "index": 3, "frame_index": 2499}, {"x": 0.48982876539230347, "y": 0.8122748732566833, "z": -0.03018510527908802, "name": "LEFT_FOOT_INDEX", "type": "body", "index": 31, "frame_index": 2499}, {"x": 0.4720575511455536, "y": 0.794400691986084, "z": 0.04857330024242401, "name": "LEFT_HEEL", "type": "body", "index": 29, "frame_index": 2499}, {"x": 0.49212977290153503, "y": 0.5704033970832825, "z": 0.011555898003280163, "name": "LEFT_HIP", "type": "body", "index": 23, "frame_index": 2499}, {"x": 0.4902898967266083, "y": 0.414922833442688, "z": -0.25466984510421753, "name": "LEFT_INDEX", "type": "body", "index": 19, "frame_index": 2499}, {"x": 0.4871178865432739, "y": 0.6816648840904236, "z": -0.005151366349309683, "name": "LEFT_KNEE", "type": "body", "index": 25, "frame_index": 2499}, {"x": 0.4908156991004944, "y": 0.4214983880519867, "z": -0.25951647758483887, "name": "LEFT_PINKY", "type": "body", "index": 17, "frame_index": 2499}, {"x": 0.5006904006004333, "y": 0.4455775022506714, "z": 0.04912243038415909, "name": "LEFT_SHOULDER", "type": "body", "index": 11, "frame_index": 2499}, {"x": 0.4893485903739929, "y": 0.4193342924118042, "z": -0.22835931181907654, "name": "LEFT_THUMB", "type": "body", "index": 21, "frame_index": 2499}, {"x": 0.49345341324806213, "y": 0.4335714876651764, "z": -0.22570696473121643, "name": "LEFT_WRIST", "type": "body", "index": 15, "frame_index": 2499}, {"x": 0.48714345693588257, "y": 0.4004037380218506, "z": -0.015084930695593357, "name": "MOUTH_LEFT", "type": "body", "index": 9, "frame_index": 2499}, {"x": 0.4810134172439575, "y": 0.39685937762260437, "z": -0.016902493312954903, "name": "MOUTH_RIGHT", "type": "body", "index": 10, "frame_index": 2499}, {"x": 0.48552465438842773, "y": 0.3895036280155182, "z": -0.03883117809891701, "name": "NOSE", "type": "body", "index": 0, "frame_index": 2499}, {"x": 0.4660249352455139, "y": 0.7848559617996216, "z": -0.01409820094704628, "name": "RIGHT_ANKLE", "type": "body", "index": 28, "frame_index": 2499}, {"x": 0.4771411120891571, "y": 0.3846660852432251, "z": 0.037345584481954575, "name": "RIGHT_EAR", "type": "body", "index": 8, "frame_index": 2499}, {"x": 0.4522044062614441, "y": 0.46249067783355713, "z": -0.06495240330696106, "name": "RIGHT_ELBOW", "type": "body", "index": 14, "frame_index": 2499}, {"x": 0.48144087195396423, "y": 0.38049206137657166, "z": -0.02512103132903576, "name": "RIGHT_EYE", "type": "body", "index": 5, "frame_index": 2499}, {"x": 0.4832269847393036, "y": 0.38092416524887085, "z": -0.02498486265540123, "name": "RIGHT_EYE_INNER", "type": "body", "index": 4, "frame_index": 2499}, {"x": 0.4794950485229492, "y": 0.3805186152458191, "z": -0.02514674887061119, "name": "RIGHT_EYE_OUTER", "type": "body", "index": 6, "frame_index": 2499}, {"x": 0.47347819805145264, "y": 0.8230558037757874, "z": -0.09838591516017914, "name": "RIGHT_FOOT_INDEX", "type": "body", "index": 32, "frame_index": 2499}, {"x": 0.4640332758426666, "y": 0.7997550964355469, "z": -0.013082614168524742, "name": "RIGHT_HEEL", "type": "body", "index": 30, "frame_index": 2499}, {"x": 0.46534544229507446, "y": 0.5711421966552734, "z": -0.011668119579553604, "name": "RIGHT_HIP", "type": "body", "index": 24, "frame_index": 2499}, {"x": 0.47431883215904236, "y": 0.40950044989585876, "z": -0.21646879613399506, "name": "RIGHT_INDEX", "type": "body", "index": 20, "frame_index": 2499}, {"x": 0.46710509061813354, "y": 0.6786920428276062, "z": -0.054961349815130234, "name": "RIGHT_KNEE", "type": "body", "index": 26, "frame_index": 2499}, {"x": 0.47510427236557007, "y": 0.4134710431098938, "z": -0.22498485445976257, "name": "RIGHT_PINKY", "type": "body", "index": 18, "frame_index": 2499}, {"x": 0.4587956368923187, "y": 0.4336349666118622, "z": 0.03844403475522995, "name": "RIGHT_SHOULDER", "type": "body", "index": 12, "frame_index": 2499}, {"x": 0.47420838475227356, "y": 0.4131843149662018, "z": -0.19598306715488434, "name": "RIGHT_THUMB", "type": "body", "index": 22, "frame_index": 2499}, {"x": 0.4713901877403259, "y": 0.42414483428001404, "z": -0.19348029792308807, "name": "RIGHT_WRIST", "type": "body", "index": 16, "frame_index": 2499}, {"x": 0.4730430543422699, "y": 0.3887815475463867, "z": -0.19473620678763837, "name": "INDEX_FINGER_DIP", "type": "right_hand", "index": 7, "frame_index": 2499}, {"x": 0.47003138065338135, "y": 0.3955553472042084, "z": -0.19263528293231502, "name": "INDEX_FINGER_MCP", "type": "right_hand", "index": 5, "frame_index": 2499}, {"x": 0.4705258309841156, "y": 0.3889588415622711, "z": -0.193584230459237, "name": "INDEX_FINGER_PIP", "type": "right_hand", "index": 6, "frame_index": 2499}, {"x": 0.47493991255760193, "y": 0.39061301946640015, "z": -0.19513905805069953, "name": "INDEX_FINGER_TIP", "type": "right_hand", "index": 8, "frame_index": 2499}, {"x": 0.46980324387550354, "y": 0.3837072253227234, "z": -0.1933198789774906, "name": "MIDDLE_FINGER_DIP", "type": "right_hand", "index": 11, "frame_index": 2499}, {"x": 0.4685610830783844, "y": 0.39543774724006653, "z": -0.19244484137743711, "name": "MIDDLE_FINGER_MCP", "type": "right_hand", "index": 9, "frame_index": 2499}, {"x": 0.46850407123565674, "y": 0.3880138695240021, "z": -0.1924761577975005, "name": "MIDDLE_FINGER_PIP", "type": "right_hand", "index": 10, "frame_index": 2499}, {"x": 0.47080835700035095, "y": 0.38124391436576843, "z": -0.19386589113855734, "name": "MIDDLE_FINGER_TIP", "type": "right_hand", "index": 12, "frame_index": 2499}, {"x": 0.46725285053253174, "y": 0.3847562074661255, "z": -0.19144007633440197, "name": "PINKY_DIP", "type": "right_hand", "index": 19, "frame_index": 2499}, {"x": 0.46706250309944153, "y": 0.39578598737716675, "z": -0.19278216798556969, "name": "PINKY_MCP", "type": "right_hand", "index": 17, "frame_index": 2499}, {"x": 0.4669990837574005, "y": 0.389089435338974, "z": -0.19216958829201758, "name": "PINKY_PIP", "type": "right_hand", "index": 18, "frame_index": 2499}, {"x": 0.46765783429145813, "y": 0.3820343315601349, "z": -0.19076954945921898, "name": "PINKY_TIP", "type": "right_hand", "index": 20, "frame_index": 2499}, {"x": 0.46854424476623535, "y": 0.3837396204471588, "z": -0.19245596043765545, "name": "RING_FINGER_DIP", "type": "right_hand", "index": 15, "frame_index": 2499}, {"x": 0.4675244688987732, "y": 0.395440936088562, "z": -0.19251537666423246, "name": "RING_FINGER_MCP", "type": "right_hand", "index": 13, "frame_index": 2499}, {"x": 0.46762484312057495, "y": 0.3882274329662323, "z": -0.19234016828704625, "name": "RING_FINGER_PIP", "type": "right_hand", "index": 14, "frame_index": 2499}, {"x": 0.46937087178230286, "y": 0.38103535771369934, "z": -0.19243407470639795, "name": "RING_FINGER_TIP", "type": "right_hand", "index": 16, "frame_index": 2499}, {"x": 0.47224611043930054, "y": 0.41233450174331665, "z": -0.1945255035534501, "name": "THUMB_CMC", "type": "right_hand", "index": 1, "frame_index": 2499}, {"x": 0.4773043692111969, "y": 0.4014586806297302, "z": -0.19513648946303874, "name": "THUMB_IP", "type": "right_hand", "index": 3, "frame_index": 2499}, {"x": 0.47527140378952026, "y": 0.40613818168640137, "z": -0.19484060548711568, "name": "THUMB_MCP", "type": "right_hand", "index": 2, "frame_index": 2499}, {"x": 0.4779461920261383, "y": 0.3975093960762024, "z": -0.195123516372405, "name": "THUMB_TIP", "type": "right_hand", "index": 4, "frame_index": 2499}, {"x": 0.4684976041316986, "y": 0.4165721833705902, "z": -0.1934802727147069, "name": "WRIST", "type": "right_hand", "index": 0, "frame_index": 2499}]]
\ No newline at end of file
diff --git a/mounts/zoperepo/__root__/tf_upload_demo/tflw-pose-detection_upload.js.map/__meta__ b/mounts/zoperepo/__root__/lib/assets/fonts/Disclaimer-Plain.otf/__meta__
similarity index 78%
rename from mounts/zoperepo/__root__/tf_upload_demo/tflw-pose-detection_upload.js.map/__meta__
rename to mounts/zoperepo/__root__/lib/assets/fonts/Disclaimer-Plain.otf/__meta__
index 0d37e4d..c0ceb37 100644
--- a/mounts/zoperepo/__root__/tf_upload_demo/tflw-pose-detection_upload.js.map/__meta__
+++ b/mounts/zoperepo/__root__/lib/assets/fonts/Disclaimer-Plain.otf/__meta__
@@ -2,6 +2,6 @@
('props', [
[('id', 'content_type'), ('type', 'string'), ('value', 'application/octet-stream')],
]),
- ('title', ''),
+ ('title', 'Disclaimer-Plain.otf'),
('type', 'File'),
]
diff --git a/mounts/zoperepo/__root__/lib/assets/fonts/Disclaimer-Plain.otf/__source__.otf b/mounts/zoperepo/__root__/lib/assets/fonts/Disclaimer-Plain.otf/__source__.otf
new file mode 100644
index 0000000..0644d49
Binary files /dev/null and b/mounts/zoperepo/__root__/lib/assets/fonts/Disclaimer-Plain.otf/__source__.otf differ
diff --git a/mounts/zoperepo/__root__/tf_upload_demo/__meta__ b/mounts/zoperepo/__root__/lib/assets/fonts/__meta__
similarity index 50%
rename from mounts/zoperepo/__root__/tf_upload_demo/__meta__
rename to mounts/zoperepo/__root__/lib/assets/fonts/__meta__
index 4797e47..a7b94b7 100644
--- a/mounts/zoperepo/__root__/tf_upload_demo/__meta__
+++ b/mounts/zoperepo/__root__/lib/assets/fonts/__meta__
@@ -1,4 +1,5 @@
[
+ ('owner', (['acl_users'], 'dockerzope')),
('title', ''),
('type', 'Folder'),
]
diff --git a/mounts/zoperepo/__root__/lib/css/codemirror.css/__source__.css b/mounts/zoperepo/__root__/lib/css/codemirror.css/__source__.css
index 0040db3..404e95b 100644
--- a/mounts/zoperepo/__root__/lib/css/codemirror.css/__source__.css
+++ b/mounts/zoperepo/__root__/lib/css/codemirror.css/__source__.css
@@ -342,3 +342,152 @@ div.CodeMirror-dragcursors {
/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }
+
+
+
+/* THEMES START */
+/*
+ Name: material
+ Author: Mattia Astorino (http://github.com/equinusocio)
+ Website: https://material-theme.site/
+*/
+
+.cm-s-material.CodeMirror {
+ background-color: #263238;
+ color: #EEFFFF;
+}
+
+.cm-s-material .CodeMirror-gutters {
+ background: #263238;
+ color: #546E7A;
+ border: none;
+}
+
+.cm-s-material .CodeMirror-guttermarker,
+.cm-s-material .CodeMirror-guttermarker-subtle,
+.cm-s-material .CodeMirror-linenumber {
+ color: #546E7A;
+}
+
+.cm-s-material .CodeMirror-cursor {
+ border-left: 1px solid #FFCC00;
+}
+.cm-s-material.cm-fat-cursor .CodeMirror-cursor {
+ background-color: #5d6d5c80 !important;
+}
+.cm-s-material .cm-animate-fat-cursor {
+ background-color: #5d6d5c80 !important;
+}
+
+.cm-s-material div.CodeMirror-selected {
+ background: rgba(128, 203, 196, 0.2);
+}
+
+.cm-s-material.CodeMirror-focused div.CodeMirror-selected {
+ background: rgba(128, 203, 196, 0.2);
+}
+
+.cm-s-material .CodeMirror-line::selection,
+.cm-s-material .CodeMirror-line>span::selection,
+.cm-s-material .CodeMirror-line>span>span::selection {
+ background: rgba(128, 203, 196, 0.2);
+}
+
+.cm-s-material .CodeMirror-line::-moz-selection,
+.cm-s-material .CodeMirror-line>span::-moz-selection,
+.cm-s-material .CodeMirror-line>span>span::-moz-selection {
+ background: rgba(128, 203, 196, 0.2);
+}
+
+.cm-s-material .CodeMirror-activeline-background {
+ background: rgba(0, 0, 0, 0.5);
+}
+
+.cm-s-material .cm-keyword {
+ color: #C792EA;
+}
+
+.cm-s-material .cm-operator {
+ color: #89DDFF;
+}
+
+.cm-s-material .cm-variable-2 {
+ color: #EEFFFF;
+}
+
+.cm-s-material .cm-variable-3,
+.cm-s-material .cm-type {
+ color: #f07178;
+}
+
+.cm-s-material .cm-builtin {
+ color: #FFCB6B;
+}
+
+.cm-s-material .cm-atom {
+ color: #F78C6C;
+}
+
+.cm-s-material .cm-number {
+ color: #FF5370;
+}
+
+.cm-s-material .cm-def {
+ color: #82AAFF;
+}
+
+.cm-s-material .cm-string {
+ color: #C3E88D;
+}
+
+.cm-s-material .cm-string-2 {
+ color: #f07178;
+}
+
+.cm-s-material .cm-comment {
+ color: #546E7A;
+}
+
+.cm-s-material .cm-variable {
+ color: #f07178;
+}
+
+.cm-s-material .cm-tag {
+ color: #FF5370;
+}
+
+.cm-s-material .cm-meta {
+ color: #FFCB6B;
+}
+
+.cm-s-material .cm-attribute {
+ color: #C792EA;
+}
+
+.cm-s-material .cm-property {
+ color: #C792EA;
+}
+
+.cm-s-material .cm-qualifier {
+ color: #DECB6B;
+}
+
+.cm-s-material .cm-variable-3,
+.cm-s-material .cm-type {
+ color: #DECB6B;
+}
+
+
+.cm-s-material .cm-error {
+ color: rgba(255, 255, 255, 1.0);
+ background-color: #FF5370;
+}
+
+.cm-s-material .CodeMirror-matchingbracket {
+ text-decoration: underline;
+ color: white !important;
+}
+
+
+
+
diff --git a/mounts/zoperepo/__root__/lib/css/github-dark.min.css/__meta__ b/mounts/zoperepo/__root__/lib/css/github-dark.min.css/__meta__
new file mode 100644
index 0000000..14ceb00
--- /dev/null
+++ b/mounts/zoperepo/__root__/lib/css/github-dark.min.css/__meta__
@@ -0,0 +1,8 @@
+[
+ ('owner', (['acl_users'], 'dockerzope')),
+ ('props', [
+ [('id', 'content_type'), ('type', 'string'), ('value', 'text/css')],
+ ]),
+ ('title', 'github-dark.min.css'),
+ ('type', 'File'),
+]
diff --git a/mounts/zoperepo/__root__/lib/css/github-dark.min.css/__source__.css b/mounts/zoperepo/__root__/lib/css/github-dark.min.css/__source__.css
new file mode 100644
index 0000000..03b6da8
--- /dev/null
+++ b/mounts/zoperepo/__root__/lib/css/github-dark.min.css/__source__.css
@@ -0,0 +1,10 @@
+pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*!
+ Theme: GitHub Dark
+ Description: Dark theme as seen on github.com
+ Author: github.com
+ Maintainer: @Hirse
+ Updated: 2021-05-15
+
+ Outdated base version: https://github.com/primer/github-syntax-dark
+ Current colors taken from GitHub's CSS
+*/.hljs{color:#c9d1d9;background:#0d1117}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#ff7b72}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#d2a8ff}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-variable{color:#79c0ff}.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#a5d6ff}.hljs-built_in,.hljs-symbol{color:#ffa657}.hljs-code,.hljs-comment,.hljs-formula{color:#8b949e}.hljs-name,.hljs-quote,.hljs-selector-pseudo,.hljs-selector-tag{color:#7ee787}.hljs-subst{color:#c9d1d9}.hljs-section{color:#1f6feb;font-weight:700}.hljs-bullet{color:#f2cc60}.hljs-emphasis{color:#c9d1d9;font-style:italic}.hljs-strong{color:#c9d1d9;font-weight:700}.hljs-addition{color:#aff5b4;background-color:#033a16}.hljs-deletion{color:#ffdcd7;background-color:#67060c}
\ No newline at end of file
diff --git a/mounts/zoperepo/__root__/lib/css/show-hint.css/__meta__ b/mounts/zoperepo/__root__/lib/css/show-hint.css/__meta__
new file mode 100644
index 0000000..80db598
--- /dev/null
+++ b/mounts/zoperepo/__root__/lib/css/show-hint.css/__meta__
@@ -0,0 +1,8 @@
+[
+ ('owner', (['acl_users'], 'dockerzope')),
+ ('props', [
+ [('id', 'content_type'), ('type', 'string'), ('value', 'text/css')],
+ ]),
+ ('title', 'show-hint.css'),
+ ('type', 'File'),
+]
diff --git a/mounts/zoperepo/__root__/lib/css/show-hint.css/__source__.css b/mounts/zoperepo/__root__/lib/css/show-hint.css/__source__.css
new file mode 100644
index 0000000..d41031c
--- /dev/null
+++ b/mounts/zoperepo/__root__/lib/css/show-hint.css/__source__.css
@@ -0,0 +1,37 @@
+.CodeMirror-hints {
+ position: absolute;
+ z-index: 10;
+ overflow: hidden;
+ list-style: none;
+
+ margin: 0;
+ padding: 2px;
+
+ -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
+ -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
+ box-shadow: 2px 3px 5px rgba(0,0,0,.2);
+ border-radius: 3px;
+ border: 1px solid silver;
+
+ background: white;
+ font-size: 90%;
+ font-family: monospace;
+
+ max-height: 20em;
+ overflow-y: auto;
+ box-sizing: border-box;
+}
+
+.CodeMirror-hint {
+ margin: 0;
+ padding: 0 4px;
+ border-radius: 2px;
+ white-space: pre;
+ color: black;
+ cursor: pointer;
+}
+
+li.CodeMirror-hint-active {
+ background: #08f;
+ color: white;
+}
diff --git a/mounts/zoperepo/__root__/lib/js/canvas-capture.min.js/__meta__ b/mounts/zoperepo/__root__/lib/js/canvas-capture.min.js/__meta__
new file mode 100644
index 0000000..0e6d6cd
--- /dev/null
+++ b/mounts/zoperepo/__root__/lib/js/canvas-capture.min.js/__meta__
@@ -0,0 +1,8 @@
+[
+ ('owner', (['acl_users'], 'dockerzope')),
+ ('props', [
+ [('id', 'content_type'), ('type', 'string'), ('value', 'text/javascript')],
+ ]),
+ ('title', 'canvas-capture.min.js'),
+ ('type', 'File'),
+]
diff --git a/mounts/zoperepo/__root__/lib/js/canvas-capture.min.js/__source__.js b/mounts/zoperepo/__root__/lib/js/canvas-capture.min.js/__source__.js
new file mode 100644
index 0000000..41b0dcf
--- /dev/null
+++ b/mounts/zoperepo/__root__/lib/js/canvas-capture.min.js/__source__.js
@@ -0,0 +1,14 @@
+!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.CanvasCapture=e():t.CanvasCapture=e()}(self,()=>(()=>{var r={76:(t,e,r)=>{r(72);const n=r(681)["devDependencies"];t.exports={corePath:`https://unpkg.com/@ffmpeg/core@${n["@ffmpeg/core"].substring(1)}/dist/ffmpeg-core.js`}},339:(t,e,r)=>{const i=r(72);t.exports=async t=>{let e=t;if(void 0===t)return new Uint8Array;if("string"==typeof t)if(/data:_data\/([a-zA-Z]*);base64,([^"]*)/.test(t))e=atob(t.split(",")[1]).split("").map(t=>t.charCodeAt(0));else{const r=await fetch(i(t));e=await r.arrayBuffer()}else(t instanceof File||t instanceof Blob)&&(e=(n=t,await new Promise((t,e)=>{const r=new FileReader;r.onload=()=>{t(r.result)},r.onerror=({target:{error:{code:t}}})=>{e(Error("File could not be read! Code="+t))},r.readAsArrayBuffer(n)})));var n;return new Uint8Array(e)}},440:(t,e,r)=>{const a=r(72),s=r(888)["log"],l=async(t,e)=>{s("info","fetch "+t);var r=await(await fetch(t)).arrayBuffer();s("info",`${t} file size = ${r.byteLength} bytes`);e=new Blob([r],{type:e}),e=URL.createObjectURL(e);return s("info",t+" blob URL = "+e),e};t.exports=async({corePath:t})=>{if("string"!=typeof t)throw Error("corePath should be a string!");const e=a(t),n=await l(e,"application/javascript"),i=await l(e.replace("ffmpeg-core.js","ffmpeg-core.wasm"),"application/wasm"),o=await l(e.replace("ffmpeg-core.js","ffmpeg-core.worker.js"),"application/javascript");return"undefined"==typeof createFFmpegCore?new Promise(t=>{const e=document.createElement("script"),r=()=>{e.removeEventListener("load",r),s("info","ffmpeg-core.js script loaded"),t({createFFmpegCore:createFFmpegCore,corePath:n,wasmPath:i,workerPath:o})};e.src=n,e.type="text/javascript",e.addEventListener("load",r),document.getElementsByTagName("head")[0].appendChild(e)}):(s("info","ffmpeg-core.js script is loaded already"),Promise.resolve({createFFmpegCore:createFFmpegCore,corePath:n,wasmPath:i,workerPath:o}))}},451:(t,e,r)=>{var n=r(76),i=r(440),r=r(339);t.exports={defaultOptions:n,getCreateFFmpegCore:i,fetchFile:r}},617:t=>{t.exports={defaultArgs:["./ffmpeg","-nostdin","-y"],baseOptions:{log:!1,logger:()=>{},progress:()=>{},corePath:""}}},648:(t,e,r)=>{const{defaultArgs:d,baseOptions:f}=r(617),{setLogging:p,setCustomLogger:m,log:g}=r(888),w=r(405),b=r(10),{defaultOptions:y,getCreateFFmpegCore:v}=r(451),_=r(681)["version"],k=Error("ffmpeg.wasm is not ready, make sure you have completed load().");t.exports=(t={})=>{const{log:e,logger:r,progress:n,...i}={...f,...y,...t};let o=null,a=null,s=null,l=!1,h=n;const c=t=>{"FFMPEG_END"===t&&null!==s&&(s(),s=null,l=!1)},u=({type:t,message:e})=>{g(t,e),w(e,h),c(e)};return p(e),m(r),g("info","use ffmpeg.wasm v"+_),{setProgress:t=>{h=t},setLogger:t=>{m(t)},setLogging:p,load:async()=>{if(g("info","load ffmpeg-core"),null!==o)throw Error("ffmpeg.wasm was loaded, you should not load it again, use ffmpeg.isLoaded() to check next time.");{g("info","loading ffmpeg-core");const{createFFmpegCore:t,corePath:e,workerPath:r,wasmPath:n}=await v(i);o=await t({mainScriptUrlOrBlob:e,printErr:t=>u({type:"fferr",message:t}),print:t=>u({type:"ffout",message:t}),locateFile:(t,e)=>{if("undefined"!=typeof window){if(void 0!==n&&t.endsWith("ffmpeg-core.wasm"))return n;if(void 0!==r&&t.endsWith("ffmpeg-core.worker.js"))return r}return e+t}}),a=o.cwrap("proxy_main","number",["number","number"]),g("info","ffmpeg-core loaded")}},isLoaded:()=>null!==o,run:(...r)=>{if(g("info","run ffmpeg command: "+r.join(" ")),null===o)throw k;if(l)throw Error("ffmpeg.wasm can only run one command at a time");return l=!0,new Promise(t=>{var e=[...d,...r].filter(t=>0!==t.length);s=t,a(...b(o,e))})},exit:()=>{if(null===o)throw k;l=!1,o.exit(1),o=null,a=null,s=null},FS:(e,...r)=>{if(g("info",`run FS.${e} `+r.map(t=>"string"==typeof t?t:`<${t.length} bytes binary file>`).join(" ")),null===o)throw k;{let t=null;try{t=o.FS[e](...r)}catch(t){throw"readdir"===e?Error(`ffmpeg.FS('readdir', '${r[0]}') error. Check if the path exists, ex: ffmpeg.FS('readdir', '/')`):"readFile"===e?Error(`ffmpeg.FS('readFile', '${r[0]}') error. Check if the path exists`):Error("Oops, something went wrong in FS operation.")}return t}}}}},888:t=>{let r=!1,n=()=>{};t.exports={logging:r,setLogging:t=>{r=t},setCustomLogger:t=>{n=t},log:(t,e)=>{n({type:t,message:e}),r&&console.log(`[${t}] `+e)}}},10:t=>{t.exports=(n,t)=>{const i=n._malloc(t.length*Uint32Array.BYTES_PER_ELEMENT);return t.forEach((t,e)=>{var r=n._malloc(t.length+1);n.writeAsciiToMemory(t,r),n.setValue(i+Uint32Array.BYTES_PER_ELEMENT*e,r,"i32")}),[t.length,i]}},405:t=>{let n=0,i=0;const o=t=>{var[e,r,t]=t.split(":");return 60*parseFloat(e)*60+60*parseFloat(r)+parseFloat(t)};t.exports=(t,e)=>{var r;"string"==typeof t&&(t.startsWith(" Duration")?(r=t.split(", ")[0].split(": ")[1],e({duration:r=o(r),ratio:i}),(0===n||n>r)&&(n=r)):t.startsWith("frame")||t.startsWith("size")?(r=t.split("time=")[1].split(" ")[0],r=o(r),i=r/n,e({ratio:i,time:r})):t.startsWith("video:")&&(e({ratio:1}),n=0))}},809:(t,e)=>{"use strict";function a(t){var e=-1;n=n||function(){for(var t=new Int32Array(256),e=0;e<256;e++){for(var r=e,n=0;n<8;n++)r=1&r?3988292384^r>>>1:r>>>1;t[e]=r}return t}();for(var r=0;r
>>8;return-1^e}Object.defineProperty(e,"__esModule",{value:!0}),e.changeDpiBlob=function(i,o){var e=i.slice(0,33);return new Promise(function(r,t){var n=new FileReader;n.onload=function(){var t=new Uint8Array(n.result),e=i.slice(33),t=g(t,o,i.type);r(new Blob([t,e],{type:i.type}))},n.readAsArrayBuffer(e)})},e.changeDpiDataUrl=function(t,e){var r=t.split(","),n=r[0],i=r[1],o=void 0,t=void 0,r=!1;-1!==n.indexOf(c)&&(o=c,0<=(a=function(t){var e=t.indexOf(d);-1===e&&(e=t.indexOf(f));-1===e&&(e=t.indexOf(p));return e}(i))?(t=4*Math.ceil((a+28)/3),r=!0):t=44);-1!==n.indexOf(u)&&(o=u,t=24);for(var a=i.substring(0,t),t=i.substring(t),s=atob(a),l=new Uint8Array(s.length),h=0;h>8,t[15]=255&e,t[16]=e>>8,t[17]=255&e,t;if(r===c){var i=new Uint8Array(13);e*=39.3701,i[0]=s,i[1]=l,i[2]=h,i[3]=m,i[4]=e>>>24,i[5]=e>>>16,i[6]=e>>>8,i[7]=255&e,i[8]=i[4],i[9]=i[5],i[10]=i[6],i[11]=i[7],i[12]=1;r=a(i),e=new Uint8Array(4);if(e[0]=r>>>24,e[1]=r>>>16,e[2]=r>>>8,e[3]=255&r,n){var o=function(t){for(var e=t.length-1;4<=e;e--)if(9===t[e-4]&&t[e-3]===s&&t[e-2]===l&&t[e-1]===h&&t[e]===m)return e-3}(t);return t.set(i,o),t.set(e,o+13),t}n=new Uint8Array(4);n[0]=0,n[1]=0,n[2]=0,n[3]=9;o=new Uint8Array(54);return o.set(t,0),o.set(n,33),o.set(i,37),o.set(e,50),o}}},162:function(t,e,r){var n;void 0===(n="function"==typeof(n=function(){"use strict";function i(t,e){return"undefined"==typeof e?e={autoBom:!1}:"object"!=typeof e&&(console.warn("Deprecated: Expected third argument to be a object"),e={autoBom:!e}),e.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(t.type)?new Blob(["\ufeff",t],{type:t.type}):t}function c(t,e,r){var n=new XMLHttpRequest;n.open("GET",t),n.responseType="blob",n.onload=function(){s(n.response,e,r)},n.onerror=function(){console.error("could not download file")},n.send()}function o(t){var e=new XMLHttpRequest;e.open("HEAD",t,!1);try{e.send()}catch(t){}return 200<=e.status&&299>=e.status}function a(e){try{e.dispatchEvent(new MouseEvent("click"))}catch(t){var r=document.createEvent("MouseEvents");r.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),e.dispatchEvent(r)}}var u="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof r.g&&r.g.global===r.g?r.g:void 0,d=u.navigator&&/Macintosh/.test(navigator.userAgent)&&/AppleWebKit/.test(navigator.userAgent)&&!/Safari/.test(navigator.userAgent),s=u.saveAs||("object"!=typeof window||window!==u?function(){}:"download"in HTMLAnchorElement.prototype&&!d?function(t,e,r){var n=u.URL||u.webkitURL,i=document.createElement("a");e=e||t.name||"download",i.download=e,i.rel="noopener","string"==typeof t?(i.href=t,i.origin===location.origin?a(i):o(i.href)?c(t,e,r):a(i,i.target="_blank")):(i.href=n.createObjectURL(t),setTimeout(function(){n.revokeObjectURL(i.href)},4e4),setTimeout(function(){a(i)},0))}:"msSaveOrOpenBlob"in navigator?function(t,e,r){if(e=e||t.name||"download","string"!=typeof t)navigator.msSaveOrOpenBlob(i(t,r),e);else if(o(t))c(t,e,r);else{var n=document.createElement("a");n.href=t,n.target="_blank",setTimeout(function(){a(n)})}}:function(t,e,r,n){if(n=n||open("","_blank"),n&&(n.document.title=n.document.body.innerText="downloading..."),"string"==typeof t)return c(t,e,r);var i="application/octet-stream"===t.type,o=/constructor/i.test(u.HTMLElement)||u.safari,a=/CriOS\/[\d]+/.test(navigator.userAgent);if((a||i&&o||d)&&"undefined"!=typeof FileReader){var s=new FileReader;s.onloadend=function(){var t=s.result;t=a?t:t.replace(/^data:[^;]*;/,"data:attachment/file;"),n?n.location.href=t:location=t,n=null},s.readAsDataURL(t)}else{var l=u.URL||u.webkitURL,h=l.createObjectURL(t);n?n.location=h:location.href=h,n=null,setTimeout(function(){l.revokeObjectURL(h)},4e4)}});u.saveAs=s.saveAs=s,true&&(t.exports=s)})?n.apply(e,[]):n)||(t.exports=n)},733:(t,e,r)=>{
+/*!
+
+JSZip v3.7.1 - A JavaScript class for generating and reading zip files
+
+
+(c) 2009-2016 Stuart Knightley
+Dual licenced under the MIT license or GPLv3. See https://raw.github.com/Stuk/jszip/master/LICENSE.markdown.
+
+JSZip uses the library pako released under the MIT license :
+https://github.com/nodeca/pako/blob/master/LICENSE
+*/
+t.exports=function n(i,o,a){function s(e,t){if(!o[e]){if(!i[e]){if(0,l)return l(e,!0);var r=new Error("Cannot find module '"+e+"'");throw r.code="MODULE_NOT_FOUND",r}r=o[e]={exports:{}};i[e][0].call(r.exports,function(t){return s(i[e][1][t]||t)},r,r.exports,n,i,o,a)}return o[e].exports}for(var l=void 0,t=0;t>4,i=1>6:64,o=2 >2)+d.charAt(n)+d.charAt(i)+d.charAt(o));return s.join("")},r.decode=function(t){var e,r,n,i,o,a=0,s=0;if("data:"===t.substr(0,"data:".length))throw new Error("Invalid base64 input, it looks like a data url.");var l,h=3*(t=t.replace(/[^A-Za-z0-9\+\/\=]/g,"")).length/4;if(t.charAt(t.length-1)===d.charAt(64)&&h--,t.charAt(t.length-2)===d.charAt(64)&&h--,h%1!=0)throw new Error("Invalid base64 input, bad content length.");for(l=new(c.uint8array?Uint8Array:Array)(0|h);a>4,r=(15&n)<<4|(i=d.indexOf(t.charAt(a++)))>>2,n=(3&i)<<6|(o=d.indexOf(t.charAt(a++))),l[s++]=e,64!==i&&(l[s++]=r),64!==o&&(l[s++]=n);return l}},{"./support":30,"./utils":32}],2:[function(t,e,r){"use strict";var n=t("./external"),i=t("./stream/DataWorker"),o=t("./stream/Crc32Probe"),a=t("./stream/DataLengthProbe");function s(t,e,r,n,i){this.compressedSize=t,this.uncompressedSize=e,this.crc32=r,this.compression=n,this.compressedContent=i}s.prototype={getContentWorker:function(){var t=new i(n.Promise.resolve(this.compressedContent)).pipe(this.compression.uncompressWorker()).pipe(new a("data_length")),e=this;return t.on("end",function(){if(this.streamInfo.data_length!==e.uncompressedSize)throw new Error("Bug : uncompressed data size mismatch")}),t},getCompressedWorker:function(){return new i(n.Promise.resolve(this.compressedContent)).withStreamInfo("compressedSize",this.compressedSize).withStreamInfo("uncompressedSize",this.uncompressedSize).withStreamInfo("crc32",this.crc32).withStreamInfo("compression",this.compression)}},s.createWorkerFrom=function(t,e,r){return t.pipe(new o).pipe(new a("uncompressedSize")).pipe(e.compressWorker(r)).pipe(new a("compressedSize")).withStreamInfo("compression",e)},e.exports=s},{"./external":6,"./stream/Crc32Probe":25,"./stream/DataLengthProbe":26,"./stream/DataWorker":27}],3:[function(t,e,r){"use strict";var n=t("./stream/GenericWorker");r.STORE={magic:"\0\0",compressWorker:function(t){return new n("STORE compression")},uncompressWorker:function(){return new n("STORE decompression")}},r.DEFLATE=t("./flate")},{"./flate":7,"./stream/GenericWorker":28}],4:[function(t,e,r){"use strict";var n=t("./utils"),a=function(){for(var t=[],e=0;e<256;e++){for(var r=e,n=0;n<8;n++)r=1&r?3988292384^r>>>1:r>>>1;t[e]=r}return t}();e.exports=function(t,e){return void 0!==t&&t.length?("string"!==n.getTypeOf(t)?function(t,e,r){var n=a,i=0+r;t^=-1;for(var o=0;o>>8^n[255&(t^e[o])];return-1^t}:function(t,e,r){var n=a,i=0+r;t^=-1;for(var o=0;o>>8^n[255&(t^e.charCodeAt(o))];return-1^t})(0|e,t,t.length):0}},{"./utils":32}],5:[function(t,e,r){"use strict";r.base64=!1,r.binary=!1,r.dir=!1,r.createFolders=!0,r.date=null,r.compression=null,r.compressionOptions=null,r.comment=null,r.unixPermissions=null,r.dosPermissions=null},{}],6:[function(t,e,r){"use strict";var n="undefined"!=typeof Promise?Promise:t("lie");e.exports={Promise:n}},{lie:37}],7:[function(t,e,r){"use strict";var n="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Uint32Array,i=t("pako"),o=t("./utils"),a=t("./stream/GenericWorker"),s=n?"uint8array":"array";function l(t,e){a.call(this,"FlateWorker/"+t),this._pako=null,this._pakoAction=t,this._pakoOptions=e,this.meta={}}r.magic="\b\0",o.inherits(l,a),l.prototype.processChunk=function(t){this.meta=t.meta,null===this._pako&&this._createPako(),this._pako.push(o.transformTo(s,t.data),!1)},l.prototype.flush=function(){a.prototype.flush.call(this),null===this._pako&&this._createPako(),this._pako.push([],!0)},l.prototype.cleanUp=function(){a.prototype.cleanUp.call(this),this._pako=null},l.prototype._createPako=function(){this._pako=new i[this._pakoAction]({raw:!0,level:this._pakoOptions.level||-1});var e=this;this._pako.onData=function(t){e.push({data:t,meta:e.meta})}},r.compressWorker=function(t){return new l("Deflate",t)},r.uncompressWorker=function(){return new l("Inflate",{})}},{"./stream/GenericWorker":28,"./utils":32,pako:38}],8:[function(t,e,r){"use strict";function v(t,e){for(var r="",n=0;n>>=8;return r}function n(t,e,r,n,i,o){var a,s=t.file,l=t.compression,h=o!==k.utf8encode,c=_.transformTo("string",o(s.name)),u=_.transformTo("string",k.utf8encode(s.name)),d=s.comment,f=_.transformTo("string",o(d)),p=_.transformTo("string",k.utf8encode(d)),m=u.length!==s.name.length,g=p.length!==d.length,w="",b=s.dir,o=s.date,d={crc32:0,compressedSize:0,uncompressedSize:0};e&&!r||(d.crc32=t.crc32,d.compressedSize=t.compressedSize,d.uncompressedSize=t.uncompressedSize);t=0;e&&(t|=8),h||!m&&!g||(t|=2048);e=0,h=0;b&&(e|=16),"UNIX"===i?(h=798,e|=(65535&((i=s.unixPermissions)?i:b?16893:33204))<<16):(h=20,e|=63&(s.dosPermissions||0)),b=o.getUTCHours(),b<<=6,b|=o.getUTCMinutes(),b<<=5,b|=o.getUTCSeconds()/2,s=o.getUTCFullYear()-1980,s<<=4,s|=o.getUTCMonth()+1,s<<=5,s|=o.getUTCDate(),m&&(a=v(1,1)+v(x(c),4)+u,w+="up"+v(a.length,2)+a),g&&(y=v(1,1)+v(x(f),4)+p,w+="uc"+v(y.length,2)+y);var y="";return y+="\n\0",y+=v(t,2),y+=l.magic,y+=v(b,2),y+=v(s,2),y+=v(d.crc32,4),y+=v(d.compressedSize,4),y+=v(d.uncompressedSize,4),y+=v(c.length,2),y+=v(w.length,2),{fileRecord:E.LOCAL_FILE_HEADER+y+c+w,dirRecord:E.CENTRAL_FILE_HEADER+v(h,2)+y+v(f.length,2)+"\0\0\0\0"+v(e,4)+v(n,4)+c+w+f}}var _=t("../utils"),i=t("../stream/GenericWorker"),k=t("../utf8"),x=t("../crc32"),E=t("../signature");function o(t,e,r,n){i.call(this,"ZipFileWorker"),this.bytesWritten=0,this.zipComment=e,this.zipPlatform=r,this.encodeFileName=n,this.streamFiles=t,this.accumulate=!1,this.contentBuffer=[],this.dirRecords=[],this.currentSourceOffset=0,this.entriesCount=0,this.currentFile=null,this._sources=[]}_.inherits(o,i),o.prototype.push=function(t){var e=t.meta.percent||0,r=this.entriesCount,n=this._sources.length;this.accumulate?this.contentBuffer.push(t):(this.bytesWritten+=t.data.length,i.prototype.push.call(this,{data:t.data,meta:{currentFile:this.currentFile,percent:r?(e+100*(r-n-1))/r:100}}))},o.prototype.openedSource=function(t){this.currentSourceOffset=this.bytesWritten,this.currentFile=t.file.name;var e=this.streamFiles&&!t.file.dir;e?(e=n(t,e,!1,this.currentSourceOffset,this.zipPlatform,this.encodeFileName),this.push({data:e.fileRecord,meta:{percent:0}})):this.accumulate=!0},o.prototype.closedSource=function(t){this.accumulate=!1;var e=this.streamFiles&&!t.file.dir,r=n(t,e,!0,this.currentSourceOffset,this.zipPlatform,this.encodeFileName);if(this.dirRecords.push(r.dirRecord),e)this.push({data:(t=t,E.DATA_DESCRIPTOR+v(t.crc32,4)+v(t.compressedSize,4)+v(t.uncompressedSize,4)),meta:{percent:100}});else for(this.push({data:r.fileRecord,meta:{percent:0}});this.contentBuffer.length;)this.push(this.contentBuffer.shift());this.currentFile=null},o.prototype.flush=function(){for(var t=this.bytesWritten,e=0;e=this.index;e--)r=(r<<8)+this.byteAt(e);return this.index+=t,r},readString:function(t){return n.transformTo("string",this.readData(t))},readData:function(t){},lastIndexOfSignature:function(t){},readAndCheckSignature:function(t){},readDate:function(){var t=this.readInt(4);return new Date(Date.UTC(1980+(t>>25&127),(t>>21&15)-1,t>>16&31,t>>11&31,t>>5&63,(31&t)<<1))}},e.exports=i},{"../utils":32}],19:[function(t,e,r){"use strict";var n=t("./Uint8ArrayReader");function i(t){n.call(this,t)}t("../utils").inherits(i,n),i.prototype.readData=function(t){this.checkOffset(t);var e=this.data.slice(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=i},{"../utils":32,"./Uint8ArrayReader":21}],20:[function(t,e,r){"use strict";var n=t("./DataReader");function i(t){n.call(this,t)}t("../utils").inherits(i,n),i.prototype.byteAt=function(t){return this.data.charCodeAt(this.zero+t)},i.prototype.lastIndexOfSignature=function(t){return this.data.lastIndexOf(t)-this.zero},i.prototype.readAndCheckSignature=function(t){return t===this.readData(4)},i.prototype.readData=function(t){this.checkOffset(t);var e=this.data.slice(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=i},{"../utils":32,"./DataReader":18}],21:[function(t,e,r){"use strict";var n=t("./ArrayReader");function i(t){n.call(this,t)}t("../utils").inherits(i,n),i.prototype.readData=function(t){if(this.checkOffset(t),0===t)return new Uint8Array(0);var e=this.data.subarray(this.zero+this.index,this.zero+this.index+t);return this.index+=t,e},e.exports=i},{"../utils":32,"./ArrayReader":17}],22:[function(t,e,r){"use strict";var n=t("../utils"),i=t("../support"),o=t("./ArrayReader"),a=t("./StringReader"),s=t("./NodeBufferReader"),l=t("./Uint8ArrayReader");e.exports=function(t){var e=n.getTypeOf(t);return n.checkSupport(e),"string"!==e||i.uint8array?"nodebuffer"===e?new s(t):i.uint8array?new l(n.transformTo("uint8array",t)):new o(n.transformTo("array",t)):new a(t)}},{"../support":30,"../utils":32,"./ArrayReader":17,"./NodeBufferReader":19,"./StringReader":20,"./Uint8ArrayReader":21}],23:[function(t,e,r){"use strict";r.LOCAL_FILE_HEADER="PK",r.CENTRAL_FILE_HEADER="PK",r.CENTRAL_DIRECTORY_END="PK",r.ZIP64_CENTRAL_DIRECTORY_LOCATOR="PK",r.ZIP64_CENTRAL_DIRECTORY_END="PK",r.DATA_DESCRIPTOR="PK\b"},{}],24:[function(t,e,r){"use strict";var n=t("./GenericWorker"),i=t("../utils");function o(t){n.call(this,"ConvertWorker to "+t),this.destType=t}i.inherits(o,n),o.prototype.processChunk=function(t){this.push({data:i.transformTo(this.destType,t.data),meta:t.meta})},e.exports=o},{"../utils":32,"./GenericWorker":28}],25:[function(t,e,r){"use strict";var n=t("./GenericWorker"),i=t("../crc32");function o(){n.call(this,"Crc32Probe"),this.withStreamInfo("crc32",0)}t("../utils").inherits(o,n),o.prototype.processChunk=function(t){this.streamInfo.crc32=i(t.data,this.streamInfo.crc32||0),this.push(t)},e.exports=o},{"../crc32":4,"../utils":32,"./GenericWorker":28}],26:[function(t,e,r){"use strict";var n=t("../utils"),i=t("./GenericWorker");function o(t){i.call(this,"DataLengthProbe for "+t),this.propName=t,this.withStreamInfo(t,0)}n.inherits(o,i),o.prototype.processChunk=function(t){var e;t&&(e=this.streamInfo[this.propName]||0,this.streamInfo[this.propName]=e+t.data.length),i.prototype.processChunk.call(this,t)},e.exports=o},{"../utils":32,"./GenericWorker":28}],27:[function(t,e,r){"use strict";var n=t("../utils"),i=t("./GenericWorker");function o(t){i.call(this,"DataWorker");var e=this;this.dataIsReady=!1,this.index=0,this.max=0,this.data=null,this.type="",this._tickScheduled=!1,t.then(function(t){e.dataIsReady=!0,e.data=t,e.max=t&&t.length||0,e.type=n.getTypeOf(t),e.isPaused||e._tickAndRepeat()},function(t){e.error(t)})}n.inherits(o,i),o.prototype.cleanUp=function(){i.prototype.cleanUp.call(this),this.data=null},o.prototype.resume=function(){return!!i.prototype.resume.call(this)&&(!this._tickScheduled&&this.dataIsReady&&(this._tickScheduled=!0,n.delay(this._tickAndRepeat,[],this)),!0)},o.prototype._tickAndRepeat=function(){this._tickScheduled=!1,this.isPaused||this.isFinished||(this._tick(),this.isFinished||(n.delay(this._tickAndRepeat,[],this),this._tickScheduled=!0))},o.prototype._tick=function(){if(this.isPaused||this.isFinished)return!1;var t=null,e=Math.min(this.max,this.index+16384);if(this.index>=this.max)return this.end();switch(this.type){case"string":t=this.data.substring(this.index,e);break;case"uint8array":t=this.data.subarray(this.index,e);break;case"array":case"nodebuffer":t=this.data.slice(this.index,e)}return this.index=e,this.push({data:t,meta:{percent:this.max?this.index/this.max*100:0}})},e.exports=o},{"../utils":32,"./GenericWorker":28}],28:[function(t,e,r){"use strict";function n(t){this.name=t||"default",this.streamInfo={},this.generatedError=null,this.extraStreamInfo={},this.isPaused=!0,this.isFinished=!1,this.isLocked=!1,this._listeners={data:[],end:[],error:[]},this.previous=null}n.prototype={push:function(t){this.emit("data",t)},end:function(){if(this.isFinished)return!1;this.flush();try{this.emit("end"),this.cleanUp(),this.isFinished=!0}catch(t){this.emit("error",t)}return!0},error:function(t){return!this.isFinished&&(this.isPaused?this.generatedError=t:(this.isFinished=!0,this.emit("error",t),this.previous&&this.previous.error(t),this.cleanUp()),!0)},on:function(t,e){return this._listeners[t].push(e),this},cleanUp:function(){this.streamInfo=this.generatedError=this.extraStreamInfo=null,this._listeners=[]},emit:function(t,e){if(this._listeners[t])for(var r=0;r "+t:t}},e.exports=n},{}],29:[function(t,e,r){"use strict";var h=t("../utils"),i=t("./ConvertWorker"),o=t("./GenericWorker"),c=t("../base64"),n=t("../support"),a=t("../external"),s=null;if(n.nodestream)try{s=t("../nodejs/NodejsStreamOutputAdapter")}catch(t){}function l(t,e,r){var n=e;switch(e){case"blob":case"arraybuffer":n="uint8array";break;case"base64":n="string"}try{this._internalType=n,this._outputType=e,this._mimeType=r,h.checkSupport(n),this._worker=t.pipe(new i(n)),t.lock()}catch(t){this._worker=new o("error"),this._worker.error(t)}}l.prototype={accumulate:function(t){return s=this,l=t,new a.Promise(function(e,r){var n=[],i=s._internalType,o=s._outputType,a=s._mimeType;s.on("data",function(t,e){n.push(t),l&&l(e)}).on("error",function(t){n=[],r(t)}).on("end",function(){try{var t=function(t,e,r){switch(t){case"blob":return h.newBlob(h.transformTo("arraybuffer",e),r);case"base64":return c.encode(e);default:return h.transformTo(t,e)}}(o,function(t,e){for(var r=0,n=null,i=0,o=0;o>>6:(r<65536?e[i++]=224|r>>>12:(e[i++]=240|r>>>18,e[i++]=128|r>>>12&63),e[i++]=128|r>>>6&63),e[i++]=128|63&r);return e}(t)},i.utf8decode=function(t){return l.nodebuffer?s.transformTo("nodebuffer",t).toString("utf-8"):function(t){for(var e,r,n,i=t.length,o=new Array(2*i),a=e=0;a>10&1023,o[e++]=56320|1023&r)}return o.length!==e&&(o.subarray?o=o.subarray(0,e):o.length=e),s.applyFromCharCode(o)}(t=s.transformTo(l.uint8array?"uint8array":"array",t))},s.inherits(a,n),a.prototype.processChunk=function(t){var e=s.transformTo(l.uint8array?"uint8array":"array",t.data);this.leftOver&&this.leftOver.length&&(l.uint8array?(n=e,(e=new Uint8Array(n.length+this.leftOver.length)).set(this.leftOver,0),e.set(n,this.leftOver.length)):e=this.leftOver.concat(e),this.leftOver=null);var r=function(t,e){for(var r=(e=(e=e||t.length)>t.length?t.length:e)-1;0<=r&&128==(192&t[r]);)r--;return!(r<0)&&0!==r&&r+h[t[r]]>e?r:e}(e),n=e;r!==e.length&&(l.uint8array?(n=e.subarray(0,r),this.leftOver=e.subarray(r,e.length)):(n=e.slice(0,r),this.leftOver=e.slice(r,e.length))),this.push({data:i.utf8decode(n),meta:t.meta})},a.prototype.flush=function(){this.leftOver&&this.leftOver.length&&(this.push({data:i.utf8decode(this.leftOver),meta:{}}),this.leftOver=null)},i.Utf8DecodeWorker=a,s.inherits(c,n),c.prototype.processChunk=function(t){this.push({data:i.utf8encode(t.data),meta:t.meta})},i.Utf8EncodeWorker=c},{"./nodejsUtils":14,"./stream/GenericWorker":28,"./support":30,"./utils":32}],32:[function(t,e,a){"use strict";var s=t("./support"),l=t("./base64"),r=t("./nodejsUtils"),n=t("set-immediate-shim"),h=t("./external");function i(t){return t}function c(t,e){for(var r=0;r>8;this.dir=!!(16&this.externalFileAttributes),0==t&&(this.dosPermissions=63&this.externalFileAttributes),3==t&&(this.unixPermissions=this.externalFileAttributes>>16&65535),this.dir||"/"!==this.fileNameStr.slice(-1)||(this.dir=!0)},parseZIP64ExtraField:function(t){var e;this.extraFields[1]&&(e=n(this.extraFields[1].value),this.uncompressedSize===i.MAX_VALUE_32BITS&&(this.uncompressedSize=e.readInt(8)),this.compressedSize===i.MAX_VALUE_32BITS&&(this.compressedSize=e.readInt(8)),this.localHeaderOffset===i.MAX_VALUE_32BITS&&(this.localHeaderOffset=e.readInt(8)),this.diskNumberStart===i.MAX_VALUE_32BITS&&(this.diskNumberStart=e.readInt(4)))},readExtraFields:function(t){var e,r,n,i=t.index+this.extraFieldsLength;for(this.extraFields||(this.extraFields={});t.index+4>>6:(r<65536?e[i++]=224|r>>>12:(e[i++]=240|r>>>18,e[i++]=128|r>>>12&63),e[i++]=128|r>>>6&63),e[i++]=128|63&r);return e},r.buf2binstring=function(t){return c(t,t.length)},r.binstring2buf=function(t){for(var e=new l.Buf8(t.length),r=0,n=e.length;r>10&1023,a[r++]=56320|1023&n)}return c(a,r)},r.utf8border=function(t,e){for(var r=(e=(e=e||t.length)>t.length?t.length:e)-1;0<=r&&128==(192&t[r]);)r--;return!(r<0)&&0!==r&&r+h[t[r]]>e?r:e}},{"./common":41}],43:[function(t,e,r){"use strict";e.exports=function(t,e,r,n){for(var i=65535&t|0,o=t>>>16&65535|0,a=0;0!==r;){for(r-=a=2e3>>1:r>>>1;t[e]=r}return t}();e.exports=function(t,e,r,n){var i=s,o=n+r;t^=-1;for(var a=n;a>>8^i[255&(t^e[a])];return-1^t}},{}],46:[function(t,e,r){"use strict";var s,u=t("../utils/common"),l=t("./trees"),d=t("./adler32"),f=t("./crc32"),n=t("./messages"),h=0,c=0,p=-2,i=2,m=8,o=286,a=30,g=19,w=2*o+1,b=15,y=3,v=258,_=v+y+1,k=42,x=113;function E(t,e){return t.msg=n[e],e}function S(t){return(t<<1)-(4t.avail_out?t.avail_out:r)&&(u.arraySet(t.output,e.pending_buf,e.pending_out,r,t.next_out),t.next_out+=r,e.pending_out+=r,t.total_out+=r,t.avail_out-=r,e.pending-=r,0===e.pending&&(e.pending_out=0))}function B(t,e){l._tr_flush_block(t,0<=t.block_start?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,C(t.strm)}function z(t,e){t.pending_buf[t.pending++]=e}function F(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e}function P(t,e){var r,n,i=t.max_chain_length,o=t.strstart,a=t.prev_length,s=t.nice_match,l=t.strstart>t.w_size-_?t.strstart-(t.w_size-_):0,h=t.window,c=t.w_mask,u=t.prev,d=t.strstart+v,f=h[o+a-1],p=h[o+a];t.prev_length>=t.good_match&&(i>>=2),s>t.lookahead&&(s=t.lookahead);do{if(h[(r=e)+a]===p&&h[r+a-1]===f&&h[r]===h[o]&&h[++r]===h[o+1]){for(o+=2,r++;h[++o]===h[++r]&&h[++o]===h[++r]&&h[++o]===h[++r]&&h[++o]===h[++r]&&h[++o]===h[++r]&&h[++o]===h[++r]&&h[++o]===h[++r]&&h[++o]===h[++r]&&ol&&0!=--i);return a<=t.lookahead?a:t.lookahead}function T(t){var e,r,n,i,o,a,s,l,h,c=t.w_size;do{if(l=t.window_size-t.lookahead-t.strstart,t.strstart>=c+(c-_)){for(u.arraySet(t.window,t.window,c,c,0),t.match_start-=c,t.strstart-=c,t.block_start-=c,e=r=t.hash_size;n=t.head[--e],t.head[e]=c<=n?n-c:0,--r;);for(e=r=c;n=t.prev[--e],t.prev[e]=c<=n?n-c:0,--r;);l+=c}if(0===t.strm.avail_in)break;if(o=t.strm,a=t.window,s=t.strstart+t.lookahead,h=void 0,r=0===(h=(l=l)<(h=o.avail_in)?l:h)?0:(o.avail_in-=h,u.arraySet(a,o.input,o.next_in,h,s),1===o.state.wrap?o.adler=d(o.adler,a,h,s):2===o.state.wrap&&(o.adler=f(o.adler,a,h,s)),o.next_in+=h,o.total_in+=h,h),t.lookahead+=r,t.lookahead+t.insert>=y)for(i=t.strstart-t.insert,t.ins_h=t.window[i],t.ins_h=(t.ins_h<=y&&(t.ins_h=(t.ins_h<=y)if(n=l._tr_tally(t,t.strstart-t.match_start,t.match_length-y),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=y){for(t.match_length--;t.strstart++,t.ins_h=(t.ins_h<=y&&(t.ins_h=(t.ins_h<=y&&t.match_length<=t.prev_length){for(i=t.strstart+t.lookahead-y,n=l._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-y),t.lookahead-=t.prev_length-1,t.prev_length-=2;++t.strstart<=i&&(t.ins_h=(t.ins_h<t.pending_buf_size-5&&(r=t.pending_buf_size-5);;){if(t.lookahead<=1){if(T(t),0===t.lookahead&&e===h)return 1;if(0===t.lookahead)break}t.strstart+=t.lookahead,t.lookahead=0;var n=t.block_start+r;if((0===t.strstart||t.strstart>=n)&&(t.lookahead=t.strstart-n,t.strstart=n,B(t,!1),0===t.strm.avail_out))return 1;if(t.strstart-t.block_start>=t.w_size-_&&(B(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,4===e?(B(t,!0),0===t.strm.avail_out?3:4):(t.strstart>t.block_start&&(B(t,!1),t.strm.avail_out),1)}),new R(4,4,8,4,I),new R(4,5,16,8,I),new R(4,6,32,32,I),new R(4,4,16,16,O),new R(8,16,32,32,O),new R(8,16,128,128,O),new R(8,32,128,256,O),new R(32,128,258,1024,O),new R(32,258,258,4096,O)],r.deflateInit=function(t,e){return U(t,e,m,15,8,0)},r.deflateInit2=U,r.deflateReset=M,r.deflateResetKeep=L,r.deflateSetHeader=function(t,e){return!t||!t.state||2!==t.state.wrap?p:(t.state.gzhead=e,c)},r.deflate=function(t,e){var r,n,i,o;if(!t||!t.state||5>8&255),z(r,r.gzhead.time>>16&255),z(r,r.gzhead.time>>24&255),z(r,9===r.level?2:2<=r.strategy||r.level<2?4:0),z(r,255&r.gzhead.os),r.gzhead.extra&&r.gzhead.extra.length&&(z(r,255&r.gzhead.extra.length),z(r,r.gzhead.extra.length>>8&255)),r.gzhead.hcrc&&(t.adler=f(t.adler,r.pending_buf,r.pending,0)),r.gzindex=0,r.status=69):(z(r,0),z(r,0),z(r,0),z(r,0),z(r,0),z(r,9===r.level?2:2<=r.strategy||r.level<2?4:0),z(r,3),r.status=x)):(o=m+(r.w_bits-8<<4)<<8,o|=(2<=r.strategy||r.level<2?0:r.level<6?1:6===r.level?2:3)<<6,0!==r.strstart&&(o|=32),o+=31-o%31,r.status=x,F(r,o),0!==r.strstart&&(F(r,t.adler>>>16),F(r,65535&t.adler)),t.adler=1)),69===r.status)if(r.gzhead.extra){for(n=r.pending;r.gzindex<(65535&r.gzhead.extra.length)&&(r.pending!==r.pending_buf_size||(r.gzhead.hcrc&&r.pending>n&&(t.adler=f(t.adler,r.pending_buf,r.pending-n,n)),C(t),n=r.pending,r.pending!==r.pending_buf_size));)z(r,255&r.gzhead.extra[r.gzindex]),r.gzindex++;r.gzhead.hcrc&&r.pending>n&&(t.adler=f(t.adler,r.pending_buf,r.pending-n,n)),r.gzindex===r.gzhead.extra.length&&(r.gzindex=0,r.status=73)}else r.status=73;if(73===r.status)if(r.gzhead.name){n=r.pending;do{if(r.pending===r.pending_buf_size&&(r.gzhead.hcrc&&r.pending>n&&(t.adler=f(t.adler,r.pending_buf,r.pending-n,n)),C(t),n=r.pending,r.pending===r.pending_buf_size)){i=1;break}}while(i=r.gzindexn&&(t.adler=f(t.adler,r.pending_buf,r.pending-n,n)),0===i&&(r.gzindex=0,r.status=91)}else r.status=91;if(91===r.status)if(r.gzhead.comment){n=r.pending;do{if(r.pending===r.pending_buf_size&&(r.gzhead.hcrc&&r.pending>n&&(t.adler=f(t.adler,r.pending_buf,r.pending-n,n)),C(t),n=r.pending,r.pending===r.pending_buf_size)){i=1;break}}while(i=r.gzindexn&&(t.adler=f(t.adler,r.pending_buf,r.pending-n,n)),0===i&&(r.status=103)}else r.status=103;if(103===r.status&&(r.gzhead.hcrc?(r.pending+2>r.pending_buf_size&&C(t),r.pending+2<=r.pending_buf_size&&(z(r,255&t.adler),z(r,t.adler>>8&255),t.adler=0,r.status=x)):r.status=x),0!==r.pending){if(C(t),0===t.avail_out)return r.last_flush=-1,c}else if(0===t.avail_in&&S(e)<=S(a)&&4!==e)return E(t,-5);if(666===r.status&&0!==t.avail_in)return E(t,-5);if(0!==t.avail_in||0!==r.lookahead||e!==h&&666!==r.status){var a=2===r.strategy?function(t,e){for(var r;;){if(0===t.lookahead&&(T(t),0===t.lookahead)){if(e===h)return 1;break}if(t.match_length=0,r=l._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,r&&(B(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,4===e?(B(t,!0),0===t.strm.avail_out?3:4):t.last_lit&&(B(t,!1),0===t.strm.avail_out)?1:2}(r,e):3===r.strategy?function(t,e){for(var r,n,i,o,a=t.window;;){if(t.lookahead<=v){if(T(t),t.lookahead<=v&&e===h)return 1;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=y&&0t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=y?(r=l._tr_tally(t,1,t.match_length-y),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(r=l._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),r&&(B(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,4===e?(B(t,!0),0===t.strm.avail_out?3:4):t.last_lit&&(B(t,!1),0===t.strm.avail_out)?1:2}(r,e):s[r.level].func(r,e);if(3!==a&&4!==a||(r.status=666),1===a||3===a)return 0===t.avail_out&&(r.last_flush=-1),c;if(2===a&&(1===e?l._tr_align(r):5!==e&&(l._tr_stored_block(r,0,0,!1),3===e&&(A(r.head),0===r.lookahead&&(r.strstart=0,r.block_start=0,r.insert=0))),C(t),0===t.avail_out))return r.last_flush=-1,c}return 4!==e?c:r.wrap<=0?1:(2===r.wrap?(z(r,255&t.adler),z(r,t.adler>>8&255),z(r,t.adler>>16&255),z(r,t.adler>>24&255),z(r,255&t.total_in),z(r,t.total_in>>8&255),z(r,t.total_in>>16&255),z(r,t.total_in>>24&255)):(F(r,t.adler>>>16),F(r,65535&t.adler)),C(t),0=r.w_size&&(0===o&&(A(r.head),r.strstart=0,r.block_start=0,r.insert=0),l=new u.Buf8(r.w_size),u.arraySet(l,e,h-r.w_size,r.w_size,0),e=l,h=r.w_size),a=t.avail_in,s=t.next_in,l=t.input,t.avail_in=h,t.next_in=0,t.input=e,T(r);r.lookahead>=y;){for(n=r.strstart,i=r.lookahead-(y-1);r.ins_h=(r.ins_h<>>=n=r>>>24,k-=n,0==(n=r>>>16&255))f[d++]=65535&r;else{if(!(16&n)){if(0==(64&n)){r=x[(65535&r)+(_&(1<>>=n,k-=n),k<15&&(_+=c[h++]<>>=n=r>>>24,k-=n,!(16&(n=r>>>16&255))){if(0==(64&n)){r=E[(65535&r)+(_&(1<>>=n,k-=n,(n=d-p)>3,_&=(1<<(k-=i<<3))-1,t.next_in=h,t.next_out=d,t.avail_in=h>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24)}function o(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new z.Buf16(320),this.work=new z.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function a(t){var e;return t&&t.state?(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=D,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new z.Buf32(n),e.distcode=e.distdyn=new z.Buf32(i),e.sane=1,e.back=-1,O):R}function s(t){var e;return t&&t.state?((e=t.state).wsize=0,e.whave=0,e.wnext=0,a(t)):R}function l(t,e){var r,n;return t&&t.state?(n=t.state,e<0?(r=0,e=-e):(r=1+(e>>4),e<48&&(e&=15)),e&&(e<8||15=i.wsize?(z.arraySet(i.window,e,r-i.wsize,i.wsize,0),i.wnext=0,i.whave=i.wsize):(n<(t=i.wsize-i.wnext)&&(t=n),z.arraySet(i.window,e,r-n,t,i.wnext),(n-=t)?(z.arraySet(i.window,e,r-n,n,0),i.wnext=n,i.whave=i.wsize):(i.wnext+=t,i.wnext===i.wsize&&(i.wnext=0),i.whave>>8&255,r.check=P(r.check,C,2,0),c=h=0,r.mode=2;break}if(r.flags=0,r.head&&(r.head.done=!1),!(1&r.wrap)||(((255&h)<<8)+(h>>8))%31){t.msg="incorrect header check",r.mode=30;break}if(8!=(15&h)){t.msg="unknown compression method",r.mode=30;break}if(c-=4,k=8+(15&(h>>>=4)),0===r.wbits)r.wbits=k;else if(k>r.wbits){t.msg="invalid window size",r.mode=30;break}r.dmax=1<>8&1),512&r.flags&&(C[0]=255&h,C[1]=h>>>8&255,r.check=P(r.check,C,2,0)),c=h=0,r.mode=3;case 3:for(;c<32;){if(0===s)break t;s--,h+=n[o++]<>>8&255,C[2]=h>>>16&255,C[3]=h>>>24&255,r.check=P(r.check,C,4,0)),c=h=0,r.mode=4;case 4:for(;c<16;){if(0===s)break t;s--,h+=n[o++]<>8),512&r.flags&&(C[0]=255&h,C[1]=h>>>8&255,r.check=P(r.check,C,2,0)),c=h=0,r.mode=5;case 5:if(1024&r.flags){for(;c<16;){if(0===s)break t;s--,h+=n[o++]<>>8&255,r.check=P(r.check,C,2,0)),c=h=0}else r.head&&(r.head.extra=null);r.mode=6;case 6:if(1024&r.flags&&((f=s<(f=r.length)?s:f)&&(r.head&&(k=r.head.extra_len-r.length,r.head.extra||(r.head.extra=new Array(r.head.extra_len)),z.arraySet(r.head.extra,n,o,f,k)),512&r.flags&&(r.check=P(r.check,n,f,o)),s-=f,o+=f,r.length-=f),r.length))break t;r.length=0,r.mode=7;case 7:if(2048&r.flags){if(0===s)break t;for(f=0;k=n[o+f++],r.head&&k&&r.length<65536&&(r.head.name+=String.fromCharCode(k)),k&&f>9&1,r.head.done=!0),t.adler=r.check=0,r.mode=12;break;case 10:for(;c<32;){if(0===s)break t;s--,h+=n[o++]<>>=7&c,c-=7&c,r.mode=27;break}for(;c<3;){if(0===s)break t;s--,h+=n[o++]<>>=1)){case 0:r.mode=14;break;case 1:if(function(t){if(j){var e;for(M=new z.Buf32(512),U=new z.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(I(1,t.lens,0,288,M,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;I(2,t.lens,0,32,U,0,t.work,{bits:5}),j=!1}t.lencode=M,t.lenbits=9,t.distcode=U,t.distbits=5}(r),r.mode=20,6!==e)break;h>>>=2,c-=2;break t;case 2:r.mode=17;break;case 3:t.msg="invalid block type",r.mode=30}h>>>=2,c-=2;break;case 14:for(h>>>=7&c,c-=7&c;c<32;){if(0===s)break t;s--,h+=n[o++]<>>16^65535)){t.msg="invalid stored block lengths",r.mode=30;break}if(r.length=65535&h,c=h=0,r.mode=15,6===e)break t;case 15:r.mode=16;case 16:if(f=r.length){if(0===(f=l<(f=s>>=5,c-=5,r.ndist=1+(31&h),h>>>=5,c-=5,r.ncode=4+(15&h),h>>>=4,c-=4,286>>=3,c-=3}for(;r.have<19;)r.lens[B[r.have++]]=0;if(r.lencode=r.lendyn,r.lenbits=7,E={bits:r.lenbits},x=I(0,r.lens,0,19,r.lencode,0,r.work,E),r.lenbits=E.bits,x){t.msg="invalid code lengths set",r.mode=30;break}r.have=0,r.mode=19;case 19:for(;r.have>>16&255,b=65535&A,!((g=A>>>24)<=c);){if(0===s)break t;s--,h+=n[o++]<>>=g,c-=g,r.lens[r.have++]=b;else{if(16===b){for(S=g+2;c>>=g,c-=g,0===r.have){t.msg="invalid bit length repeat",r.mode=30;break}k=r.lens[r.have-1],f=3+(3&h),h>>>=2,c-=2}else if(17===b){for(S=g+3;c>>=g)),h>>>=3,c-=3}else{for(S=g+7;c>>=g)),h>>>=7,c-=7}if(r.have+f>r.nlen+r.ndist){t.msg="invalid bit length repeat",r.mode=30;break}for(;f--;)r.lens[r.have++]=k}}if(30===r.mode)break;if(0===r.lens[256]){t.msg="invalid code -- missing end-of-block",r.mode=30;break}if(r.lenbits=9,E={bits:r.lenbits},x=I(1,r.lens,0,r.nlen,r.lencode,0,r.work,E),r.lenbits=E.bits,x){t.msg="invalid literal/lengths set",r.mode=30;break}if(r.distbits=6,r.distcode=r.distdyn,E={bits:r.distbits},x=I(2,r.lens,r.nlen,r.ndist,r.distcode,0,r.work,E),r.distbits=E.bits,x){t.msg="invalid distances set",r.mode=30;break}if(r.mode=20,6===e)break t;case 20:r.mode=21;case 21:if(6<=s&&258<=l){t.next_out=a,t.avail_out=l,t.next_in=o,t.avail_in=s,r.hold=h,r.bits=c,T(t,d),a=t.next_out,i=t.output,l=t.avail_out,o=t.next_in,n=t.input,s=t.avail_in,h=r.hold,c=r.bits,12===r.mode&&(r.back=-1);break}for(r.back=0;w=(A=r.lencode[h&(1<>>16&255,b=65535&A,!((g=A>>>24)<=c);){if(0===s)break t;s--,h+=n[o++]<>y)])>>>16&255,b=65535&A,!(y+(g=A>>>24)<=c);){if(0===s)break t;s--,h+=n[o++]<>>=y,c-=y,r.back+=y}if(h>>>=g,c-=g,r.back+=g,r.length=b,0===w){r.mode=26;break}if(32&w){r.back=-1,r.mode=12;break}if(64&w){t.msg="invalid literal/length code",r.mode=30;break}r.extra=15&w,r.mode=22;case 22:if(r.extra){for(S=r.extra;c>>=r.extra,c-=r.extra,r.back+=r.extra}r.was=r.length,r.mode=23;case 23:for(;w=(A=r.distcode[h&(1<>>16&255,b=65535&A,!((g=A>>>24)<=c);){if(0===s)break t;s--,h+=n[o++]<>y)])>>>16&255,b=65535&A,!(y+(g=A>>>24)<=c);){if(0===s)break t;s--,h+=n[o++]<>>=y,c-=y,r.back+=y}if(h>>>=g,c-=g,r.back+=g,64&w){t.msg="invalid distance code",r.mode=30;break}r.offset=b,r.extra=15&w,r.mode=24;case 24:if(r.extra){for(S=r.extra;c>>=r.extra,c-=r.extra,r.back+=r.extra}if(r.offset>r.dmax){t.msg="invalid distance too far back",r.mode=30;break}r.mode=25;case 25:if(0===l)break t;if(r.offset>(f=d-l)){if((f=r.offset-f)>r.whave&&r.sane){t.msg="invalid distance too far back",r.mode=30;break}p=f>r.wnext?(f-=r.wnext,r.wsize-f):r.wnext-f,f>r.length&&(f=r.length),m=r.window}else m=i,p=a-r.offset,f=r.length;for(l-=f=lf?(m=T[I+a[y]],B[z+a[y]]):(m=96,0),l=1<<(p=b-E),v=h=1<>E)+(h-=l)]=p<<24|m<<16|g|0,0!==h;);for(l=1<>=1;if(0!==l?(C&=l-1,C+=l):C=0,y++,0==--F[b]){if(b===_)break;b=e[r+a[y]]}if(k>>7)]}function k(t,e){t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255}function x(t,e,r){t.bi_valid>o-r?(t.bi_buf|=e<>o-t.bi_valid,t.bi_valid+=r-o):(t.bi_buf|=e<>>=1,r<<=1,0<--e;);return r>>>1}function A(t,e,r){for(var n,i=new Array(16),o=0,a=1;a<=15;a++)i[a]=o=o+r[a-1]<<1;for(n=0;n<=e;n++){var s=t[2*n+1];0!==s&&(t[2*n]=S(i[s]++,s))}}function C(t){for(var e=0;e<286;e++)t.dyn_ltree[2*e]=0;for(e=0;e<30;e++)t.dyn_dtree[2*e]=0;for(e=0;e<19;e++)t.bl_tree[2*e]=0;t.dyn_ltree[512]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function B(t){8>1;1<=e;e--)F(t,i,e);for(n=s;e=t.heap[1],t.heap[1]=t.heap[t.heap_len--],F(t,i,1),r=t.heap[1],t.heap[--t.heap_max]=e,t.heap[--t.heap_max]=r,i[2*n]=i[2*e]+i[2*r],t.depth[n]=(t.depth[e]>=t.depth[r]?t.depth[e]:t.depth[r])+1,i[2*e+1]=i[2*r+1]=n,t.heap[1]=n++,F(t,i,1),2<=t.heap_len;);t.heap[--t.heap_max]=t.heap[1],function(t){for(var e,r,n,i,o,a=m.dyn_tree,s=m.max_code,l=m.stat_desc.static_tree,h=m.stat_desc.has_stree,c=m.stat_desc.extra_bits,u=m.stat_desc.extra_base,d=m.stat_desc.max_length,f=0,p=0;p<=15;p++)t.bl_count[p]=0;for(a[2*t.heap[t.heap_max]+1]=0,e=t.heap_max+1;e<573;e++)d<(p=a[2*a[2*(r=t.heap[e])+1]+1]+1)&&(p=d,f++),a[2*r+1]=p,s>=7;o<30;o++)for(b[o]=n<<7,t=0;t<1<>>=1)if(1&e&&0!==t.dyn_ltree[2*r])return 0;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return 1;for(r=32;r<256;r++)if(0!==t.dyn_ltree[2*r])return 1;return 0}(t)),T(t,t.l_desc),T(t,t.d_desc),a=function(t){var e;for(I(t,t.dyn_ltree,t.l_desc.max_code),I(t,t.dyn_dtree,t.d_desc.max_code),T(t,t.bl_desc),e=18;3<=e&&0===t.bl_tree[2*s[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e}(t),i=t.opt_len+3+7>>>3,(o=t.static_len+3+7>>>3)<=i&&(i=o)):i=o=r+5,r+4<=i&&-1!==e?D(t,e,r,n):4===t.strategy||o===i?(x(t,2+(n?1:0),3),P(t,c,u)):(x(t,4+(n?1:0),3),function(t,e,r,n){var i;for(x(t,e-257,5),x(t,r-1,5),x(t,n-4,4),i=0;i>>8&255,t.pending_buf[t.d_buf+2*t.last_lit+1]=255&e,t.pending_buf[t.l_buf+t.last_lit]=255&r,t.last_lit++,0===e?t.dyn_ltree[2*r]++:(t.matches++,e--,t.dyn_ltree[2*(f[r]+256+1)]++,t.dyn_dtree[2*_(e)]++),t.last_lit===t.lit_bufsize-1},r._tr_align=function(t){x(t,2,3),E(t,256,c),16===(t=t).bi_valid?(k(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):8<=t.bi_valid&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)}},{"../utils/common":41}],53:[function(t,e,r){"use strict";e.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},{}],54:[function(t,e,r){"use strict";e.exports="function"==typeof setImmediate?setImmediate:function(){var t=[].slice.apply(arguments);t.splice(1,0,0),setTimeout.apply(null,t)}},{}]},{},[10])(10)},560:()=>{HTMLCanvasElement.prototype.toBlob||(HTMLCanvasElement.prototype.toBlob=function(i,o,t){var a=this.toDataURL(o,t).split(",")[1];setTimeout(function(){for(var t=atob(a),e=t.length,r=new Uint8Array(e),n=0;n{"use strict";function n(t,e){for(var r=0;rt.length)&&(e=t.length);for(var r=0,n=new Array(e);ra});var o,s,l,h,c,e=(o=["a[href]","area[href]",'input:not([disabled]):not([type="hidden"]):not([aria-hidden])',"select:not([disabled]):not([aria-hidden])","textarea:not([disabled]):not([aria-hidden])","button:not([disabled]):not([aria-hidden])","iframe","object","embed","[contenteditable]",'[tabindex]:not([tabindex^="-"])'],s=function(){function d(t){var e=t.targetModal,r=t.triggers,n=void 0===r?[]:r,i=t.onShow,o=void 0===i?function(){}:i,a=t.onClose,s=void 0===a?function(){}:a,l=t.openTrigger,h=void 0===l?"data-micromodal-trigger":l,c=t.closeTrigger,u=void 0===c?"data-micromodal-close":c,r=t.openClass,i=void 0===r?"is-open":r,a=t.disableScroll,l=void 0!==a&&a,c=t.disableFocus,r=void 0!==c&&c,a=t.awaitCloseAnimation,c=void 0!==a&&a,a=t.awaitOpenAnimation,a=void 0!==a&&a,t=t.debugMode,t=void 0!==t&&t;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,d),this.modal=document.getElementById(e),this.config={debugMode:t,disableScroll:l,openTrigger:h,closeTrigger:u,openClass:i,onShow:o,onClose:s,awaitCloseAnimation:c,awaitOpenAnimation:a,disableFocus:r},0 ')),!1},c=function(t){if(t.length<=0)return console.warn("MicroModal: ❗Please specify at least one %c'micromodal-trigger'","background-color: #f8f9fa;color: #50596c;font-weight: bold;","data attribute."),console.warn("%cExample:","background-color: #f8f9fa;color: #50596c;font-weight: bold;",'
'),!1},{init:function(t){var r,n,e=Object.assign({},{openTrigger:"data-micromodal-trigger"},t),t=f(document.querySelectorAll("[".concat(e.openTrigger,"]"))),i=(r=e.openTrigger,n=[],t.forEach(function(t){var e=t.attributes[r].value;void 0===n[e]&&(n[e]=[]),n[e].push(t)}),n);if(!0!==e.debugMode||!1!==function(t,e){if(c(t),!e)return!0;for(var r in e)h(r);return!0}(t,i))for(var o in i){var a=i[o];e.targetModal=o,e.triggers=f(a),l=new s(e)}},show:function(t,e){e=e||{};e.targetModal=t,!0===e.debugMode&&!1===h(t)||(l&&l.removeEventListeners(),(l=new s(e)).showModal())},close:function(t){t?l.closeModalById(t):l.closeModal()}});const a=window.MicroModal=e},57:(t,e,r)=>{"use strict";r.r(e),r.d(e,{default:()=>n});const n="(function(b){function a(b,d){if({}.hasOwnProperty.call(a.cache,b))return a.cache[b];var e=a.resolve(b);if(!e)throw new Error('Failed to resolve module '+b);var c={id:b,require:a,filename:b,exports:{},loaded:!1,parent:d,children:[]};d&&d.children.push(c);var f=b.slice(0,b.lastIndexOf('/')+1);return a.cache[b]=c.exports,e.call(c.exports,c,c.exports,f,b),c.loaded=!0,a.cache[b]=c.exports}a.modules={},a.cache={},a.resolve=function(b){return{}.hasOwnProperty.call(a.modules,b)?a.modules[b]:void 0},a.define=function(b,c){a.modules[b]=c},a.define('/gif.worker.coffee',function(d,e,f,g){var b,c;b=a('/GIFEncoder.js',d),c=function(a){var c,e,d,f;return c=new b(a.width,a.height),a.index===0?c.writeHeader():c.firstFrame=!1,c.setTransparent(a.transparent),c.setRepeat(a.repeat),c.setDelay(a.delay),c.setQuality(a.quality),c.addFrame(a.data),a.last&&c.finish(),d=c.stream(),a.data=d.pages,a.cursor=d.cursor,a.pageSize=d.constructor.pageSize,a.canTransfer?(f=function(c){for(var b=0,d=a.data.length;b