diff --git a/api and aux scripts/TrainAI.py b/api and aux scripts/TrainAI.py
new file mode 100644
index 0000000..cb61c0f
--- /dev/null
+++ b/api and aux scripts/TrainAI.py
@@ -0,0 +1,50 @@
+import os
+import mediapipe as mp
+import cv2
+import pickle
+from sklearn.ensemble import RandomForestClassifier
+from sklearn.model_selection import train_test_split
+from sklearn.metrics import accuracy_score
+import numpy as np
+
+mp_hands = mp.solutions.hands
+hands = mp_hands.Hands(static_image_mode=True, min_detection_confidence=0.5)
+data_dir = "./data"
+data = []
+labels = []
+
+for dir_ in os.listdir(data_dir):
+ print(dir_)
+ for img_path in os.listdir(os.path.join(data_dir, dir_)):
+ data_aux = []
+ img = cv2.imread(os.path.join(data_dir, dir_, img_path))
+
+ img_rgb = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
+ results = hands.process(img_rgb)
+ if results.multi_hand_landmarks:
+ for hand_landmarks in results.multi_hand_landmarks:
+ for i in range(len(hand_landmarks.landmark)):
+ x = hand_landmarks.landmark[i].x
+ y = hand_landmarks.landmark[i].y
+ data_aux.append(x)
+ data_aux.append(y)
+ # print(f"Poza {img_path} cu ", end=' ')
+ # print(x, y)
+ data.append(data_aux)
+ labels.append(dir_)
+
+
+data = np.asarray(data)
+labels = np.asarray(labels)
+x_train, x_test, y_train, y_test = train_test_split(data, labels, test_size=0.2, shuffle=True, stratify=labels)
+model = RandomForestClassifier()
+model.fit(x_train, y_train)
+y_predict = model.predict(x_test)
+score = accuracy_score(y_predict, y_test)
+
+print(f"{score * 100}% classified correctly")
+f = open("model.p", "wb")
+pickle.dump({"model": model}, f)
+f.close()
+
+
diff --git a/api and aux scripts/data.json b/api and aux scripts/data.json
new file mode 100644
index 0000000..3948ab1
--- /dev/null
+++ b/api and aux scripts/data.json
@@ -0,0 +1,2 @@
+[[{"x":0.8352290987968445,"y":1.0246509313583374,"z":6.380777790582215e-7},{"x":0.7852715849876404,"y":0.992743968963623,"z":-0.02249276265501976},{"x":0.7460511326789856,"y":0.9277198910713196,"z":-0.040133822709321976},{"x":0.7261029481887817,"y":0.8596256971359253,"z":-0.05214756354689598},{"x":0.7156654596328735,"y":0.806212842464447,"z":-0.065250463783741},{"x":0.7528064846992493,"y":0.9252693057060242,"z":-0.07445880025625229},{"x":0.7142532467842102,"y":0.8472095727920532,"z":-0.10898181796073914},{"x":0.6942790746688843,"y":0.7844054102897644,"z":-0.1276625096797943},{"x":0.6811489462852478,"y":0.7316831350326538,"z":-0.13941222429275513},{"x":0.7964140176773071,"y":0.8995473384857178,"z":-0.07670313119888306},{"x":0.7756801843643188,"y":0.7937293648719788,"z":-0.1070675328373909},{"x":0.7689130306243896,"y":0.718907356262207,"z":-0.12218372523784637},{"x":0.7662367820739746,"y":0.6581640839576721,"z":-0.13254722952842712},{"x":0.8419972062110901,"y":0.8913975358009338,"z":-0.07802332192659378},{"x":0.8377389311790466,"y":0.8043600916862488,"z":-0.11083008348941803},{"x":0.8356887102127075,"y":0.7433968186378479,"z":-0.127068430185318},{"x":0.8340345025062561,"y":0.6942105889320374,"z":-0.13611175119876862},{"x":0.8862054347991943,"y":0.8947083353996277,"z":-0.07868341356515884},{"x":0.9083899259567261,"y":0.8240664601325989,"z":-0.1105000302195549},{"x":0.9251305460929871,"y":0.7798703908920288,"z":-0.12317387014627457},{"x":0.9397422075271606,"y":0.7432297468185425,"z":-0.1296428143978119}],
+ [{"x":0.15515635907649994,"y":0.9633815288543701,"z":7.199977289928938e-7},{"x":0.20031718909740448,"y":0.9605085849761963,"z":-0.03806344047188759},{"x":0.23353257775306702,"y":0.9522206783294678,"z":-0.06956487894058228},{"x":0.24222178757190704,"y":0.9587247967720032,"z":-0.0999852865934372},{"x":0.24733389914035797,"y":0.9740628004074097,"z":-0.13321256637573242},{"x":0.2604224681854248,"y":0.8114917278289795,"z":-0.06296493113040924},{"x":0.30314508080482483,"y":0.7292249798774719,"z":-0.09619221091270447},{"x":0.3255283236503601,"y":0.6730362176895142,"z":-0.12107474356889725},{"x":0.34156253933906555,"y":0.6200391054153442,"z":-0.1400400847196579},{"x":0.2171422243118286,"y":0.7836028337478638,"z":-0.06895798444747925},{"x":0.24275580048561096,"y":0.6850705742835999,"z":-0.09884735941886902},{"x":0.25457364320755005,"y":0.6168791651725769,"z":-0.12403333187103271},{"x":0.2625443637371063,"y":0.5596932768821716,"z":-0.14239178597927094},{"x":0.170135498046875,"y":0.7859712839126587,"z":-0.07722687721252441},{"x":0.1786479949951172,"y":0.6838392615318298,"z":-0.10688867419958115},{"x":0.17985376715660095,"y":0.6157321333885193,"z":-0.1315436065196991},{"x":0.18125669658184052,"y":0.5590601563453674,"z":-0.14800553023815155},{"x":0.12401241064071655,"y":0.8124399781227112,"z":-0.0879233255982399},{"x":0.10290519893169403,"y":0.7394360899925232,"z":-0.11872303485870361},{"x":0.08626630902290344,"y":0.6938216090202332,"z":-0.13427463173866272},{"x":0.07402856647968292,"y":0.6551141142845154,"z":-0.14299866557121277}]]
\ No newline at end of file
diff --git a/api and aux scripts/data.log b/api and aux scripts/data.log
new file mode 100644
index 0000000..ee437ee
--- /dev/null
+++ b/api and aux scripts/data.log
@@ -0,0 +1,562 @@
+mesh_viewer.ts:97 Uncaught ReferenceError: javascript is not defined
+ at mesh_viewer.ts:97:45
+(anonymous) @ mesh_viewer.ts:97
+mesh_viewer.ts:97 GET http://localhost/dist8/deps.js net::ERR_ABORTED 404 (Not Found)
+goog.Dependency.load @ mesh_viewer.ts:97
+(anonymous) @ mesh_viewer.ts:97
+goog.DebugLoader_.loadDeps_ @ mesh_viewer.ts:97
+goog.DebugLoader_.loadClosureDeps @ mesh_viewer.ts:97
+(anonymous) @ mesh_viewer.ts:97
+wave.js:23
β β
βflex
+script.js:54 div.landmark-grid-container
+hands_solution_simd_wasm_bin.js:9 I0000 00:00:1683939511.204000 1 gl_context_webgl.cc:151] Successfully created a WebGL context with major version 3 and handle 3
+put_char @ hands_solution_simd_wasm_bin.js:9
+write @ hands_solution_simd_wasm_bin.js:9
+write @ hands_solution_simd_wasm_bin.js:9
+doWritev @ hands_solution_simd_wasm_bin.js:9
+_fd_write @ hands_solution_simd_wasm_bin.js:9
+$func8152 @ hands_solution_simd_wasm_bin.wasm:0x503240
+$func8162 @ hands_solution_simd_wasm_bin.wasm:0x5039b1
+$func8163 @ hands_solution_simd_wasm_bin.wasm:0x503a5c
+$func7782 @ hands_solution_simd_wasm_bin.wasm:0x4d7edf
+$func7781 @ hands_solution_simd_wasm_bin.wasm:0x4d7ebe
+$func7779 @ hands_solution_simd_wasm_bin.wasm:0x4d7b6a
+$func7760 @ hands_solution_simd_wasm_bin.wasm:0x4d6781
+$func7759 @ hands_solution_simd_wasm_bin.wasm:0x4d5a01
+$func6988 @ hands_solution_simd_wasm_bin.wasm:0x495061
+$func6477 @ hands_solution_simd_wasm_bin.wasm:0x457e96
+$func6272 @ hands_solution_simd_wasm_bin.wasm:0x44323d
+$func251 @ hands_solution_simd_wasm_bin.wasm:0x1e50a
+$func221 @ hands_solution_simd_wasm_bin.wasm:0x19cb6
+(anonymous) @ hands_solution_simd_wasm_bin.js:9
+(anonymous) @ hands.js:82
+ua @ hands.js:14
+next @ hands.js:15
+b @ hands.js:15
+Promise.then (async)
+g @ hands.js:15
+Promise.then (async)
+g @ hands.js:15
+(anonymous) @ hands.js:15
+wa @ hands.js:15
+E @ hands.js:16
+x.send @ hands.js:79
+(anonymous) @ hands.js:94
+ua @ hands.js:14
+next @ hands.js:15
+(anonymous) @ hands.js:15
+wa @ hands.js:15
+E @ hands.js:16
+x.send @ hands.js:94
+onFrame @ script.js:155
+U.tick @ control_utils.js:44
+(anonymous) @ control_utils.js:43
+requestAnimationFrame (async)
+V @ control_utils.js:43
+c @ control_utils.js:45
+hands_solution_simd_wasm_bin.js:9 I0000 00:00:1683939511.206000 1 gl_context.cc:359] GL version: 3.0 (OpenGL ES 3.0 (WebGL 2.0 (OpenGL ES 3.0 Chromium)))
+put_char @ hands_solution_simd_wasm_bin.js:9
+write @ hands_solution_simd_wasm_bin.js:9
+write @ hands_solution_simd_wasm_bin.js:9
+doWritev @ hands_solution_simd_wasm_bin.js:9
+_fd_write @ hands_solution_simd_wasm_bin.js:9
+$func8152 @ hands_solution_simd_wasm_bin.wasm:0x503240
+$func8162 @ hands_solution_simd_wasm_bin.wasm:0x5039b1
+$func8163 @ hands_solution_simd_wasm_bin.wasm:0x503a5c
+$func7782 @ hands_solution_simd_wasm_bin.wasm:0x4d7edf
+$func7781 @ hands_solution_simd_wasm_bin.wasm:0x4d7ebe
+$func7779 @ hands_solution_simd_wasm_bin.wasm:0x4d7b6a
+$func7760 @ hands_solution_simd_wasm_bin.wasm:0x4d6781
+$func7759 @ hands_solution_simd_wasm_bin.wasm:0x4d5a01
+$func6933 @ hands_solution_simd_wasm_bin.wasm:0x493386
+$func6861 @ hands_solution_simd_wasm_bin.wasm:0x490d93
+$func6860 @ hands_solution_simd_wasm_bin.wasm:0x490c61
+$func6988 @ hands_solution_simd_wasm_bin.wasm:0x495114
+$func6477 @ hands_solution_simd_wasm_bin.wasm:0x457e96
+$func6272 @ hands_solution_simd_wasm_bin.wasm:0x44323d
+$func251 @ hands_solution_simd_wasm_bin.wasm:0x1e50a
+$func221 @ hands_solution_simd_wasm_bin.wasm:0x19cb6
+(anonymous) @ hands_solution_simd_wasm_bin.js:9
+(anonymous) @ hands.js:82
+ua @ hands.js:14
+next @ hands.js:15
+b @ hands.js:15
+Promise.then (async)
+g @ hands.js:15
+Promise.then (async)
+g @ hands.js:15
+(anonymous) @ hands.js:15
+wa @ hands.js:15
+E @ hands.js:16
+x.send @ hands.js:79
+(anonymous) @ hands.js:94
+ua @ hands.js:14
+next @ hands.js:15
+(anonymous) @ hands.js:15
+wa @ hands.js:15
+E @ hands.js:16
+x.send @ hands.js:94
+onFrame @ script.js:155
+U.tick @ control_utils.js:44
+(anonymous) @ control_utils.js:43
+requestAnimationFrame (async)
+V @ control_utils.js:43
+c @ control_utils.js:45
+hands_solution_simd_wasm_bin.js:9 W0000 00:00:1683939511.207000 1 gl_context.cc:1000] OpenGL error checking is disabled
+put_char @ hands_solution_simd_wasm_bin.js:9
+write @ hands_solution_simd_wasm_bin.js:9
+write @ hands_solution_simd_wasm_bin.js:9
+doWritev @ hands_solution_simd_wasm_bin.js:9
+_fd_write @ hands_solution_simd_wasm_bin.js:9
+$func8152 @ hands_solution_simd_wasm_bin.wasm:0x503240
+$func8162 @ hands_solution_simd_wasm_bin.wasm:0x5039b1
+$func8163 @ hands_solution_simd_wasm_bin.wasm:0x503a5c
+$func7782 @ hands_solution_simd_wasm_bin.wasm:0x4d7edf
+$func7781 @ hands_solution_simd_wasm_bin.wasm:0x4d7ebe
+$func7779 @ hands_solution_simd_wasm_bin.wasm:0x4d7b6a
+$func7760 @ hands_solution_simd_wasm_bin.wasm:0x4d6781
+$func7759 @ hands_solution_simd_wasm_bin.wasm:0x4d5a01
+$func6861 @ hands_solution_simd_wasm_bin.wasm:0x490df7
+$func6860 @ hands_solution_simd_wasm_bin.wasm:0x490c61
+$func6988 @ hands_solution_simd_wasm_bin.wasm:0x495114
+$func6477 @ hands_solution_simd_wasm_bin.wasm:0x457e96
+$func6272 @ hands_solution_simd_wasm_bin.wasm:0x44323d
+$func251 @ hands_solution_simd_wasm_bin.wasm:0x1e50a
+$func221 @ hands_solution_simd_wasm_bin.wasm:0x19cb6
+(anonymous) @ hands_solution_simd_wasm_bin.js:9
+(anonymous) @ hands.js:82
+ua @ hands.js:14
+next @ hands.js:15
+b @ hands.js:15
+Promise.then (async)
+g @ hands.js:15
+Promise.then (async)
+g @ hands.js:15
+(anonymous) @ hands.js:15
+wa @ hands.js:15
+E @ hands.js:16
+x.send @ hands.js:79
+(anonymous) @ hands.js:94
+ua @ hands.js:14
+next @ hands.js:15
+(anonymous) @ hands.js:15
+wa @ hands.js:15
+E @ hands.js:16
+x.send @ hands.js:94
+onFrame @ script.js:155
+U.tick @ control_utils.js:44
+(anonymous) @ control_utils.js:43
+requestAnimationFrame (async)
+V @ control_utils.js:43
+c @ control_utils.js:45
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 [[{"x":0.8140498995780945,"y":1.155534029006958,"z":0.0000010514937685002224},{"x":0.7359741926193237,"y":1.0859907865524292,"z":-0.03146498277783394},{"x":0.6988840103149414,"y":0.9564893841743469,"z":-0.06314167380332947},{"x":0.7039138078689575,"y":0.8355244994163513,"z":-0.08410068601369858},{"x":0.726629912853241,"y":0.750944197177887,"z":-0.10955847799777985},{"x":0.7080771327018738,"y":0.9438077211380005,"z":-0.14544285833835602},{"x":0.6564611792564392,"y":0.7907771468162537,"z":-0.20122770965099335},{"x":0.6265214681625366,"y":0.6916421055793762,"z":-0.23605354130268097},{"x":0.6009018421173096,"y":0.6081937551498413,"z":-0.2610349655151367},{"x":0.7865785360336304,"y":0.9510325789451599,"z":-0.15634576976299286},{"x":0.7815659046173096,"y":0.7740107774734497,"z":-0.20514428615570068},{"x":0.7765318155288696,"y":0.6572185754776001,"z":-0.23160769045352936},{"x":0.7660412788391113,"y":0.5650690793991089,"z":-0.25320181250572205},{"x":0.8642588257789612,"y":0.9737101197242737,"z":-0.162696972489357},{"x":0.8906987905502319,"y":0.7985145449638367,"z":-0.21562379598617554},{"x":0.9004497528076172,"y":0.6689568161964417,"z":-0.24854426085948944},{"x":0.9049975275993347,"y":0.5695917010307312,"z":-0.2726788818836212},{"x":0.9294121265411377,"y":1.0054806470870972,"z":-0.16661357879638672},{"x":0.9852825403213501,"y":0.9116175770759583,"z":-0.22081062197685242},{"x":1.01906156539917,"y":0.8806132078170776,"z":-0.2398642599582672},{"x":1.045973300933838,"y":0.8570849895477295,"z":-0.2519315779209137}]]
+script.js:124 [[{"x":0.8322381973266602,"y":1.0162608623504639,"z":9.723190714794328e-7},{"x":0.747757077217102,"y":0.9798997640609741,"z":-0.03337813913822174},{"x":0.6753461956977844,"y":0.9310736060142517,"z":-0.07073889672756195},{"x":0.6143061518669128,"y":0.9143345355987549,"z":-0.10576065629720688},{"x":0.5562354326248169,"y":0.9335223436355591,"z":-0.14704079926013947},{"x":0.69749516248703,"y":0.731829822063446,"z":-0.08730152994394302},{"x":0.6400586366653442,"y":0.5744540095329285,"z":-0.1286448985338211},{"x":0.611598789691925,"y":0.4722822904586792,"z":-0.1556382030248642},{"x":0.5902823805809021,"y":0.38392505049705505,"z":-0.17510879039764404},{"x":0.7820249795913696,"y":0.7123401761054993,"z":-0.10481241345405579},{"x":0.7626743912696838,"y":0.5235517024993896,"z":-0.1402134746313095},{"x":0.7528814673423767,"y":0.3993535339832306,"z":-0.17106296122074127},{"x":0.74772709608078,"y":0.29079756140708923,"z":-0.1934414654970169},{"x":0.8607425689697266,"y":0.7370054721832275,"z":-0.12276580184698105},{"x":0.866374671459198,"y":0.5532642006874084,"z":-0.1690400391817093},{"x":0.8686074018478394,"y":0.4267726242542267,"z":-0.21038341522216797},{"x":0.8674495816230774,"y":0.3199838697910309,"z":-0.23731349408626556},{"x":0.9321892261505127,"y":0.7892143726348877,"z":-0.13958130776882172},{"x":0.9803751707077026,"y":0.6789135336875916,"z":-0.18509693443775177},{"x":1.0127334594726562,"y":0.6282098889350891,"z":-0.20355607569217682},{"x":1.0357786417007446,"y":0.5887877941131592,"z":-0.21291205286979675}],[{"x":0.8498014211654663,"y":1.0710203647613525,"z":0.000001164914124274219},{"x":0.7486876249313354,"y":1.013598084449768,"z":-0.026714980602264404},{"x":0.6837756037712097,"y":0.9565881490707397,"z":-0.051181405782699585},{"x":0.6340632438659668,"y":0.9390504360198975,"z":-0.07414879649877548},{"x":0.5887877941131592,"y":0.9596759676933289,"z":-0.10166682302951813},{"x":0.7089052200317383,"y":0.7908656001091003,"z":-0.04424835741519928},{"x":0.6742098927497864,"y":0.6782524585723877,"z":-0.06515457481145859},{"x":0.6534513831138611,"y":0.5959567427635193,"z":-0.08844318240880966},{"x":0.6361015439033508,"y":0.5206927061080933,"z":-0.10760944336652756},{"x":0.784972608089447,"y":0.762688934803009,"z":-0.05276075005531311},{"x":0.7709494829177856,"y":0.640825629234314,"z":-0.06670714914798737},{"x":0.7649253010749817,"y":0.5491682291030884,"z":-0.09577775001525879},{"x":0.759592592716217,"y":0.4663121998310089,"z":-0.11949466913938522},{"x":0.8654502630233765,"y":0.7626949548721313,"z":-0.06146051734685898},{"x":0.8667386770248413,"y":0.6432316303253174,"z":-0.08373191952705383},{"x":0.8681396842002869,"y":0.5473146438598633,"z":-0.11767440289258957},{"x":0.8685454726219177,"y":0.4643867611885071,"z":-0.1426226645708084},{"x":0.9407880902290344,"y":0.7885806560516357,"z":-0.0701870545744896},{"x":0.9821084141731262,"y":0.6941385865211487,"z":-0.09336858987808228},{"x":1.0133854150772095,"y":0.6354882121086121,"z":-0.10514674335718155},{"x":1.042013168334961,"y":0.5879390835762024,"z":-0.11232069879770279}]]
+script.js:124 [[{"x":0.8744906783103943,"y":1.0113388299942017,"z":0.0000016394551494158804},{"x":0.7643049955368042,"y":0.9914852976799011,"z":-0.05137281119823456},{"x":0.6645444631576538,"y":0.9439111948013306,"z":-0.09482662379741669},{"x":0.5649287700653076,"y":0.9376358985900879,"z":-0.13422027230262756},{"x":0.47993800044059753,"y":0.9410340785980225,"z":-0.1797209531068802},{"x":0.728915810585022,"y":0.6543309092521667,"z":-0.07610289752483368},{"x":0.6869057416915894,"y":0.5063509345054626,"z":-0.11408723890781403},{"x":0.6637019515037537,"y":0.4040322005748749,"z":-0.15381643176078796},{"x":0.6419637203216553,"y":0.3096970319747925,"z":-0.18602930009365082},{"x":0.815497875213623,"y":0.6185013055801392,"z":-0.08858537673950195},{"x":0.8095181584358215,"y":0.4541466534137726,"z":-0.1191876009106636},{"x":0.8079002499580383,"y":0.34311604499816895,"z":-0.163346067070961},{"x":0.8017667531967163,"y":0.24449360370635986,"z":-0.1977064609527588},{"x":0.8944206833839417,"y":0.6361277103424072,"z":-0.10334961116313934},{"x":0.9133416414260864,"y":0.47029370069503784,"z":-0.15086358785629272},{"x":0.9263125061988831,"y":0.3586118221282959,"z":-0.20441746711730957},{"x":0.9297343492507935,"y":0.2608588933944702,"z":-0.24374401569366455},{"x":0.956680178642273,"y":0.6983981728553772,"z":-0.11912048608064651},{"x":1.030639410018921,"y":0.6155490875244141,"z":-0.18160003423690796},{"x":1.0884859561920166,"y":0.6042100191116333,"z":-0.20924940705299377},{"x":1.1325582265853882,"y":0.603702962398529,"z":-0.223610982298851}]]
+script.js:124 [[{"x":0.8803628087043762,"y":1.0014629364013672,"z":0.0000014593846344723715},{"x":0.7713954448699951,"y":0.9917486310005188,"z":-0.07023174315690994},{"x":0.6567171812057495,"y":0.9428564310073853,"z":-0.11787640303373337},{"x":0.5484996438026428,"y":0.9306182861328125,"z":-0.15846259891986847},{"x":0.45203131437301636,"y":0.9358161687850952,"z":-0.20434263348579407},{"x":0.7307270169258118,"y":0.6322365403175354,"z":-0.09952437877655029},{"x":0.68035888671875,"y":0.45874059200286865,"z":-0.14275749027729034},{"x":0.6545394062995911,"y":0.34464821219444275,"z":-0.17610874772071838},{"x":0.6361608505249023,"y":0.24633392691612244,"z":-0.20187216997146606},{"x":0.8230410814285278,"y":0.5939611196517944,"z":-0.10499469935894012},{"x":0.825035035610199,"y":0.38512033224105835,"z":-0.13552255928516388},{"x":0.8303371667861938,"y":0.24905839562416077,"z":-0.16807974874973297},{"x":0.836621105670929,"y":0.13350504636764526,"z":-0.19516661763191223},{"x":0.9048917889595032,"y":0.6164177060127258,"z":-0.11628825217485428},{"x":0.9281401634216309,"y":0.4230707585811615,"z":-0.16807974874973297},{"x":0.9420567750930786,"y":0.30110469460487366,"z":-0.2204006463289261},{"x":0.9535149931907654,"y":0.1962016224861145,"z":-0.25957512855529785},{"x":0.9735214114189148,"y":0.6842241883277893,"z":-0.13066986203193665},{"x":1.0599873065948486,"y":0.6041153073310852,"z":-0.19904875755310059},{"x":1.1255981922149658,"y":0.5811589360237122,"z":-0.23504696786403656},{"x":1.1767141819000244,"y":0.565033495426178,"z":-0.2569282054901123}]]
+script.js:124 [[{"x":0.8750336170196533,"y":0.9908167123794556,"z":0.0000012551245163194835},{"x":0.7648800015449524,"y":0.973118782043457,"z":-0.07036110758781433},{"x":0.6479532718658447,"y":0.9213394522666931,"z":-0.11904314160346985},{"x":0.5410860180854797,"y":0.9169502258300781,"z":-0.16230539977550507},{"x":0.44352078437805176,"y":0.9242358207702637,"z":-0.2106516808271408},{"x":0.7142426371574402,"y":0.608866274356842,"z":-0.08748376369476318},{"x":0.6647303700447083,"y":0.4406206011772156,"z":-0.13304820656776428},{"x":0.6396316885948181,"y":0.3296501040458679,"z":-0.17228162288665771},{"x":0.6215206384658813,"y":0.2316095530986786,"z":-0.20393691956996918},{"x":0.807329535484314,"y":0.570217490196228,"z":-0.09650072455406189},{"x":0.8063603639602661,"y":0.36497920751571655,"z":-0.12873157858848572},{"x":0.8118831515312195,"y":0.23504072427749634,"z":-0.16393612325191498},{"x":0.8161804676055908,"y":0.1196364164352417,"z":-0.1945362538099289},{"x":0.8918552994728088,"y":0.5944584608078003,"z":-0.11319170147180557},{"x":0.9075238704681396,"y":0.39764949679374695,"z":-0.16384020447731018},{"x":0.9234153032302856,"y":0.2843173146247864,"z":-0.2071983814239502},{"x":0.9313442707061768,"y":0.17628028988838196,"z":-0.24096404016017914},{"x":0.966572105884552,"y":0.6652205586433411,"z":-0.13400746881961823},{"x":1.02266263961792,"y":0.5689550042152405,"z":-0.1926177591085434},{"x":1.0669612884521484,"y":0.5431395769119263,"z":-0.21679089963436127},{"x":1.098677396774292,"y":0.5169825553894043,"z":-0.23329001665115356}]]
+script.js:124 [[{"x":0.8665289282798767,"y":0.9848954677581787,"z":0.0000013209360076871235},{"x":0.7609226703643799,"y":0.9648950695991516,"z":-0.07197963446378708},{"x":0.6480709314346313,"y":0.9116542339324951,"z":-0.12011947482824326},{"x":0.5411328673362732,"y":0.9049577713012695,"z":-0.16246043145656586},{"x":0.4500688314437866,"y":0.9175719022750854,"z":-0.21004799008369446},{"x":0.7176499366760254,"y":0.6001684069633484,"z":-0.09292000532150269},{"x":0.6621071696281433,"y":0.4306213855743408,"z":-0.13935700058937073},{"x":0.6352125406265259,"y":0.31676575541496277,"z":-0.1772797703742981},{"x":0.6183992028236389,"y":0.2175496220588684,"z":-0.20765480399131775},{"x":0.8082113862037659,"y":0.5574846267700195,"z":-0.10069786012172699},{"x":0.8021847009658813,"y":0.35260292887687683,"z":-0.13659563660621643},{"x":0.8050499558448792,"y":0.21853852272033691,"z":-0.17415021359920502},{"x":0.8102002143859863,"y":0.10472840070724487,"z":-0.20562979578971863},{"x":0.8905263543128967,"y":0.577374279499054,"z":-0.11606945842504501},{"x":0.9036345481872559,"y":0.3835495412349701,"z":-0.17332181334495544},{"x":0.9175413250923157,"y":0.2644346058368683,"z":-0.227352574467659},{"x":0.9285590648651123,"y":0.16010862588882446,"z":-0.2671162486076355},{"x":0.9619537591934204,"y":0.6445280313491821,"z":-0.13521495461463928},{"x":1.0390549898147583,"y":0.5483458042144775,"z":-0.20470935106277466},{"x":1.1031619310379028,"y":0.5169990062713623,"z":-0.24134349822998047},{"x":1.1517221927642822,"y":0.4936438798904419,"z":-0.2649071216583252}]]
+script.js:124 [[{"x":0.8703764081001282,"y":0.9768186211585999,"z":0.0000012558249409266864},{"x":0.7657812833786011,"y":0.9565961956977844,"z":-0.07109589874744415},{"x":0.6517131328582764,"y":0.9052735567092896,"z":-0.12119261175394058},{"x":0.5451292991638184,"y":0.9060387015342712,"z":-0.16592182219028473},{"x":0.4516203701496124,"y":0.9205896854400635,"z":-0.21583019196987152},{"x":0.7138724327087402,"y":0.5984061360359192,"z":-0.0901646688580513},{"x":0.6639502644538879,"y":0.42965298891067505,"z":-0.13738928735256195},{"x":0.6392043828964233,"y":0.315335214138031,"z":-0.17797516286373138},{"x":0.6221522688865662,"y":0.215796560049057,"z":-0.21018019318580627},{"x":0.8053074479103088,"y":0.5581952333450317,"z":-0.09849842637777328},{"x":0.8013037443161011,"y":0.35290876030921936,"z":-0.13286928832530975},{"x":0.8055440783500671,"y":0.22059544920921326,"z":-0.1694059818983078},{"x":0.8087284564971924,"y":0.10411399602890015,"z":-0.2007635235786438},{"x":0.8892788887023926,"y":0.5780625343322754,"z":-0.11441259831190109},{"x":0.9027993679046631,"y":0.3813081979751587,"z":-0.1658276468515396},{"x":0.9194008708000183,"y":0.2641948461532593,"z":-0.21055684983730316},{"x":0.9281132221221924,"y":0.1560976207256317,"z":-0.2448335587978363},{"x":0.9645347595214844,"y":0.643187403678894,"z":-0.13456428050994873},{"x":1.0217101573944092,"y":0.54313063621521,"z":-0.19285351037979126},{"x":1.0712286233901978,"y":0.5081151723861694,"z":-0.2180902063846588},{"x":1.1070854663848877,"y":0.4762517213821411,"z":-0.2352285534143448}]]
+script.js:124 [[{"x":0.8703004121780396,"y":0.9648945927619934,"z":0.0000013311509974300861},{"x":0.7689233422279358,"y":0.9532482624053955,"z":-0.07444275170564651},{"x":0.6585955023765564,"y":0.9074979424476624,"z":-0.1251223087310791},{"x":0.5567349791526794,"y":0.9055793285369873,"z":-0.1697239726781845},{"x":0.46537983417510986,"y":0.9173372983932495,"z":-0.21990086138248444},{"x":0.7198460102081299,"y":0.5923007130622864,"z":-0.09706347435712814},{"x":0.6630349159240723,"y":0.42493629455566406,"z":-0.1448640376329422},{"x":0.6365411877632141,"y":0.31033754348754883,"z":-0.1843474805355072},{"x":0.6199336051940918,"y":0.2101970911026001,"z":-0.2158793956041336},{"x":0.8100979328155518,"y":0.5513138771057129,"z":-0.10492360591888428},{"x":0.8018510341644287,"y":0.34806469082832336,"z":-0.14157375693321228},{"x":0.8056693077087402,"y":0.21214821934700012,"z":-0.18114858865737915},{"x":0.8115657567977905,"y":0.09598743915557861,"z":-0.21441704034805298},{"x":0.8922126293182373,"y":0.5714350342750549,"z":-0.12027827650308609},{"x":0.9049876928329468,"y":0.38115814328193665,"z":-0.1776755154132843},{"x":0.9220544695854187,"y":0.26010647416114807,"z":-0.23269642889499664},{"x":0.9345092177391052,"y":0.15459248423576355,"z":-0.27364224195480347},{"x":0.9637272357940674,"y":0.637814462184906,"z":-0.13965441286563873},{"x":1.0386666059494019,"y":0.5442309379577637,"z":-0.2094816118478775},{"x":1.1037882566452026,"y":0.5106533169746399,"z":-0.24622316658496857},{"x":1.1531044244766235,"y":0.486528217792511,"z":-0.27035194635391235}]]
+script.js:124 [[{"x":0.8781510591506958,"y":0.9898098707199097,"z":0.0000011465513125585858},{"x":0.7696915864944458,"y":0.9590485095977783,"z":-0.06420252472162247},{"x":0.6612800359725952,"y":0.8978290557861328,"z":-0.11075739562511444},{"x":0.5617229342460632,"y":0.8798172473907471,"z":-0.15257865190505981},{"x":0.4719560444355011,"y":0.8879283666610718,"z":-0.19780075550079346},{"x":0.7095574736595154,"y":0.5895835161209106,"z":-0.07661102712154388},{"x":0.655483067035675,"y":0.42233580350875854,"z":-0.1217871829867363},{"x":0.6259021759033203,"y":0.31378069519996643,"z":-0.16048333048820496},{"x":0.6031301617622375,"y":0.2199588418006897,"z":-0.1909990757703781},{"x":0.797824501991272,"y":0.5526458621025085,"z":-0.08552677929401398},{"x":0.7879494428634644,"y":0.349084734916687,"z":-0.12050037831068039},{"x":0.7869051098823547,"y":0.22318875789642334,"z":-0.15533609688282013},{"x":0.7855789065361023,"y":0.11279380321502686,"z":-0.18392163515090942},{"x":0.8808967471122742,"y":0.5728333592414856,"z":-0.10202548652887344},{"x":0.8869067430496216,"y":0.37287142872810364,"z":-0.14669610559940338},{"x":0.8993657827377319,"y":0.2526383101940155,"z":-0.18291054666042328},{"x":0.9049922227859497,"y":0.14251527190208435,"z":-0.21048501133918762},{"x":0.958966076374054,"y":0.6340690851211548,"z":-0.12316590547561646},{"x":1.0091760158538818,"y":0.513163685798645,"z":-0.1669173687696457},{"x":1.0500398874282837,"y":0.4401213526725769,"z":-0.18539226055145264},{"x":1.0784142017364502,"y":0.3717501163482666,"z":-0.19871991872787476}]]
+script.js:124 [[{"x":0.8776692748069763,"y":0.9794930219650269,"z":8.433294738097175e-7},{"x":0.766642689704895,"y":0.9466441869735718,"z":-0.05124255269765854},{"x":0.6594768762588501,"y":0.8723697662353516,"z":-0.08625027537345886},{"x":0.5718791484832764,"y":0.8253118991851807,"z":-0.11823857575654984},{"x":0.4991890490055084,"y":0.8105403184890747,"z":-0.1528962105512619},{"x":0.7049950957298279,"y":0.5987946391105652,"z":-0.05566227436065674},{"x":0.6567143201828003,"y":0.4445483684539795,"z":-0.09828417748212814},{"x":0.6250503659248352,"y":0.35092055797576904,"z":-0.13565491139888763},{"x":0.5972045660018921,"y":0.2665860652923584,"z":-0.1640111654996872},{"x":0.7888489961624146,"y":0.565778911113739,"z":-0.06668970733880997},{"x":0.7700496912002563,"y":0.3724973797798157,"z":-0.09802161902189255},{"x":0.7606698274612427,"y":0.25348588824272156,"z":-0.1286533772945404},{"x":0.7526750564575195,"y":0.1461450457572937,"z":-0.1534213274717331},{"x":0.8700288534164429,"y":0.5803363919258118,"z":-0.08493747562170029},{"x":0.8613367080688477,"y":0.39746761322021484,"z":-0.12068911641836166},{"x":0.8624588251113892,"y":0.28641998767852783,"z":-0.14563211798667908},{"x":0.8600950241088867,"y":0.18428021669387817,"z":-0.16497386991977692},{"x":0.9486103653907776,"y":0.6308736801147461,"z":-0.10791129618883133},{"x":0.9692126512527466,"y":0.5038874745368958,"z":-0.13871809840202332},{"x":0.9849631786346436,"y":0.4236794114112854,"z":-0.14747002720832825},{"x":0.9936079978942871,"y":0.34860876202583313,"z":-0.15447156131267548}]]
+script.js:124 [[{"x":0.848159670829773,"y":1.0008916854858398,"z":-0.0000011557824564079056},{"x":0.7417598962783813,"y":0.9552924633026123,"z":-0.05090413615107536},{"x":0.6432437896728516,"y":0.8645215034484863,"z":-0.08779945969581604},{"x":0.5934991836547852,"y":0.7656782865524292,"z":-0.12811553478240967},{"x":0.5840463638305664,"y":0.6548700332641602,"z":-0.15898381173610687},{"x":0.6728586554527283,"y":0.6117318868637085,"z":-0.019537007436156273},{"x":0.6446182131767273,"y":0.4605117440223694,"z":-0.09431519359350204},{"x":0.6451900601387024,"y":0.5802738070487976,"z":-0.1383778154850006},{"x":0.6639842391014099,"y":0.6768710017204285,"z":-0.15662185847759247},{"x":0.750218391418457,"y":0.6014033555984497,"z":-0.028139809146523476},{"x":0.7336814999580383,"y":0.4404744505882263,"z":-0.10710230469703674},{"x":0.7233364582061768,"y":0.6113216280937195,"z":-0.12909288704395294},{"x":0.7289826273918152,"y":0.7160245180130005,"z":-0.1229843944311142},{"x":0.825264036655426,"y":0.6112036108970642,"z":-0.04972316324710846},{"x":0.8089388012886047,"y":0.46831607818603516,"z":-0.1244504377245903},{"x":0.7914180755615234,"y":0.6325792074203491,"z":-0.11027873307466507},{"x":0.7950381636619568,"y":0.7391717433929443,"z":-0.07875888049602509},{"x":0.9036799669265747,"y":0.6446822881698608,"z":-0.07615258544683456},{"x":0.8772179484367371,"y":0.5380708575248718,"z":-0.12274006009101868},{"x":0.8535578846931458,"y":0.6540143489837646,"z":-0.10579916089773178},{"x":0.8527462482452393,"y":0.7431488633155823,"z":-0.07916611433029175}]]
+script.js:124 [[{"x":0.841061532497406,"y":1.0571227073669434,"z":-0.0000013352405403566081},{"x":0.7331993579864502,"y":0.9930845499038696,"z":-0.03946785628795624},{"x":0.636512815952301,"y":0.8924055099487305,"z":-0.07126521319150925},{"x":0.5897271037101746,"y":0.7811851501464844,"z":-0.10707393288612366},{"x":0.5900688171386719,"y":0.6652304530143738,"z":-0.13392068445682526},{"x":0.6749743223190308,"y":0.6711767911911011,"z":-0.008179258555173874},{"x":0.6393575072288513,"y":0.5549972057342529,"z":-0.08093161135911942},{"x":0.6437657475471497,"y":0.6815142035484314,"z":-0.12405861169099808},{"x":0.667112410068512,"y":0.7675915956497192,"z":-0.14268696308135986},{"x":0.7480028867721558,"y":0.6602217555046082,"z":-0.020291604101657867},{"x":0.7143656015396118,"y":0.5466830134391785,"z":-0.09110676497220993},{"x":0.7081539034843445,"y":0.703610360622406,"z":-0.10809145122766495},{"x":0.7219190001487732,"y":0.7798627614974976,"z":-0.10261251777410507},{"x":0.8230068683624268,"y":0.6709165573120117,"z":-0.04504462704062462},{"x":0.7884954214096069,"y":0.5707893967628479,"z":-0.1117701530456543},{"x":0.779591977596283,"y":0.722224235534668,"z":-0.09141984581947327},{"x":0.7940711379051208,"y":0.7928798198699951,"z":-0.060229089111089706},{"x":0.9028377532958984,"y":0.7030512094497681,"z":-0.07408294826745987},{"x":0.8578648567199707,"y":0.6329119205474854,"z":-0.11239631474018097},{"x":0.8424752354621887,"y":0.7446366548538208,"z":-0.08993270248174667},{"x":0.8545011878013611,"y":0.8054699301719666,"z":-0.062107574194669724}]]
+script.js:124 [[{"x":0.8202288150787354,"y":1.1722571849822998,"z":-0.0000014220609045878518},{"x":0.7181037664413452,"y":1.131995439529419,"z":-0.02344546653330326},{"x":0.6213394403457642,"y":1.0292171239852905,"z":-0.04407235234975815},{"x":0.5845188498497009,"y":0.9353037476539612,"z":-0.06878068298101425},{"x":0.6016528606414795,"y":0.8462224006652832,"z":-0.08865717053413391},{"x":0.6548718214035034,"y":0.7721044421195984,"z":-0.006744460202753544},{"x":0.6075148582458496,"y":0.7307649850845337,"z":-0.06167932599782944},{"x":0.6010696291923523,"y":0.833366870880127,"z":-0.10198137164115906},{"x":0.6173583269119263,"y":0.9188797473907471,"z":-0.12248013913631439},{"x":0.7325752973556519,"y":0.7495954036712646,"z":-0.022255804389715195},{"x":0.679798424243927,"y":0.7393556237220764,"z":-0.0716724768280983},{"x":0.6729722619056702,"y":0.854890763759613,"z":-0.09165877848863602},{"x":0.688216507434845,"y":0.9349474310874939,"z":-0.09539247304201126},{"x":0.8119821548461914,"y":0.763379693031311,"z":-0.04549994319677353},{"x":0.7565029859542847,"y":0.7801496386528015,"z":-0.09370864927768707},{"x":0.7537546753883362,"y":0.9015036225318909,"z":-0.08558235317468643},{"x":0.7691783905029297,"y":0.9729694128036499,"z":-0.06976901739835739},{"x":0.8901439905166626,"y":0.8061813116073608,"z":-0.07207512855529785},{"x":0.8336741328239441,"y":0.8312281370162964,"z":-0.10454371571540833},{"x":0.8205039501190186,"y":0.9323990345001221,"z":-0.09063383936882019},{"x":0.8299579620361328,"y":0.9952386617660522,"z":-0.07097698003053665}]]
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 [[{"x":0.9059802889823914,"y":0.4420326352119446,"z":-1.9939236040045216e-7},{"x":0.8867474794387817,"y":0.40834441781044006,"z":-0.0032773083075881004},{"x":0.8620104193687439,"y":0.37859779596328735,"z":-0.011041558347642422},{"x":0.8375500440597534,"y":0.36288562417030334,"z":-0.01932063326239586},{"x":0.8170599937438965,"y":0.3501429855823517,"z":-0.02862936072051525},{"x":0.8793790936470032,"y":0.34129658341407776,"z":-0.018600713461637497},{"x":0.8612026572227478,"y":0.312574177980423,"z":-0.031023511663079262},{"x":0.8398833274841309,"y":0.3080388605594635,"z":-0.03941141068935394},{"x":0.8219737410545349,"y":0.3116580545902252,"z":-0.04473546892404556},{"x":0.885513186454773,"y":0.35877788066864014,"z":-0.02297045849263668},{"x":0.8444751501083374,"y":0.3664717376232147,"z":-0.03363531455397606},{"x":0.823562741279602,"y":0.386599063873291,"z":-0.036933548748493195},{"x":0.8139265179634094,"y":0.40186384320259094,"z":-0.04011458903551102},{"x":0.886612057685852,"y":0.38659533858299255,"z":-0.027223005890846252},{"x":0.848463773727417,"y":0.394472599029541,"z":-0.036062948405742645},{"x":0.8313329219818115,"y":0.40783146023750305,"z":-0.03442220017313957},{"x":0.8211755156517029,"y":0.4189153015613556,"z":-0.03402038291096687},{"x":0.886059582233429,"y":0.41559526324272156,"z":-0.03150904178619385},{"x":0.855987012386322,"y":0.4241280257701874,"z":-0.03921050578355789},{"x":0.8420834541320801,"y":0.4319705367088318,"z":-0.03716794028878212},{"x":0.8338919878005981,"y":0.43831610679626465,"z":-0.03482401743531227}]]
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
+script.js:124 []
diff --git a/api and aux scripts/main.py b/api and aux scripts/main.py
new file mode 100644
index 0000000..50d3484
--- /dev/null
+++ b/api and aux scripts/main.py
@@ -0,0 +1,53 @@
+from fastapi import FastAPI, Request
+import uvicorn
+from starlette.middleware.cors import CORSMiddleware
+import pickle
+import numpy as np
+
+app = FastAPI()
+
+origins = ["http://localhost"]
+app.add_middleware(
+ CORSMiddleware,
+ allow_origins=["*"],
+ allow_credentials=True,
+ allow_methods=["*"],
+ allow_headers=["*"],
+)
+
+model_dict = pickle.load(open("./model.p", "rb"))
+model = model_dict["model"]
+labels_dict = {0: "hello", 1: "i love you", 2: "yes", 3: "good", 4: "bad", 5: "okay", 6: "you", 7: "i/i'm", 8: "why", 9: "no"}
+
+@app.get("/")
+async def read_root():
+ return {"message": "Hello World"}
+
+@app.post("/")
+async def process_json(request: Request):
+ # Get the JSON data from the request
+ data = await request.json()
+ if len(data) == 0:
+ return {"result": "no data"}
+ hands_data = data
+ data_aux = []
+
+ # hand landmarks are taken from data.json
+ if len(hands_data) == 42:
+ hand = hands_data[:21]
+ else:
+ hand = hands_data
+
+ for landmark in hand:
+ x = landmark["x"]
+ y = landmark["y"]
+ data_aux.append(x)
+ data_aux.append(y)
+
+ prediction = model.predict([np.asarray(data_aux)])
+ predicted_sign = labels_dict[int(prediction[0])]
+ print(predicted_sign)
+ return {"result": predicted_sign}
+
+if __name__ == "__main__":
+ uvicorn.run(app, host="0.0.0.0", port=8000)
diff --git a/api and aux scripts/model.p b/api and aux scripts/model.p
new file mode 100644
index 0000000..e8d2f2e
Binary files /dev/null and b/api and aux scripts/model.p differ
diff --git a/api and aux scripts/pyvenv.cfg b/api and aux scripts/pyvenv.cfg
new file mode 100644
index 0000000..8459980
--- /dev/null
+++ b/api and aux scripts/pyvenv.cfg
@@ -0,0 +1,8 @@
+home = C:\Users\mihne\AppData\Local\Programs\Python\Python310
+implementation = CPython
+version_info = 3.10.7.final.0
+virtualenv = 20.16.7
+include-system-site-packages = false
+base-prefix = C:\Users\mihne\AppData\Local\Programs\Python\Python310
+base-exec-prefix = C:\Users\mihne\AppData\Local\Programs\Python\Python310
+base-executable = C:\Users\mihne\AppData\Local\Programs\Python\Python310\python.exe
diff --git a/api and aux scripts/start.py b/api and aux scripts/start.py
new file mode 100644
index 0000000..24c698a
--- /dev/null
+++ b/api and aux scripts/start.py
@@ -0,0 +1,60 @@
+# DEPENDENCIES ------>
+import json
+import pickle
+import numpy as np
+
+
+model_dict = pickle.load(open("./model.p", "rb"))
+model = model_dict["model"]
+labels_dict = {1: "hello", 2: "Nothing"}
+
+hands_data = json.load(open("./data.json", "r"))
+data_aux = []
+
+# hand landmarks are taken from data.json
+hand = hands_data[0]
+for landmark in hand:
+ x = landmark["x"]
+ y = landmark["y"]
+ z = landmark["z"]
+ data_aux.append(x)
+ data_aux.append(y)
+ data_aux.append(z)
+
+prediction = model.predict([np.asarray(data_aux)])
+print(prediction)
+predicted_sign = labels_dict[int(prediction[0])]
+print(predicted_sign)
+data_aux = []
+
+
+# if results.multi_hand_landmarks:
+# for hand_landmarks in results.multi_hand_landmarks:
+# mp_drawing.draw_landmarks(
+# frame,
+# hand_landmarks,
+# mp_hands.HAND_CONNECTIONS,
+# mp_drawing_styles.get_default_hand_landmarks_style(),
+# mp_drawing_styles.get_default_hand_connections_style())
+#
+# for i in range(len(hand_landmarks.landmark)):
+# x = hand_landmarks.landmark[i].x
+# y = hand_landmarks.landmark[i].y
+# z = hand_landmarks.landmark[i].z
+# data_aux.append(x)
+# data_aux.append(y)
+# data_aux.append(z)
+# x_.append(x)
+# y_.append(y)
+# prediction = model.predict([np.asarray(data_aux)])
+# predicted_sign = labels_dict[int(prediction[0])]
+# data_aux = []
+# x_ = []
+# y_ = []
+#
+# cv2.imshow("Handy", frame)
+# cv2.waitKey(1)
+
+#
+# capture.release()
+# cv2.destroyAllWindows()
diff --git a/api and aux scripts/start_img_collector.py b/api and aux scripts/start_img_collector.py
new file mode 100644
index 0000000..4c0f5ec
--- /dev/null
+++ b/api and aux scripts/start_img_collector.py
@@ -0,0 +1,35 @@
+import os
+import cv2
+
+DATA_DIR = "./data"
+if not os.path.exists(DATA_DIR):
+ os.makedirs(DATA_DIR)
+
+cap = cv2.VideoCapture(0)
+while True:
+ # ask user for word number to collect data for
+ i = int(input("Enter word number (-1 to eit): "))
+ if i == -1:
+ break
+ if os.path.exists(os.path.join(DATA_DIR, str(i))):
+ # find last image number
+ count = len(os.listdir(os.path.join(DATA_DIR, str(i))))
+ else:
+ os.makedirs(os.path.join(DATA_DIR, str(i)))
+ count = 0
+ print("Collecting data")
+ done = False
+ # takes a picture every time the space bar is pressed, ends when q is pressed
+ print("Press space to take a picture, press q to stop")
+ while not done:
+ ret, frame = cap.read()
+ cv2.imshow("Frame", frame)
+ if cv2.waitKey(25) == ord(" "):
+ print("Saving image " + str(count))
+ cv2.imwrite(os.path.join(DATA_DIR, str(i), str(count) + ".jpg"), frame)
+ count += 1
+ if cv2.waitKey(25) == ord("q"):
+ done = True
+ break
+cap.release()
+cv2.destroyAllWindows()
diff --git a/site/app.html b/site/app.html
new file mode 100644
index 0000000..dce8926
--- /dev/null
+++ b/site/app.html
@@ -0,0 +1,80 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/site/control_utils.css b/site/control_utils.css
new file mode 100644
index 0000000..b83424f
--- /dev/null
+++ b/site/control_utils.css
@@ -0,0 +1,339 @@
+.control-panel-shell {
+ position: absolute;
+ display: none;
+ margin-left: 20px;
+ margin-top: 20px;
+ left: 0;
+ transition: 150ms
+}
+
+.control-panel {
+ color: #fff;
+ z-index: 100
+}
+
+.control-panel.hide {
+ opacity: 0
+}
+
+.control-panel-expander {
+ position: relative;
+ top: 30px;
+ height: 14px;
+ background-color: #5e5757;
+ padding: 2px;
+ border-radius: 0 3px 3px 0;
+ cursor: pointer
+}
+
+.hamburger-menu {
+ width: 12px;
+ height: 2px;
+ background-color: #111;
+ margin: 2px
+}
+
+.control-panel-entry {
+ width: 250px;
+ background-color: #222;
+ border-radius: 0;
+ box-sizing: content-box;
+ color: #fff;
+ cursor: pointer;
+ display: block;
+ font-family: "Google Sans", "Titillium Web", sans-serif;
+ font-size: 15px;
+ line-height: 25px;
+ padding: 12px 16px;
+ position: relative;
+ z-index: 100;
+ border: none;
+ border-bottom: 1px solid #333
+}
+
+.control-panel-entry:first-child {
+ border-radius: 28px 28px 0 0
+}
+
+.control-panel-entry:last-child {
+ border-radius: 0 0 28px 28px;
+ border: none
+}
+
+.control-panel-text {
+ cursor: default;
+ font-size: 20px;
+ font-weight: 600;
+ text-align: center
+}
+
+.control-panel-toggle .label {
+ position: relative
+}
+
+.control-panel-toggle .value {
+ position: absolute;
+ top: 8px;
+ right: 15px;
+ width: 80px;
+ height: 32px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 40px;
+ background: #000
+}
+
+.control-panel-toggle.yes .value {
+ background-color: #309f93;
+ color: #a3faa3
+}
+
+.control-panel-toggle.no .value {
+ background-color: #d32f50;
+ color: #f19e9e
+}
+
+.control-panel-slider .value {
+ position: relative;
+ width: 100%
+}
+
+.control-panel-slider .callout {
+ position: absolute;
+ right: 25px
+}
+
+.control-panel-fps {
+ display: flex;
+ justify-content: center;
+ align-items: center
+}
+
+.control-panel-fps canvas {
+ height: 50px;
+ width: 100%;
+ background-color: #222;
+ margin: 5px 0;
+ z-index: 0
+}
+
+.control-panel-fps .fps-text {
+ position: absolute;
+ font-size: 20px;
+ font-weight: 600;
+ text-align: center;
+ backface-visibility: hidden
+}
+
+.control-panel-source-picker {
+ display: flex;
+ flex-direction: column;
+ align-items: center
+}
+
+.control-panel-source-picker .inputs {
+ display: none
+}
+
+.control-panel-source-picker .file-selection div {
+ display: flex;
+ align-items: center;
+ justify-items: center
+}
+
+.control-panel-source-picker .file-selection div img {
+ margin-left: 8px
+}
+
+.source-selection {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ width: 100%
+}
+
+.video-controls {
+ width: 100%;
+ display: none;
+ flex-direction: row;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ margin: 12px 0 4px
+}
+
+.video-controls * {
+ display: inline-block
+}
+
+.video-controls img {
+ margin: 0 8px 0 -6px
+}
+
+.pause-button {
+ height: 100%
+}
+
+.video-track {
+ height: 5px;
+ width: 100%;
+ background-color: #fff;
+ flex-grow: 1;
+ margin-right: 10px
+}
+
+.video-slider-ball {
+ height: 10px;
+ width: 10px;
+ background-color: #fff;
+ position: absolute;
+ display: none;
+ border-radius: 50%
+}
+
+.video-time {
+ padding-left: .1rem
+}
+
+.dropdown-wrapper {
+ position: relative;
+ user-select: none;
+ width: calc(100% - 28px)
+}
+
+.dropdown {
+ position: relative;
+ display: flex;
+ flex-direction: column
+}
+
+.dropdown-trigger {
+ position: relative;
+ display: flex;
+ align-items: center;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ justify-content: space-between;
+ padding: 0 10px;
+ font-size: 16px;
+ font-weight: 300;
+ height: 30px;
+ line-height: 30px;
+ background: #333;
+ color: #fff;
+ cursor: pointer
+}
+
+.dropdown-trigger span {
+ max-width: calc(100% - 30px);
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap
+}
+
+.dropdown-options {
+ position: absolute;
+ display: block;
+ top: 100%;
+ left: 0;
+ right: 0;
+ color: #fff;
+ background: #333;
+ transition: all .5s;
+ opacity: 0;
+ visibility: hidden;
+ pointer-events: none;
+ z-index: 2
+}
+
+.dropdown.open .dropdown-options {
+ opacity: 1;
+ visibility: visible;
+ pointer-events: all
+}
+
+.dropdown-option {
+ position: relative;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ justify-content: left;
+ padding: 0 5px;
+ font-size: 16px;
+ font-weight: 300;
+ line-height: 30px;
+ cursor: pointer;
+ transition: all .5s;
+ color: #fff
+}
+
+.dropdown-option * {
+ padding-right: .5rem
+}
+
+.dropdown-option:hover {
+ cursor: pointer;
+ background-color: #b2b2b2
+}
+
+.dropdown-option.selected {
+ color: #fff;
+ background-color: #305c91
+}
+
+.arrow {
+ position: relative;
+ height: 15px;
+ width: 10.6066017178px;
+ margin-left: 10.6066017178px;
+ transform: scale(0.8)
+}
+
+.arrow::before,
+.arrow::after {
+ content: "";
+ position: absolute;
+ bottom: 0px;
+ width: .15rem;
+ height: 100%;
+ transition: all .5s;
+ backface-visibility: hidden
+}
+
+.arrow::before {
+ left: -5px;
+ transform: rotate(135deg);
+ background-color: #fff
+}
+
+.arrow::after {
+ left: 5px;
+ transform: rotate(-135deg);
+ background-color: #fff
+}
+
+.open .arrow::before {
+ left: -5px;
+ transform: rotate(45deg)
+}
+
+.open .arrow::after {
+ left: 5px;
+ transform: rotate(-45deg);
+ backface-visibility: hidden
+}
+
+.fps-30 {
+ position: absolute;
+ font-size: 8px;
+ top: 45%;
+ left: 10px
+}
+
+.fps-60 {
+ position: absolute;
+ font-size: 8px;
+ top: 15%;
+ left: 10px
+}
diff --git a/site/control_utils3d.css b/site/control_utils3d.css
new file mode 100644
index 0000000..a1b7864
--- /dev/null
+++ b/site/control_utils3d.css
@@ -0,0 +1,28 @@
+.viewer-widget-js {
+ position: relative;
+ width: 100%;
+ height: 100%;
+ cursor: grab;
+}
+
+.viewer-widget-js .controls {
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ cursor: pointer
+}
+
+.viewer-widget-js .landmark-label-js {
+ font-size: 0%;
+ position: absolute;
+ left: 0;
+ top: 0
+}
+
+.viewer-widget-js * {
+ user-select: none
+}
+
+.viewer-widget-js:active {
+ cursor: grabbing
+}
diff --git a/site/feedback.css b/site/feedback.css
new file mode 100644
index 0000000..d7e69fe
--- /dev/null
+++ b/site/feedback.css
@@ -0,0 +1,221 @@
+*{
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: "Poppins", serif;
+}
+
+#background {
+ position: absolute;
+ z-index: -1;
+ }
+ html
+ {
+ margin: 0;
+ overflow: hidden;
+ font-size: 1.2em
+ }
+
+ body {
+ background: linear-gradient(-45deg, #2a5596, #cf8fa7, #23a6d5, #23d5ab);
+ background-size: 400% 400%;
+ animation: gradient 14s ease infinite;
+ height: 100vh;
+ display: grid;
+ place-items: center;
+ }
+
+ @keyframes gradient {
+ 0% {
+ background-position: 0% 50%;
+ }
+ 50% {
+ background-position: 100% 50%;
+ }
+ 100% {
+ background-position: 0% 50%;
+ }
+ }
+
+
+
+h2{
+ font-size: 2.4rem;
+ font-family: "Lexend Deca Light", serif;
+ text-align: center;
+}
+
+p,a{
+ font-size: 1.7rem;
+}
+
+.feedback-section{
+ box-shadow: 0 0 10rem #fff,
+ 0 0 15rem #fff,
+ 0 0 12rem #b05af7,
+ 0 0 15rem #d99ef0,
+ 0 0 15rem #7305f9,
+ inset 0 0 12rem #2f0a6c;
+ padding: 5rem;
+}
+
+.rating{
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ gap: 3.2rem;
+ margin: 4.8rem 0 3.2rem 0;
+}
+
+/*.child p:first-child{}*/
+
+/*.unhappy p, .happy p, .satisfied p{}*/
+:is(.unhappy, .happy, .satisfied) h3{
+ text-align: center;
+}
+
+:is(.unhappy, .happy, .satisfied, .response-screen) p:first-child{
+ background-color: #2f0a6c;
+ border-radius: 1rem;
+ font-size: 5.6rem;
+ padding: 1.6rem 2.4rem;
+ cursor: pointer;
+ margin-bottom: 1.2rem;
+ transition: all .3s linear;
+}
+
+
+:is(.unhappy, .happy, .satisfied) p:first-child:hover{
+ scale: 1.05;
+ box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
+}
+
+.feedback-btn{
+ width: 100%;
+ text-align: center;
+}
+
+a{
+ padding: 1.2rem 3.2rem;
+ border: none;
+ outline: none;
+ cursor: pointer;
+ background-color: #20262E;
+ color: #fff;
+ font-size: 1.8rem;
+ border-radius: .5rem;
+ /*display: inline-block;*/
+ font-family: "Lexend Deca Light", serif;
+}
+
+.active{
+ scale: 1.05;
+ box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 2px, rgb(51, 51, 51) 0px 0px 0px 2px;
+ border-radius: .6rem;
+}
+.response-screen {
+ text-align: center;
+}
+
+.response-screen h3{
+ margin: 1.2rem 0 3.2rem 0;
+ font-size: 1.4rem;
+}
+
+.response-screen .feedback-button{
+ margin-top: 3.2rem;
+}
+
+.glow-on-hover {
+ width: 220px;
+ height: 46px;
+ border: none;
+ outline: none;
+ color: #fff;
+ background: #111;
+ cursor: pointer;
+ position: relative;
+ z-index: 0;
+ border-radius: 10px;
+ font-size: 22px;
+ bottom: -12px;
+ text-align: center;
+ color:white;
+ letter-spacing: .2rem;
+ padding: 5px;
+ font-family: 'Montserrat',sans-serif;
+
+ }
+
+ .glow-on-hover:before {
+ content: '';
+ background: linear-gradient(45deg, #1e0e85, #00ffd5, #002bff, #7a00ff, #ff00c8);
+ position: absolute;
+ top: -2px;
+ left:-2px;
+ background-size: 400%;
+ z-index: -1;
+ filter: blur(5px);
+ width: calc(100% + 4px);
+ height: calc(100% + 4px);
+ animation: glowing 20s linear infinite;
+ opacity: 0;
+ transition: opacity .3s ease-in-out;
+ border-radius: 10px;
+ }
+
+ .glow-on-hover:active {
+ color: #000
+ }
+
+ .glow-on-hover:active:after {
+ background: transparent;
+ }
+
+ .glow-on-hover:hover:before {
+ opacity: 1;
+ }
+
+ .glow-on-hover:after {
+ z-index: -1;
+ content: '';
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background: #290760;
+ left: 0;
+ top: 0;
+ border-radius: 10px;
+ }
+
+ @keyframes glowing {
+ 0% { background-position: 0 0; }
+ 50% { background-position: 400% 0; }
+ 100% { background-position: 0 0; }
+ }
+
+ .input1
+ {
+ width: 100%;
+ height: 4rem;
+ background-color: #290760;
+
+ display: flex;
+ font-size: 28px;
+ color:white;
+
+ justify-content: center;
+ align-content: center;
+ text-align: center;
+
+ border-style: solid;
+ border-width: 3px;
+ border-color: #140760;
+
+
+ }
+
+ ::placeholder
+ {
+ color: white;
+ }
\ No newline at end of file
diff --git a/site/feedback.html b/site/feedback.html
new file mode 100644
index 0000000..42f806e
--- /dev/null
+++ b/site/feedback.html
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ How satisfied are you with our services?
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/site/feedback.js b/site/feedback.js
new file mode 100644
index 0000000..ee2130e
--- /dev/null
+++ b/site/feedback.js
@@ -0,0 +1,52 @@
+const rating = document.querySelector('.rating');
+const child = document.querySelectorAll('.child');
+const feedback_section = document.querySelector('.feedback-section');
+const btn = document.querySelector('#btn');
+
+let icon;
+rating.addEventListener('click', (event) => {
+
+ icon = event.target.parentNode;
+
+ for(let i=0; i {
+ console.log(icon);
+
+ let user_feedback;
+ let user_feedback_icon;
+
+ if(icon === undefined){
+ user_feedback = "";
+ }else{
+ user_feedback = icon.children[1].innerText;
+ user_feedback_icon = icon.children[0].innerText;
+ }
+
+ if(user_feedback !== ""){
+ // console.log(user_feedback_icon)
+ feedback_section.innerHTML = `
+
+
${user_feedback_icon}
+
your Feedback: ${user_feedback}
+
π Thank You for your response
+
+
+
+ `
+ }
+
+
+
+})
diff --git a/site/index.html b/site/index.html
new file mode 100644
index 0000000..5191b99
--- /dev/null
+++ b/site/index.html
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
UnMute-IT ->Reach as far as you can see.
+ UnMute-IT ->Reach as far as you can see.
+
+
+
We have an innovative project powered by Mediapipe AI technology, by connecting with those who use American Sign Language, regardless of hearing ability.The combination of real-time hand gesture recognition and machine learning algorithms, enables users to effortlessly translate ASL signs into written text or even speech.
+ Our goal aims to empower individuals with hearing impairments and a reliable, intuitive tool.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/site/linkedin.png b/site/linkedin.png
new file mode 100644
index 0000000..2315b82
Binary files /dev/null and b/site/linkedin.png differ
diff --git a/site/logo.png b/site/logo.png
new file mode 100644
index 0000000..9b39e78
Binary files /dev/null and b/site/logo.png differ
diff --git a/site/logoacasa.png b/site/logoacasa.png
new file mode 100644
index 0000000..d348aed
Binary files /dev/null and b/site/logoacasa.png differ
diff --git a/site/reverse.html b/site/reverse.html
new file mode 100644
index 0000000..ce0ca3e
--- /dev/null
+++ b/site/reverse.html
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Press for Speech-to-Sign
+
+
+ Enter
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/site/reverse.js b/site/reverse.js
new file mode 100644
index 0000000..b78902c
--- /dev/null
+++ b/site/reverse.js
@@ -0,0 +1,477 @@
+import DeviceDetector from "https://cdn.skypack.dev/device-detector-js@2.2.10";
+import ungapstructuredClone from 'https://cdn.jsdelivr.net/npm/@ungap/structured-clone@1.2.0/+esm'
+const mpHands = window;
+const drawingUtils = window;
+const controls = window;
+const controls3d = window;
+
+let dict;
+
+await fetch("./reverse_data.json").then(response => response.text()).then((text) => {dict = JSON.parse(text);});
+
+let connections_one_hand=[
+ [
+ 0,
+ 1
+ ],
+ [
+ 1,
+ 2
+ ],
+ [
+ 2,
+ 3
+ ],
+ [
+ 3,
+ 4
+ ],
+ [
+ 0,
+ 5
+ ],
+ [
+ 5,
+ 6
+ ],
+ [
+ 6,
+ 7
+ ],
+ [
+ 7,
+ 8
+ ],
+ [
+ 5,
+ 9
+ ],
+ [
+ 9,
+ 10
+ ],
+ [
+ 10,
+ 11
+ ],
+ [
+ 11,
+ 12
+ ],
+ [
+ 9,
+ 13
+ ],
+ [
+ 13,
+ 14
+ ],
+ [
+ 14,
+ 15
+ ],
+ [
+ 15,
+ 16
+ ],
+ [
+ 13,
+ 17
+ ],
+ [
+ 0,
+ 17
+ ],
+ [
+ 17,
+ 18
+ ],
+ [
+ 18,
+ 19
+ ],
+ [
+ 19,
+ 20
+ ]
+]
+
+let connections_two_hands=[
+ [
+ 0,
+ 1
+ ],
+ [
+ 1,
+ 2
+ ],
+ [
+ 2,
+ 3
+ ],
+ [
+ 3,
+ 4
+ ],
+ [
+ 0,
+ 5
+ ],
+ [
+ 5,
+ 6
+ ],
+ [
+ 6,
+ 7
+ ],
+ [
+ 7,
+ 8
+ ],
+ [
+ 5,
+ 9
+ ],
+ [
+ 9,
+ 10
+ ],
+ [
+ 10,
+ 11
+ ],
+ [
+ 11,
+ 12
+ ],
+ [
+ 9,
+ 13
+ ],
+ [
+ 13,
+ 14
+ ],
+ [
+ 14,
+ 15
+ ],
+ [
+ 15,
+ 16
+ ],
+ [
+ 13,
+ 17
+ ],
+ [
+ 0,
+ 17
+ ],
+ [
+ 17,
+ 18
+ ],
+ [
+ 18,
+ 19
+ ],
+ [
+ 19,
+ 20
+ ],
+ [
+ 21,
+ 22
+ ],
+ [
+ 22,
+ 23
+ ],
+ [
+ 23,
+ 24
+ ],
+ [
+ 24,
+ 25
+ ],
+ [
+ 21,
+ 26
+ ],
+ [
+ 26,
+ 27
+ ],
+ [
+ 27,
+ 28
+ ],
+ [
+ 28,
+ 29
+ ],
+ [
+ 26,
+ 30
+ ],
+ [
+ 30,
+ 31
+ ],
+ [
+ 31,
+ 32
+ ],
+ [
+ 32,
+ 33
+ ],
+ [
+ 30,
+ 34
+ ],
+ [
+ 34,
+ 35
+ ],
+ [
+ 35,
+ 36
+ ],
+ [
+ 36,
+ 37
+ ],
+ [
+ 34,
+ 38
+ ],
+ [
+ 21,
+ 38
+ ],
+ [
+ 38,
+ 39
+ ],
+ [
+ 39,
+ 40
+ ],
+ [
+ 40,
+ 41
+ ]
+]
+
+
+let colors=[
+ {
+ "list": [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20
+ ],
+ "color": "Left"
+ }
+]
+
+let colors_two_hands=[
+ {
+ "list": [
+ 0,
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27,
+ 28,
+ 29,
+ 30,
+ 31,
+ 32,
+ 33,
+ 34,
+ 35,
+ 36,
+ 37,
+ 38,
+ 39,
+ 40,
+ 41
+ ],
+ "color": "Left"
+ },
+]
+
+
+
+const landmarkContainer = document.getElementsByClassName('landmark-grid-container')[0];
+const buton1 = document.getElementsByClassName("btn-neon1")[0];
+const buton2 = document.getElementsByClassName("btn-neon2")[0];
+
+
+const grid = new controls3d.LandmarkGrid(landmarkContainer, {
+ connectionColor: 0xCCCCCC,
+ definedColors: [{ name: 'Left', value: 0xffa500 }, { name: 'Right', value: 0x00ffff }],
+ range: 0.2,
+ fitToGrid: false,
+ labelSuffix: 'm',
+ landmarkSize: 2.4,
+ numCellsPerAxis: 0,
+ showHidden: false,
+ centered: false,
+ isRotating: false,
+ connectionWidth: 6.5,
+});
+grid.axesMaterial.visible = false;
+grid.gridMaterial.visible = false;
+grid.updateLandmarks([{"x":0,"y":0,"z":0},{"x":0.1,"y":0.1,"z":0.1}]);
+
+document.body.classList.add('loaded');
+
+let text = "";
+
+function update() {
+ if (dict[text] != undefined){
+ if(dict[text].length == 21)
+ grid.updateLandmarks(dict[text],connections_one_hand,colors);
+ else{
+ let landmarkTwoHands = structuredClone(dict[text]);
+ for(let i = 0; i < landmarkTwoHands.length/2; i++){
+ landmarkTwoHands[i].x = landmarkTwoHands[i].x + 0.07;
+ landmarkTwoHands[i+21].x = landmarkTwoHands[i+21].x - 0.07;
+ }
+ grid.updateLandmarks(landmarkTwoHands,connections_two_hands,colors_two_hands);
+ }
+ }
+ else{
+ grid.updateLandmarks([{}]);
+ }
+}
+
+async function main() {
+ setInterval(update, 50);
+}
+main();
+
+async function translate(){
+ let words_a = [];
+ text = document.getElementById("text").value.toLowerCase();
+ text = text.replace(/[^a-zA-Z ']/g, "");
+ text = text.replace(/\s+/g, ' ').trim();
+ let words = text.split(" ");
+ for (let i = 0; i < words.length; i++) {
+ text = words[i];
+ if(dict[text] == undefined)
+ continue;
+ words_a.push(text);
+ await new Promise(r => setTimeout(r, 1000));
+ }
+ text = "";
+}
+
+let isRecording = false;
+const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition;
+const recognition = new SpeechRecognition();
+recognition.lang = 'en-US';
+recognition.interimResults = true;
+recognition.continuous = true;
+recognition.maxAlternatives = 1;
+
+recognition.onstart = (event) => {
+ document.getElementById("text").value = "Listening...";
+}
+
+recognition.onresult = (event) => {
+ const speechToText = event.results[0][0].transcript;
+ document.getElementById("text").value = speechToText;
+}
+
+recognition.onend = (event) => {
+ translate();
+}
+
+
+document.addEventListener('keydown', (event) => {
+ const keyName = event.key;
+ if (keyName === 'Enter') {
+ translate();
+ return;
+ }
+ if(event.target.localName!="input"&&keyName === ' ' && isRecording){
+ recognition.stop();
+ isRecording = false;
+ return;
+ }
+ if(event.target.localName!="input" && keyName === ' ' && !isRecording){
+ recognition.start();
+ isRecording = true;
+ return;
+ }
+
+});
+
+buton1.addEventListener("click" ,(event)=>{
+ console.log("ads")
+ if(isRecording){
+ recognition.stop();
+ isRecording = false;
+ return;
+ }
+ if(!isRecording){
+ recognition.start();
+ isRecording = true;
+ return;
+ }
+})
+
+buton2.addEventListener("click" ,(event)=>{
+ translate();
+})
+
+
+
diff --git a/site/reverse_data.json b/site/reverse_data.json
new file mode 100644
index 0000000..030bbdd
--- /dev/null
+++ b/site/reverse_data.json
@@ -0,0 +1 @@
+{"be": [{"x": 0.02632555179297924, "y": 0.08811726421117783, "z": -0.005440050736069679}, {"x": 0.04183236509561539, "y": 0.06529586762189865, "z": 0.012297207489609718}, {"x": 0.05070730671286583, "y": 0.03712872415781021, "z": 0.03334791958332062}, {"x": 0.047513000667095184, "y": 0.013441557064652443, "z": 0.05430585891008377}, {"x": 0.040792085230350494, "y": -0.0010437136515974998, "z": 0.06493374705314636}, {"x": 0.021417327225208282, "y": -0.006969126407057047, "z": 0.010699393227696419}, {"x": -5.48255629837513e-05, "y": -0.019403507933020592, "z": 0.02347363904118538}, {"x": -0.016239162534475327, "y": -0.025992244482040405, "z": 0.050777535885572433}, {"x": -0.03246985375881195, "y": -0.027384748682379723, "z": 0.07527823746204376}, {"x": 0.001801366452127695, "y": -0.00403254060074687, "z": 0.0005616606795229018}, {"x": -0.019532812759280205, "y": -0.024785423651337624, "z": 0.018959712237119675}, {"x": -0.03445257991552353, "y": -0.025228824466466904, "z": 0.04826062172651291}, {"x": -0.04114812985062599, "y": -0.03387529402971268, "z": 0.08064909279346466}, {"x": -0.015695275738835335, "y": 0.0029264953918755054, "z": -0.007759324740618467}, {"x": -0.03213898837566376, "y": -0.013629887253046036, "z": 0.011165665462613106}, {"x": -0.041628167033195496, "y": -0.018148496747016907, "z": 0.0378405787050724}, {"x": -0.046117786318063736, "y": -0.023431111127138138, "z": 0.06955491751432419}, {"x": -0.02796369232237339, "y": 0.021390818059444427, "z": -0.007702048402279615}, {"x": -0.04277902469038963, "y": 0.0017935028299689293, "z": 0.003608126426115632}, {"x": -0.05055531486868858, "y": -0.011587485671043396, "z": 0.021761484444141388}, {"x": -0.05131996050477028, "y": -0.01335931196808815, "z": 0.037466105073690414}], "but": [{"x": -0.05250789225101471, "y": 0.07255470752716064, "z": 0.03248416632413864}, {"x": -0.06070215255022049, "y": 0.03869905322790146, "z": 0.01602441817522049}, {"x": -0.050033088773489, "y": 0.008580662310123444, "z": 0.0028523134533315897}, {"x": -0.033367473632097244, "y": -0.01422831229865551, "z": -0.02237168699502945}, {"x": -0.015448116697371006, "y": -0.034691791981458664, "z": -0.03363772854208946}, {"x": -0.01805245503783226, "y": -0.017852792516350746, "z": 0.007084357552230358}, {"x": 0.0030546700581908226, "y": -0.03965583071112633, "z": -0.0011808843119069934}, {"x": 0.016052374616265297, "y": -0.05589413270354271, "z": -0.006987493950873613}, {"x": 0.02954227849841118, "y": -0.0703287348151207, "z": -0.026152288541197777}, {"x": 0.00026026193518191576, "y": -0.004455188289284706, "z": 0.005513940937817097}, {"x": -0.003969778306782246, "y": -0.023601315915584564, "z": -0.03108021430671215}, {"x": -0.02998771145939827, "y": -0.012187300249934196, "z": -0.038798440247774124}, {"x": -0.03528307378292084, "y": 3.991462290287018e-05, "z": -0.01620016247034073}, {"x": 0.012653859332203865, "y": 0.010315674357116222, "z": -0.004120689816772938}, {"x": -0.0017806603573262691, "y": 0.0038600785192102194, "z": -0.036298930644989014}, {"x": -0.025905020534992218, "y": 0.019243530929088593, "z": -0.03351791948080063}, {"x": -0.028421951457858086, "y": 0.030741138383746147, "z": -0.006770262029021978}, {"x": 0.009383509866893291, "y": 0.033581074327230453, "z": -0.011403653770685196}, {"x": 0.004015346057713032, "y": 0.023176956921815872, "z": -0.030765431001782417}, {"x": -0.016153041273355484, "y": 0.02758960798382759, "z": -0.03472136706113815}, {"x": -0.01794956997036934, "y": 0.03596381098031998, "z": -0.014620007015764713}, {"x": 0.03414344787597656, "y": 0.06926454603672028, "z": 0.05922836810350418}, {"x": 0.04508858546614647, "y": 0.036977145820856094, "z": 0.04273364320397377}, {"x": 0.055636219680309296, "y": 0.013045631349086761, "z": 0.02059336006641388}, {"x": 0.05739603191614151, "y": -0.0029409192502498627, "z": -0.014334581792354584}, {"x": 0.046670541167259216, "y": -0.01073742937296629, "z": -0.04555213451385498}, {"x": 0.00849959533661604, "y": -0.018553320318460464, "z": 0.01207266841083765}, {"x": -0.008950348943471909, "y": -0.04194018244743347, "z": 0.0004930095747113228}, {"x": -0.023084856569767, "y": -0.05991362780332565, "z": -0.008107515051960945}, {"x": -0.04125749319791794, "y": -0.07239369302988052, "z": -0.03227897360920906}, {"x": -0.004134437534958124, "y": -0.004427972249686718, "z": 0.004544428084045649}, {"x": 0.0012618917971849442, "y": -0.02644362486898899, "z": -0.025548841804265976}, {"x": 0.024777168408036232, "y": -0.01697498746216297, "z": -0.029377944767475128}, {"x": 0.0357401967048645, "y": -0.00808875821530819, "z": -0.01323588564991951}, {"x": -0.008882209658622742, "y": 0.01195673830807209, "z": -0.00843587052077055}, {"x": 0.015783963724970818, "y": 0.011857686564326286, "z": -0.02985292486846447}, {"x": 0.03803716227412224, "y": 0.01961393654346466, "z": -0.012226472608745098}, {"x": 0.038878437131643295, "y": 0.027447491884231567, "z": 0.019290123134851456}, {"x": -0.004612160846590996, "y": 0.0368800014257431, "z": -0.01330708246678114}, {"x": 0.016309721395373344, "y": 0.0338321179151535, "z": -0.024019919335842133}, {"x": 0.031349293887615204, "y": 0.03307340666651726, "z": -0.013510146178305149}, {"x": 0.03148530796170235, "y": 0.036179978400468826, "z": 0.008450884371995926}], "can't": [{"x": 0.05220860242843628, "y": 0.05241357535123825, "z": 0.05910596624016762}, {"x": 0.016045279800891876, "y": 0.04513523727655411, "z": 0.050027668476104736}, {"x": -0.006809305399656296, "y": 0.044339679181575775, "z": 0.0315459743142128}, {"x": -0.022228499874472618, "y": 0.047542721033096313, "z": -0.0050893849693238735}, {"x": -0.02303018793463707, "y": 0.045497406274080276, "z": -0.03094717301428318}, {"x": -0.01854557730257511, "y": -0.0024764537811279297, "z": 0.014630739577114582}, {"x": -0.03411329537630081, "y": -0.018606090918183327, "z": -0.0026596151292324066}, {"x": -0.050898872315883636, "y": -0.03048088401556015, "z": -0.011234724894165993}, {"x": -0.06676959991455078, "y": -0.04127192497253418, "z": -0.03169321268796921}, {"x": -0.00397015456110239, "y": -0.004517285153269768, "z": 0.004422361496835947}, {"x": -0.024455608800053596, "y": 0.01689300127327442, "z": -0.01744987443089485}, {"x": -0.02157721482217312, "y": 0.04091308265924454, "z": -0.005759970750659704}, {"x": -0.007209855131804943, "y": 0.03633453696966171, "z": 0.016241133213043213}, {"x": 0.01112881489098072, "y": 0.0007591205649077892, "z": -0.009867359884083271}, {"x": -0.006111687049269676, "y": 0.027450568974018097, "z": -0.019185427576303482}, {"x": -0.003046087920665741, "y": 0.042054299265146255, "z": -0.004894120153039694}, {"x": 0.00941505841910839, "y": 0.03646764159202576, "z": 0.01536746695637703}, {"x": 0.028326598927378654, "y": 0.015756234526634216, "z": -0.015529833734035492}, {"x": 0.012749099172651768, "y": 0.033827755600214005, "z": -0.021451620385050774}, {"x": 0.007190674543380737, "y": 0.04709327965974808, "z": -0.007513996213674545}, {"x": 0.015620938502252102, "y": 0.04574425145983696, "z": 0.005787374451756477}, {"x": -0.05309779942035675, "y": 0.052033379673957825, "z": 0.06945986300706863}, {"x": -0.01486890111118555, "y": 0.04797545447945595, "z": 0.053251203149557114}, {"x": 0.01070515438914299, "y": 0.05012068152427673, "z": 0.034962743520736694}, {"x": 0.024733880534768105, "y": 0.05355172976851463, "z": -0.0024654800072312355}, {"x": 0.02150789648294449, "y": 0.04174553602933884, "z": -0.033029597252607346}, {"x": 0.018939480185508728, "y": 0.0010927990078926086, "z": 0.013168895617127419}, {"x": 0.03680142015218735, "y": -0.011384953744709492, "z": -0.009324293583631516}, {"x": 0.05388268083333969, "y": -0.021661030128598213, "z": -0.01968933269381523}, {"x": 0.06986753642559052, "y": -0.028837721794843674, "z": -0.04840976744890213}, {"x": 0.0028695682995021343, "y": -0.006172013469040394, "z": 0.003721555694937706}, {"x": 0.019004955887794495, "y": 0.017944877967238426, "z": -0.017468292266130447}, {"x": 0.009980574250221252, "y": 0.04109642282128334, "z": -0.0041947741992771626}, {"x": -0.0019623152911663055, "y": 0.03646106645464897, "z": 0.022111786529421806}, {"x": -0.011306500062346458, "y": -0.0023589367046952248, "z": -0.008704776875674725}, {"x": -0.0033132722601294518, "y": 0.02479817532002926, "z": -0.018690122291445732}, {"x": -0.005583019927144051, "y": 0.04562931880354881, "z": -0.001471885945647955}, {"x": -0.015707865357398987, "y": 0.039884887635707855, "z": 0.024795139208436012}, {"x": -0.03271642327308655, "y": 0.008903018198907375, "z": -0.011906239204108715}, {"x": -0.023673001676797867, "y": 0.02750009298324585, "z": -0.0192246176302433}, {"x": -0.018429633229970932, "y": 0.04476409777998924, "z": -0.0012910144869238138}, {"x": -0.02161739021539688, "y": 0.04559023305773735, "z": 0.018441252410411835}], "can": [{"x": 0.013806546106934547, "y": 0.018902301788330078, "z": 0.08904747664928436}, {"x": -0.011741217225790024, "y": 0.02151857316493988, "z": 0.06401112675666809}, {"x": -0.026248358190059662, "y": 0.029576674103736877, "z": 0.04606693983078003}, {"x": -0.025230269879102707, "y": 0.04522407054901123, "z": 0.011353709734976292}, {"x": -0.006625715643167496, "y": 0.05139463022351265, "z": -0.014437551610171795}, {"x": -0.021301137283444405, "y": 0.0029611196368932724, "z": -0.0007509317947551608}, {"x": -0.02447991445660591, "y": 0.02418004348874092, "z": -0.011339596472680569}, {"x": -0.02154643088579178, "y": 0.029550526291131973, "z": 0.013669770210981369}, {"x": -0.021270127967000008, "y": 0.018206723034381866, "z": 0.04640085995197296}, {"x": -0.003835071809589863, "y": -0.0017683282494544983, "z": -0.0021162801422178745}, {"x": -0.010054892860352993, "y": 0.014178832992911339, "z": -0.010716578923165798}, {"x": -0.012566795572638512, "y": 0.02926747500896454, "z": 0.01712610200047493}, {"x": -0.015238883905112743, "y": 0.00807926431298256, "z": 0.04560370743274689}, {"x": 0.008901256136596203, "y": -0.0021602746564894915, "z": -0.0026938740629702806}, {"x": 0.009288335219025612, "y": 0.023965448141098022, "z": -0.003808709094300866}, {"x": 0.0005318643525242805, "y": 0.03206189349293709, "z": 0.019150182604789734}, {"x": 0.003184590023010969, "y": 0.01690096966922283, "z": 0.044022973626852036}, {"x": 0.025946233421564102, "y": 0.009491016156971455, "z": 0.007793996948748827}, {"x": 0.020331133157014847, "y": 0.022269219160079956, "z": 0.003484087996184826}, {"x": 0.006875528488308191, "y": 0.029282135888934135, "z": 0.02203802950680256}, {"x": 0.012107918038964272, "y": 0.023875050246715546, "z": 0.039364639669656754}, {"x": -0.040741581469774246, "y": 0.008841362781822681, "z": 0.08083813637495041}, {"x": -0.009166294708848, "y": 0.017262235283851624, "z": 0.0670858845114708}, {"x": 0.0066420650109648705, "y": 0.03118545189499855, "z": 0.04807690158486366}, {"x": 0.008572181686758995, "y": 0.046799469739198685, "z": 0.019408676773309708}, {"x": -0.004247989505529404, "y": 0.04283348470926285, "z": -0.010237442329525948}, {"x": 0.013177997432649136, "y": 0.002612300217151642, "z": 0.007021295838057995}, {"x": 0.014583056792616844, "y": 0.023052895441651344, "z": -0.0034367400221526623}, {"x": 0.011315472424030304, "y": 0.031250495463609695, "z": 0.017400773242115974}, {"x": 0.0003659576177597046, "y": 0.02437732368707657, "z": 0.04215747117996216}, {"x": 0.001957093132659793, "y": -0.004451691173017025, "z": 0.0015207312535494566}, {"x": 0.006092858500778675, "y": 0.014795701019465923, "z": -0.013203834183514118}, {"x": 0.0004932135343551636, "y": 0.021779388189315796, "z": 0.012572824954986572}, {"x": 0.0024428260512650013, "y": 0.00923724565654993, "z": 0.036224909126758575}, {"x": -0.008907676674425602, "y": -0.0037651979364454746, "z": -0.007438521832227707}, {"x": -0.010925433598458767, "y": 0.013961400836706161, "z": -0.0111849969252944}, {"x": -0.01435223501175642, "y": 0.02254912070930004, "z": 0.007240180857479572}, {"x": -0.010588541626930237, "y": 0.013746023178100586, "z": 0.030416250228881836}, {"x": -0.028919151052832603, "y": -0.002936062403023243, "z": -0.0007563968538306653}, {"x": -0.022803116589784622, "y": 0.014214485883712769, "z": -0.005245753098279238}, {"x": -0.023308057337999344, "y": 0.021183175966143608, "z": 0.013396626338362694}, {"x": -0.023444093763828278, "y": 0.014535072259604931, "z": 0.03271133452653885}], "could": [{"x": 0.013806546106934547, "y": 0.018902301788330078, "z": 0.08904747664928436}, {"x": -0.011741217225790024, "y": 0.02151857316493988, "z": 0.06401112675666809}, {"x": -0.026248358190059662, "y": 0.029576674103736877, "z": 0.04606693983078003}, {"x": -0.025230269879102707, "y": 0.04522407054901123, "z": 0.011353709734976292}, {"x": -0.006625715643167496, "y": 0.05139463022351265, "z": -0.014437551610171795}, {"x": -0.021301137283444405, "y": 0.0029611196368932724, "z": -0.0007509317947551608}, {"x": -0.02447991445660591, "y": 0.02418004348874092, "z": -0.011339596472680569}, {"x": -0.02154643088579178, "y": 0.029550526291131973, "z": 0.013669770210981369}, {"x": -0.021270127967000008, "y": 0.018206723034381866, "z": 0.04640085995197296}, {"x": -0.003835071809589863, "y": -0.0017683282494544983, "z": -0.0021162801422178745}, {"x": -0.010054892860352993, "y": 0.014178832992911339, "z": -0.010716578923165798}, {"x": -0.012566795572638512, "y": 0.02926747500896454, "z": 0.01712610200047493}, {"x": -0.015238883905112743, "y": 0.00807926431298256, "z": 0.04560370743274689}, {"x": 0.008901256136596203, "y": -0.0021602746564894915, "z": -0.0026938740629702806}, {"x": 0.009288335219025612, "y": 0.023965448141098022, "z": -0.003808709094300866}, {"x": 0.0005318643525242805, "y": 0.03206189349293709, "z": 0.019150182604789734}, {"x": 0.003184590023010969, "y": 0.01690096966922283, "z": 0.044022973626852036}, {"x": 0.025946233421564102, "y": 0.009491016156971455, "z": 0.007793996948748827}, {"x": 0.020331133157014847, "y": 0.022269219160079956, "z": 0.003484087996184826}, {"x": 0.006875528488308191, "y": 0.029282135888934135, "z": 0.02203802950680256}, {"x": 0.012107918038964272, "y": 0.023875050246715546, "z": 0.039364639669656754}, {"x": -0.040741581469774246, "y": 0.008841362781822681, "z": 0.08083813637495041}, {"x": -0.009166294708848, "y": 0.017262235283851624, "z": 0.0670858845114708}, {"x": 0.0066420650109648705, "y": 0.03118545189499855, "z": 0.04807690158486366}, {"x": 0.008572181686758995, "y": 0.046799469739198685, "z": 0.019408676773309708}, {"x": -0.004247989505529404, "y": 0.04283348470926285, "z": -0.010237442329525948}, {"x": 0.013177997432649136, "y": 0.002612300217151642, "z": 0.007021295838057995}, {"x": 0.014583056792616844, "y": 0.023052895441651344, "z": -0.0034367400221526623}, {"x": 0.011315472424030304, "y": 0.031250495463609695, "z": 0.017400773242115974}, {"x": 0.0003659576177597046, "y": 0.02437732368707657, "z": 0.04215747117996216}, {"x": 0.001957093132659793, "y": -0.004451691173017025, "z": 0.0015207312535494566}, {"x": 0.006092858500778675, "y": 0.014795701019465923, "z": -0.013203834183514118}, {"x": 0.0004932135343551636, "y": 0.021779388189315796, "z": 0.012572824954986572}, {"x": 0.0024428260512650013, "y": 0.00923724565654993, "z": 0.036224909126758575}, {"x": -0.008907676674425602, "y": -0.0037651979364454746, "z": -0.007438521832227707}, {"x": -0.010925433598458767, "y": 0.013961400836706161, "z": -0.0111849969252944}, {"x": -0.01435223501175642, "y": 0.02254912070930004, "z": 0.007240180857479572}, {"x": -0.010588541626930237, "y": 0.013746023178100586, "z": 0.030416250228881836}, {"x": -0.028919151052832603, "y": -0.002936062403023243, "z": -0.0007563968538306653}, {"x": -0.022803116589784622, "y": 0.014214485883712769, "z": -0.005245753098279238}, {"x": -0.023308057337999344, "y": 0.021183175966143608, "z": 0.013396626338362694}, {"x": -0.023444093763828278, "y": 0.014535072259604931, "z": 0.03271133452653885}], "defence": [{"x": 0.053255412727594376, "y": 0.05348468944430351, "z": 0.03701816871762276}, {"x": 0.027597744017839432, "y": 0.04250834137201309, "z": 0.04431638866662979}, {"x": 0.0066850678995251656, "y": 0.02746443822979927, "z": 0.05425744131207466}, {"x": -0.00876249186694622, "y": 0.0177509356290102, "z": 0.06214383617043495}, {"x": -0.020662754774093628, "y": 0.012160412967205048, "z": 0.06708462536334991}, {"x": -0.008839262649416924, "y": -0.002733951900154352, "z": 0.022816825658082962}, {"x": -0.02319655753672123, "y": 0.014701154083013535, "z": 0.013708760030567646}, {"x": -0.02418096736073494, "y": 0.025713002309203148, "z": 0.03219912201166153}, {"x": -0.00752079114317894, "y": 0.02664131484925747, "z": 0.05353132262825966}, {"x": -0.002700295764952898, "y": -0.0026539373211562634, "z": 0.005136358551681042}, {"x": -0.02132321707904339, "y": 0.01800171099603176, "z": -0.0042139096185564995}, {"x": -0.01427668146789074, "y": 0.03597135469317436, "z": 0.016681350767612457}, {"x": -0.0019589336588978767, "y": 0.028721215203404427, "z": 0.034822169691324234}, {"x": 0.005301451776176691, "y": 0.001545191160403192, "z": -0.01635308563709259}, {"x": -0.010998459532856941, "y": 0.027718091383576393, "z": -0.017434360459446907}, {"x": -0.00476333312690258, "y": 0.04077048599720001, "z": -0.0004946431145071983}, {"x": 0.007980058901011944, "y": 0.03448878228664398, "z": 0.016080722212791443}, {"x": 0.013288610614836216, "y": 0.019257280975580215, "z": -0.026241756975650787}, {"x": 3.777071833610535e-05, "y": 0.03880880028009415, "z": -0.024298038333654404}, {"x": 0.004853123798966408, "y": 0.04936196655035019, "z": -0.006813160143792629}, {"x": 0.01590169221162796, "y": 0.042086161673069, "z": 0.0027407542802393436}, {"x": -0.07847263664007187, "y": 0.042113110423088074, "z": 0.007417821325361729}, {"x": -0.061651017516851425, "y": 0.026057058945298195, "z": 0.031661633402109146}, {"x": -0.03294020891189575, "y": 0.018615538254380226, "z": 0.048139020800590515}, {"x": -0.009361470118165016, "y": 0.018175732344388962, "z": 0.06439734995365143}, {"x": -0.0013271905481815338, "y": 0.02107040211558342, "z": 0.07659035176038742}, {"x": -0.0058616516180336475, "y": -0.012723102234303951, "z": 0.026446476578712463}, {"x": 0.006181353237479925, "y": 0.007206712383776903, "z": 0.029994294047355652}, {"x": 0.0029319929890334606, "y": 0.017467090860009193, "z": 0.041989535093307495}, {"x": -0.012419342994689941, "y": 0.01843496970832348, "z": 0.0462496355175972}, {"x": 0.0005272454582154751, "y": -0.006791039370000362, "z": 0.005932519678026438}, {"x": 0.018017997965216637, "y": 0.015110745094716549, "z": 0.008368484675884247}, {"x": 0.0059923226945102215, "y": 0.026005055755376816, "z": 0.02372269704937935}, {"x": -0.008610982447862625, "y": 0.02108418196439743, "z": 0.023904412984848022}, {"x": 0.003861835924908519, "y": 0.007254825439304113, "z": -0.017744945362210274}, {"x": 0.012349356897175312, "y": 0.0329497754573822, "z": -0.011836490593850613}, {"x": 0.000833902508020401, "y": 0.044160936027765274, "z": 0.006543879397213459}, {"x": -0.010308503173291683, "y": 0.03909449651837349, "z": 0.010017921216785908}, {"x": -0.0032454971224069595, "y": 0.023747485131025314, "z": -0.03191913664340973}, {"x": 0.004020458087325096, "y": 0.044820237904787064, "z": -0.028142163529992104}, {"x": -0.008456749841570854, "y": 0.05768048018217087, "z": -0.011158207431435585}, {"x": -0.0166037417948246, "y": 0.04880595952272415, "z": -0.006740229669958353}], "departments": [{"x": -0.019300229847431183, "y": 0.0821433961391449, "z": 0.05999978631734848}, {"x": 0.01205776259303093, "y": 0.058364953845739365, "z": 0.045372191816568375}, {"x": 0.03356906399130821, "y": 0.03556361049413681, "z": 0.042895350605249405}, {"x": 0.03914152830839157, "y": 0.0026700887829065323, "z": 0.020952267572283745}, {"x": 0.03330066427588463, "y": -0.01824670098721981, "z": 0.010145455598831177}, {"x": 0.030093420296907425, "y": -0.000993998721241951, "z": -0.0018137011211365461}, {"x": 0.02457265928387642, "y": -0.03912707418203354, "z": -0.0016395486891269684}, {"x": 0.02150273323059082, "y": -0.06382051110267639, "z": 0.009289647452533245}, {"x": 0.01214231364428997, "y": -0.08512356132268906, "z": 0.017784414812922478}, {"x": 0.005801011808216572, "y": -0.0028980802744627, "z": -0.005985349416732788}, {"x": 0.0003406815230846405, "y": -0.030856426805257797, "z": 0.012780345976352692}, {"x": -0.005784429144114256, "y": -0.02280886098742485, "z": 0.04325459524989128}, {"x": 0.0012026429176330566, "y": -0.013677178882062435, "z": 0.06623594462871552}, {"x": -0.019524484872817993, "y": -0.001711506862193346, "z": 0.00035327664227224886}, {"x": -0.023319417610764503, "y": -0.019739285111427307, "z": 0.020922498777508736}, {"x": -0.02386336401104927, "y": -0.012552699074149132, "z": 0.05009210854768753}, {"x": -0.016844049096107483, "y": -0.006063293199986219, "z": 0.06669800728559494}, {"x": -0.044988397508859634, "y": 0.00909543689340353, "z": 0.010318190790712833}, {"x": -0.04216059297323227, "y": -0.0072448235005140305, "z": 0.02235202118754387}, {"x": -0.03966321051120758, "y": -0.004537554457783699, "z": 0.04560880362987518}, {"x": -0.032716237008571625, "y": 0.006659835577011108, "z": 0.05441493168473244}, {"x": 0.007841002196073532, "y": 0.0795147642493248, "z": 0.061070967465639114}, {"x": -0.02135319821536541, "y": 0.05362207069993019, "z": 0.05275719612836838}, {"x": -0.026260126382112503, "y": 0.02384674735367298, "z": 0.049948886036872864}, {"x": -0.018183020874857903, "y": -0.00744942482560873, "z": 0.03681395202875137}, {"x": -0.0008116774260997772, "y": -0.025317322462797165, "z": 0.021256152540445328}, {"x": -0.034381967037916183, "y": -0.0031844666227698326, "z": 0.0006917985738255084}, {"x": -0.030642010271549225, "y": -0.0367606021463871, "z": -0.0009425847674719989}, {"x": -0.030629025772213936, "y": -0.06148650124669075, "z": 0.010539151728153229}, {"x": -0.03436306118965149, "y": -0.0867956355214119, "z": 0.02155536599457264}, {"x": -0.006138574797660112, "y": -0.002512719016522169, "z": -0.004360897000879049}, {"x": 0.001885371282696724, "y": -0.03251385688781738, "z": 0.009186574257910252}, {"x": -0.0018147595692425966, "y": -0.0224640890955925, "z": 0.03805748373270035}, {"x": -0.006869911681860685, "y": -0.009073540568351746, "z": 0.06590153276920319}, {"x": 0.020485902205109596, "y": 0.0012491452507674694, "z": -0.0010516822803765535}, {"x": 0.021339792758226395, "y": -0.021708371117711067, "z": 0.017049111425876617}, {"x": 0.019110234454274178, "y": -0.013407106511294842, "z": 0.04259761795401573}, {"x": 0.01811881549656391, "y": -0.0015506611671298742, "z": 0.05744199454784393}, {"x": 0.03950122371315956, "y": 0.01147742010653019, "z": 0.01371702365577221}, {"x": 0.038067616522312164, "y": -0.00809299573302269, "z": 0.026071274653077126}, {"x": 0.03350671008229256, "y": -0.004251719918102026, "z": 0.049487173557281494}, {"x": 0.033441126346588135, "y": 0.004922820255160332, "z": 0.0563519187271595}], "developing": [{"x": 0.06781589984893799, "y": -0.001491678413003683, "z": 0.028635358437895775}, {"x": 0.03765537217259407, "y": -0.005275392904877663, "z": 0.03839108347892761}, {"x": 0.012904493138194084, "y": -0.0020106451120227575, "z": 0.04899793490767479}, {"x": -0.003151684533804655, "y": 0.0019002738408744335, "z": 0.054227788001298904}, {"x": -0.022540099918842316, "y": 0.0039220163598656654, "z": 0.052128665149211884}, {"x": -0.004180703312158585, "y": 6.532555562444031e-05, "z": 0.01630689576268196}, {"x": -0.022565031424164772, "y": -0.002773580141365528, "z": 0.01202401053160429}, {"x": -0.0445692203938961, "y": -0.00028011633548885584, "z": 0.00915965624153614}, {"x": -0.06920524686574936, "y": 0.0041878484189510345, "z": -0.006389438174664974}, {"x": -0.0024139455053955317, "y": 0.0014129866613075137, "z": 0.0033639806788414717}, {"x": -0.02452649362385273, "y": -0.0032488061115145683, "z": -0.007298468146473169}, {"x": -0.051798924803733826, "y": 0.00634616706520319, "z": -0.02101753279566765}, {"x": -0.08285866677761078, "y": 0.008354966528713703, "z": -0.02546379156410694}, {"x": 0.001189523027278483, "y": 0.0010032837744802237, "z": -0.011695788241922855}, {"x": -0.016209516674280167, "y": 0.0005288117099553347, "z": -0.020457515493035316}, {"x": -0.04005999490618706, "y": 0.007027389481663704, "z": -0.032729241997003555}, {"x": -0.0672084391117096, "y": 0.009189393371343613, "z": -0.03944197669625282}, {"x": 0.013263730332255363, "y": 0.005570338107645512, "z": -0.018723204731941223}, {"x": 0.0017444579862058163, "y": 0.005478876642882824, "z": -0.02751167304813862}, {"x": -0.01690804213285446, "y": 0.011164267547428608, "z": -0.037587545812129974}, {"x": -0.035552091896533966, "y": 0.012522253207862377, "z": -0.04637492075562477}, {"x": -0.004134019836783409, "y": 0.03277020901441574, "z": 0.0870174840092659}, {"x": 0.006296408828347921, "y": 0.002820045920088887, "z": 0.06391620635986328}, {"x": 0.017969809472560883, "y": -0.027666376903653145, "z": 0.05379925295710564}, {"x": 0.01816808432340622, "y": -0.061115190386772156, "z": 0.03515556827187538}, {"x": 0.006497402675449848, "y": -0.0862206369638443, "z": 0.014993242919445038}, {"x": 0.001609311206266284, "y": -0.023580314591526985, "z": 0.0034176665358245373}, {"x": 0.012508188374340534, "y": -0.030430030077695847, "z": -0.021743044257164}, {"x": 0.01881539076566696, "y": -0.0423634871840477, "z": -0.04760872945189476}, {"x": 0.021199433133006096, "y": -0.04734696447849274, "z": -0.08638627082109451}, {"x": -0.0023783938959240913, "y": -0.003864903934299946, "z": 0.002401199657469988}, {"x": -0.009630218148231506, "y": -0.020078282803297043, "z": -0.030683651566505432}, {"x": -0.017358236014842987, "y": -0.028635673224925995, "z": -0.0568523146212101}, {"x": -0.019274098798632622, "y": -0.042422931641340256, "z": -0.07500254362821579}, {"x": -0.0011946310987696052, "y": 0.013621079735457897, "z": -0.003939482383430004}, {"x": -0.009289901703596115, "y": 0.002772048581391573, "z": -0.024126725271344185}, {"x": -0.014446364715695381, "y": -0.0038833513390272856, "z": -0.03914172574877739}, {"x": -0.020375603809952736, "y": -0.014739900827407837, "z": -0.05768171697854996}, {"x": -0.005065118428319693, "y": 0.03840365260839462, "z": 0.00337808090262115}, {"x": -0.011643119156360626, "y": 0.03213292732834816, "z": -0.008650667034089565}, {"x": -0.010102955624461174, "y": 0.026838447898626328, "z": -0.024668771773576736}, {"x": -0.015526807866990566, "y": 0.0228667464107275, "z": -0.039513468742370605}], "do": [{"x": 0.0036847000010311604, "y": 0.048936981707811356, "z": 0.0912337675690651}, {"x": 0.029292277991771698, "y": 0.019146205857396126, "z": 0.0626954436302185}, {"x": 0.03762785717844963, "y": -0.005095046013593674, "z": 0.04366724565625191}, {"x": 0.029933463782072067, "y": -0.02864963561296463, "z": 0.008921366184949875}, {"x": 0.002977196592837572, "y": -0.0373259112238884, "z": -0.0181026179343462}, {"x": 0.02432095818221569, "y": -0.007035763468593359, "z": -0.005665422882884741}, {"x": 0.01653045415878296, "y": -0.037093792110681534, "z": -0.010151010006666183}, {"x": 0.009716937318444252, "y": -0.054466746747493744, "z": 0.014148921705782413}, {"x": -0.00016376283019781113, "y": -0.06581098586320877, "z": 0.037968795746564865}, {"x": 0.002492044121026993, "y": 0.0012797805247828364, "z": -0.004252299666404724}, {"x": -0.004716320428997278, "y": -0.04077085480093956, "z": -0.0018590986728668213}, {"x": -0.0027462143916636705, "y": -0.04108595475554466, "z": 0.02690940909087658}, {"x": 0.0018921112641692162, "y": -0.030289920046925545, "z": 0.05349695309996605}, {"x": -0.016766954213380814, "y": 0.002838692395016551, "z": 0.002206475241109729}, {"x": -0.02257399633526802, "y": -0.03414369001984596, "z": 0.006497710943222046}, {"x": -0.015709664672613144, "y": -0.03050360456109047, "z": 0.0358336940407753}, {"x": -0.009995506145060062, "y": -0.02194869890809059, "z": 0.06018146499991417}, {"x": -0.03672049194574356, "y": 0.01007983647286892, "z": 0.018323155120015144}, {"x": -0.036948271095752716, "y": -0.017508145421743393, "z": 0.02177504636347294}, {"x": -0.028240270912647247, "y": -0.022493578493595123, "z": 0.04836339130997658}, {"x": -0.02410435490310192, "y": -0.010745322331786156, "z": 0.06885424256324768}], "don't": [{"x": 0.06044439971446991, "y": 0.06179644912481308, "z": 0.006469564512372017}, {"x": 0.046557217836380005, "y": 0.04013712331652641, "z": 0.025342797860503197}, {"x": 0.030318625271320343, "y": 0.022251253947615623, "z": 0.04186878353357315}, {"x": 0.01239749789237976, "y": 0.004573092330247164, "z": 0.060450777411460876}, {"x": 0.00225631520152092, "y": -0.012285862118005753, "z": 0.07329706102609634}, {"x": 0.0044183554127812386, "y": -0.009193448349833488, "z": 0.020619861781597137}, {"x": -0.015904124826192856, "y": -0.026884188875555992, "z": 0.019751908257603645}, {"x": -0.03548169508576393, "y": -0.040229201316833496, "z": 0.01722712442278862}, {"x": -0.061108797788619995, "y": -0.05471331998705864, "z": -0.0002420734235784039}, {"x": -0.001768138143233955, "y": -0.004308232106268406, "z": 0.005726595874875784}, {"x": -0.026474788784980774, "y": -0.02587902545928955, "z": -0.002487639896571636}, {"x": -0.054416634142398834, "y": -0.03817310929298401, "z": -0.011853371746838093}, {"x": -0.08131368458271027, "y": -0.05825193598866463, "z": -0.013692404143512249}, {"x": -0.004580134060233831, "y": 0.006183335557579994, "z": -0.014623727649450302}, {"x": -0.025356093421578407, "y": -0.01274908147752285, "z": -0.020292816683650017}, {"x": -0.05169055983424187, "y": -0.029283665120601654, "z": -0.03039553016424179}, {"x": -0.07404417544603348, "y": -0.0466875396668911, "z": -0.02873879298567772}, {"x": -0.002752067521214485, "y": 0.023874279111623764, "z": -0.02514098957180977}, {"x": -0.015777969732880592, "y": 0.010301639325916767, "z": -0.03258823603391647}, {"x": -0.0337257906794548, "y": -0.00454655010253191, "z": -0.04135233908891678}, {"x": -0.0509212389588356, "y": -0.019773252308368683, "z": -0.04070424288511276}, {"x": -0.060757189989089966, "y": 0.04287843406200409, "z": 0.041922301054000854}, {"x": -0.03532882034778595, "y": 0.022297265008091927, "z": 0.04495752975344658}, {"x": -0.007261435501277447, "y": 0.010507555678486824, "z": 0.052478522062301636}, {"x": 0.01454535685479641, "y": -0.0031207846477627754, "z": 0.0500815287232399}, {"x": 0.034109778702259064, "y": -0.013615651987493038, "z": 0.04461396113038063}, {"x": -0.0008795228786766529, "y": -0.012400755658745766, "z": 0.016662759706377983}, {"x": 0.027707017958164215, "y": -0.01572413556277752, "z": 0.011860690079629421}, {"x": 0.052194882184267044, "y": -0.022445589303970337, "z": 0.011102357879281044}, {"x": 0.07531727850437164, "y": -0.029630370438098907, "z": 0.001616660156287253}, {"x": -4.58096619695425e-05, "y": -0.004572218284010887, "z": 0.002189675346016884}, {"x": 0.03127816691994667, "y": -0.013073904439806938, "z": -0.007017567288130522}, {"x": 0.05903002619743347, "y": -0.02501351200044155, "z": -0.012996780686080456}, {"x": 0.0892319306731224, "y": -0.03948099911212921, "z": -0.0034493664279580116}, {"x": 0.0005246461369097233, "y": 0.0057636527344584465, "z": -0.011392748914659023}, {"x": 0.02904687635600567, "y": -0.0019260616973042488, "z": -0.021819479763507843}, {"x": 0.05598537623882294, "y": -0.010953947901725769, "z": -0.030104773119091988}, {"x": 0.08137408643960953, "y": -0.022918617352843285, "z": -0.02821432426571846}, {"x": -0.007387105841189623, "y": 0.021143082529306412, "z": -0.017153335735201836}, {"x": 0.014556106179952621, "y": 0.016436662524938583, "z": -0.022677600383758545}, {"x": 0.0365096777677536, "y": 0.006842948496341705, "z": -0.03198060020804405}, {"x": 0.058311156928539276, "y": -0.0037201307713985443, "z": -0.03235052525997162}], "ethics": [{"x": 0.02812957763671875, "y": 0.08973235636949539, "z": -0.02296190895140171}, {"x": 0.0008806958794593811, "y": 0.07583457231521606, "z": -0.0015812672208994627}, {"x": -0.02170766331255436, "y": 0.057012178003787994, "z": 0.022276200354099274}, {"x": -0.04248576983809471, "y": 0.038410481065511703, "z": 0.05046131834387779}, {"x": -0.052835412323474884, "y": 0.016725752502679825, "z": 0.07725327461957932}, {"x": -0.011090516112744808, "y": 0.007588999345898628, "z": 0.030303532257676125}, {"x": -0.027212155982851982, "y": -0.016249313950538635, "z": 0.02652107924222946}, {"x": -0.044712889939546585, "y": -0.010387346148490906, "z": 0.01899670623242855}, {"x": -0.04578525945544243, "y": 0.014935371465981007, "z": 0.005927760154008865}, {"x": -0.00032716221176087856, "y": -0.0025105022359639406, "z": 0.009463753551244736}, {"x": -0.02739814668893814, "y": -0.027656741440296173, "z": 0.002477278234437108}, {"x": -0.047306641936302185, "y": -0.009487397968769073, "z": -0.010754955001175404}, {"x": -0.04934423416852951, "y": 0.014802969992160797, "z": -0.01568608544766903}, {"x": 0.005902922246605158, "y": -0.005279429256916046, "z": -0.019435374066233635}, {"x": -0.01759524643421173, "y": -0.023309189826250076, "z": -0.023763244971632957}, {"x": -0.03738369420170784, "y": -0.007038397714495659, "z": -0.03074651025235653}, {"x": -0.043324120342731476, "y": 0.01848037913441658, "z": -0.03358191251754761}, {"x": 0.009708669036626816, "y": 0.00503088254481554, "z": -0.042113542556762695}, {"x": -0.005479483865201473, "y": -0.0104899350553751, "z": -0.04348474368453026}, {"x": -0.029568953439593315, "y": -0.0033227726817131042, "z": -0.0444546714425087}, {"x": -0.03462492302060127, "y": 0.01880887895822525, "z": -0.04426555335521698}], "first": [{"x": 0.05226152017712593, "y": 0.038976144045591354, "z": 0.056015368551015854}, {"x": 0.038860075175762177, "y": 0.012213152833282948, "z": 0.05211738497018814}, {"x": 0.01687660440802574, "y": -0.0072701554745435715, "z": 0.04644313454627991}, {"x": -0.002640328835695982, "y": -0.011285873129963875, "z": 0.03197731450200081}, {"x": -0.020681433379650116, "y": -0.009093036875128746, "z": 0.015483086928725243}, {"x": 0.002528038341552019, "y": -0.012544151395559311, "z": 0.0030991961248219013}, {"x": -0.019180065020918846, "y": -0.020700018852949142, "z": 0.004057291429489851}, {"x": -0.04433320462703705, "y": -0.02371125854551792, "z": 0.016634419560432434}, {"x": -0.07291729748249054, "y": -0.02310839109122753, "z": 0.022168509662151337}, {"x": -0.0010059394408017397, "y": -0.0019996336195617914, "z": -0.002430417574942112}, {"x": -0.01914578676223755, "y": -0.005276401061564684, "z": 0.008383012376725674}, {"x": -0.01689811237156391, "y": -0.0016022971831262112, "z": 0.03786148503422737}, {"x": -0.0063471547327935696, "y": -0.0024757045321166515, "z": 0.05914126709103584}, {"x": -0.001986320363357663, "y": 0.008920041844248772, "z": -0.0023655379191040993}, {"x": -0.018489081412553787, "y": 0.00669863261282444, "z": 0.012809183448553085}, {"x": -0.014260632917284966, "y": 0.010320551693439484, "z": 0.038708608597517014}, {"x": -0.005490856245160103, "y": 0.011701641604304314, "z": 0.057183846831321716}, {"x": -0.0022190269082784653, "y": 0.026719700545072556, "z": 0.006884254049509764}, {"x": -0.014528158120810986, "y": 0.022123733535408974, "z": 0.017581943422555923}, {"x": -0.01089845597743988, "y": 0.02308977022767067, "z": 0.039470523595809937}, {"x": -0.004737211391329765, "y": 0.025761257857084274, "z": 0.05022735148668289}, {"x": -0.03231430426239967, "y": 0.049502626061439514, "z": 0.07839089632034302}, {"x": -0.00942090805619955, "y": 0.01839425042271614, "z": 0.06567145138978958}, {"x": 0.004207341466099024, "y": -0.007891595363616943, "z": 0.06136534735560417}, {"x": 0.009568823501467705, "y": -0.03434720262885094, "z": 0.03674338757991791}, {"x": 0.005080571398139, "y": -0.06387700140476227, "z": 0.013755958527326584}, {"x": 0.0005279532633721828, "y": -0.021947946399450302, "z": 0.009465609677135944}, {"x": 0.02624005824327469, "y": -0.010917454957962036, "z": 0.004528150428086519}, {"x": 0.02938849851489067, "y": -0.0068417806178331375, "z": 0.03187650442123413}, {"x": 0.012099811807274818, "y": -0.00612211786210537, "z": 0.052184175699949265}, {"x": -0.00277480436488986, "y": -0.006039038300514221, "z": -0.00033662287751212716}, {"x": 0.026763886213302612, "y": 0.0004725586622953415, "z": -0.007427824195474386}, {"x": 0.024569720029830933, "y": 0.009484278969466686, "z": 0.016515888273715973}, {"x": 0.011733516119420528, "y": 0.005316735245287418, "z": 0.0381254144012928}, {"x": -0.000347222201526165, "y": 0.013435279950499535, "z": -0.006152004469186068}, {"x": 0.02581474743783474, "y": 0.019092857837677002, "z": -0.008451144210994244}, {"x": 0.023975467309355736, "y": 0.023602573201060295, "z": 0.01231809426099062}, {"x": 0.012949295341968536, "y": 0.02050354890525341, "z": 0.03782391920685768}, {"x": -0.003622579388320446, "y": 0.03125867247581482, "z": -0.0020286173094063997}, {"x": 0.01937260664999485, "y": 0.03498442843556404, "z": -0.0012109668459743261}, {"x": 0.021057359874248505, "y": 0.033716700971126556, "z": 0.018377741798758507}, {"x": 0.008931182324886322, "y": 0.03223905712366104, "z": 0.03089924156665802}], "give": [{"x": -0.017491323873400688, "y": 0.02790847048163414, "z": 0.09946907311677933}, {"x": 0.0010033507132902741, "y": 0.005265502259135246, "z": 0.0794844925403595}, {"x": 0.004499470815062523, "y": -0.014830144122242928, "z": 0.052576273679733276}, {"x": -0.004174698144197464, "y": -0.028378894552588463, "z": 0.007586315274238586}, {"x": -0.017928756773471832, "y": -0.04685690626502037, "z": -0.023215051740407944}, {"x": 0.01815200038254261, "y": -0.00796323362737894, "z": -0.0019426579819992185}, {"x": 0.006393830291926861, "y": -0.035718996077775955, "z": -0.009144979529082775}, {"x": -0.00932230893522501, "y": -0.05638755485415459, "z": 0.008875316940248013}, {"x": -0.02011037990450859, "y": -0.06803890317678452, "z": 0.031010033562779427}, {"x": 0.00281919096596539, "y": -0.0021716977935284376, "z": -0.004602457396686077}, {"x": -0.007481216453015804, "y": -0.029514452442526817, "z": -0.011849740520119667}, {"x": -0.026374634355306625, "y": -0.05389769375324249, "z": 0.0060858046635985374}, {"x": -0.03971110284328461, "y": -0.07198813557624817, "z": 0.03277192637324333}, {"x": -0.011195886880159378, "y": 0.005704614333808422, "z": -0.0020333712454885244}, {"x": -0.02105116844177246, "y": -0.022905398160219193, "z": -0.0024117787834256887}, {"x": -0.039579953998327255, "y": -0.045445431023836136, "z": 0.011634417809545994}, {"x": -0.046255651861429214, "y": -0.06469903141260147, "z": 0.033358607441186905}, {"x": -0.030974505469202995, "y": 0.012332694604992867, "z": 0.014619091525673866}, {"x": -0.03846099600195885, "y": -0.01225659716874361, "z": 0.016847306862473488}, {"x": -0.04656101390719414, "y": -0.035094328224658966, "z": 0.024881916120648384}, {"x": -0.04844013974070549, "y": -0.046327125281095505, "z": 0.04057185724377632}, {"x": 0.010856671258807182, "y": 0.014353564940392971, "z": 0.08067793399095535}, {"x": -0.0032819132320582867, "y": -0.008310765959322453, "z": 0.0656673014163971}, {"x": -0.0033493945375084877, "y": -0.0206681489944458, "z": 0.04478741064667702}, {"x": 0.005151237361133099, "y": -0.030255433171987534, "z": 0.01831343024969101}, {"x": 0.017142487689852715, "y": -0.044835105538368225, "z": -0.011613696813583374}, {"x": -0.010366488248109818, "y": -0.0018740848172456026, "z": 0.0008210533414967358}, {"x": -0.004872134421020746, "y": -0.018581097945570946, "z": -0.007153700105845928}, {"x": 0.007890614680945873, "y": -0.0424676239490509, "z": 0.004301709588617086}, {"x": 0.014390881173312664, "y": -0.05612634867429733, "z": 0.012961345724761486}, {"x": -0.003246838692575693, "y": 0.004690662492066622, "z": -0.0007146928692236543}, {"x": -0.0023062615655362606, "y": -0.013392413035035133, "z": -0.011316162534058094}, {"x": 0.006067256443202496, "y": -0.04153056442737579, "z": -0.0022867827210575342}, {"x": 0.010990628972649574, "y": -0.05508944392204285, "z": 0.018057184293866158}, {"x": 0.003761972999200225, "y": 0.003302517579868436, "z": -0.0029337103478610516}, {"x": 0.009545322507619858, "y": -0.007413829676806927, "z": -0.00980528537184}, {"x": 0.02332308515906334, "y": -0.030968738719820976, "z": -0.0013929801061749458}, {"x": 0.029124412685632706, "y": -0.05681070312857628, "z": 0.014780905097723007}, {"x": 0.016909068450331688, "y": 0.006834353320300579, "z": 0.009459028951823711}, {"x": 0.01673143357038498, "y": -0.009002230130136013, "z": 0.004236441105604172}, {"x": 0.025032348930835724, "y": -0.02326250821352005, "z": 0.009568430483341217}, {"x": 0.029594996944069862, "y": -0.03819163888692856, "z": 0.026587624102830887}], "harm": [{"x": 0.03011392056941986, "y": 0.063794806599617, "z": 0.06752754002809525}, {"x": 0.046636540442705154, "y": 0.03206063061952591, "z": 0.04096214845776558}, {"x": 0.05007356405258179, "y": 0.002973658964037895, "z": 0.026230283081531525}, {"x": 0.03923718258738518, "y": -0.025315195322036743, "z": 0.005467881914228201}, {"x": 0.016847504302859306, "y": -0.03672982379794121, "z": -0.012678270228207111}, {"x": 0.021416615694761276, "y": -0.011980406939983368, "z": -0.010223128832876682}, {"x": 0.004972012713551521, "y": -0.03724529966711998, "z": -0.010997730307281017}, {"x": -0.006870627403259277, "y": -0.05594439059495926, "z": -0.000726204423699528}, {"x": -0.023437514901161194, "y": -0.07361176609992981, "z": 0.009636186063289642}, {"x": 0.0005493229255080223, "y": -0.001983076799660921, "z": -0.004633807111531496}, {"x": -0.007442892994731665, "y": -0.02991504967212677, "z": 0.005001230165362358}, {"x": -0.000976691022515297, "y": -0.030490808188915253, "z": 0.028665557503700256}, {"x": 0.001744566485285759, "y": -0.020919928327202797, "z": 0.04592444375157356}, {"x": -0.015801703557372093, "y": 0.007989432662725449, "z": 0.006099645048379898}, {"x": -0.018457788974046707, "y": -0.014665038324892521, "z": 0.015685560181736946}, {"x": -0.009974517859518528, "y": -0.014777664095163345, "z": 0.041648369282484055}, {"x": -0.006985144689679146, "y": -0.009577074088156223, "z": 0.05794341489672661}, {"x": -0.024805789813399315, "y": 0.021173909306526184, "z": 0.02507118694484234}, {"x": -0.02345474436879158, "y": -0.0007283119484782219, "z": 0.029222460463643074}, {"x": -0.01436933595687151, "y": -0.005392503459006548, "z": 0.047677841037511826}, {"x": -0.014959792606532574, "y": 0.0013464274816215038, "z": 0.058232784271240234}, {"x": -0.0377042219042778, "y": 0.06966608017683029, "z": 0.06762678921222687}, {"x": -0.025902122259140015, "y": 0.03058789111673832, "z": 0.06337028741836548}, {"x": -0.013973018154501915, "y": 0.002730202628299594, "z": 0.05592209845781326}, {"x": 0.002334455493837595, "y": -0.019726727157831192, "z": 0.033754702657461166}, {"x": 0.01063565630465746, "y": -0.03478018939495087, "z": 0.01202027965337038}, {"x": -0.009466792456805706, "y": -0.022664686664938927, "z": 0.013423317112028599}, {"x": 0.025942817330360413, "y": -0.02140062302350998, "z": 0.008476967923343182}, {"x": 0.0513186976313591, "y": -0.021180646494030952, "z": 0.02583150565624237}, {"x": 0.07129933685064316, "y": -0.017333200201392174, "z": 0.04579545184969902}, {"x": -0.0029928639996796846, "y": -0.005587427876889706, "z": 0.0010929257841780782}, {"x": 0.0347396619617939, "y": -0.009975191205739975, "z": -0.00011088512110291049}, {"x": 0.031066864728927612, "y": 0.0016987482085824013, "z": 0.028137119486927986}, {"x": 0.012215498834848404, "y": 0.004566144198179245, "z": 0.055321626365184784}, {"x": 0.005228634923696518, "y": 0.01202821359038353, "z": -0.010317636653780937}, {"x": 0.03661179170012474, "y": 0.011856049299240112, "z": -0.0041216411627829075}, {"x": 0.03290226310491562, "y": 0.02079172432422638, "z": 0.02236255072057247}, {"x": 0.01713480055332184, "y": 0.025451403111219406, "z": 0.04359438642859459}, {"x": 0.006654510274529457, "y": 0.038172025233507156, "z": -0.005907661747187376}, {"x": 0.03267747163772583, "y": 0.03246200084686279, "z": 4.327411807025783e-05}, {"x": 0.03175417706370354, "y": 0.034126974642276764, "z": 0.02451580949127674}, {"x": 0.016434965655207634, "y": 0.03608762472867966, "z": 0.041456032544374466}], "hello": [{"x": -0.014788472093641758, "y": 0.0934787467122078, "z": -0.014980664476752281}, {"x": 0.018728476017713547, "y": 0.07220883667469025, "z": -0.019275004044175148}, {"x": 0.04440964013338089, "y": 0.048091255128383636, "z": -0.020331822335720062}, {"x": 0.06617522239685059, "y": 0.020417828112840652, "z": -0.014352790080010891}, {"x": 0.0834624320268631, "y": -0.0032817162573337555, "z": -0.0036927841138094664}, {"x": 0.027043206617236137, "y": 0.00045661209151148796, "z": 0.00525675481185317}, {"x": 0.03507252037525177, "y": -0.027935441583395004, "z": -0.0006067022914066911}, {"x": 0.04204626753926277, "y": -0.048360757529735565, "z": -0.0062934281304478645}, {"x": 0.0445711724460125, "y": -0.06717827916145325, "z": -0.03351951390504837}, {"x": 0.002223086077719927, "y": -0.004265342373400927, "z": 0.007637219037860632}, {"x": 0.008727453649044037, "y": -0.04340311512351036, "z": -0.0009100193856284022}, {"x": 0.010978149250149727, "y": -0.06654486805200577, "z": -0.016986075788736343}, {"x": 0.016183743253350258, "y": -0.08973869681358337, "z": -0.03674669191241264}, {"x": -0.01932639814913273, "y": -0.002785581164062023, "z": -0.0034805459436029196}, {"x": -0.014450606890022755, "y": -0.034685589373111725, "z": -0.013004535809159279}, {"x": -0.010434256866574287, "y": -0.05587223172187805, "z": -0.030076801776885986}, {"x": -0.003989579156041145, "y": -0.07677187025547028, "z": -0.04432779923081398}, {"x": -0.03803753852844238, "y": 0.00987113919109106, "z": -0.013224310241639614}, {"x": -0.03703709691762924, "y": -0.013331723399460316, "z": -0.017885921522974968}, {"x": -0.034831080585718155, "y": -0.03266749531030655, "z": -0.02827812172472477}, {"x": -0.032017357647418976, "y": -0.04960416629910469, "z": -0.038841526955366135}], "hurt": [{"x": 0.03011392056941986, "y": 0.063794806599617, "z": 0.06752754002809525}, {"x": 0.046636540442705154, "y": 0.03206063061952591, "z": 0.04096214845776558}, {"x": 0.05007356405258179, "y": 0.002973658964037895, "z": 0.026230283081531525}, {"x": 0.03923718258738518, "y": -0.025315195322036743, "z": 0.005467881914228201}, {"x": 0.016847504302859306, "y": -0.03672982379794121, "z": -0.012678270228207111}, {"x": 0.021416615694761276, "y": -0.011980406939983368, "z": -0.010223128832876682}, {"x": 0.004972012713551521, "y": -0.03724529966711998, "z": -0.010997730307281017}, {"x": -0.006870627403259277, "y": -0.05594439059495926, "z": -0.000726204423699528}, {"x": -0.023437514901161194, "y": -0.07361176609992981, "z": 0.009636186063289642}, {"x": 0.0005493229255080223, "y": -0.001983076799660921, "z": -0.004633807111531496}, {"x": -0.007442892994731665, "y": -0.02991504967212677, "z": 0.005001230165362358}, {"x": -0.000976691022515297, "y": -0.030490808188915253, "z": 0.028665557503700256}, {"x": 0.001744566485285759, "y": -0.020919928327202797, "z": 0.04592444375157356}, {"x": -0.015801703557372093, "y": 0.007989432662725449, "z": 0.006099645048379898}, {"x": -0.018457788974046707, "y": -0.014665038324892521, "z": 0.015685560181736946}, {"x": -0.009974517859518528, "y": -0.014777664095163345, "z": 0.041648369282484055}, {"x": -0.006985144689679146, "y": -0.009577074088156223, "z": 0.05794341489672661}, {"x": -0.024805789813399315, "y": 0.021173909306526184, "z": 0.02507118694484234}, {"x": -0.02345474436879158, "y": -0.0007283119484782219, "z": 0.029222460463643074}, {"x": -0.01436933595687151, "y": -0.005392503459006548, "z": 0.047677841037511826}, {"x": -0.014959792606532574, "y": 0.0013464274816215038, "z": 0.058232784271240234}, {"x": -0.0377042219042778, "y": 0.06966608017683029, "z": 0.06762678921222687}, {"x": -0.025902122259140015, "y": 0.03058789111673832, "z": 0.06337028741836548}, {"x": -0.013973018154501915, "y": 0.002730202628299594, "z": 0.05592209845781326}, {"x": 0.002334455493837595, "y": -0.019726727157831192, "z": 0.033754702657461166}, {"x": 0.01063565630465746, "y": -0.03478018939495087, "z": 0.01202027965337038}, {"x": -0.009466792456805706, "y": -0.022664686664938927, "z": 0.013423317112028599}, {"x": 0.025942817330360413, "y": -0.02140062302350998, "z": 0.008476967923343182}, {"x": 0.0513186976313591, "y": -0.021180646494030952, "z": 0.02583150565624237}, {"x": 0.07129933685064316, "y": -0.017333200201392174, "z": 0.04579545184969902}, {"x": -0.0029928639996796846, "y": -0.005587427876889706, "z": 0.0010929257841780782}, {"x": 0.0347396619617939, "y": -0.009975191205739975, "z": -0.00011088512110291049}, {"x": 0.031066864728927612, "y": 0.0016987482085824013, "z": 0.028137119486927986}, {"x": 0.012215498834848404, "y": 0.004566144198179245, "z": 0.055321626365184784}, {"x": 0.005228634923696518, "y": 0.01202821359038353, "z": -0.010317636653780937}, {"x": 0.03661179170012474, "y": 0.011856049299240112, "z": -0.0041216411627829075}, {"x": 0.03290226310491562, "y": 0.02079172432422638, "z": 0.02236255072057247}, {"x": 0.01713480055332184, "y": 0.025451403111219406, "z": 0.04359438642859459}, {"x": 0.006654510274529457, "y": 0.038172025233507156, "z": -0.005907661747187376}, {"x": 0.03267747163772583, "y": 0.03246200084686279, "z": 4.327411807025783e-05}, {"x": 0.03175417706370354, "y": 0.034126974642276764, "z": 0.02451580949127674}, {"x": 0.016434965655207634, "y": 0.03608762472867966, "z": 0.041456032544374466}], "i": [{"x": 0.0203072652220726, "y": 0.08307036757469177, "z": 0.024585209786891937}, {"x": 0.047317489981651306, "y": 0.05125594884157181, "z": 0.01884729601442814}, {"x": 0.05723215639591217, "y": 0.018831392750144005, "z": 0.022174136713147163}, {"x": 0.05150156468153, "y": -0.017118604853749275, "z": 0.02244444377720356}, {"x": 0.024181058630347252, "y": -0.037511736154556274, "z": 0.018394282087683678}, {"x": 0.030081355944275856, "y": -0.013180043548345566, "z": -0.0032842562068253756}, {"x": 0.021837515756487846, "y": -0.0343170240521431, "z": 0.009182218462228775}, {"x": 0.02176075428724289, "y": -0.032446958124637604, "z": 0.03385300934314728}, {"x": 0.023083996027708054, "y": -0.019073879346251488, "z": 0.051178786903619766}, {"x": 0.0015233432641252875, "y": -0.005315226968377829, "z": -0.0038484453689306974}, {"x": -0.001072032144293189, "y": -0.028665853664278984, "z": 0.021982112899422646}, {"x": 0.004807251039892435, "y": -0.018742119893431664, "z": 0.046435073018074036}, {"x": 0.007863699458539486, "y": -0.010728647001087666, "z": 0.060620713979005814}, {"x": -0.02242416888475418, "y": 0.007614335045218468, "z": 0.0013445413205772638}, {"x": -0.018236007541418076, "y": -0.009766955859959126, "z": 0.030330820009112358}, {"x": -0.011166615411639214, "y": -0.00044427020475268364, "z": 0.056669820100069046}, {"x": -0.005681156180799007, "y": 0.00525279063731432, "z": 0.0672561451792717}, {"x": -0.036190345883369446, "y": 0.02734535187482834, "z": 0.016285285353660583}, {"x": -0.032408349215984344, "y": 0.008783221244812012, "z": 0.03195073828101158}, {"x": -0.025648850947618484, "y": 0.01138293743133545, "z": 0.05295836552977562}, {"x": -0.021669812500476837, "y": 0.02268843539059162, "z": 0.0588042177259922}], "if": [{"x": 0.021575503051280975, "y": 0.08649768680334091, "z": 0.02058846317231655}, {"x": -0.006962905637919903, "y": 0.0739256888628006, "z": 0.0007235889206640422}, {"x": -0.026209324598312378, "y": 0.055273521691560745, "z": -0.011430845595896244}, {"x": -0.030059944838285446, "y": 0.028942134231328964, "z": -0.03213454782962799}, {"x": -0.0038631989154964685, "y": 0.013248570263385773, "z": -0.039057690650224686}, {"x": -0.02582557499408722, "y": 0.011191785335540771, "z": 8.857356442604214e-05}, {"x": -0.030753906816244125, "y": 0.00466481177136302, "z": -0.033985208719968796}, {"x": -0.023434476926922798, "y": 0.01826292648911476, "z": -0.051921918988227844}, {"x": -0.01779201440513134, "y": 0.03700360655784607, "z": -0.06344254314899445}, {"x": -0.005768436007201672, "y": -0.0031984071247279644, "z": 0.0047693317756056786}, {"x": -0.01449474599212408, "y": -0.035746585577726364, "z": -0.006741942372173071}, {"x": -0.027363460510969162, "y": -0.057034630328416824, "z": -0.024951109662652016}, {"x": -0.04322335124015808, "y": -0.08417708426713943, "z": -0.0402151495218277}, {"x": 0.016875457018613815, "y": -0.009236253798007965, "z": -0.00043266956345178187}, {"x": 0.01842818222939968, "y": -0.0392472967505455, "z": -0.003334720153361559}, {"x": 0.0167093388736248, "y": -0.06855862587690353, "z": -0.007837798446416855}, {"x": 0.0114796943962574, "y": -0.09496886283159256, "z": -0.011841229163110256}, {"x": 0.03168210759758949, "y": 0.0016315560787916183, "z": -0.003410616423934698}, {"x": 0.04612579569220543, "y": -0.0236140638589859, "z": -0.0042866128496825695}, {"x": 0.04822341352701187, "y": -0.04274867847561836, "z": -0.009205525740981102}, {"x": 0.044951822608709335, "y": -0.062273621559143066, "z": -0.0194749403744936}], "im": [{"x": -0.0798407718539238, "y": 0.023411577567458153, "z": 0.04464425891637802}, {"x": -0.06607582420110703, "y": -0.00812709890305996, "z": 0.021681584417819977}, {"x": -0.04065501689910889, "y": -0.027668550610542297, "z": 0.019670823588967323}, {"x": -0.012773432768881321, "y": -0.03987406566739082, "z": 0.008435775525867939}, {"x": 0.008927619084715843, "y": -0.05066291242837906, "z": 0.005278661847114563}, {"x": -0.010601093992590904, "y": -0.018811294808983803, "z": -0.013280672952532768}, {"x": 0.012923723086714745, "y": -0.030700869858264923, "z": -0.013725778087973595}, {"x": 0.026695363223552704, "y": -0.04394087940454483, "z": 0.0007273940136656165}, {"x": 0.0388682521879673, "y": -0.053535282611846924, "z": 0.015883583575487137}, {"x": -0.00038802032941021025, "y": -0.0014714933931827545, "z": -0.0032944739796221256}, {"x": 0.014884671196341515, "y": -0.023448731750249863, "z": 0.00672727869823575}, {"x": 0.00350063294172287, "y": -0.033745668828487396, "z": 0.03143482655286789}, {"x": -0.002387366257607937, "y": -0.03294701129198074, "z": 0.05619928985834122}, {"x": 0.00877669733017683, "y": 0.011889565736055374, "z": 0.00869381707161665}, {"x": 0.012559991329908371, "y": -0.007909053936600685, "z": 0.021472224965691566}, {"x": 0.00492690596729517, "y": -0.016486257314682007, "z": 0.044258199632167816}, {"x": -0.0059534707106649876, "y": -0.014179974794387817, "z": 0.06193847581744194}, {"x": 0.0046024625189602375, "y": 0.022415244951844215, "z": 0.026536760851740837}, {"x": 0.00965031236410141, "y": 0.007028704509139061, "z": 0.03324395790696144}, {"x": 0.0026555596850812435, "y": -0.004575724713504314, "z": 0.048495762050151825}, {"x": -0.00583850871771574, "y": -0.0015112615656107664, "z": 0.05344920977950096}], "is": [{"x": 0.02632555179297924, "y": 0.08811726421117783, "z": -0.005440050736069679}, {"x": 0.04183236509561539, "y": 0.06529586762189865, "z": 0.012297207489609718}, {"x": 0.05070730671286583, "y": 0.03712872415781021, "z": 0.03334791958332062}, {"x": 0.047513000667095184, "y": 0.013441557064652443, "z": 0.05430585891008377}, {"x": 0.040792085230350494, "y": -0.0010437136515974998, "z": 0.06493374705314636}, {"x": 0.021417327225208282, "y": -0.006969126407057047, "z": 0.010699393227696419}, {"x": -5.48255629837513e-05, "y": -0.019403507933020592, "z": 0.02347363904118538}, {"x": -0.016239162534475327, "y": -0.025992244482040405, "z": 0.050777535885572433}, {"x": -0.03246985375881195, "y": -0.027384748682379723, "z": 0.07527823746204376}, {"x": 0.001801366452127695, "y": -0.00403254060074687, "z": 0.0005616606795229018}, {"x": -0.019532812759280205, "y": -0.024785423651337624, "z": 0.018959712237119675}, {"x": -0.03445257991552353, "y": -0.025228824466466904, "z": 0.04826062172651291}, {"x": -0.04114812985062599, "y": -0.03387529402971268, "z": 0.08064909279346466}, {"x": -0.015695275738835335, "y": 0.0029264953918755054, "z": -0.007759324740618467}, {"x": -0.03213898837566376, "y": -0.013629887253046036, "z": 0.011165665462613106}, {"x": -0.041628167033195496, "y": -0.018148496747016907, "z": 0.0378405787050724}, {"x": -0.046117786318063736, "y": -0.023431111127138138, "z": 0.06955491751432419}, {"x": -0.02796369232237339, "y": 0.021390818059444427, "z": -0.007702048402279615}, {"x": -0.04277902469038963, "y": 0.0017935028299689293, "z": 0.003608126426115632}, {"x": -0.05055531486868858, "y": -0.011587485671043396, "z": 0.021761484444141388}, {"x": -0.05131996050477028, "y": -0.01335931196808815, "z": 0.037466105073690414}], "it": [{"x": -0.06698360294103622, "y": 0.06264054030179977, "z": 0.026302170008420944}, {"x": -0.06814464181661606, "y": 0.026784507557749748, "z": 0.003520922502502799}, {"x": -0.05499885976314545, "y": 0.002002989873290062, "z": -0.01491000596433878}, {"x": -0.030605699867010117, "y": -0.01755332201719284, "z": -0.03700192645192146}, {"x": -0.002021270804107189, "y": -0.02883422002196312, "z": -0.04611232876777649}, {"x": -0.014469262212514877, "y": -0.024349650368094444, "z": -0.0031628350261598825}, {"x": 0.01299660187214613, "y": -0.03847295045852661, "z": -0.007938130758702755}, {"x": 0.032824404537677765, "y": -0.04760615527629852, "z": -0.012150244787335396}, {"x": 0.055404260754585266, "y": -0.05780410394072533, "z": -0.031072678044438362}, {"x": 0.0009491275995969772, "y": -0.006114405579864979, "z": 0.004845466930419207}, {"x": 0.010702899657189846, "y": -0.013746533542871475, "z": -0.030825849622488022}, {"x": -0.016327563673257828, "y": -0.0028494982980191708, "z": -0.042252782732248306}, {"x": -0.024419082328677177, "y": 0.0024377889931201935, "z": -0.019552266225218773}, {"x": 0.010709717869758606, "y": 0.012814732268452644, "z": 0.003015026682987809}, {"x": 0.010752042755484581, "y": 0.012909848242998123, "z": -0.0316556915640831}, {"x": -0.016515914350748062, "y": 0.021011672914028168, "z": -0.03723803907632828}, {"x": -0.02342047169804573, "y": 0.02460973896086216, "z": -0.01148552168160677}, {"x": 0.006095772609114647, "y": 0.03791392594575882, "z": 0.0001156884609372355}, {"x": 0.011518764309585094, "y": 0.0358772799372673, "z": -0.021839549764990807}, {"x": -0.00880745891481638, "y": 0.037699636071920395, "z": -0.03167843073606491}, {"x": -0.018916137516498566, "y": 0.03902159631252289, "z": -0.01618814282119274}], "kill": [{"x": 0.07042660564184189, "y": 0.004084643442183733, "z": 0.04987702518701553}, {"x": 0.03526779264211655, "y": 0.003850015113130212, "z": 0.05290963873267174}, {"x": 0.010272945277392864, "y": -6.476778071373701e-05, "z": 0.050564125180244446}, {"x": -0.002965647028759122, "y": 0.002592779928818345, "z": 0.033794451504945755}, {"x": -0.013695893809199333, "y": 0.008909791707992554, "z": 0.014296131208539009}, {"x": -0.005925276316702366, "y": 0.001494340947829187, "z": 0.018164342269301414}, {"x": -0.022257966920733452, "y": 0.002113205613568425, "z": 0.007746831048280001}, {"x": -0.04605856537818909, "y": 0.009698508307337761, "z": 0.007098468951880932}, {"x": -0.06616969406604767, "y": 0.019058816134929657, "z": -0.000885040732100606}, {"x": -0.0026348598767071962, "y": -2.2188585717231035e-05, "z": 0.0018584602512419224}, {"x": -0.009397373534739017, "y": 0.01831638813018799, "z": -0.003442260902374983}, {"x": -0.004102111328393221, "y": 0.02803196758031845, "z": 0.013412839733064175}, {"x": 0.0005800968501716852, "y": 0.01917954534292221, "z": 0.033675190061330795}, {"x": 0.0037084531504660845, "y": -0.000213152845390141, "z": -0.01206061989068985}, {"x": 0.0012725742999464273, "y": 0.01914801634848118, "z": -0.010802384465932846}, {"x": 0.008260916918516159, "y": 0.024745870381593704, "z": 0.007104170974344015}, {"x": 0.01203148253262043, "y": 0.01616291143000126, "z": 0.023230357095599174}, {"x": 0.01989254727959633, "y": 0.00832364521920681, "z": -0.015570268034934998}, {"x": 0.016453849151730537, "y": 0.022594258189201355, "z": -0.013867918401956558}, {"x": 0.018776874989271164, "y": 0.0271858312189579, "z": 0.0009312956826761365}, {"x": 0.021740859374403954, "y": 0.017860058695077896, "z": 0.014787642285227776}, {"x": -0.02460055612027645, "y": 0.09439145028591156, "z": 0.0031369817443192005}, {"x": 0.006193788722157478, "y": 0.07813619077205658, "z": 0.0049747927114367485}, {"x": 0.02651957981288433, "y": 0.06255289912223816, "z": 0.0126167768612504}, {"x": 0.042107030749320984, "y": 0.04403730481863022, "z": 0.019560353830456734}, {"x": 0.052859071642160416, "y": 0.025881633162498474, "z": 0.03856034576892853}, {"x": 0.019854094833135605, "y": 0.003352855332195759, "z": 0.01498347707092762}, {"x": 0.026662960648536682, "y": -0.02682500332593918, "z": 0.01022411696612835}, {"x": 0.027844263240695, "y": -0.050451844930648804, "z": 0.00693877786397934}, {"x": 0.02789096161723137, "y": -0.07039763033390045, "z": -0.011909998953342438}, {"x": 0.001537236268632114, "y": -0.005183367058634758, "z": 0.007330304477363825}, {"x": 0.011469699442386627, "y": -0.04246559739112854, "z": 0.0022365045733749866}, {"x": 0.012011608108878136, "y": -0.06878694146871567, "z": -0.005834106355905533}, {"x": 0.019596923142671585, "y": -0.0939706340432167, "z": -0.013981589116156101}, {"x": -0.013009524904191494, "y": -0.0034475410357117653, "z": -0.008939367718994617}, {"x": -0.00611688569188118, "y": -0.03593724966049194, "z": -0.01447618380188942}, {"x": -0.002019895240664482, "y": -0.058274611830711365, "z": -0.020550759509205818}, {"x": 0.006251506507396698, "y": -0.08458087593317032, "z": -0.025569546967744827}, {"x": -0.028538290411233902, "y": 0.009735051542520523, "z": -0.02341061271727085}, {"x": -0.025323711335659027, "y": -0.015433699823915958, "z": -0.02504098229110241}, {"x": -0.01817242056131363, "y": -0.038426320999860764, "z": -0.02879197709262371}, {"x": -0.008464068174362183, "y": -0.058197006583213806, "z": -0.036293454468250275}], "language": [{"x": -0.006971153896301985, "y": 0.04062148556113243, "z": 0.07563481479883194}, {"x": -0.029651183634996414, "y": 0.03558409586548805, "z": 0.041222333908081055}, {"x": -0.043766606599092484, "y": 0.02109183743596077, "z": 0.02213568240404129}, {"x": -0.06278938800096512, "y": 0.005386507138609886, "z": -0.010715940035879612}, {"x": -0.07912754267454147, "y": -0.0148038724437356, "z": -0.026584569364786148}, {"x": -0.022976679727435112, "y": -0.0007212916389107704, "z": -0.0065984646789729595}, {"x": -0.0074232774786651134, "y": -0.004239615984261036, "z": -0.02756975032389164}, {"x": 0.007800353690981865, "y": -0.008952360600233078, "z": -0.030384927988052368}, {"x": 0.03312581405043602, "y": -0.011975840665400028, "z": -0.038772255182266235}, {"x": -0.0038547294680029154, "y": -0.0019226453732699156, "z": -0.00020470349409151822}, {"x": 0.0033412985503673553, "y": 0.012248102575540543, "z": -0.015918761491775513}, {"x": -0.012201372534036636, "y": 0.023675033822655678, "z": 0.001231370959430933}, {"x": -0.021870849654078484, "y": 0.009231026284396648, "z": 0.025639325380325317}, {"x": 0.013670510612428188, "y": -0.0009163508657366037, "z": 0.006486385595053434}, {"x": 0.012057187035679817, "y": 0.017368746921420097, "z": 0.0005350828869268298}, {"x": 0.0007584549020975828, "y": 0.023587321862578392, "z": 0.01916159875690937}, {"x": -0.006037161685526371, "y": 0.015533296391367912, "z": 0.04150446876883507}, {"x": 0.029622508212924004, "y": 0.00686695147305727, "z": 0.01680169068276882}, {"x": 0.022838169708848, "y": 0.020546825602650642, "z": 0.011888854205608368}, {"x": 0.01261822134256363, "y": 0.030190223827958107, "z": 0.032364968210458755}, {"x": 0.0016094401944428682, "y": 0.026362737640738487, "z": 0.047103386372327805}, {"x": -0.012163842096924782, "y": 0.038741834461688995, "z": 0.09889446198940277}, {"x": 0.014044025912880898, "y": 0.03689004108309746, "z": 0.06346449255943298}, {"x": 0.043057940900325775, "y": 0.026319613680243492, "z": 0.039956387132406235}, {"x": 0.07095232605934143, "y": 0.010162224993109703, "z": 0.018670162186026573}, {"x": 0.08356377482414246, "y": -0.00872521661221981, "z": 0.0006079801241867244}, {"x": 0.021377040073275566, "y": -0.004910695366561413, "z": -0.006141322199255228}, {"x": 0.015585726127028465, "y": -0.009523097425699234, "z": -0.029130030423402786}, {"x": 0.007016835268586874, "y": -0.014597833156585693, "z": -0.034577928483486176}, {"x": -0.007447530049830675, "y": -0.02122856304049492, "z": -0.05014311522245407}, {"x": 0.0011291966075077653, "y": -0.0031937549356371164, "z": -0.0018847938627004623}, {"x": 0.011366663500666618, "y": 0.013433629646897316, "z": -0.024112483486533165}, {"x": 0.013554895296692848, "y": 0.03134007006883621, "z": -0.006391193717718124}, {"x": 0.018581580370664597, "y": 0.02292729541659355, "z": 0.019130004569888115}, {"x": -0.015071943402290344, "y": -0.0012917558196932077, "z": 0.002767510712146759}, {"x": -0.009200436063110828, "y": 0.028458943590521812, "z": -0.011269225738942623}, {"x": -0.005613436456769705, "y": 0.03781463950872421, "z": 0.008483371697366238}, {"x": 0.000606839545071125, "y": 0.031630732119083405, "z": 0.03578469157218933}, {"x": -0.03235706686973572, "y": 0.01526586152613163, "z": 0.015861138701438904}, {"x": -0.025657059624791145, "y": 0.024809248745441437, "z": 0.0035325672943145037}, {"x": -0.021254856139421463, "y": 0.03136497735977173, "z": 0.014503225684165955}, {"x": -0.02014097012579441, "y": 0.03576697036623955, "z": 0.03255569934844971}], "love": [{"x": -0.006656503304839134, "y": 0.08136232197284698, "z": 0.0029393311124294996}, {"x": 0.022823508828878403, "y": 0.06076673045754433, "z": -0.006779334042221308}, {"x": 0.04757004603743553, "y": 0.03737315908074379, "z": -0.0008619551081210375}, {"x": 0.07378808408975601, "y": 0.010646666400134563, "z": 0.005393942352384329}, {"x": 0.08594512194395065, "y": -0.014186481013894081, "z": 0.02088615484535694}, {"x": 0.02793644182384014, "y": -0.0019238856621086597, "z": 0.007084775250405073}, {"x": 0.030430426821112633, "y": -0.031300920993089676, "z": 0.003362639108672738}, {"x": 0.02968745492398739, "y": -0.052728813141584396, "z": -0.003927840851247311}, {"x": 0.03359878063201904, "y": -0.0733204111456871, "z": -0.026929648593068123}, {"x": 0.0005967571632936597, "y": -0.003643995150923729, "z": 0.00660931970924139}, {"x": 0.008985314518213272, "y": -0.0170205757021904, "z": -0.02963966503739357}, {"x": 0.013667667284607887, "y": 0.010262933559715748, "z": -0.03597280755639076}, {"x": 0.00852521974593401, "y": 0.02888086996972561, "z": -0.020997196435928345}, {"x": -0.019370218738913536, "y": -0.0009208018891513348, "z": -0.0033148888032883406}, {"x": -0.010358712635934353, "y": -0.005821888335049152, "z": -0.03588692098855972}, {"x": -0.0010627543088048697, "y": 0.016955425962805748, "z": -0.03771691024303436}, {"x": 0.0007580411620438099, "y": 0.03771958127617836, "z": -0.027019552886486053}, {"x": -0.038076139986515045, "y": 0.012955652549862862, "z": -0.012781244702637196}, {"x": -0.04315689578652382, "y": -0.011668006889522076, "z": -0.01924242451786995}, {"x": -0.04487766698002815, "y": -0.032342325896024704, "z": -0.02535230666399002}, {"x": -0.04244915395975113, "y": -0.0520840547978878, "z": -0.03358035162091255}], "machines": [{"x": 0.01970076747238636, "y": 0.029959943145513535, "z": 0.051852528005838394}, {"x": 0.0021688337437808514, "y": 0.01154420617967844, "z": 0.053620412945747375}, {"x": -0.0053563411347568035, "y": 0.004749886225908995, "z": 0.05106187239289284}, {"x": -0.0006240428774617612, "y": 0.00034638246870599687, "z": 0.04611710086464882}, {"x": 0.007016381248831749, "y": -0.020306549966335297, "z": 0.04430987313389778}, {"x": -0.005674181040376425, "y": 0.005232826806604862, "z": 0.005191571079194546}, {"x": -0.008180948905646801, "y": -0.008153357543051243, "z": 0.000847585208248347}, {"x": -0.027484646067023277, "y": -0.019627925008535385, "z": 0.012877424247562885}, {"x": -0.051827188581228256, "y": -0.018831178545951843, "z": 0.025342728942632675}, {"x": 0.0002876737271435559, "y": 0.0006048991926945746, "z": -0.0020105924922972918}, {"x": -0.00764140160754323, "y": -0.006462831515818834, "z": -0.008604017086327076}, {"x": -0.040988847613334656, "y": -0.009410299360752106, "z": 0.0050977664068341255}, {"x": -0.0672379657626152, "y": -0.014625800773501396, "z": 0.029209736734628677}, {"x": 0.0032440924551337957, "y": -0.0035819613840430975, "z": -0.00611832644790411}, {"x": -0.00867948867380619, "y": 0.0003463299944996834, "z": -0.007810970302671194}, {"x": -0.04588887840509415, "y": 0.004524789750576019, "z": 0.002760582370683551}, {"x": -0.0729258581995964, "y": 0.0017395541071891785, "z": 0.024021781980991364}, {"x": 0.004452248569577932, "y": 0.002557996893301606, "z": 0.0032495546620339155}, {"x": -0.007431090343743563, "y": 0.011734766885638237, "z": 0.001073754159733653}, {"x": -0.03381272405385971, "y": 0.020142197608947754, "z": 0.0004620733961928636}, {"x": -0.054190389811992645, "y": 0.01894923858344555, "z": 0.011571650393307209}, {"x": -0.0548468753695488, "y": 0.02602274902164936, "z": 0.043697867542505264}, {"x": -0.037765100598335266, "y": 0.0032419227063655853, "z": 0.039399195462465286}, {"x": -0.022791292518377304, "y": -0.007901822216808796, "z": 0.04160336032509804}, {"x": -0.010990102775394917, "y": -0.021065417677164078, "z": 0.044569551944732666}, {"x": -0.006728216074407101, "y": -0.03997272998094559, "z": 0.034279558807611465}, {"x": -0.003226450178772211, "y": -0.010102163068950176, "z": 0.003527220105752349}, {"x": 0.011949870735406876, "y": -0.01902518980205059, "z": 0.002842108951881528}, {"x": 0.028758887201547623, "y": -0.02504630759358406, "z": 0.017951494082808495}, {"x": 0.04085252434015274, "y": -0.029712891206145287, "z": 0.038274116814136505}, {"x": -0.0006820742273703218, "y": -0.002743437886238098, "z": -0.0003843327285721898}, {"x": 0.022501680999994278, "y": -0.006650452967733145, "z": -0.0005932569620199502}, {"x": 0.04237966239452362, "y": -0.012665065005421638, "z": 0.015420862473547459}, {"x": 0.05837525427341461, "y": -0.014229057356715202, "z": 0.04433091729879379}, {"x": 0.003484119428321719, "y": 0.005114234052598476, "z": -0.0024703871458768845}, {"x": 0.020328883081674576, "y": 0.00936795398592949, "z": 0.002784907352179289}, {"x": 0.04183940216898918, "y": 0.011590665206313133, "z": 0.015788396820425987}, {"x": 0.05493006855249405, "y": 0.013450440019369125, "z": 0.039914295077323914}, {"x": -0.002843173686414957, "y": 0.012743393890559673, "z": 0.00497802346944809}, {"x": 0.010946880094707012, "y": 0.021529972553253174, "z": 0.010004108771681786}, {"x": 0.02948521450161934, "y": 0.029530633240938187, "z": 0.025151535868644714}, {"x": 0.04026324301958084, "y": 0.02915513515472412, "z": 0.03900514915585518}], "make": [{"x": 0.06808546185493469, "y": 0.041490115225315094, "z": 0.03539523482322693}, {"x": 0.05719226598739624, "y": 0.007458198815584183, "z": 0.035902004688978195}, {"x": 0.03373650088906288, "y": -0.016954705119132996, "z": 0.03893178701400757}, {"x": 0.00791227724403143, "y": -0.02141476608812809, "z": 0.036737266927957535}, {"x": -0.009695527143776417, "y": -0.012027468532323837, "z": 0.025326071307063103}, {"x": 0.006835016421973705, "y": -0.020078284665942192, "z": 0.003947900142520666}, {"x": -0.009594390168786049, "y": -0.025906918570399284, "z": 0.01063732709735632}, {"x": -0.012878108769655228, "y": -0.02225041203200817, "z": 0.03523561358451843}, {"x": -0.0036718379706144333, "y": -0.014070538803935051, "z": 0.054364241659641266}, {"x": -0.0013783186441287398, "y": -0.0019215370994061232, "z": -0.0007918195915408432}, {"x": -0.02546609751880169, "y": -0.011253142729401588, "z": 0.008993148803710938}, {"x": -0.022525206208229065, "y": -0.0043635121546685696, "z": 0.03653331473469734}, {"x": -0.014306009747087955, "y": -0.003728762734681368, "z": 0.054000403732061386}, {"x": -0.006801587995141745, "y": 0.013292878866195679, "z": -0.003704562783241272}, {"x": -0.024578765034675598, "y": 0.009079201146960258, "z": 0.012230437248945236}, {"x": -0.01805848814547062, "y": 0.01103496365249157, "z": 0.038002707064151764}, {"x": -0.006718723103404045, "y": 0.013579851016402245, "z": 0.05641947314143181}, {"x": -0.005105458199977875, "y": 0.03803759068250656, "z": 0.004858663305640221}, {"x": -0.021642254665493965, "y": 0.030957546085119247, "z": 0.015795614570379257}, {"x": -0.016563955694437027, "y": 0.029919547960162163, "z": 0.03824496641755104}, {"x": -0.00363155547529459, "y": 0.03330492228269577, "z": 0.04922129213809967}, {"x": -0.0719362422823906, "y": 0.020245136693120003, "z": -0.009097326546907425}, {"x": -0.05968746542930603, "y": -0.00755930133163929, "z": -0.0022065769881010056}, {"x": -0.03351660072803497, "y": -0.02260511741042137, "z": 0.009223219938576221}, {"x": -0.010140304453670979, "y": -0.024639401584863663, "z": 0.01993519440293312}, {"x": 0.003634138498455286, "y": -0.019193433225154877, "z": 0.027334516867995262}, {"x": -0.0008237101137638092, "y": -0.020241262391209602, "z": 0.003471605246886611}, {"x": 0.0030569490045309067, "y": -0.02542424015700817, "z": 0.013526126742362976}, {"x": -0.0021914616227149963, "y": -0.02804664708673954, "z": 0.027556734159588814}, {"x": -0.010131506249308586, "y": -0.024982254952192307, "z": 0.02975163795053959}, {"x": 0.0019272060599178076, "y": -0.00325219938531518, "z": 0.001549366395920515}, {"x": 0.01177353784441948, "y": -0.012040546163916588, "z": 0.015019274316728115}, {"x": -0.0015277736820280552, "y": -0.014235367998480797, "z": 0.024624191224575043}, {"x": -0.00517155509442091, "y": -0.012822969816625118, "z": 0.0236826092004776}, {"x": 0.002227412536740303, "y": 0.011223231442272663, "z": -0.0021372067276388407}, {"x": 0.003394417930394411, "y": 0.007015525829046965, "z": 0.01421712152659893}, {"x": -0.006316406652331352, "y": 0.005825374741107225, "z": 0.024892188608646393}, {"x": -0.013705061748623848, "y": 0.007968436926603317, "z": 0.025753650814294815}, {"x": -0.009056605398654938, "y": 0.026236632838845253, "z": -0.0009312363690696657}, {"x": -0.0051209828816354275, "y": 0.021257339045405388, "z": 0.01304013840854168}, {"x": -0.011784052476286888, "y": 0.01924845762550831, "z": 0.025190260261297226}, {"x": -0.022604892030358315, "y": 0.019549742341041565, "z": 0.02194085530936718}], "nicely": [{"x": 0.06621252745389938, "y": 0.009341662749648094, "z": 0.03434612974524498}, {"x": 0.035865508019924164, "y": 0.002858030842617154, "z": 0.04137195274233818}, {"x": 0.015287294052541256, "y": 0.0010160065721720457, "z": 0.053416572511196136}, {"x": 0.0035778351593762636, "y": 0.0010597493965178728, "z": 0.055669575929641724}, {"x": -0.015814239159226418, "y": -0.0018234257586300373, "z": 0.0545886754989624}, {"x": -0.002400192664936185, "y": -0.0009173346916213632, "z": 0.019001513719558716}, {"x": -0.021761788055300713, "y": -0.0026179326232522726, "z": 0.014357862994074821}, {"x": -0.04589848592877388, "y": -0.001050450373440981, "z": 0.011749801225960255}, {"x": -0.06988459825515747, "y": 0.005908569786697626, "z": -0.0013297491241246462}, {"x": -0.003427723655477166, "y": -0.00018474020180292428, "z": 0.0030081993900239468}, {"x": -0.025309065356850624, "y": -0.00412625540047884, "z": -0.0042089796625077724}, {"x": -0.05422260984778404, "y": 0.006627983413636684, "z": -0.01972821168601513}, {"x": -0.08760520815849304, "y": 0.009004333056509495, "z": -0.022271044552326202}, {"x": 0.0012892239028587937, "y": 0.0013305030297487974, "z": -0.013669522479176521}, {"x": -0.01582292467355728, "y": 0.0008433405309915543, "z": -0.02143339440226555}, {"x": -0.04191706329584122, "y": 0.00633253576233983, "z": -0.03601209819316864}, {"x": -0.07180345803499222, "y": 0.0082215191796422, "z": -0.0420764796435833}, {"x": 0.012434328906238079, "y": 0.009266545996069908, "z": -0.02023298293352127}, {"x": 0.002137082628905773, "y": 0.007183474022895098, "z": -0.030438268557190895}, {"x": -0.015449401922523975, "y": 0.010826860554516315, "z": -0.04076479375362396}, {"x": -0.03424492105841637, "y": 0.010190142318606377, "z": -0.047940365970134735}, {"x": -0.04325379431247711, "y": 0.006685938686132431, "z": -0.012065907940268517}, {"x": -0.051198333501815796, "y": 0.005357228219509125, "z": -0.011079307645559311}, {"x": -0.0492129921913147, "y": -0.008560579270124435, "z": -0.008893024176359177}, {"x": -0.037160225212574005, "y": -0.015852324664592743, "z": -0.01091858558356762}, {"x": -0.021218597888946533, "y": -0.007335134316235781, "z": -0.0002558188862167299}, {"x": -0.01110459491610527, "y": -0.001994088292121887, "z": -0.002541602123528719}, {"x": 0.0005997550906613469, "y": -0.002800370566546917, "z": -0.0030743947718292475}, {"x": 0.01630852371454239, "y": -0.0006046579219400883, "z": -0.008447367697954178}, {"x": 0.03671455755829811, "y": 0.004937056452035904, "z": -0.015569985844194889}, {"x": -0.0028915891889482737, "y": 0.000387492123991251, "z": 0.0037039632443338633}, {"x": 0.016662370413541794, "y": -0.0010178438387811184, "z": 0.00026453559985384345}, {"x": 0.04338346794247627, "y": -0.002657918259501457, "z": -0.01079525239765644}, {"x": 0.0672156810760498, "y": -0.0066096242517232895, "z": -0.018173396587371826}, {"x": 0.009322043508291245, "y": 0.0026773582212626934, "z": 0.0016250486951321363}, {"x": 0.021338874474167824, "y": 6.400234997272491e-05, "z": -0.0012894932879135013}, {"x": 0.04189078509807587, "y": -0.0016403477638959885, "z": -0.00545497378334403}, {"x": 0.06466847658157349, "y": -0.00047179870307445526, "z": -0.005720014683902264}, {"x": 0.006770231761038303, "y": -0.001048144418746233, "z": -0.0019117958145216107}, {"x": 0.017061389982700348, "y": -0.0007316609844565392, "z": -0.000747743877582252}, {"x": 0.03423558548092842, "y": -0.00027665868401527405, "z": -0.003727482631802559}, {"x": 0.05478573590517044, "y": -0.0037823840975761414, "z": -0.01238219067454338}], "not": [{"x": -0.011566095054149628, "y": 0.0874486044049263, "z": 0.035188738256692886}, {"x": -0.029098622500896454, "y": 0.05615653842687607, "z": 0.03871668502688408}, {"x": -0.03285835683345795, "y": 0.02650599740445614, "z": 0.03201904147863388}, {"x": -0.03750833123922348, "y": 0.0006072837859392166, "z": 0.019854411482810974}, {"x": -0.03846282511949539, "y": -0.021992530673742294, "z": 1.1462484508228954e-05}, {"x": -0.01403898186981678, "y": -0.011623852886259556, "z": 0.022135615348815918}, {"x": -0.034015197306871414, "y": -0.011190110817551613, "z": 0.0024870615452528}, {"x": -0.04467014595866203, "y": 0.0010179760865867138, "z": 0.010267497040331364}, {"x": -0.0400385782122612, "y": 0.016125163063406944, "z": 0.03089854307472706}, {"x": -0.00033941655419766903, "y": -0.0063675930723547935, "z": 0.005617961287498474}, {"x": -0.027462568134069443, "y": -0.005946000572293997, "z": -0.01543423905968666}, {"x": -0.041446659713983536, "y": 0.015468889847397804, "z": -0.0013539997162297368}, {"x": -0.02682650089263916, "y": 0.02404743805527687, "z": 0.021711556240916252}, {"x": 0.008342738263309002, "y": 0.006064219865947962, "z": -0.015137320384383202}, {"x": -0.02153201214969158, "y": 0.010659221559762955, "z": -0.02717949077486992}, {"x": -0.029881928116083145, "y": 0.028246330097317696, "z": -0.010960794053971767}, {"x": -0.017041880637407303, "y": 0.03715035691857338, "z": 0.007471753749996424}, {"x": 0.007448330521583557, "y": 0.026904944330453873, "z": -0.027691330760717392}, {"x": -0.012828257866203785, "y": 0.025618430227041245, "z": -0.03548648580908775}, {"x": -0.023740388453006744, "y": 0.034958261996507645, "z": -0.021715456619858742}, {"x": -0.012613765895366669, "y": 0.04118166118860245, "z": -0.01086170319467783}], "ok": [{"x": -0.02637762390077114, "y": 0.0842159166932106, "z": 0.004811638966202736}, {"x": 0.007171792909502983, "y": 0.07285583019256592, "z": 0.004112906754016876}, {"x": 0.03686336800456047, "y": 0.061046816408634186, "z": -0.004709574393928051}, {"x": 0.06212078407406807, "y": 0.04571070149540901, "z": -0.013985230587422848}, {"x": 0.07003800570964813, "y": 0.019781362265348434, "z": -0.02736809477210045}, {"x": 0.023970283567905426, "y": 0.0061566694639623165, "z": 0.010451291687786579}, {"x": 0.043522849678993225, "y": -0.005207519978284836, "z": -0.010549665428698063}, {"x": 0.053188346326351166, "y": -0.0006740204989910126, "z": -0.023767156526446342}, {"x": 0.0530109740793705, "y": 0.020485127344727516, "z": -0.04900403693318367}, {"x": 0.0016355724073946476, "y": -0.004542165901511908, "z": 0.0066447071731090546}, {"x": 0.020174644887447357, "y": -0.040133778005838394, "z": -0.005994511768221855}, {"x": 0.03213682025671005, "y": -0.05874112248420715, "z": -0.02415333315730095}, {"x": 0.04637186601758003, "y": -0.08274498581886292, "z": -0.04201629385352135}, {"x": -0.016553970053792, "y": -0.0061752633191645145, "z": -0.006919326726347208}, {"x": -0.009263351559638977, "y": -0.04199303314089775, "z": -0.011943092569708824}, {"x": -0.0023261867463588715, "y": -0.06274178624153137, "z": -0.019274897873401642}, {"x": 0.006287507712841034, "y": -0.08806192874908447, "z": -0.030247444286942482}, {"x": -0.03658526390790939, "y": 0.004340083338320255, "z": -0.017570022493600845}, {"x": -0.034372951835393906, "y": -0.022644804790616035, "z": -0.019030345603823662}, {"x": -0.02956000715494156, "y": -0.04324173927307129, "z": -0.02621994912624359}, {"x": -0.0223048347979784, "y": -0.058955349028110504, "z": -0.031671956181526184}], "people": [{"x": 0.014746885746717453, "y": 0.08061052858829498, "z": 0.04505505412817001}, {"x": -0.015986494719982147, "y": 0.06543442606925964, "z": 0.027796924114227295}, {"x": -0.03318767994642258, "y": 0.05516812950372696, "z": 0.009585908614099026}, {"x": -0.03736187890172005, "y": 0.043228354305028915, "z": -0.022392066195607185}, {"x": -0.01796412467956543, "y": 0.03131672367453575, "z": -0.04483141005039215}, {"x": -0.028505893424153328, "y": -0.00034357374534010887, "z": 0.008276398293673992}, {"x": -0.025769107043743134, "y": -0.028396163135766983, "z": -0.0017129570478573442}, {"x": -0.030404455959796906, "y": -0.05474979057908058, "z": -0.00901969987899065}, {"x": -0.034696221351623535, "y": -0.07317223399877548, "z": -0.028599292039871216}, {"x": -0.004459823481738567, "y": -0.004869422875344753, "z": 0.00448642298579216}, {"x": -0.017732739448547363, "y": -0.003187707159668207, "z": -0.03059554100036621}, {"x": -0.025472206994891167, "y": 0.027364807203412056, "z": -0.033930905163288116}, {"x": -0.019405335187911987, "y": 0.03408968821167946, "z": -0.005640426650643349}, {"x": 0.01658475585281849, "y": -0.0012032082304358482, "z": -0.006020866334438324}, {"x": 0.0007023527286946774, "y": 0.01134570874273777, "z": -0.033606916666030884}, {"x": -0.003368072211742401, "y": 0.03814571350812912, "z": -0.026696357876062393}, {"x": 0.0014745257794857025, "y": 0.04736568033695221, "z": -0.0005857477663084865}, {"x": 0.03166472166776657, "y": 0.01694931834936142, "z": -0.010088558308780193}, {"x": 0.022776667028665543, "y": 0.017876679077744484, "z": -0.02840772271156311}, {"x": 0.009485071524977684, "y": 0.03627029433846474, "z": -0.028428997844457626}, {"x": 0.009958668611943722, "y": 0.045190270990133286, "z": -0.0073606097139418125}, {"x": -0.019857702776789665, "y": 0.08255063742399216, "z": 0.04966498166322708}, {"x": 0.009998340159654617, "y": 0.06477688252925873, "z": 0.03466133028268814}, {"x": 0.03508833423256874, "y": 0.05312826484441757, "z": 0.014606049284338951}, {"x": 0.05257171764969826, "y": 0.03756066784262657, "z": -0.015970788896083832}, {"x": 0.039351191371679306, "y": 0.02346145175397396, "z": -0.04998866096138954}, {"x": 0.02034872956573963, "y": -0.005762153305113316, "z": 0.01380323339253664}, {"x": 0.02926049381494522, "y": -0.02742825262248516, "z": 0.0012145270593464375}, {"x": 0.035372283309698105, "y": -0.0494895800948143, "z": -0.00805758684873581}, {"x": 0.03452509641647339, "y": -0.0701652243733406, "z": -0.02642437443137169}, {"x": -0.00042096152901649475, "y": -0.005691307596862316, "z": 0.0052603730000555515}, {"x": 0.023445848375558853, "y": -0.007665427401661873, "z": -0.02377919852733612}, {"x": 0.031474873423576355, "y": 0.02146247774362564, "z": -0.02083493024110794}, {"x": 0.025396954268217087, "y": 0.03741137683391571, "z": 0.0011377865448594093}, {"x": -0.01506910752505064, "y": -0.00020354869775474072, "z": -0.009049884043633938}, {"x": 0.0038231112994253635, "y": 0.011855212971568108, "z": -0.03040419891476631}, {"x": 0.016467122361063957, "y": 0.035899966955184937, "z": -0.017345231026411057}, {"x": 0.011930890381336212, "y": 0.04991884529590607, "z": 0.0028619328513741493}, {"x": -0.029974088072776794, "y": 0.02028767764568329, "z": -0.016603544354438782}, {"x": -0.012407763861119747, "y": 0.022624999284744263, "z": -0.03205473721027374}, {"x": 0.001905560027807951, "y": 0.037673719227313995, "z": -0.0233064666390419}, {"x": -0.00026462459936738014, "y": 0.05259402096271515, "z": -0.004448882304131985}], "players": [{"x": 0.024894583970308304, "y": 0.0249140914529562, "z": 0.0858503058552742}, {"x": -0.002173167886212468, "y": 0.0010016472078859806, "z": 0.06554394960403442}, {"x": -0.007577221374958754, "y": -0.017207875847816467, "z": 0.054903727024793625}, {"x": -0.011760842986404896, "y": -0.03660005331039429, "z": 0.021438702940940857}, {"x": -0.010634511709213257, "y": -0.0589599646627903, "z": 0.005623014643788338}, {"x": -0.006280792877078056, "y": -0.009358042851090431, "z": 0.0037729102186858654}, {"x": -0.023222539573907852, "y": -0.0005072588101029396, "z": 8.997283293865621e-05}, {"x": -0.029376354068517685, "y": 0.003272184170782566, "z": 0.02899668738245964}, {"x": -0.015181003138422966, "y": -0.0012198383919894695, "z": 0.059315718710422516}, {"x": 0.0006666308036074042, "y": -0.0005416878266260028, "z": -0.0040674591436982155}, {"x": -0.01689150743186474, "y": 0.0027018925175070763, "z": -0.005205073393881321}, {"x": -0.02213902585208416, "y": 0.009433439932763577, "z": 0.024898698553442955}, {"x": -0.011672163382172585, "y": -0.0010228431783616543, "z": 0.05849025398492813}, {"x": 0.003237721510231495, "y": 0.005247109569609165, "z": -0.003754188073799014}, {"x": -0.011178984306752682, "y": 0.013424286618828773, "z": -0.0015066724736243486}, {"x": -0.016118651255965233, "y": 0.016403917223215103, "z": 0.02569894678890705}, {"x": -0.00099117960780859, "y": 0.012437701225280762, "z": 0.04916577786207199}, {"x": 0.0057091303169727325, "y": 0.020742112770676613, "z": 0.005382281728088856}, {"x": -0.01301749236881733, "y": 0.02647954225540161, "z": 0.00788608193397522}, {"x": -0.03163224831223488, "y": 0.025139547884464264, "z": 0.019171589985489845}, {"x": -0.04193931445479393, "y": 0.032095782458782196, "z": 0.02906426601111889}, {"x": -0.054094381630420685, "y": 0.0033828113228082657, "z": 0.062295399606227875}, {"x": -0.027615712955594063, "y": -0.017823318019509315, "z": 0.05455012246966362}, {"x": -0.010749706998467445, "y": -0.03030576929450035, "z": 0.03828057274222374}, {"x": 0.0022956766188144684, "y": -0.050906624644994736, "z": 0.014192345552146435}, {"x": 0.004313360899686813, "y": -0.07542932778596878, "z": -0.0030869615729898214}, {"x": 0.0021837034728378057, "y": -0.012272761203348637, "z": 0.0015925605548545718}, {"x": 0.015893643721938133, "y": -0.006932973396033049, "z": 0.00875717680901289}, {"x": 0.011816442012786865, "y": -0.009586617350578308, "z": 0.03569911792874336}, {"x": -0.005030300002545118, "y": -0.015391247346997261, "z": 0.05036875233054161}, {"x": -0.0006360976258292794, "y": -0.001480794046074152, "z": -0.0011379534844309092}, {"x": 0.013567137531936169, "y": 0.0014707623049616814, "z": 0.002162232529371977}, {"x": 0.007060827687382698, "y": -0.0026656510308384895, "z": 0.03151519596576691}, {"x": -0.0009280117228627205, "y": -0.008778184652328491, "z": 0.0531962625682354}, {"x": 0.00024268822744488716, "y": 0.008139247074723244, "z": -0.0025139732751995325}, {"x": 0.005906291306018829, "y": 0.007862711325287819, "z": 0.004036021418869495}, {"x": 0.0017062248662114143, "y": 0.00885755568742752, "z": 0.029526157304644585}, {"x": -0.004356354475021362, "y": 0.007721133530139923, "z": 0.05220084264874458}, {"x": -0.006778419017791748, "y": 0.012218127027153969, "z": 0.006109214387834072}, {"x": 0.010058442130684853, "y": 0.018235405907034874, "z": 0.007962322793900967}, {"x": 0.034487105906009674, "y": 0.021200548857450485, "z": 0.01613764651119709}, {"x": 0.054562702775001526, "y": 0.01867826096713543, "z": 0.02000950649380684}], "police": [{"x": 0.00776013545691967, "y": 0.09186267107725143, "z": 0.005357983056455851}, {"x": -0.0026651769876480103, "y": 0.06934623420238495, "z": 0.022480452433228493}, {"x": -0.023397566750645638, "y": 0.05401330813765526, "z": 0.03276888653635979}, {"x": -0.04621268808841705, "y": 0.0390702560544014, "z": 0.05014808848500252}, {"x": -0.06343589723110199, "y": 0.028873609378933907, "z": 0.07125534862279892}, {"x": -0.0013480258639901876, "y": -0.00447789765894413, "z": 0.026761310175061226}, {"x": -0.020479820668697357, "y": -0.023299027234315872, "z": 0.027600256726145744}, {"x": -0.042022865265607834, "y": -0.030474133789539337, "z": 0.029643408954143524}, {"x": -0.07444225996732712, "y": -0.021628497168421745, "z": 0.02240435592830181}, {"x": 0.0030934493988752365, "y": -0.004159159958362579, "z": 0.006366225890815258}, {"x": -0.026218339800834656, "y": -0.0333065427839756, "z": 0.007630628068000078}, {"x": -0.0540141686797142, "y": -0.03258542716503143, "z": 0.006868027616292238}, {"x": -0.08206312358379364, "y": -0.019457751885056496, "z": 0.008904125541448593}, {"x": -0.0007792707765474916, "y": -0.0005038277595303953, "z": -0.018074482679367065}, {"x": -0.02460494637489319, "y": -0.022611644119024277, "z": -0.014079189859330654}, {"x": -0.05191972106695175, "y": -0.026095274835824966, "z": -0.01001094188541174}, {"x": -0.07805955410003662, "y": -0.01965204067528248, "z": -0.00333001627586782}, {"x": -0.00948307290673256, "y": 0.016874536871910095, "z": -0.032643672078847885}, {"x": -0.025898976251482964, "y": 0.0018703509122133255, "z": -0.029033899307250977}, {"x": -0.049674488604068756, "y": -0.013098938390612602, "z": -0.022772610187530518}, {"x": -0.07090409845113754, "y": -0.01598210260272026, "z": -0.018687570467591286}], "produce": [{"x": 0.06601037085056305, "y": 0.04035050421953201, "z": 0.03601423650979996}, {"x": 0.0478132963180542, "y": 0.0129777230322361, "z": 0.04328441247344017}, {"x": 0.025272678583860397, "y": -0.008741597644984722, "z": 0.0522562637925148}, {"x": 0.0062513332813978195, "y": -0.016395578160881996, "z": 0.0535033643245697}, {"x": -0.009373720735311508, "y": -0.010452615097165108, "z": 0.04903131350874901}, {"x": 0.0022503850050270557, "y": -0.0118271354585886, "z": 0.011378003284335136}, {"x": -0.007896563038229942, "y": -0.004550974816083908, "z": 0.013024737127125263}, {"x": -0.010657398030161858, "y": 0.0011045560240745544, "z": 0.039312396198511124}, {"x": -0.005838447716087103, "y": 0.0043873256072402, "z": 0.057473912835121155}, {"x": -0.0014390088617801666, "y": -0.0011864036787301302, "z": 0.0008528029429726303}, {"x": -0.01790994219481945, "y": 0.0025579817593097687, "z": 0.006437645759433508}, {"x": -0.015354630537331104, "y": 0.014349347911775112, "z": 0.03095034509897232}, {"x": -0.005548736080527306, "y": 0.010519926436245441, "z": 0.04756586626172066}, {"x": -0.0033634568098932505, "y": 0.008128676563501358, "z": -0.00911265891045332}, {"x": -0.01589193381369114, "y": 0.01989801786839962, "z": 0.0026581038255244493}, {"x": -0.00891763623803854, "y": 0.0287373885512352, "z": 0.02961198054254055}, {"x": 0.0006754007190465927, "y": 0.023277319967746735, "z": 0.0479830838739872}, {"x": -0.0019915737211704254, "y": 0.03048291616141796, "z": -0.0077045452781021595}, {"x": -0.00934719666838646, "y": 0.038105763494968414, "z": 0.0005973426741547883}, {"x": -0.004450090229511261, "y": 0.04360303655266762, "z": 0.02422948181629181}, {"x": 0.008370459079742432, "y": 0.039772070944309235, "z": 0.03757762536406517}, {"x": -0.08066841959953308, "y": 0.02210289053618908, "z": 0.014325986616313457}, {"x": -0.060312818735837936, "y": -0.0032848194241523743, "z": 0.021146394312381744}, {"x": -0.03365423530340195, "y": -0.015055369585752487, "z": 0.03220280632376671}, {"x": -0.009164194576442242, "y": -0.014261502772569656, "z": 0.0355699360370636}, {"x": 0.00023159966804087162, "y": -0.006123184226453304, "z": 0.03471575304865837}, {"x": -0.0033364654518663883, "y": -0.01985754445195198, "z": 0.0078282430768013}, {"x": 0.010889658704400063, "y": -0.01475476287305355, "z": 0.016883419826626778}, {"x": 0.011257665231823921, "y": -0.010362008586525917, "z": 0.04034542292356491}, {"x": 0.0026621934957802296, "y": -0.00961386226117611, "z": 0.05529738590121269}, {"x": 0.0009379195980727673, "y": -0.004557199776172638, "z": -9.707371646072716e-05}, {"x": 0.018551398068666458, "y": -0.0003945636563003063, "z": 0.014183650724589825}, {"x": 0.008101790212094784, "y": 0.004527871031314135, "z": 0.03867838904261589}, {"x": -0.0010506988037377596, "y": -0.0005738074542023242, "z": 0.05475350841879845}, {"x": 0.00275122607126832, "y": 0.011195474304258823, "z": -0.005572126712650061}, {"x": 0.009103906340897083, "y": 0.016926530748605728, "z": 0.01288171112537384}, {"x": 0.0010584541596472263, "y": 0.019113026559352875, "z": 0.037258896976709366}, {"x": -0.008588040247559547, "y": 0.018023457378149033, "z": 0.04908313974738121}, {"x": -0.007596224546432495, "y": 0.03074207529425621, "z": -0.0023042515385895967}, {"x": 0.001229940913617611, "y": 0.031443048268556595, "z": 0.010670935735106468}, {"x": -0.00379849411547184, "y": 0.03150206804275513, "z": 0.03007231280207634}, {"x": -0.015419388189911842, "y": 0.03135796636343002, "z": 0.03513894975185394}], "remember": [{"x": 0.007851924747228622, "y": 0.043121691793203354, "z": 0.08165322989225388}, {"x": -0.01810522750020027, "y": 0.03345082327723503, "z": 0.0582427978515625}, {"x": -0.03826519846916199, "y": 0.015337019227445126, "z": 0.03834477439522743}, {"x": -0.05286314710974693, "y": 0.00687391497194767, "z": 0.012276142835617065}, {"x": -0.07184123992919922, "y": -0.005431441590189934, "z": -0.011706598103046417}, {"x": -0.025669652968645096, "y": -0.003906514961272478, "z": 0.0028101869393140078}, {"x": -0.029339566826820374, "y": 0.02179524302482605, "z": -0.015702465549111366}, {"x": -0.03044428676366806, "y": 0.029233373701572418, "z": -0.0024948955979198217}, {"x": -0.027397271245718002, "y": 0.030764590948820114, "z": 0.02035544626414776}, {"x": -0.003597274189814925, "y": -0.0022655492648482323, "z": 0.0008350806892849505}, {"x": -0.012399043887853622, "y": 0.0158599354326725, "z": -0.021787287667393684}, {"x": -0.018471609801054, "y": 0.03392260521650314, "z": -0.0061598047614097595}, {"x": -0.014247126877307892, "y": 0.025427885353565216, "z": 0.021435512229800224}, {"x": 0.014695300720632076, "y": -0.00040190271101891994, "z": -0.003331344574689865}, {"x": 0.006660462357103825, "y": 0.027547914534807205, "z": -0.017821667715907097}, {"x": 0.00020888634026050568, "y": 0.03850264102220535, "z": -0.001708672265522182}, {"x": 0.003117105457931757, "y": 0.032406117767095566, "z": 0.02088371478021145}, {"x": 0.027807343751192093, "y": 0.017305025830864906, "z": 0.002533010905608535}, {"x": 0.022845204919576645, "y": 0.030443718656897545, "z": -0.011462496593594551}, {"x": 0.01224960945546627, "y": 0.037027522921562195, "z": 3.0529554351232946e-06}, {"x": 0.01517844945192337, "y": 0.03699018806219101, "z": 0.01340983435511589}, {"x": -0.0618327334523201, "y": 0.013486584648489952, "z": -0.023448273539543152}, {"x": -0.054448410868644714, "y": -0.013009999878704548, "z": -0.013568282127380371}, {"x": -0.037528060376644135, "y": -0.03229564428329468, "z": -0.00647589098662138}, {"x": -0.028134983032941818, "y": -0.04908690229058266, "z": -0.002008266281336546}, {"x": -0.019715886563062668, "y": -0.07643649727106094, "z": -0.000252907513640821}, {"x": -0.0027966799680143595, "y": -0.019239813089370728, "z": 0.0023597166873514652}, {"x": -0.0031331293284893036, "y": -0.021340178325772285, "z": 0.018360907211899757}, {"x": -0.009190059266984463, "y": -0.023566601797938347, "z": 0.03222273662686348}, {"x": -0.01632571965456009, "y": -0.02027660608291626, "z": 0.034043438732624054}, {"x": 0.001164006069302559, "y": -0.002835107035934925, "z": 0.0016456573503091931}, {"x": 0.007729894015938044, "y": -0.006131337024271488, "z": 0.020918862894177437}, {"x": -0.008109988644719124, "y": -0.010088692419230938, "z": 0.031224533915519714}, {"x": -0.010053634643554688, "y": -0.004245607182383537, "z": 0.029598569497466087}, {"x": 0.004239528905600309, "y": 0.012792922556400299, "z": -0.001848710118792951}, {"x": -0.0003490366507321596, "y": 0.009900256991386414, "z": 0.021246271207928658}, {"x": -0.011256341822445393, "y": 0.006830151658505201, "z": 0.029382556676864624}, {"x": -0.014917565509676933, "y": 0.011154544539749622, "z": 0.031943682581186295}, {"x": -0.00613740086555481, "y": 0.02532763034105301, "z": 0.0002710440312512219}, {"x": -0.0047539654187858105, "y": 0.022242587059736252, "z": 0.013683455996215343}, {"x": -0.010904308408498764, "y": 0.019915930926799774, "z": 0.028595205396413803}, {"x": -0.021534733474254608, "y": 0.022607367485761642, "z": 0.02640700154006481}], "robots": [{"x": 0.022651856765151024, "y": 0.047690656036138535, "z": 0.07832862436771393}, {"x": 0.010937049053609371, "y": 0.016944028437137604, "z": 0.06306586414575577}, {"x": 0.0017997981049120426, "y": -0.011997009627521038, "z": 0.0571778379380703}, {"x": -0.011791708879172802, "y": -0.035591237246990204, "z": 0.03699147328734398}, {"x": -0.02560054510831833, "y": -0.04304696246981621, "z": 0.021507728844881058}, {"x": -0.005558746866881847, "y": -0.020543863996863365, "z": 0.0076553407125175}, {"x": -0.007494725286960602, "y": -0.03754500672221184, "z": -0.008793022483587265}, {"x": -0.013081972487270832, "y": -0.04421160742640495, "z": -0.024157635867595673}, {"x": -0.014925288036465645, "y": -0.04411119222640991, "z": -0.05237072333693504}, {"x": -0.0025271237827837467, "y": -0.004072219133377075, "z": 0.0016365896444767714}, {"x": -0.005694192368537188, "y": -0.022698570042848587, "z": -0.026543088257312775}, {"x": -0.00654093362390995, "y": -0.02691250666975975, "z": -0.053143661469221115}, {"x": -0.0034139659255743027, "y": -0.03836364299058914, "z": -0.0743085965514183}, {"x": 0.004225066397339106, "y": 0.013317810371518135, "z": -0.006375801283866167}, {"x": -0.0007469912525266409, "y": 0.0030066040344536304, "z": -0.031035330146551132}, {"x": 0.0018443245207890868, "y": -0.0045427922159433365, "z": -0.05333475396037102}, {"x": 0.007728848606348038, "y": -0.018810275942087173, "z": -0.06862447410821915}, {"x": 0.007517162710428238, "y": 0.0355883426964283, "z": -0.003300815587863326}, {"x": 0.0004069679416716099, "y": 0.028242100030183792, "z": -0.016434693709015846}, {"x": 0.001360718160867691, "y": 0.02041305974125862, "z": -0.030091051012277603}, {"x": 0.005279175005853176, "y": 0.00941137969493866, "z": -0.0439186654984951}, {"x": -0.020795468240976334, "y": 0.02464739792048931, "z": 0.0713203027844429}, {"x": -0.004233942832797766, "y": -0.0023326599039137363, "z": 0.0494706965982914}, {"x": 0.007221599109470844, "y": -0.01598411053419113, "z": 0.04443276673555374}, {"x": 0.013994136825203896, "y": -0.033450715243816376, "z": 0.017159847542643547}, {"x": 0.028248241171240807, "y": -0.041576679795980453, "z": 0.003432478988543153}, {"x": -0.005744808353483677, "y": -0.010585996322333813, "z": -0.003780048107728362}, {"x": 0.011323211714625359, "y": -0.021868325769901276, "z": -0.013150397688150406}, {"x": 0.031245175749063492, "y": -0.024839431047439575, "z": -0.009544170461595058}, {"x": 0.033981021493673325, "y": -0.01496080495417118, "z": -0.0030646412633359432}, {"x": -0.002918941667303443, "y": -0.001982529181987047, "z": -0.0001091845115297474}, {"x": 0.008953223004937172, "y": -0.010168292559683323, "z": -0.018646663054823875}, {"x": 0.028867147862911224, "y": -0.011763046495616436, "z": -0.022795286029577255}, {"x": 0.04164092242717743, "y": -0.018387291580438614, "z": -0.01557205244898796}, {"x": 0.004098117351531982, "y": 0.0069052972830832005, "z": 0.0008278260356746614}, {"x": 0.008056452497839928, "y": 0.003523082472383976, "z": -0.012266691774129868}, {"x": 0.03231359273195267, "y": -0.0005983542650938034, "z": -0.016660969704389572}, {"x": 0.04617060720920563, "y": -0.003688279539346695, "z": -0.007767937611788511}, {"x": -0.0006785467267036438, "y": 0.021189657971262932, "z": 0.009502316825091839}, {"x": 0.008166667073965073, "y": 0.022257883101701736, "z": 0.0024943279568105936}, {"x": 0.019407125189900398, "y": 0.01934237591922283, "z": -0.003971146419644356}, {"x": 0.030893966555595398, "y": 0.012175921350717545, "z": -0.0019035760778933764}], "rule": [{"x": 0.03767777606844902, "y": 0.04842611774802208, "z": 0.07459418475627899}, {"x": 0.03915460780262947, "y": 0.01058744452893734, "z": 0.05719999223947525}, {"x": 0.02390591986477375, "y": -0.012187860906124115, "z": 0.04122641682624817}, {"x": 0.003088158555328846, "y": -0.027587268501520157, "z": 0.01794579066336155}, {"x": -0.012382928282022476, "y": -0.04302910342812538, "z": -0.003884528763592243}, {"x": 0.012551399879157543, "y": -0.0167364701628685, "z": -0.0036287137772887945}, {"x": -0.011346697807312012, "y": -0.03764403983950615, "z": -0.002722565783187747}, {"x": -0.030209247022867203, "y": -0.049260709434747696, "z": 0.010749776847660542}, {"x": -0.04898899048566818, "y": -0.05862171947956085, "z": 0.027652554214000702}, {"x": 0.0008580341818742454, "y": -0.0007803395274095237, "z": -0.004360661376267672}, {"x": -0.02727438509464264, "y": -0.028469305485486984, "z": -0.0008611350203864276}, {"x": -0.05262065306305885, "y": -0.04553334414958954, "z": 0.009158635511994362}, {"x": -0.07741694897413254, "y": -0.06460656225681305, "z": 0.028930403292179108}, {"x": -0.009204947389662266, "y": 0.010896198451519012, "z": 0.0015057317214086652}, {"x": -0.025607556104660034, "y": -0.012039544060826302, "z": 0.013304793275892735}, {"x": -0.01984071359038353, "y": -0.009814117103815079, "z": 0.03983347490429878}, {"x": -0.010096166282892227, "y": -0.005988669581711292, "z": 0.058388613164424896}, {"x": -0.017773322761058807, "y": 0.026107806712388992, "z": 0.014760462567210197}, {"x": -0.024400385096669197, "y": 0.006532041821628809, "z": 0.025027334690093994}, {"x": -0.016969557851552963, "y": 0.003578809555619955, "z": 0.049819465726614}, {"x": -0.01279314886778593, "y": 0.00854220986366272, "z": 0.06249705329537392}, {"x": -0.011972466483712196, "y": 0.09997589886188507, "z": 0.009461572393774986}, {"x": 0.01923541910946369, "y": 0.07727181166410446, "z": 0.004119918681681156}, {"x": 0.03800444304943085, "y": 0.05715807527303696, "z": 0.0026811184361577034}, {"x": 0.048873525112867355, "y": 0.0318060964345932, "z": -0.0034179026260972023}, {"x": 0.055864281952381134, "y": 0.007838057354092598, "z": 0.00432062242180109}, {"x": 0.023275228217244148, "y": -0.0008177147246897221, "z": 0.012941191904246807}, {"x": 0.024053238332271576, "y": -0.0327598974108696, "z": 0.005612402223050594}, {"x": 0.021288661286234856, "y": -0.0569283701479435, "z": 0.00034500312176533043}, {"x": 0.019147593528032303, "y": -0.07650072127580643, "z": -0.020505301654338837}, {"x": 0.0005691129481419921, "y": -0.006608373019844294, "z": 0.007508244831115007}, {"x": 0.0021140952594578266, "y": -0.043377939611673355, "z": 0.0011226723436266184}, {"x": -0.00033333897590637207, "y": -0.06838762760162354, "z": -0.012211533263325691}, {"x": 0.0033656368032097816, "y": -0.09565404802560806, "z": -0.024917297065258026}, {"x": -0.01596459001302719, "y": -0.00030460418201982975, "z": -0.007413449231535196}, {"x": -0.014372425153851509, "y": -0.03511768579483032, "z": -0.01640627160668373}, {"x": -0.011714964173734188, "y": -0.05676775798201561, "z": -0.0261370912194252}, {"x": -0.007326893508434296, "y": -0.08303464949131012, "z": -0.038191575556993484}, {"x": -0.030050382018089294, "y": 0.017559168860316277, "z": -0.02153453789651394}, {"x": -0.03127516061067581, "y": -0.009100597351789474, "z": -0.023870952427387238}, {"x": -0.028876928612589836, "y": -0.03209280967712402, "z": -0.03167487680912018}, {"x": -0.023187212646007538, "y": -0.055727504193782806, "z": -0.04214055836200714}], "said": [{"x": 0.023873619735240936, "y": 0.08834601193666458, "z": 0.034193575382232666}, {"x": 0.03422192111611366, "y": 0.05672039836645126, "z": 0.043514810502529144}, {"x": 0.03313880413770676, "y": 0.0216402318328619, "z": 0.05451253801584244}, {"x": 0.019386406987905502, "y": -0.004719051532447338, "z": 0.05899234488606453}, {"x": 0.0035205779131501913, "y": -0.01464691013097763, "z": 0.052649371325969696}, {"x": 0.018879979848861694, "y": -0.013803637586534023, "z": 0.013729107566177845}, {"x": 0.002849344164133072, "y": -0.03722786903381348, "z": 0.0131637342274189}, {"x": -0.015447434969246387, "y": -0.055821336805820465, "z": 0.024683354422450066}, {"x": -0.03587466478347778, "y": -0.07244683057069778, "z": 0.029825085774064064}, {"x": 0.001954010222107172, "y": -0.006230299361050129, "z": -0.00042811778257600963}, {"x": -0.018953926861286163, "y": -0.014608433470129967, "z": 0.01122331339865923}, {"x": -0.025189056992530823, "y": -0.001289154402911663, "z": 0.04228843003511429}, {"x": -0.015375158749520779, "y": 0.006931988522410393, "z": 0.06369248777627945}, {"x": -0.014611780643463135, "y": 0.008691124618053436, "z": -0.009930274449288845}, {"x": -0.03224494308233261, "y": 0.004745303653180599, "z": 0.01056120079010725}, {"x": -0.03107665292918682, "y": 0.0175107941031456, "z": 0.0387469045817852}, {"x": -0.022313028573989868, "y": 0.023623552173376083, "z": 0.05682026967406273}, {"x": -0.029306674376130104, "y": 0.03204140067100525, "z": -0.007516504731029272}, {"x": -0.04181952401995659, "y": 0.0227016843855381, "z": 0.004903091117739677}, {"x": -0.043206341564655304, "y": 0.029138408601284027, "z": 0.02970762737095356}, {"x": -0.03489808365702629, "y": 0.03580698370933533, "z": 0.04241319000720978}], "smart": [{"x": 0.031835008412599564, "y": 0.08116428554058075, "z": -0.02268221788108349}, {"x": -0.0026450268924236298, "y": 0.0719386488199234, "z": -0.02646476775407791}, {"x": -0.027567099779844284, "y": 0.054029855877161026, "z": -0.017569612711668015}, {"x": -0.05580336973071098, "y": 0.038071513175964355, "z": -0.0029519894160330296}, {"x": -0.08046479523181915, "y": 0.02792690135538578, "z": 0.01997748389840126}, {"x": -0.02781004086136818, "y": 0.010661567561328411, "z": 0.004790889099240303}, {"x": -0.03454766422510147, "y": -0.019316185265779495, "z": 0.005073906853795052}, {"x": -0.044385116547346115, "y": -0.03880956768989563, "z": -0.002992573892697692}, {"x": -0.052908457815647125, "y": -0.05786976218223572, "z": -0.035638242959976196}, {"x": -0.005043400917202234, "y": -0.0007071871077641845, "z": 0.009745352901518345}, {"x": -0.015817489475011826, "y": -0.019218724220991135, "z": -0.026462476700544357}, {"x": -0.01576530747115612, "y": 0.0003491956740617752, "z": -0.05296749249100685}, {"x": -0.010232198983430862, "y": 0.018818607553839684, "z": -0.062386561185121536}, {"x": 0.016418764367699623, "y": -0.009737499058246613, "z": -0.0021532904356718063}, {"x": 0.010074948891997337, "y": -0.031055036932229996, "z": -0.022719353437423706}, {"x": 0.0012774048373103142, "y": -0.04280097037553787, "z": -0.04723520949482918}, {"x": -0.0057303206995129585, "y": -0.05576092004776001, "z": -0.06801097840070724}, {"x": 0.032245513051748276, "y": -0.0001578172668814659, "z": -0.017271166667342186}, {"x": 0.029918866232037544, "y": -0.023101119324564934, "z": -0.015478450804948807}, {"x": 0.022109340876340866, "y": -0.041877780109643936, "z": -0.025341084226965904}, {"x": 0.01223254669457674, "y": -0.055294208228588104, "z": -0.03220600634813309}], "soldier": [{"x": 0.05111166089773178, "y": 0.04012792557477951, "z": 0.05360200256109238}, {"x": 0.03271474689245224, "y": 0.01465046126395464, "z": 0.05600922182202339}, {"x": 0.021565072238445282, "y": -0.012131658382713795, "z": 0.0557362362742424}, {"x": 0.011305784806609154, "y": -0.037045933306217194, "z": 0.048787329345941544}, {"x": 0.015003761276602745, "y": -0.062495794147253036, "z": 0.04592451453208923}, {"x": 0.0010894467122852802, "y": -0.013301491737365723, "z": 0.009175588376820087}, {"x": -0.015536886639893055, "y": -0.005539078265428543, "z": 0.010698842816054821}, {"x": -0.017381371930241585, "y": -0.002023298293352127, "z": 0.0348711833357811}, {"x": -0.010856468230485916, "y": -0.0023481487296521664, "z": 0.06183986738324165}, {"x": 3.3555435948073864e-05, "y": -0.0022288975305855274, "z": -0.0011908741435036063}, {"x": -0.021928362548351288, "y": 0.0002540331333875656, "z": 0.0015201405622065067}, {"x": -0.02106979489326477, "y": 0.009564125910401344, "z": 0.029643237590789795}, {"x": -0.012422367930412292, "y": 0.006820420268923044, "z": 0.04671635851264}, {"x": -0.002694100607186556, "y": 0.008441452868282795, "z": -0.007406958378851414}, {"x": -0.021869007498025894, "y": 0.017834894359111786, "z": -0.003909149672836065}, {"x": -0.021792743355035782, "y": 0.023170670494437218, "z": 0.021438678726553917}, {"x": -0.012499058619141579, "y": 0.017331749200820923, "z": 0.04192836582660675}, {"x": -0.0004918398335576057, "y": 0.03038446605205536, "z": -0.0018234637100249529}, {"x": -0.020159868523478508, "y": 0.03146633505821228, "z": 0.0004452407592907548}, {"x": -0.021952467039227486, "y": 0.037431880831718445, "z": 0.018887687474489212}, {"x": -0.01236756145954132, "y": 0.03517325595021248, "z": 0.035327810794115067}, {"x": -0.07605936378240585, "y": 0.015187814831733704, "z": -0.005633985623717308}, {"x": -0.0576409250497818, "y": -0.011329475790262222, "z": 0.0037839512806385756}, {"x": -0.04025209695100784, "y": -0.03088233806192875, "z": 0.0058802152052521706}, {"x": -0.025116708129644394, "y": -0.053521789610385895, "z": -0.0006025740294717252}, {"x": -0.018898800015449524, "y": -0.07609119266271591, "z": -0.004829236306250095}, {"x": -0.0027875558007508516, "y": -0.02028953656554222, "z": 0.001264832098968327}, {"x": 0.011902308091521263, "y": -0.013155209831893444, "z": 0.017571227625012398}, {"x": 0.009083671495318413, "y": -0.011801899410784245, "z": 0.03856112062931061}, {"x": -0.0020240123849362135, "y": -0.013790900819003582, "z": 0.0483052097260952}, {"x": 0.0009839314734563231, "y": -0.0034249071031808853, "z": 0.00019245926523581147}, {"x": 0.016319280490279198, "y": -0.0005991044454276562, "z": 0.02110082469880581}, {"x": 0.004036380909383297, "y": 9.762251283973455e-05, "z": 0.041761092841625214}, {"x": -0.0034693090710788965, "y": -0.0020976520609110594, "z": 0.049385298043489456}, {"x": 0.003392905928194523, "y": 0.012710154987871647, "z": -0.0016584027325734496}, {"x": 0.009101093746721745, "y": 0.012211090885102749, "z": 0.026213910430669785}, {"x": 0.000792408362030983, "y": 0.014278104528784752, "z": 0.043192166835069656}, {"x": -0.008658758364617825, "y": 0.014760443940758705, "z": 0.051154229789972305}, {"x": -0.004364661406725645, "y": 0.026068847626447678, "z": 0.00395515700802207}, {"x": 0.0021605812944471836, "y": 0.02759917452931404, "z": 0.020634885877370834}, {"x": -0.003033159300684929, "y": 0.025910720229148865, "z": 0.040097929537296295}, {"x": -0.01675432175397873, "y": 0.023294907063245773, "z": 0.04376332089304924}], "test": [{"x": -0.017836274579167366, "y": 0.050913818180561066, "z": 0.07231765985488892}, {"x": -0.038113534450531006, "y": 0.03642520681023598, "z": 0.04940082132816315}, {"x": -0.04072778671979904, "y": 0.03147975727915764, "z": 0.018744684755802155}, {"x": -0.035645633935928345, "y": 0.04247382655739784, "z": -0.015238827094435692}, {"x": -0.023854879662394524, "y": 0.043180037289857864, "z": -0.038746725767850876}, {"x": -0.019014323130249977, "y": -0.012395489029586315, "z": 0.0006544797215610743}, {"x": -0.009424284100532532, "y": -0.036464788019657135, "z": -0.018140161409974098}, {"x": -0.010897688567638397, "y": -0.04308413341641426, "z": -0.03346005082130432}, {"x": -0.02135128155350685, "y": -0.03218590468168259, "z": -0.06084585562348366}, {"x": -0.0023278978187590837, "y": -0.006423387676477432, "z": 0.0008924108697101474}, {"x": -0.0029285179916769266, "y": -0.0014869614969938993, "z": -0.0297097098082304}, {"x": -0.019394678995013237, "y": 0.01611679047346115, "z": -0.020664362236857414}, {"x": -0.026078682392835617, "y": 0.018323194235563278, "z": 0.009843355044722557}, {"x": 0.012851922772824764, "y": 0.006349202711135149, "z": 1.934088686539326e-05}, {"x": 0.004711235407739878, "y": 0.021145503968000412, "z": -0.02604331076145172}, {"x": -0.01327628642320633, "y": 0.03426598757505417, "z": -0.013404503464698792}, {"x": -0.018505174666643143, "y": 0.0320209264755249, "z": 0.02093871310353279}, {"x": 0.018937192857265472, "y": 0.0270690880715847, "z": 0.004533862695097923}, {"x": 0.0142010897397995, "y": 0.03367680311203003, "z": -0.013441694900393486}, {"x": -0.0048688678070902824, "y": 0.04379124939441681, "z": -0.005205663852393627}, {"x": -0.011400259099900723, "y": 0.04223771020770073, "z": 0.02055826038122177}, {"x": 0.0035047526471316814, "y": 0.04959115758538246, "z": 0.09740138053894043}, {"x": 0.028337419033050537, "y": 0.03889452666044235, "z": 0.059640541672706604}, {"x": 0.04139981418848038, "y": 0.03332972526550293, "z": 0.02713433839380741}, {"x": 0.048821475356817245, "y": 0.04534485191106796, "z": -0.01497886423021555}, {"x": 0.02944260835647583, "y": 0.05374886468052864, "z": -0.04457729682326317}, {"x": 0.02008490450680256, "y": -0.010698139667510986, "z": -0.003284323727712035}, {"x": 0.013912435621023178, "y": -0.03165189549326897, "z": -0.028053825721144676}, {"x": 0.015189092606306076, "y": -0.03803546354174614, "z": -0.04797573760151863}, {"x": 0.030536485835909843, "y": -0.020572291687130928, "z": -0.0721687376499176}, {"x": -0.0007615615613758564, "y": -0.004460405558347702, "z": -0.00019920860358979553}, {"x": 0.008303130976855755, "y": 0.0018784848507493734, "z": -0.0380275696516037}, {"x": 0.024201635271310806, "y": 0.02718402072787285, "z": -0.026305804029107094}, {"x": 0.026908516883850098, "y": 0.02502124011516571, "z": 0.008305469527840614}, {"x": -0.012329488061368465, "y": 0.00492456741631031, "z": 0.0012780455872416496}, {"x": -0.004277946427464485, "y": 0.02252231165766716, "z": -0.026386577636003494}, {"x": 0.01678464747965336, "y": 0.04006340727210045, "z": -0.009718804620206356}, {"x": 0.022675158455967903, "y": 0.041928280144929886, "z": 0.022979607805609703}, {"x": -0.027816660702228546, "y": 0.02615087851881981, "z": 0.009592309594154358}, {"x": -0.01803552731871605, "y": 0.03333507478237152, "z": -0.009147069416940212}, {"x": -0.001137441024184227, "y": 0.04840626195073128, "z": -0.00037111257552169263}, {"x": 0.011045613326132298, "y": 0.052692119032144547, "z": 0.021715540438890457}], "thank": [{"x": -0.02453456073999405, "y": 0.08313128352165222, "z": 0.04249517247080803}, {"x": 0.013961810618638992, "y": 0.07206884771585464, "z": 0.021483611315488815}, {"x": 0.033568091690540314, "y": 0.05309212580323219, "z": 0.005027762148529291}, {"x": 0.02641010284423828, "y": 0.030712952837347984, "z": -0.021578891202807426}, {"x": -0.011470027267932892, "y": 0.02894827350974083, "z": -0.02899526245892048}, {"x": 0.029741421341896057, "y": 3.162957727909088e-05, "z": -0.00016640566173009574}, {"x": 0.03187495470046997, "y": 0.0038522514514625072, "z": -0.028615206480026245}, {"x": 0.027088820934295654, "y": 0.020856713876128197, "z": -0.026657411828637123}, {"x": 0.02166147530078888, "y": 0.029343439266085625, "z": -0.005427743773907423}, {"x": 0.002390205627307296, "y": -0.00544585008174181, "z": 0.004109830595552921}, {"x": 0.009182005189359188, "y": -0.004243887960910797, "z": -0.03383408486843109}, {"x": 0.006780846044421196, "y": 0.021915633231401443, "z": -0.03422130271792412}, {"x": 0.0047282688319683075, "y": 0.01918751560151577, "z": -0.0036250196862965822}, {"x": -0.02155926637351513, "y": -0.0032545183785259724, "z": -0.0010123815154656768}, {"x": -0.014568202197551727, "y": 0.006117717828601599, "z": -0.03315220773220062}, {"x": -0.011859187856316566, "y": 0.028656896203756332, "z": -0.029955359175801277}, {"x": -0.010888597927987576, "y": 0.03051958791911602, "z": -0.002326726680621505}, {"x": -0.04402218759059906, "y": 0.013182236813008785, "z": -0.0017356750322505832}, {"x": -0.03420421853661537, "y": 0.011534665711224079, "z": -0.024121610447764397}, {"x": -0.02637670375406742, "y": 0.028591027483344078, "z": -0.02723223902285099}, {"x": -0.03190387785434723, "y": 0.03099409118294716, "z": -0.010577814653515816}], "them": [{"x": -0.0758279412984848, "y": 0.049364425241947174, "z": 0.029179735109210014}, {"x": -0.06949465721845627, "y": 0.014956431463360786, "z": 0.00018328400619793683}, {"x": -0.05245599150657654, "y": -0.005013180896639824, "z": -0.017395397648215294}, {"x": -0.02437872625887394, "y": -0.01756974309682846, "z": -0.03906235471367836}, {"x": 0.00596469035372138, "y": -0.02020014263689518, "z": -0.04749196767807007}, {"x": -0.009556353092193604, "y": -0.025375105440616608, "z": -0.005444046575576067}, {"x": 0.019157923758029938, "y": -0.03575128689408302, "z": -0.011565906926989555}, {"x": 0.038823872804641724, "y": -0.042053431272506714, "z": -0.015947118401527405}, {"x": 0.06133825331926346, "y": -0.04753918573260307, "z": -0.03179459646344185}, {"x": 0.0018957299180328846, "y": -0.006304848939180374, "z": 0.004327185917645693}, {"x": 0.01504537183791399, "y": -0.005409774370491505, "z": -0.03216439485549927}, {"x": -0.01367824338376522, "y": 0.0019562854431569576, "z": -0.04489417374134064}, {"x": -0.025814402848482132, "y": 0.001938004046678543, "z": -0.021374262869358063}, {"x": 0.008110377937555313, "y": 0.014257051981985569, "z": 0.004528903868049383}, {"x": 0.0077087110839784145, "y": 0.01787707954645157, "z": -0.030567478388547897}, {"x": -0.02021203562617302, "y": 0.02082165703177452, "z": -0.03657460957765579}, {"x": -0.029152946546673775, "y": 0.02142736315727234, "z": -0.00946842785924673}, {"x": -0.00030177272856235504, "y": 0.03716978430747986, "z": 0.003853453788906336}, {"x": 0.005044467747211456, "y": 0.03884327411651611, "z": -0.017641032114624977}, {"x": -0.015375887975096703, "y": 0.03882138803601265, "z": -0.027034293860197067}, {"x": -0.027016721665859222, "y": 0.03753501549363136, "z": -0.012903371825814247}], "themselves": [{"x": -0.06832250952720642, "y": 0.052899450063705444, "z": 0.0283817071467638}, {"x": -0.06846422702074051, "y": 0.022625744342803955, "z": 0.006841044407337904}, {"x": -0.04831547662615776, "y": -0.009077424183487892, "z": 0.0034688191954046488}, {"x": -0.034736260771751404, "y": -0.04475192725658417, "z": -0.0012388559989631176}, {"x": -0.031021185219287872, "y": -0.07563066482543945, "z": 0.004171471111476421}, {"x": -0.014433840289711952, "y": -0.025032207369804382, "z": 0.001498865196481347}, {"x": -0.005565119907259941, "y": -0.022148285061120987, "z": -0.025846343487501144}, {"x": -0.02085237391293049, "y": -0.01217779889702797, "z": -0.02863316796720028}, {"x": -0.028946898877620697, "y": -0.010478328913450241, "z": -0.009205003269016743}, {"x": -0.0019582093227654696, "y": -0.006883635185658932, "z": 0.0046952273696660995}, {"x": 0.013333020731806755, "y": -0.007966099306941032, "z": -0.034910354763269424}, {"x": -0.016714509576559067, "y": 0.006684879306703806, "z": -0.03694581985473633}, {"x": -0.015533702448010445, "y": 0.0033351131714880466, "z": -0.0019890808034688234}, {"x": 0.010258604772388935, "y": 0.014020653441548347, "z": 0.0010907951509580016}, {"x": 0.01796756684780121, "y": 0.019667278975248337, "z": -0.03302270546555519}, {"x": -0.006325350143015385, "y": 0.024954818189144135, "z": -0.03585443273186684}, {"x": -0.00928005576133728, "y": 0.023834694176912308, "z": -0.006524095311760902}, {"x": 0.008395612239837646, "y": 0.03995412960648537, "z": -0.0029337769374251366}, {"x": 0.018290851265192032, "y": 0.03965963050723076, "z": -0.024423180148005486}, {"x": 0.002407357096672058, "y": 0.041271016001701355, "z": -0.037343766540288925}, {"x": -0.007675424218177795, "y": 0.042333077639341354, "z": -0.024385632947087288}], "they": [{"x": -0.0758279412984848, "y": 0.049364425241947174, "z": 0.029179735109210014}, {"x": -0.06949465721845627, "y": 0.014956431463360786, "z": 0.00018328400619793683}, {"x": -0.05245599150657654, "y": -0.005013180896639824, "z": -0.017395397648215294}, {"x": -0.02437872625887394, "y": -0.01756974309682846, "z": -0.03906235471367836}, {"x": 0.00596469035372138, "y": -0.02020014263689518, "z": -0.04749196767807007}, {"x": -0.009556353092193604, "y": -0.025375105440616608, "z": -0.005444046575576067}, {"x": 0.019157923758029938, "y": -0.03575128689408302, "z": -0.011565906926989555}, {"x": 0.038823872804641724, "y": -0.042053431272506714, "z": -0.015947118401527405}, {"x": 0.06133825331926346, "y": -0.04753918573260307, "z": -0.03179459646344185}, {"x": 0.0018957299180328846, "y": -0.006304848939180374, "z": 0.004327185917645693}, {"x": 0.01504537183791399, "y": -0.005409774370491505, "z": -0.03216439485549927}, {"x": -0.01367824338376522, "y": 0.0019562854431569576, "z": -0.04489417374134064}, {"x": -0.025814402848482132, "y": 0.001938004046678543, "z": -0.021374262869358063}, {"x": 0.008110377937555313, "y": 0.014257051981985569, "z": 0.004528903868049383}, {"x": 0.0077087110839784145, "y": 0.01787707954645157, "z": -0.030567478388547897}, {"x": -0.02021203562617302, "y": 0.02082165703177452, "z": -0.03657460957765579}, {"x": -0.029152946546673775, "y": 0.02142736315727234, "z": -0.00946842785924673}, {"x": -0.00030177272856235504, "y": 0.03716978430747986, "z": 0.003853453788906336}, {"x": 0.005044467747211456, "y": 0.03884327411651611, "z": -0.017641032114624977}, {"x": -0.015375887975096703, "y": 0.03882138803601265, "z": -0.027034293860197067}, {"x": -0.027016721665859222, "y": 0.03753501549363136, "z": -0.012903371825814247}], "things": [{"x": -0.0758279412984848, "y": 0.049364425241947174, "z": 0.029179735109210014}, {"x": -0.06949465721845627, "y": 0.014956431463360786, "z": 0.00018328400619793683}, {"x": -0.05245599150657654, "y": -0.005013180896639824, "z": -0.017395397648215294}, {"x": -0.02437872625887394, "y": -0.01756974309682846, "z": -0.03906235471367836}, {"x": 0.00596469035372138, "y": -0.02020014263689518, "z": -0.04749196767807007}, {"x": -0.009556353092193604, "y": -0.025375105440616608, "z": -0.005444046575576067}, {"x": 0.019157923758029938, "y": -0.03575128689408302, "z": -0.011565906926989555}, {"x": 0.038823872804641724, "y": -0.042053431272506714, "z": -0.015947118401527405}, {"x": 0.06133825331926346, "y": -0.04753918573260307, "z": -0.03179459646344185}, {"x": 0.0018957299180328846, "y": -0.006304848939180374, "z": 0.004327185917645693}, {"x": 0.01504537183791399, "y": -0.005409774370491505, "z": -0.03216439485549927}, {"x": -0.01367824338376522, "y": 0.0019562854431569576, "z": -0.04489417374134064}, {"x": -0.025814402848482132, "y": 0.001938004046678543, "z": -0.021374262869358063}, {"x": 0.008110377937555313, "y": 0.014257051981985569, "z": 0.004528903868049383}, {"x": 0.0077087110839784145, "y": 0.01787707954645157, "z": -0.030567478388547897}, {"x": -0.02021203562617302, "y": 0.02082165703177452, "z": -0.03657460957765579}, {"x": -0.029152946546673775, "y": 0.02142736315727234, "z": -0.00946842785924673}, {"x": -0.00030177272856235504, "y": 0.03716978430747986, "z": 0.003853453788906336}, {"x": 0.005044467747211456, "y": 0.03884327411651611, "z": -0.017641032114624977}, {"x": -0.015375887975096703, "y": 0.03882138803601265, "z": -0.027034293860197067}, {"x": -0.027016721665859222, "y": 0.03753501549363136, "z": -0.012903371825814247}], "think": [{"x": 0.016832655295729637, "y": 0.08189332485198975, "z": 0.018065795302391052}, {"x": 0.005176950246095657, "y": 0.05805293843150139, "z": 0.03679024428129196}, {"x": -0.002763517200946808, "y": 0.030842004343867302, "z": 0.05248207598924637}, {"x": -0.015452335588634014, "y": 0.010072589851915836, "z": 0.07143152505159378}, {"x": -0.023016834631562233, "y": 0.0007921229116618633, "z": 0.08476908504962921}, {"x": 0.0009775471407920122, "y": -0.006572911515831947, "z": 0.025822272524237633}, {"x": -0.016031065955758095, "y": -0.02505021169781685, "z": 0.021038750186562538}, {"x": -0.032931044697761536, "y": -0.03929934278130531, "z": 0.01964719220995903}, {"x": -0.052311431616544724, "y": -0.05245152860879898, "z": 0.01111896988004446}, {"x": 0.0013105063699185848, "y": -0.004883343819528818, "z": 0.00536768976598978}, {"x": -0.02786426432430744, "y": -0.004524278454482555, "z": 0.0037236730568110943}, {"x": -0.035152826458215714, "y": 0.014547649770975113, "z": 0.021093564108014107}, {"x": -0.022991979494690895, "y": 0.023885898292064667, "z": 0.031586457043886185}, {"x": -0.002251514233648777, "y": 0.004455226007848978, "z": -0.017417723312973976}, {"x": -0.03105405904352665, "y": 0.010373316705226898, "z": -0.009882865473628044}, {"x": -0.03619437664747238, "y": 0.02535933628678322, "z": 0.004453836940228939}, {"x": -0.01961505599319935, "y": 0.030891699716448784, "z": 0.014527678489685059}, {"x": -0.010159879922866821, "y": 0.02272948808968067, "z": -0.03133198618888855}, {"x": -0.030061030760407448, "y": 0.025256192311644554, "z": -0.02492060326039791}, {"x": -0.03663596138358116, "y": 0.03665129840373993, "z": -0.007350259926170111}, {"x": -0.027025574818253517, "y": 0.03894641995429993, "z": 0.0003835233801510185}], "time": [{"x": 0.07548720389604568, "y": 0.03552081063389778, "z": 0.009873337112367153}, {"x": 0.0497245229780674, "y": 0.03951618820428848, "z": 0.02641724795103073}, {"x": 0.021680135279893875, "y": 0.04206692427396774, "z": 0.036763351410627365}, {"x": -0.0022430801764130592, "y": 0.04803507775068283, "z": 0.04348791390657425}, {"x": -0.01734638586640358, "y": 0.04569985345005989, "z": 0.050870634615421295}, {"x": -0.005937723908573389, "y": -0.00010473630391061306, "z": 0.027342334389686584}, {"x": -0.02970043197274208, "y": 0.007665167562663555, "z": 0.018611013889312744}, {"x": -0.05086955055594444, "y": 0.015116266906261444, "z": 0.013249463401734829}, {"x": -0.07201960682868958, "y": 0.023661453276872635, "z": 0.0007559767691418529}, {"x": -0.0028406023047864437, "y": -0.004258076194673777, "z": 0.0068040150217711926}, {"x": -0.02290213294327259, "y": 0.022023167461156845, "z": -0.00010459551413077861}, {"x": -0.008545827120542526, "y": 0.0387689508497715, "z": 0.007584727834910154}, {"x": 0.008943957276642323, "y": 0.031717151403427124, "z": 0.01832568272948265}, {"x": 0.0028897293377667665, "y": 0.0001379397581331432, "z": -0.017577381804585457}, {"x": -0.011004941537976265, "y": 0.026369648054242134, "z": -0.018023217096924782}, {"x": 0.0025527840480208397, "y": 0.03944241255521774, "z": -0.006387683097273111}, {"x": 0.018890125676989555, "y": 0.0315018855035305, "z": 0.0019893248099833727}, {"x": 0.013766972348093987, "y": 0.012768398970365524, "z": -0.03387395665049553}, {"x": 0.0036513283848762512, "y": 0.031769730150699615, "z": -0.03198475390672684}, {"x": 0.008729762397706509, "y": 0.04286084324121475, "z": -0.018267380073666573}, {"x": 0.021906951442360878, "y": 0.0367269329726696, "z": -0.012394135817885399}, {"x": 0.04870358482003212, "y": 0.010421473532915115, "z": 0.06800441443920135}, {"x": 0.040233708918094635, "y": 0.025559425354003906, "z": 0.038336917757987976}, {"x": 0.024054277688264847, "y": 0.03478781878948212, "z": 0.02209828607738018}, {"x": 0.010813094675540924, "y": 0.05048836022615433, "z": 0.001048266771249473}, {"x": 0.0034449677914381027, "y": 0.040007591247558594, "z": -0.019918913021683693}, {"x": -0.0004937555640935898, "y": 0.011724526062607765, "z": -0.012771503999829292}, {"x": 0.0006884615868330002, "y": 0.026382092386484146, "z": -0.024040954187512398}, {"x": 0.012007931247353554, "y": 0.03205803036689758, "z": -0.005077337846159935}, {"x": 0.014183742925524712, "y": 0.020851964130997658, "z": 0.015626002103090286}, {"x": -0.0014673862606287003, "y": 0.0018185372464358807, "z": -0.0019286369206383824}, {"x": 0.0008037970401346684, "y": 0.009100375697016716, "z": -0.008802499622106552}, {"x": 0.006709070410579443, "y": 0.022903084754943848, "z": 0.0019316785037517548}, {"x": 0.005749612580984831, "y": 0.00423686346039176, "z": 0.01558599155396223}, {"x": -0.00420410418882966, "y": -0.008010083809494972, "z": 0.005485034082084894}, {"x": 0.0033862069249153137, "y": 0.009356685914099216, "z": 0.0008980724960565567}, {"x": 0.012615272775292397, "y": 0.018039098009467125, "z": 0.01683090440928936}, {"x": 0.017008448019623756, "y": 0.004579233471304178, "z": 0.034695107489824295}, {"x": -0.00018607487436383963, "y": -0.003592879045754671, "z": 0.02245093695819378}, {"x": 0.0055977338925004005, "y": 0.011912890709936619, "z": 0.01601591892540455}, {"x": 0.01454826071858406, "y": 0.012448561377823353, "z": 0.027641193941235542}, {"x": 0.017650872468948364, "y": 0.0034947162494063377, "z": 0.037624601274728775}], "we": [{"x": -0.06936661899089813, "y": 0.027620796114206314, "z": 0.04471450299024582}, {"x": -0.04575034976005554, "y": 0.0027023814618587494, "z": 0.04364418610930443}, {"x": -0.022691644728183746, "y": -0.006027692928910255, "z": 0.048138950020074844}, {"x": 0.0019776984117925167, "y": -0.0052985986694693565, "z": 0.039878204464912415}, {"x": 0.019116714596748352, "y": 0.0006449529901146889, "z": 0.02884831093251705}, {"x": -0.0009381896816194057, "y": -0.014900506474077702, "z": 0.008772685192525387}, {"x": 0.021132715046405792, "y": -0.017388351261615753, "z": 0.0067663597874343395}, {"x": 0.045428790152072906, "y": -0.013970796018838882, "z": 0.012360903434455395}, {"x": 0.07057973742485046, "y": -0.013074591755867004, "z": 0.018510378897190094}, {"x": -0.00018856627866625786, "y": -0.004432769492268562, "z": 0.0005207681679166853}, {"x": 0.0190601609647274, "y": 0.0037432024255394936, "z": 0.005763365421444178}, {"x": 0.008637990802526474, "y": 0.010308116674423218, "z": 0.02822926640510559}, {"x": -0.004886465147137642, "y": 0.0008673940319567919, "z": 0.05095532536506653}, {"x": 0.0010867640376091003, "y": 0.008019385859370232, "z": -0.007178168743848801}, {"x": 0.009574657306075096, "y": 0.01890265755355358, "z": 0.0032711501698940992}, {"x": 0.0015825238078832626, "y": 0.022633906453847885, "z": 0.02733784168958664}, {"x": -0.010334411635994911, "y": 0.018879693001508713, "z": 0.04224318638443947}, {"x": -0.006792051717638969, "y": 0.025133613497018814, "z": -0.002754328539595008}, {"x": 0.001896788366138935, "y": 0.03447786346077919, "z": 0.006752135697752237}, {"x": -0.00593744870275259, "y": 0.033696308732032776, "z": 0.03242194280028343}, {"x": -0.013686121441423893, "y": 0.02910761907696724, "z": 0.041315190494060516}], "work": [{"x": -0.008199438452720642, "y": 0.08358079940080643, "z": -0.034746140241622925}, {"x": -0.032591141760349274, "y": 0.0623839870095253, "z": -0.033511146903038025}, {"x": -0.04334639757871628, "y": 0.032957009971141815, "z": -0.026305029168725014}, {"x": -0.052079059183597565, "y": 0.0013899197801947594, "z": -0.02165835164487362}, {"x": -0.04381980746984482, "y": -0.025965051725506783, "z": -0.015851501375436783}, {"x": -0.02818714827299118, "y": 0.0017982893623411655, "z": 0.009214615449309349}, {"x": -0.03250258043408394, "y": -0.012965044006705284, "z": -0.01206266786903143}, {"x": -0.0366453118622303, "y": 0.0017958194948732853, "z": -0.0175353791564703}, {"x": -0.03395816311240196, "y": 0.02037964202463627, "z": -0.008892938494682312}, {"x": -0.003733654972165823, "y": -0.0023611916694790125, "z": 0.00935579277575016}, {"x": -0.015681911259889603, "y": -0.022155150771141052, "z": -0.021366098895668983}, {"x": -0.026615694165229797, "y": 0.004234842024743557, "z": -0.030128201469779015}, {"x": -0.015022669918835163, "y": 0.009536491706967354, "z": -0.003738877596333623}, {"x": 0.01707194745540619, "y": -0.0022548334673047066, "z": -0.0050119212828576565}, {"x": 0.005958471447229385, "y": -0.018537893891334534, "z": -0.030243312940001488}, {"x": -0.004564443603157997, "y": 0.00541873462498188, "z": -0.0383848212659359}, {"x": 0.003081735223531723, "y": 0.01700928807258606, "z": -0.02020874060690403}, {"x": 0.029913660138845444, "y": 0.00965103879570961, "z": -0.020590215921401978}, {"x": 0.02349555864930153, "y": -0.004438021220266819, "z": -0.03531162813305855}, {"x": 0.01143472921103239, "y": 0.008974500000476837, "z": -0.04590988904237747}, {"x": 0.016596084460616112, "y": 0.01920185051858425, "z": -0.03291003778576851}, {"x": -0.025619633495807648, "y": 0.007167067378759384, "z": 0.07413681596517563}, {"x": 0.0014047006843611598, "y": 0.02020590752363205, "z": 0.05871502310037613}, {"x": 0.014283540658652782, "y": 0.020904868841171265, "z": 0.04221852496266365}, {"x": 0.01793256774544716, "y": 0.035535745322704315, "z": 0.015245950780808926}, {"x": 0.004548787605017424, "y": 0.03672479838132858, "z": -0.009533983655273914}, {"x": 0.017891233786940575, "y": 0.00763741135597229, "z": 0.002537105930969119}, {"x": 0.020936384797096252, "y": 0.021123163402080536, "z": -0.004737344570457935}, {"x": 0.016034767031669617, "y": 0.019387666136026382, "z": 0.010373958386480808}, {"x": 0.011998560279607773, "y": 0.009225688874721527, "z": 0.027333294972777367}, {"x": 0.0006566928350366652, "y": -0.0013696546666324139, "z": -0.0001207710083690472}, {"x": 0.00509920809417963, "y": 0.014677584171295166, "z": -0.008967328816652298}, {"x": -0.0011755245504900813, "y": 0.01901138946413994, "z": 0.011288891546428204}, {"x": -0.007837085984647274, "y": 0.0007903290679678321, "z": 0.037644222378730774}, {"x": -0.013024099171161652, "y": -0.0032116323709487915, "z": -0.001861141063272953}, {"x": -0.010426709428429604, "y": 0.015399533323943615, "z": -0.004398422781378031}, {"x": -0.01077188178896904, "y": 0.018775803968310356, "z": 0.017399920150637627}, {"x": -0.018285155296325684, "y": 0.003460089210420847, "z": 0.03950181603431702}, {"x": -0.031583014875650406, "y": 3.651878796517849e-05, "z": 0.005918410141021013}, {"x": -0.02623879536986351, "y": 0.015368031337857246, "z": 0.002684494946151972}, {"x": -0.025696799159049988, "y": 0.015330599620938301, "z": 0.022887615486979485}, {"x": -0.026725858449935913, "y": -0.0021445879247039557, "z": 0.03904716297984123}], "you": [{"x": -0.020334584638476372, "y": 0.03428453952074051, "z": 0.08424217253923416}, {"x": -0.0005573034286499023, "y": 0.008517798036336899, "z": 0.061086539179086685}, {"x": 0.013846870511770248, "y": 0.002080226317048073, "z": 0.047056496143341064}, {"x": 0.025558648630976677, "y": -0.0054126521572470665, "z": 0.012215648777782917}, {"x": 0.027794092893600464, "y": -0.009716331958770752, "z": -0.007240732200443745}, {"x": -0.0009684693068265915, "y": -0.00706295482814312, "z": 0.004338156431913376}, {"x": -0.004638233222067356, "y": -0.02639591507613659, "z": -0.021685631945729256}, {"x": 0.007003582548350096, "y": -0.025141840800642967, "z": -0.033329758793115616}, {"x": 0.011010035872459412, "y": -0.00992084201425314, "z": -0.058704059571027756}, {"x": -0.0030226907692849636, "y": -0.002046907087787986, "z": -0.0005305953091010451}, {"x": 0.021435149013996124, "y": -0.010949121788144112, "z": -0.014899012632668018}, {"x": 0.03581540659070015, "y": -0.008381392806768417, "z": 0.00015720727969892323}, {"x": 0.033887796103954315, "y": -0.009472194127738476, "z": 0.03628384321928024}, {"x": 0.001993487123399973, "y": 0.0035660280846059322, "z": -0.00420641154050827}, {"x": 0.01938215084373951, "y": 0.008946633897721767, "z": -0.011943682096898556}, {"x": 0.0297746229916811, "y": 0.010602081194519997, "z": 0.008773831650614738}, {"x": 0.02274090237915516, "y": 0.0034488458186388016, "z": 0.040513355284929276}, {"x": -0.0015871720388531685, "y": 0.018384916707873344, "z": 0.00084445666288957}, {"x": 0.015223137103021145, "y": 0.021192941814661026, "z": -0.00047931430162861943}, {"x": 0.02648061327636242, "y": 0.01963958702981472, "z": 0.01768391579389572}, {"x": 0.023477500304579735, "y": 0.013802994042634964, "z": 0.03497806563973427}], "your": [{"x": 0.015439002774655819, "y": 0.014322193339467049, "z": 0.08591791242361069}, {"x": 0.0034871131647378206, "y": -0.006329645402729511, "z": 0.059006813913583755}, {"x": -0.0009648455306887627, "y": -0.03061041235923767, "z": 0.03837018460035324}, {"x": -0.012363303452730179, "y": -0.06324675679206848, "z": 0.020753972232341766}, {"x": -0.0318194255232811, "y": -0.08564521372318268, "z": -0.005777168553322554}, {"x": -0.011991227976977825, "y": -0.01128104142844677, "z": -0.005833354312926531}, {"x": -0.01562592014670372, "y": -0.018709735944867134, "z": -0.02442832477390766}, {"x": -0.020599495619535446, "y": -0.026895904913544655, "z": -0.035592153668403625}, {"x": -0.025991523638367653, "y": -0.027202757075428963, "z": -0.051271263509988785}, {"x": -0.004716007970273495, "y": 7.409369572997093e-06, "z": -0.0014977500541135669}, {"x": -0.01269089337438345, "y": -0.01114706601947546, "z": -0.028282061219215393}, {"x": -0.014332223683595657, "y": -0.018250245600938797, "z": -0.053409770131111145}, {"x": -0.014705279842019081, "y": -0.02351320907473564, "z": -0.05925720930099487}, {"x": 0.007078663446009159, "y": 0.005213006399571896, "z": 0.002247630152851343}, {"x": -8.48750423756428e-05, "y": -0.00035143521381542087, "z": -0.013565843924880028}, {"x": 0.009845063090324402, "y": -0.008107058703899384, "z": -0.029103435575962067}, {"x": 0.01587928831577301, "y": -0.014892022125422955, "z": -0.034184157848358154}, {"x": 0.018291104584932327, "y": 0.017862342298030853, "z": 0.017741229385137558}, {"x": 0.017874088138341904, "y": 0.00860797893255949, "z": 0.008551781065762043}, {"x": 0.026160545647144318, "y": 0.004449306987226009, "z": -0.005416091065853834}, {"x": 0.0306130051612854, "y": 0.005084073171019554, "z": -0.011931459419429302}]}
\ No newline at end of file
diff --git a/site/script.js b/site/script.js
new file mode 100644
index 0000000..e177a06
--- /dev/null
+++ b/site/script.js
@@ -0,0 +1,286 @@
+import DeviceDetector from "https://cdn.skypack.dev/device-detector-js@2.2.10";
+const mpHands = window;
+const drawingUtils = window;
+const controls = window;
+const controls3d = window;
+
+// Usage: testSupport({client?: string, os?: string}[])
+// Client and os are regular expressions.
+// See: https://cdn.jsdelivr.net/npm/device-detector-js@2.2.10/README.md for
+// legal values for client and os
+testSupport([
+ { client: 'Chrome' },
+]);
+
+const utterThis = new SpeechSynthesisUtterance();
+const synth = window.speechSynthesis;
+let ourText = "";
+
+let j = 0, res = "", diff_res = "", contor = 0,inauntru = 0;
+function changeInHtml(data){
+ if(res == data.result)
+ j++;
+ else{
+ j = 1;
+ res = data.result;
+ }
+ if(j == 3 && (diff_res != res || res == "")){
+ console.log(data.result)
+ console.log(inauntru)
+ if(data.result == "greeting" && contor == 0)
+ {
+ addBuffer("Hi everyone,so nice to see you all here today!");
+ ourText = "Hi everyone,so nice to see you all here today!";
+ utterThis.text = ourText
+ synth.speak(utterThis)
+ contor++;
+ }
+ if(data.result == "how" && contor == 1)
+ {
+ document.getElementById("p3").innerHTML = " ";
+ addBuffer("How are you all feeling today?");
+ ourText = "How are you all feeling today?";
+ utterThis.text = ourText
+ synth.speak(utterThis)
+ contor++;
+ }
+ if(data.result == "custom2" && contor == 2)
+ {
+ document.getElementById("p3").innerHTML = " ";
+ addBuffer("Our inability to form deep connections in a world where we are more connected than ever!");
+ ourText = "Today I wanted to come here and raise some awareness about a big problem everyone encounters. Our inability to form deep connections in a world where we are more connected than ever!";
+ utterThis.text = ourText
+ synth.speak(utterThis)
+ contor++;
+ }
+ if(contor > 2)
+ {
+ if(data.result != "custom1")
+ {
+ if(data.result == "okay" && inauntru == 0)
+ {
+
+ ourText = document.getElementById("p3").innerHTML;
+ utterThis.text = ourText
+ synth.speak(utterThis)
+
+ document.getElementById("p3").innerHTML = " ";
+ return;
+ }
+ if(data.result == "custom2")
+ {
+ addBuffer("Together we can change the world!This is only the beginning!");
+ }
+ else
+ {
+ addBuffer(data.result);
+ }
+
+ }
+ if(data.result == "custom1" && inauntru == 0)
+ {
+ document.getElementById("p3").innerHTML = " ";
+ inauntru = 1;
+ }
+ else if(data.result == "custom1" && inauntru == 1)
+ {
+ ourText = document.getElementById("p3").innerHTML;
+ utterThis.text = ourText
+ synth.speak(utterThis)
+
+ document.getElementById("p3").innerHTML = " ";
+ inauntru = 0;
+ }
+ }
+
+ diff_res = res;
+ j = 0;
+ }
+}
+function addBuffer(data){
+
+ document.getElementById("p3").innerHTML += " " + data;
+}
+function isCorrectData(data){
+ if(data.result != "no data"){
+
+ changeInHtml(data);
+ document.getElementById("p4").innerHTML = '
';
+ document.getElementById("p2").innerHTML = data.result;
+ }
+ else{
+ document.getElementById("p4").innerHTML = '
';
+ }
+
+}
+function exportToJsonFile(jsonData) {
+ if(jsonData != []){
+ let dataStr = JSON.stringify(jsonData);
+ if(dataStr != []){
+ fetch('http://10.10.11.2:8000/', {
+ method: 'POST',
+ headers: {
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify(jsonData)
+ })
+ .then(response => response.json())
+ .then(data => {
+ // Handle the response data
+ if(data != [])
+ isCorrectData(data);
+ })
+ }
+ }
+}
+
+function testSupport(supportedDevices) {
+ const deviceDetector = new DeviceDetector();
+ const detectedDevice = deviceDetector.parse(navigator.userAgent);
+ let isSupported = false;
+ for (const device of supportedDevices) {
+ if (device.client !== undefined) {
+ const re = new RegExp(`^${device.client}$`);
+ if (!re.test(detectedDevice.client.name)) {
+ continue;
+ }
+ }
+ if (device.os !== undefined) {
+ const re = new RegExp(`^${device.os}$`);
+ if (!re.test(detectedDevice.os.name)) {
+ continue;
+ }
+ }
+ isSupported = true;
+ break;
+ }
+ if (!isSupported) {
+ alert(`This demo, running on ${detectedDevice.client.name}/${detectedDevice.os.name}, ` +
+ `is not well supported at this time, continue at your own risk.`);
+ }
+}
+// Our input frames will come from here.
+const videoElement = document.getElementsByClassName('input_video')[0];
+const canvasElement = document.getElementsByClassName('output_canvas')[0];
+const controlsElement = document.getElementsByClassName('control-panel')[0];
+const canvasCtx = canvasElement.getContext('2d');
+const config = { locateFile: (file) => {
+ return `https://cdn.jsdelivr.net/npm/@mediapipe/hands@${mpHands.VERSION}/${file}`;
+ } };
+// We'll add this to our control panel later, but we'll save it here so we can
+// call tick() each time the graph runs.
+// Optimization: Turn off animated spinner after its hiding animation is done.
+const spinner = document.querySelector('.loading');
+spinner.ontransitionend = () => {
+ spinner.style.display = 'none';
+};
+const landmarkContainer = document.getElementsByClassName('landmark-grid-container')[0];
+const grid = new controls3d.LandmarkGrid(landmarkContainer, {
+ connectionColor: 0x23a6d5,
+ definedColors: [{ name: 'Left', value: 0x23d5ab }, { name: 'Right', value: 0xcf8fa7 }],
+ range: 0.2,
+ fitToGrid: false,
+ labelSuffix: 'm',
+ landmarkSize: 2.4,
+ numCellsPerAxis: 0,
+ showHidden: false,
+ centered: false,
+ isRotating: false,
+ connectionWidth: 6.5,
+});
+grid.axesMaterial.visible = false;
+grid.gridMaterial.visible = false;
+let i = 0;
+function onResults(results) {
+ // Hide the spinner.
+ document.body.classList.add('loaded');
+ // Draw the overlays.
+ canvasCtx.save();
+ canvasCtx.clearRect(0, 0, canvasElement.width, canvasElement.height);
+ canvasCtx.drawImage(results.image, 0, 0, canvasElement.width, canvasElement.height);
+ if (results.multiHandLandmarks && results.multiHandedness) {
+ for (let index = 0; index < results.multiHandLandmarks.length; index++) {
+ const classification = results.multiHandedness[index];
+ const isRightHand = classification.label === 'Right';
+ const landmarks = results.multiHandLandmarks[index];
+ drawingUtils.drawConnectors(canvasCtx, landmarks, mpHands.HAND_CONNECTIONS, { color: isRightHand ? '#00FF00' : '#FF0000' });
+ drawingUtils.drawLandmarks(canvasCtx, landmarks, {
+ color: isRightHand ? '#00FF00' : '#FF0000',
+ fillColor: isRightHand ? '#FF0000' : '#00FF00',
+ radius: (data) => {
+ return drawingUtils.lerp(data.from.z, -0.15, .1, 10, 1);
+ }
+ });
+ }
+ }
+ canvasCtx.restore();
+ if (results.multiHandWorldLandmarks) {
+ // We only get to call updateLandmarks once, so we need to cook the data to
+ // fit. The landmarks just merge, but the connections need to be offset.
+ const landmarks = results.multiHandWorldLandmarks.reduce((prev, current) => [...prev, ...current], []);
+ const colors = [];
+ let connections = [];
+ for (let loop = 0; loop < results.multiHandWorldLandmarks.length; ++loop) {
+ const offset = loop * mpHands.HAND_CONNECTIONS.length;
+ const offsetConnections = mpHands.HAND_CONNECTIONS.map((connection) => [connection[0] + offset, connection[1] + offset]);
+ connections = connections.concat(offsetConnections);
+ const classification = results.multiHandedness[loop];
+ for(let i = loop*21; i < (loop+1)*21; i++){
+ if(classification.label === 'Right'){
+ landmarks[i].x = landmarks[i].x+0.1;
+ }
+ else{
+ landmarks[i].x = landmarks[i].x-0.1;
+ }
+ }
+ colors.push({
+ list: offsetConnections.map((unused, i) => i + offset),
+ color: classification.label,
+ });
+ }
+ grid.updateLandmarks(landmarks, connections, colors);
+ }
+ else {
+ grid.updateLandmarks([]);
+ }
+ i += 1;
+ if(i == 20){
+ exportToJsonFile(results.multiHandLandmarks.reduce((prev, current) => [...prev, ...current], []));
+ i = 0
+ }
+}
+const hands = new mpHands.Hands(config);
+hands.onResults(onResults);
+// Present a control panel through which the user can manipulate the solution
+// options.
+new controls
+ .ControlPanel(controlsElement, {
+ maxNumHands: 2,
+ modelComplexity: 1,
+ minDetectionConfidence: 0.5,
+ minTrackingConfidence: 0.5
+})
+ .add([
+ new controls.StaticText({ title: 'Sign language recognition' }),
+ new controls.SourcePicker({
+ onFrame: async (input, size) => {
+ const aspect = size.height / size.width;
+ let width, height;
+ if (window.innerWidth > window.innerHeight) {
+ height = window.innerHeight;
+ width = height / aspect;
+ }
+ else {
+ width = window.innerWidth;
+ height = width * aspect;
+ }
+ canvasElement.width = width;
+ canvasElement.height = height;
+ await hands.send({ image: input });
+ },
+ }),
+])
+ .on(x => {
+ const options = x;
+ hands.setOptions(options);
+});
diff --git a/site/style-reverse.css b/site/style-reverse.css
new file mode 100644
index 0000000..106e302
--- /dev/null
+++ b/site/style-reverse.css
@@ -0,0 +1,285 @@
+
+#background {
+ position: absolute;
+ z-index: -1;
+}
+html
+{
+ margin: 0;
+ overflow: hidden;
+ font-size: 1.2em
+}
+
+body {
+ background: linear-gradient(-45deg, #2a5596, #cf8fa7, #23a6d5, #23d5ab);
+ background-size: 400% 400%;
+ animation: gradient 14s ease infinite;
+ height: 100vh;
+}
+
+@keyframes gradient {
+ 0% {
+ background-position: 0% 50%;
+ }
+ 50% {
+ background-position: 100% 50%;
+ }
+ 100% {
+ background-position: 0% 50%;
+ }
+}
+
+.container
+{
+ position: absolute;
+ top: 5vh;
+ width: 100%;
+ height: 60%;
+
+}
+.container-item-1
+{
+ width: 50%;
+ height: 100%;
+ display: flex;
+ float: left;
+ justify-content: center;
+}
+.landmark-grid-container {
+ width: 100%;
+ height: 100%;
+ position: relative;
+ display: flex;
+ background-color: transparent;
+ opacity: 50%;
+}
+.container-item-2
+{
+ width: 50%;
+ height: 100%;
+ display: flex;
+ float: right;
+ justify-content: center;
+ align-content: center;
+}
+.input1
+{
+ position: flex;
+ justify-content: center;
+ align-content: center;
+ width: 80%;
+ height: 50%;
+ float: top;
+ background-color: transparent;
+}
+.reguli
+{
+ position: flex;
+ justify-content: center;
+ align-content: center;
+ width: 45%;
+ height: 50%;
+ top: 30vh;
+ float: bottom;
+ position: absolute;
+ background-color: transparent;
+}
+.scriere-reguli
+{
+ display: flex;
+ justify-content: center;
+ align-content: center;
+ height: 20%;
+ float: top;
+ padding: 60px;
+}
+
+
+.btn-neon{
+ text-decoration: none;
+ text-transform: uppercase;
+ text-align: center;
+ font-size: 28px;
+ line-height: 50px;
+ border-style: solid;
+ border-width: 3px;
+ border-color: white;
+ background-color: transparent;
+ color: white;
+ width: 100%;
+ height: 100%;
+ transition: 1s;
+ transition-delay: .9s;
+ position: relative;
+ display: inline-block;
+
+ box-shadow: 0 0 2rem #cf8fa7,
+ 0 0 5rem #623ac8,
+ 0 0 2rem #cf8fa7,
+ 0 0 5rem #623ac8,
+ 0 0 5rem #cf8fa7,
+ inset 0 0 2rem #623ac8;
+
+}
+
+::placeholder
+{
+ color:white
+}
+
+.btn-neon:hover{
+ box-shadow: 0 0 10px #cf8fa7,
+ 0 0 40px #cf8fa7,
+ 0 0 80px #cf8fa7;
+ background-color: #cf8fa7;
+}
+
+.btn-neon:hover polyline{
+ stroke-dashoffset: -460;
+}
+
+.btn-neon svg{
+ position: absolute;
+ top:0;
+ left:0;
+ right:0;
+ bottom:0;
+ width: 100%;
+ height: 100%;
+}
+
+.btn-neon svg polyline{
+ fill: transparent;
+ stroke: #ff6f61;
+ stroke-width: 0px;
+ stroke-dasharray: 40 460;
+ stroke-dashoffset: 40;
+ transition: .8s ease-in-out;
+}
+
+
+.regulament
+{
+ display: flex;
+ justify-content: center;
+ align-content: center;
+ height: 80%;
+ float: bottom;
+}
+
+.btn-neon1{
+ text-decoration: none;
+ text-transform: uppercase;
+ text-align: center;
+ font-size: 28px;
+ line-height: 50px;
+ background-color: transparent;
+ color: white;
+ width: 70%;
+ height: 100%;
+ border-style: solid;
+ border-width: 3px;
+ border-color: white;
+ padding: 90px;
+ transition: 1s;
+ transition-delay: .9s;
+ position: relative;
+ display: inline-block;
+
+ box-shadow: 0 0 2rem #623ac8,
+ 0 0 2rem #603be7,
+ 0 0 2rem #623ac8,
+ 0 0 2rem #603be7,
+ 0 0 2rem #623ac8,
+ inset 0 0 3rem #603be7;
+
+}
+
+.btn-neon1:hover{
+ box-shadow: 0 0 10px #2a5596,
+ 0 0 40px #2a5596,
+ 0 0 80px #2a5596;
+ background-color: #2a5596;
+}
+
+.btn-neon1:hover polyline{
+ stroke-dashoffset: -460;
+}
+
+.btn-neon1 svg{
+ position: absolute;
+ top:0;
+ left:0;
+ right:0;
+ bottom:0;
+ width: 100%;
+ height: 100%;
+}
+
+.btn-neon1 svg polyline{
+ fill: transparent;
+ stroke: #ff6f61;
+ stroke-width: 0px;
+ stroke-dasharray: 40 460;
+ stroke-dashoffset: 40;
+ transition: .8s ease-in-out;
+}
+
+.btn-neon2{
+ text-decoration: none;
+ text-transform: uppercase;
+ text-align: center;
+ font-size: 28px;
+ line-height: 50px;
+ background-color: transparent;
+ color: white;
+ width: 30%;
+ height: 100%;
+ border-style: solid;
+ border-width: 3px;
+ border-color: white;
+ padding: 90px;
+ transition: 1s;
+ transition-delay: .9s;
+ position: relative;
+ display: inline-block;
+
+ box-shadow: 0 0 2rem #623ac8,
+ 0 0 2rem #603be7,
+ 0 0 2rem #623ac8,
+ 0 0 2rem #603be7,
+ 0 0 2rem #623ac8,
+ inset 0 0 3rem #603be7;
+
+}
+
+.btn-neon2:hover{
+ box-shadow: 0 0 10px #2a5596,
+ 0 0 40px #2a5596,
+ 0 0 80px #2a5596;
+ background-color: #2a5596;
+}
+
+.btn-neon2:hover polyline{
+ stroke-dashoffset: -460;
+}
+
+.btn-neon2 svg{
+ position: absolute;
+ top:0;
+ left:0;
+ right:0;
+ bottom:0;
+ width: 100%;
+ height: 100%;
+}
+
+.btn-neon2 svg polyline{
+ fill: transparent;
+ stroke: #ff6f61;
+ stroke-width: 0px;
+ stroke-dasharray: 40 460;
+ stroke-dashoffset: 40;
+ transition: .8s ease-in-out;
+}
+
diff --git a/site/style.css b/site/style.css
new file mode 100644
index 0000000..cb5dc9b
--- /dev/null
+++ b/site/style.css
@@ -0,0 +1,754 @@
+@keyframes spin {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(360deg);
+ }
+}
+.abs {
+ position: absolute;
+}
+a {
+ color: white;
+ text-decoration: none;
+}
+a:hover {
+ color: lightblue;
+}
+html
+{
+ margin: 0;
+ height: 100%;
+ overflow: hidden;
+ font-size: 1.2em
+}
+body {
+ background: linear-gradient(-45deg, #2a5596, #cf8fa7, #23a6d5, #23d5ab);
+ background-size: 400% 400%;
+ animation: gradient 14s ease infinite;
+ height: 100vh;
+ width: 100%;
+}
+
+.topnav {
+ background-color: transparent;
+ overflow: hidden;
+}
+
+.topnav a {
+ color: black;
+ padding: 14px 16px;
+ text-decoration: none;
+ word-spacing: 3px;
+}
+
+.topnav a:hover {
+ background-color: transparent;
+ color: black;
+}
+
+.topnav a.active {
+ float: left;
+ background-color: transparent;
+ color: black;
+}
+.logo1
+{
+ width: 250px;
+ height: 250px;
+ position: absolute;
+}
+a.dreapta{
+ float: right;
+ text-align: center;
+}
+.dropdown {
+ padding: 5.5px 25px;
+ float: right;
+}
+.linkedin{
+ width: 100px;
+ height: 28px;
+}
+.mana{
+ width: 800px;
+ height: 580px;
+ border-radius: 50%;
+ box-shadow: 0 0 8px 8px white inset;
+}
+.dropdown .dropbtn {
+ border: none;
+ outline: none;
+ padding: inherit;
+ background-color: inherit;
+ font-family: inherit;
+ margin: 0;
+}
+
+.navbar a:hover, .dropdown:hover .dropbtn {
+ background-color: transparent;
+}
+.dropdown-content {
+ display: none;
+ position: absolute;
+ background-color: transparent;
+ box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
+ z-index: 1;
+}
+
+.dropdown-content a {
+ float: none;
+ color:black;
+ font-family: 'Montserrat',sans-serif;
+ padding: 12px 16px;
+ text-decoration: none;
+ display: block;
+ text-align: left;
+}
+
+.dropdown-content a:hover {
+ background-color: transparent;
+}
+
+.dropdown:hover .dropdown-content {
+ display: block;
+}
+
+.tabel-mijloc
+{
+ width: 100%;
+ height: 50%;
+ position: absolute;
+ bottom: 25vh;
+ color:white;
+ font-family: 'Montserrat',sans-serif;
+}
+
+.buton
+{
+ width: 100%;
+ height: 50%;
+ position: absolute;
+ bottom: -30vh;
+ color:white;
+
+ font-size: 1.5rem;
+ letter-spacing: .2rem;
+ font-family: 'Montserrat',sans-serif;
+}
+.mijloc
+{
+ display: flex;
+ justify-content: center;
+ font-size: 20px;
+}
+.mijloc > a{
+ margin: 20px;
+ padding: 20px;
+}
+
+.coloana-stanga
+{
+ width: 100%;
+ height: 100%;
+ border: 3x black;
+ display: flex;
+ text-align: center;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ float:left;
+ margin: 0;
+ padding: 0;
+}
+.coloana-dreapta
+{
+ width: 40%;
+ height: 100%;
+ display: flex;
+ text-align: center;
+ justify-content: center;
+ align-items: center;
+ float: right;
+}
+
+h3 {
+ clear: left;
+ opacity: 0;
+ filter: blur(4px);
+ letter-spacing: .1rem;
+ line-height: 1.2cm;
+ padding: 1px;
+ font-size: 1.2vw;
+}
+
+h3:nth-child(1) {
+ animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
+}
+
+h3:nth-child(2) {
+ animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
+}
+
+.waviy {
+ position: relative;
+ font-size: 60px;
+ color: #480777;
+}
+.waviy span {
+ font-family: 'Alfa Slab One', cursive;
+ position: relative;
+ display: inline-block;
+ text-transform: uppercase;
+ animation: waviy 1s infinite;
+ animation-delay: calc(.1s * var(--i));
+
+}
+@keyframes waviy {
+ 0%,40%,100% {
+ transform: translateY(0)
+ }
+ 20% {
+ transform: translateY(-20px)
+ }
+}
+
+h1 {
+ color: #fff;
+ font-size: 2vw;
+ letter-spacing: .2rem;
+ position: absolute;
+ top: 0.5px;
+ transform: translate(-50%, -50%);
+}
+
+h1:nth-child(2) {
+ color: transparent;
+ -webkit-text-stroke: 2px #161622;
+}
+
+h1:nth-child(1) {
+ color: #541184;
+ animation: animate 5s ease-in-out infinite;
+}
+@media(max-width: 767px){
+ h1{
+ display: none;
+ }
+ .logo1{
+ width: 40%;
+ height: 20%;
+ }
+ h3{
+ font-size: 3.6vw;
+ line-height: 1cm;
+ }
+ .dropdown{
+ padding: 25.5px 10px;
+ }
+ .glow-on-hover{
+ display: flex;
+ cursor:none;
+ }
+}
+@keyframes animate {
+ 100%,
+ 0% {
+ clip-path: polygon(
+ 45% 0%,
+ 44% 16%,
+ 50% 33%,
+ 60% 54%,
+ 59% 65%,
+ 89% 95%,
+ 95% 97%,
+ 98% 99%,
+ 100% 0%
+ );
+ }
+
+ 50% {
+ clip-path: polygon(
+ 0% 60%,
+ 15% 65%,
+ 34% 66%,
+ 51% 62%,
+ 67% 50%,
+ 84% 45%,
+ 100% 46%,
+ 100% 100%,
+ 0% 100%
+ );
+ }
+}
+
+@keyframes fade-in {
+ 100% {
+ opacity: 1;
+ filter: blur(0);
+ }
+}
+
+@keyframes scale {
+ 100% {
+ transform: scale(1);
+ }
+}
+
+
+@keyframes gradient {
+ 0% {
+ background-position: 0% 50%;
+ }
+ 50% {
+ background-position: 100% 50%;
+ }
+ 100% {
+ background-position: 0% 50%;
+ }
+}
+.cover-container {
+ max-width: 42em;
+}
+
+.masthead {
+ margin-bottom: 2rem;
+}
+
+.masthead-brand {
+ margin-bottom: 0;
+}
+.fade-out-image { animation: fadeout 5s; }
+@keyframes fadeout {
+ 0% { opacity: 1; }
+ 100% { opacity: 0; }
+}
+.nav-masthead .nav-link {
+ padding: .25rem 0;
+ font-weight: 700;
+ color: #212529;
+ background-color: transparent;
+ border-bottom: .25rem solid transparent;
+}
+
+.nav-masthead .nav-link:hover,
+.nav-masthead .nav-link:focus {
+ border-bottom-color: rgba(0, 0, 0, .25);
+}
+
+.nav-masthead .nav-link+.nav-link {
+ margin-left: 1rem;
+}
+
+@media (min-width: 48em) {
+ .masthead-brand {
+ float: left;
+ }
+
+ .nav-masthead {
+ float: right;
+ }
+}
+
+.cover {
+ padding: 0 1.5rem;
+}
+
+#background {
+ position: absolute;
+ z-index: -1;
+}
+
+.logo {
+ bottom: 10px;
+ right: 20px;
+}
+.logo .title {
+ color: white;
+}
+.logo .subtitle {
+ position: relative;
+ color: white;
+ left: -30px;
+ top: 20px;
+}
+
+.control-panel {
+ position: absolute;
+ float: left;
+ background-color: transparent;
+ height: 25%;
+ width: 25%;
+ top: 500vh;
+}
+
+.loading {
+ display: flex;
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ align-items: center;
+ backface-visibility: hidden;
+ justify-content: center;
+ opacity: 1;
+ transition: opacity 1s;
+}
+.loading .message {
+ font-size: x-large;
+}
+.loading .spinner {
+ position: absolute;
+ width: 120px;
+ height: 120px;
+ animation: spin 1s linear infinite;
+ border: 32px solid #bebebe;
+ border-top: 32px solid #3498db;
+ border-radius: 50%;
+}
+
+.loaded .loading {
+ opacity: 0;
+}
+
+.shoutout {
+ left: 0;
+ right: 0;
+ bottom: 40px;
+ text-align: center;
+ position: absolute;
+}
+
+
+.glow-on-hover {
+ width: 220px;
+ height: 25px;
+ border: none;
+ outline: none;
+ color: #fff;
+ background: #111;
+ cursor: pointer;
+ position: relative;
+ z-index: 0;
+ border-radius: 10px;
+ font-size: 22px;
+ text-align: center;
+ color:white;
+ font-family: 'Montserrat',sans-serif;
+
+}
+
+.glow-on-hover:before {
+ content: '';
+ background: linear-gradient(45deg, #31074e, #00ffd5, #002bff, #7a00ff, #ff00c8);
+ position: absolute;
+ top: -2px;
+ left:-2px;
+ background-size: 400%;
+ z-index: -1;
+ filter: blur(5px);
+ width: calc(100% + 4px);
+ height: calc(100% + 4px);
+ animation: glowing 20s linear infinite;
+ opacity: 0;
+ transition: opacity .3s ease-in-out;
+ border-radius: 10px;
+}
+
+.glow-on-hover:active {
+ color: #000
+}
+
+.glow-on-hover:active:after {
+ background: transparent;
+}
+
+.glow-on-hover:hover:before {
+ opacity: 1;
+}
+
+.glow-on-hover:after {
+ z-index: -1;
+ content: '';
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background: #290760;
+ left: 0;
+ top: 0;
+ border-radius: 10px;
+}
+
+@keyframes glowing {
+ 0% { background-position: 0 0; }
+ 50% { background-position: 400% 0; }
+ 100% { background-position: 0 0; }
+}
+
+.container {
+ position: absolute;
+ display: flex;
+ width: 100%;
+ height: 50%;
+ bottom: 45vh;
+ justify-content: center;
+ align-items: center;
+
+}
+
+.container-item-1{
+ width: 50%;
+ height: 100%;
+ float: left;
+ display: flex;
+ justify-content: left;
+}
+.container-item-11{
+ width: 45%;
+ height: 100%;
+}
+.p41
+{
+ height: 100%;
+}
+.container-item-2{
+ width: 50%;
+ height: 100%;
+ float: left;
+ display: flex;
+ justify-content: left;
+ border-radius: 10%;
+}
+.container-item-22{
+ width: 100%;
+ height: 100%;
+ display: flex;
+ justify-content: center;
+ align-content: center;
+ border-radius: 10%;
+}
+
+.input_video {
+ display: none;
+ position: relative;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ justify-content: center;
+ align-items: start;
+
+}
+.input_video.selfie {
+ transform: scale(-1, 1);
+}
+
+.input_image {
+ position: absolute;
+}
+
+.canvas-container {
+ display: flex;
+ height: 100%;
+ width: 100%;
+ justify-content: space-between;
+ align-items: start;
+
+}
+
+.output_canvas {
+ width: 55%;
+ height: 85%;
+ position: flex;
+ align-items: center;
+ align-content: center;
+ justify-content: center;
+ bottom: 49vh;
+ border-radius: 10%;
+}
+
+.rezultat-cuvinte
+{
+ width: 100%;
+ height: 50%;
+ position: absolute;
+ display: flex;
+ justify-content: left;
+ float: left;
+ align-content: left;
+ top: 50vh;
+}
+
+.ultimu
+{
+ width: 100%;
+ height: 3%;
+ position: absolute;
+ display: flex;
+ justify-content: right;
+ align-content: right;
+ bottom: 25vh;
+ float: right;
+}
+
+.buton-fill2
+{
+ text-decoration: none;
+ text-transform: uppercase;
+ text-align: right;
+
+ font-size: 20px;
+ color: #f5f5f5;
+ background-color: #2e2e38;
+ opacity: 50%;
+
+ width: 150px;
+ height: 70px;
+
+ box-shadow: 0 0 10rem #fff,
+ 0 0 15rem #fff,
+ 0 0 12rem #b05af7,
+ 0 0 15rem #d99ef0,
+ 0 0 15rem #7305f9,
+ inset 0 0 12rem #2f0a6c;
+
+ position: flex;
+ justify-content: right;
+ float: right;
+ display: flex;
+}
+
+.btn-neon{
+ text-decoration: none;
+ text-transform: uppercase;
+ text-align: center;
+
+ font-size: 20px;
+ color: #f5f5f5;
+ background-color: palevioletred;
+ opacity: 10%;
+
+ box-shadow: 0 0 4rem #b411ef,
+ 0 0 12rem #691ad0,
+ 0 0 12rem #b05af7,
+ 0 0 18rem #d99ef0,
+ 0 0 28rem #7305f9,
+ inset 0 0 20rem #2f0a6c;
+
+ width: 100%;
+ height: 450px;
+
+ transition: 1s;
+ transition-delay: .9s;
+
+ position: relative;
+ display: inline-block;
+}
+
+
+.btn-neon_a{
+ display: hidden;
+ text-decoration: none;
+ text-transform: uppercase;
+ text-align: center;
+
+ font-size: 45px;
+ align-items: center;
+ color: #f5f5f5;
+ background-color: #2e2e38;
+ opacity: 50%;
+
+ width: 100%;
+ height: 450px;
+
+ transition: 1s;
+ transition-delay: .9s;
+
+ position: relative;
+ display: inline-block;
+ box-shadow: 0 0 50px #17b25d,
+ 0 0 100px #17b25d,
+ 0 0 150px #17b25d;
+ background-color: #17b25d;
+}
+
+.btn-neon_a polyline{
+ stroke-dashoffset: -460;
+}
+svg
+{
+ left: 50%;
+ height:50;
+ width:180;
+}
+.btn-neon svg{
+ position: flex;
+ top:0;
+ left:0;
+ right:0;
+ bottom:0;
+ width: 100%;
+ height: 100%;
+}
+
+.btn-neon svg polyline{
+ fill: transparent;
+ stroke: #17b25d;
+ stroke-width: 1px;
+ stroke-dasharray: 40 460;
+ stroke-dashoffset: 60;
+ transition: .8s ease-in-out;
+}
+
+.p31
+{
+ padding: 15px;
+}
+
+.buton-fill
+{
+ text-decoration: none;
+ text-transform: uppercase;
+ text-align: center;
+
+ font-size: 39px;
+ color: #f5f5f5;
+ background-color: #1387a4;
+ opacity: 50%;
+
+ width: 90%;
+ height: 450px;
+ position: relative;
+ display: inline-block;
+}
+
+.clear
+{
+ text-decoration: none;
+ text-transform: uppercase;
+ text-align: center;
+
+ font-size: 20px;
+ color: #f5f5f5;
+ background-color: #2e2e38;
+ opacity: 50%;
+
+ width: 650px;
+ height: 70px;
+
+ position: relative;
+ display: inline-block;
+}
+
+.Home-page-2
+{
+ padding: 0px;
+ position: absolute;
+ display: absolute;
+ margin: 0px;
+ width: 100px;
+ height: 50px;
+ background-color: transparent;
+}
diff --git a/site/test.css b/site/test.css
new file mode 100644
index 0000000..406faa1
--- /dev/null
+++ b/site/test.css
@@ -0,0 +1,35 @@
+body {
+ justify-content: center;
+ align-items: center;
+ background: #000;
+ display: flex;
+ height: 100vh;
+ padding: 0;
+ margin: 0;
+ }
+
+ .progress {
+ background: white;
+ justify-content: flex-start;
+ border-radius: 100px;
+ align-items: center;
+ position: relative;
+ padding: 0 5px;
+ display: flex;
+ height: 40px;
+ width: 500px;
+ }
+
+ .progress-value {
+ animation: load 3s normal forwards;
+ box-shadow: 0 10px 40px -10px #2a5596;
+ border-radius: 100px;
+ background: #2a5596;
+ height: 30px;
+ width: 0;
+ }
+
+ @keyframes load {
+ 0% { width: 0; }
+ 100% { width: 100%; }
+ }
\ No newline at end of file
diff --git a/site/test.html b/site/test.html
new file mode 100644
index 0000000..908481c
--- /dev/null
+++ b/site/test.html
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/site/test.js b/site/test.js
new file mode 100644
index 0000000..e69de29
diff --git a/site/wave.js b/site/wave.js
new file mode 100644
index 0000000..88792cc
--- /dev/null
+++ b/site/wave.js
@@ -0,0 +1,159 @@
+
+App({ el: 'background' });
+
+function App(conf) {
+ conf = {
+ fov: 70,
+ cameraZ: 75,
+ xyCoef: 50,
+ zCoef: 10,
+ lightIntensity: 0.7,
+ ambientColor: 0x000000,
+ light1Color: 0x0E09DC,
+ light2Color: 0x1CD1E1,
+ light3Color: 0x18C02C,
+ light4Color: 0xee3bcf,
+ ...conf };
+
+
+ let renderer, scene, camera, cameraCtrl;
+ let width, height, cx, cy, wWidth, wHeight;
+ const TMath = THREE.Math;
+ const waveHeight = document.getElementsByClassName('landmark-grid-container')[0];
+ console.log(waveHeight);
+ let plane;
+ const simplex = new SimplexNoise();
+
+
+
+ const mouse = new THREE.Vector2();
+ const mousePlane = new THREE.Plane(new THREE.Vector3(0, 0, 1), 0);
+ const mousePosition = new THREE.Vector3();
+ const raycaster = new THREE.Raycaster();
+
+ conf.xyCoef = 6;
+ conf.zCoef = 7;
+
+
+ init();
+
+ function init() {
+ renderer = new THREE.WebGLRenderer({ canvas: document.getElementById(conf.el), antialias: true, alpha: true });
+ camera = new THREE.PerspectiveCamera(conf.fov);
+ camera.position.z = conf.cameraZ;
+
+ updateSize();
+ window.addEventListener('resize', updateSize, false);
+
+ initScene();
+ animate();
+ }
+
+ function initScene() {
+ scene = new THREE.Scene();
+ initLights();
+
+ let mat = new THREE.MeshLambertMaterial({ color: 0xffffff, side: THREE.DoubleSide });
+ // let mat = new THREE.MeshPhongMaterial({ color: 0xffffff });
+ // let mat = new THREE.MeshStandardMaterial({ color: 0x808080, roughness: 0.5, metalness: 0.8 });
+ let geo = new THREE.PlaneBufferGeometry(wWidth, wHeight, wWidth / 2, wHeight / 2);
+ plane = new THREE.Mesh(geo, mat);
+ scene.add(plane);
+
+ plane.rotation.x = -Math.PI / 2 - 0.2;
+ plane.position.y = -25;
+ camera.position.z = 60;
+ }
+
+ function initLights() {
+ const r = 30;
+ const y = 10;
+ const lightDistance = 500;
+
+ // light = new THREE.AmbientLight(conf.ambientColor);
+ // scene.add(light);
+
+ light1 = new THREE.PointLight(conf.light1Color, conf.lightIntensity, lightDistance);
+ light1.position.set(0, y, r);
+ scene.add(light1);
+ light2 = new THREE.PointLight(conf.light2Color, conf.lightIntensity, lightDistance);
+ light2.position.set(0, -y, -r);
+ scene.add(light2);
+ light3 = new THREE.PointLight(conf.light3Color, conf.lightIntensity, lightDistance);
+ light3.position.set(r, y, 0);
+ scene.add(light3);
+ light4 = new THREE.PointLight(conf.light4Color, conf.lightIntensity, lightDistance);
+ light4.position.set(-r, y, 0);
+ scene.add(light4);
+ }
+
+ function animate() {
+ requestAnimationFrame(animate);
+
+ animatePlane();
+ animateLights();
+
+ renderer.render(scene, camera);
+ };
+
+ function animatePlane() {
+ gArray = plane.geometry.attributes.position.array;
+ const time = Date.now() * 0.0002;
+
+ for (let i = 0; i < gArray.length; i += 3) {
+ if(!waveHeight)
+ gArray[i + 2] = simplex.noise4D(gArray[i] / conf.xyCoef, gArray[i + 1] / conf.xyCoef, time, 5) * conf.zCoef;
+ else
+ gArray[i + 2] = simplex.noise4D(gArray[i] / conf.xyCoef, gArray[i + 1] / conf.xyCoef, time, 100) * conf.zCoef;
+
+ }
+ plane.geometry.attributes.position.needsUpdate = true;
+ // plane.geometry.computeBoundingSphere();
+ }
+
+ function animateLights() {
+ const time = Date.now() * 0.001;
+ const d = 50;
+ light1.position.x = Math.sin(time * 0.1) * d;
+ light1.position.z = Math.cos(time * 0.2) * d;
+ light2.position.x = Math.cos(time * 0.3) * d;
+ light2.position.z = Math.sin(time * 0.4) * d;
+ light3.position.x = Math.sin(time * 0.5) * d;
+ light3.position.z = Math.sin(time * 0.6) * d;
+ light4.position.x = Math.sin(time * 0.7) * d;
+ light4.position.z = Math.cos(time * 0.8) * d;
+ }
+
+ function updateLightsColors() {
+ conf.light1Color = chroma.random().hex();
+ conf.light2Color = chroma.random().hex();
+ conf.light3Color = chroma.random().hex();
+ conf.light4Color = chroma.random().hex();
+ light1.color = new THREE.Color(conf.light1Color);
+ light2.color = new THREE.Color(conf.light2Color);
+ light3.color = new THREE.Color(conf.light3Color);
+ light4.color = new THREE.Color(conf.light4Color);
+ // console.log(conf);
+ }
+
+ function updateSize() {
+ width = window.innerWidth;cx = width / 2;
+ height = window.innerHeight;cy = height / 2;
+ if (renderer && camera) {
+ renderer.setSize(width, height);
+ camera.aspect = width / height;
+ camera.updateProjectionMatrix();
+ const wsize = getRendererSize();
+ wWidth = wsize[0];
+ wHeight = wsize[1];
+ }
+ }
+
+ function getRendererSize() {
+ const cam = new THREE.PerspectiveCamera(camera.fov, camera.aspect);
+ const vFOV = cam.fov * Math.PI / 180;
+ const height = 2 * Math.tan(vFOV / 2) * Math.abs(conf.cameraZ);
+ const width = height * cam.aspect;
+ return [width, height];
+ }
+}