commit d6c8a24f5ad79985c11c000a59b855d24e160ba4 Author: Segey Lapin Date: Tue Oct 26 21:51:45 2021 +0300 stuff diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ebbdeb4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.import +*.scn diff --git a/autoload/characters.gd b/autoload/characters.gd new file mode 100644 index 0000000..641e006 --- /dev/null +++ b/autoload/characters.gd @@ -0,0 +1,604 @@ +extends Characters_ + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta): + +onready var female = preload("res://characters/vroid1-female.tscn") +onready var male = preload("res://characters/vroid1-man.tscn") +onready var face_ctrl = preload("res://scenes/face/head_comtrol.tscn") +onready var modules = { +# "physics": load("res://scripts/modules/character_physics.gd"), + "cmdq": load("res://scripts/modules/cmdq.gd"), + "marker": load("res://scripts/modules/npc_marker.gd"), + "sacrifice": load("res://scripts/modules/npc_sacrifice.gd"), + "nun": load("res://scripts/modules/npc_nun.gd"), + "player": load("res://scripts/modules/player_controls.gd"), + "player_clothes": load("res://scripts/modules/player_clothes.gd"), + "hurtboxes": load("res://scripts/modules/character_hurtboxes.gd"), + "student": load("res://scripts/modules/npc_student.gd") +} + +var face_data_path = "res://scenes/face/" +var hair_data_path = "res://scenes/hair/" +var female_faces = [] +var male_faces = [] +var female_hairs = [] +var male_hairs = [] +var hair_materials = [] + +var name_data = {} +var rnd + +var roommates = {} + +#var _crowd: DetourCrowdManager + +func _ready(): + set_root_motion_mod(Transform()) + var fd = File.new() + fd.open("res://data/names.json", File.READ) + var names = fd.get_as_text() + var result = JSON.parse(names) + name_data = result.result + rnd = RandomNumberGenerator.new() + var data_fd: = File.new() + for g in ["male", "female"]: + var fp = face_data_path + g + "-face.tscn" + if data_fd.file_exists(fp): + match g: + "female": + female_faces.push_back(fp) + "male": + male_faces.push_back(fp) + for id in range(10000): + var fp_m = face_data_path + "male-face" + str(id) + ".tscn" + var fp_f = face_data_path + "female-face" + str(id) + ".tscn" + var hp_m = hair_data_path + "male-hair" + str(id) + ".tscn" + var hp_f = hair_data_path + "female-hair" + str(id) + ".tscn" + var mat = hair_data_path + "hair" + str(id) + ".tres" + if data_fd.file_exists(fp_m): + male_faces.push_back(fp_m) + if data_fd.file_exists(fp_f): + female_faces.push_back(fp_f) + if data_fd.file_exists(hp_m): + male_hairs.push_back(hp_m) + if data_fd.file_exists(hp_f): + female_hairs.push_back(hp_f) + if data_fd.file_exists(mat): + hair_materials.push_back(mat) + assert(male_faces.size() > 0) + assert(female_faces.size() > 0) + assert(male_hairs.size() > 0) + assert(female_hairs.size() > 0) + assert(hair_materials.size() > 0) + +func get_relationship(obj1, obj2, s) -> int: + var stats1 = {} + var stats2 = {} + if obj1.has_meta("stats"): + stats1 = obj1.get_meta("stats") + if obj2.has_meta("stats"): + stats2 = obj2.get_meta("stats") + if !stats2.has("relationships"): + return 0 + var rel = stats2.relationships + var cid = stats1.firstname + stats1.lastname + if !rel.has(cid): + return 0 + var rel_data = rel[cid] + if rel_data.has(s): + return rel_data[s] + return 0 +func set_relationships(obj1, obj2, s, v: int) -> void: + assert(obj1) + assert(obj2) + var stats1 = {} + var stats2 = {} + if obj1.has_meta("stats"): + stats1 = obj1.get_meta("stats") + if obj2.has_meta("stats"): + stats2 = obj2.get_meta("stats") + if !stats2.has("relationships"): + stats2.relationships = {} + var rel = stats2.relationships + var cid = stats1.firstname + stats1.lastname + if !rel.has(cid): + rel[cid] = {} + rel[cid][s] = v + print(stats2) + obj2.set_meta("stats", stats2) +func get_face_node(sc: Node) -> Node: + var face_node_paths = ["skeleton/Skeleton/head/face", "Skeleton/head/face"] + for e in face_node_paths: + if sc.has_node(e): + print("face node: ", e) + return sc.get_node(e) + assert(0) + return null + +func get_hair_node(sc: Node) -> Node: + var hair_node_paths = ["skeleton/Skeleton/head/hair", "Skeleton/head/hair"] + for e in hair_node_paths: + if sc.has_node(e): + print("hair node: ", e) + return sc.get_node(e) + assert(0) + return null +func compose_kinematic_character(g, enable_modules = [], face = -1, hair = -1, hair_mat = -1): + var body = KinematicBody.new() + var cshape = CollisionShape.new() + body.add_child(cshape) + var capsule = CapsuleShape.new() + var character_data = { + "sex": g, + "modules": enable_modules + } + var face_scene: PackedScene + var hair_scene: PackedScene + var face_i: Node + var hair_i: Node + var face_node: Node + var hair_node: Node + match g: + "female": + if face == -1: + face = rnd.randi() % female_faces.size() + if hair == -1: + hair = rnd.randi() % female_hairs.size() + face_scene = load(female_faces[face]) + hair_scene = load(female_hairs[hair]) + capsule.radius = 0.2 + capsule.height = 1.1 + capsule.margin = 0.05 + cshape.translation.x = 0 + cshape.translation.y = 0.751 + cshape.translation.z = 0 + cshape.rotation = Vector3(-PI/2.0, 0, 0) + var i = female.instance() + body.add_child(i) + i.transform = Transform() + face_node = get_face_node(i) + hair_node = get_hair_node(i) + "male": + if face == -1: + face = rnd.randi() % male_faces.size() + if hair == -1: + hair = rnd.randi() % male_hairs.size() + face_scene = load(male_faces[face]) + hair_scene = load(male_hairs[hair]) + capsule.radius = 0.3 + capsule.height = 1.2 + capsule.margin = 0.05 + cshape.translation.x = 0 + cshape.translation.y = 0.899 + cshape.translation.z = 0 + cshape.rotation = Vector3(-PI/2.0, 0, 0) + var i = male.instance() + body.add_child(i) + i.transform = Transform() + face_node = get_face_node(i) + hair_node = get_hair_node(i) + assert(face_node) + face_i = face_scene.instance() + face_i.add_to_group("face") + prepare_extra_skeleton(face_i, "face") + hair_i = hair_scene.instance() + hair_i.add_to_group("hair") + prepare_extra_skeleton(hair_i, "hair") + if hair_mat == -1: + hair_mat = rnd.randi() % hair_materials.size() + var hmat = load(hair_materials[hair_mat]) + assert(hmat) + set_hair_material(hair_i, hmat) + for e in face_node.get_children(): + e.queue_free() + for e in hair_node.get_children(): + e.queue_free() + face_node.add_child(face_i) + hair_node.add_child(hair_i) + var face_ctrl_i = face_ctrl.instance() + face_ctrl_i.active = true + face_i.add_child(face_ctrl_i) + face_i.set_meta("body", body) + body.set_meta("face_control", face_ctrl_i) + body.set_meta("face_playback", "parameters/state/playback") + face_ctrl_i.add_to_group("face") + face_i.transform = Transform() + character_data.face = face + character_data.hair = hair + character_data.hair_mat = hair_mat + cshape.shape = capsule + body.set_meta("character_data", character_data) + for e in enable_modules: + assert(modules.has(e)) + if modules.has(e): + assert(modules[e]) + var obj = modules[e].new() + body.add_child(obj) + setup_character_physics(body) + body.add_to_group("character") + return body + +func replace_character(obj, g, enable_modules = [], face = -1, hair = -1, hair_mat = -1): + assert(obj) + var xform = obj.global_transform + var p = obj.get_parent() + obj.queue_free() + var body = compose_kinematic_character(g, enable_modules, face, hair, hair_mat) + p.add_child(body) + body.global_transform = xform + var orientation = Transform() + orientation.basis = xform.basis + body.set_meta("orientation", orientation) + return body +const basedir = "res://scenes/clothes/" +func prepare_extra_skeleton(obj, g): + var queue = [obj] + while queue.size() > 0: + var item = queue.pop_front() + if item is Skeleton: + item.add_to_group(g) + break + for g in item.get_children(): + queue.push_back(g) +func set_hair_material(hair, mat: Material): + assert(mat) + var queue = [hair] + while queue.size() > 0: + var item = queue.pop_front() + if item is MeshInstance: + item.set_surface_material(0, mat) + break + for g in item.get_children(): + queue.push_back(g) +func setup_garments(obj, garments, garments_head, material): + var skel = obj.get_meta("skeleton") + var hair_skel = obj.get_meta("hair_skeleton") + + if obj.has_meta("garments"): + print("Can remove garments") + var d = obj.get_meta("garments") + var db = d.body_data + var dh = d.head_data + for e in db + dh: + print("remove: ", e) +# obj.remove_child(e) + if e.get_parent() == obj: + obj.remove_child(e) + e.queue_free() + var gdata_body = [] + for g in garments: + var m: MeshInstance = MeshInstance.new() + m.name = g + print("loading: ", basedir + g + ".mesh") + var geo: ArrayMesh = load(basedir + g + ".mesh") + assert(geo) + print("mesh: ", geo, "mat: ", material) + geo.surface_set_material(0, material) + m.mesh = geo +# m.skeleton = m.get_path_to(root.get_meta("skeleton")) +# = root.get_meta("skeleton") + skel.add_child(m) + m.transform = Transform() + gdata_body.push_back(m) + var gdata_head = [] + for g in garments_head: + var m: MeshInstance = MeshInstance.new() + m.name = g + var geo: ArrayMesh = load(basedir + g + ".mesh") + print("mesh: ", geo, "mat: ", material) + geo.surface_set_material(0, material) + m.mesh = geo +# m.skeleton = m.get_path_to(root.get_meta("skeleton")) +# = root.get_meta("skeleton") + hair_skel.add_child(m) + m.transform = Transform() + gdata_head.push_back(m) + var gdata = { + "body": garments, + "head": garments_head, + "material": material, + "body_data": gdata_body, + "head_data": gdata_head + } + obj.set_meta("garments", gdata) + +func lastname(): + var lastnames = name_data.lastname + var d = lastnames.size() + return lastnames[rnd.randi() % d].to_lower().capitalize() + +func firstname(g): + var firstnames = name_data[g].firstname + var d = firstnames.size() + return firstnames[rnd.randi() % d].to_lower().capitalize() + +func generate_stats(npc: Node): + var stats = npc.get_meta("stats") + var strength = 10 + rnd.randi() % 100 + var max_health = 10 + rnd.randi() % 100 + var max_stamina = 10 + rnd.randi() % 100 + stats.tiredness = 0.0 + stats.hunger = 0.0 + stats.thirst = 0.0 + stats.libido = 0.0 + stats.toilet = 0.0 + stats.stress = 0.0 + stats.health = max_health + stats.stamina = max_stamina + stats.max_health = max_health + stats.max_stamina = max_stamina + stats.violence = rnd.randi() % (int(strength * 0.5)) + stats.xp = 0 + npc.set_meta("stats", stats) +var stat_changes = { + "sleep":{ + "tiredness": -0.3, + "stress": -0.03 + }, + "eating": { + "hunger": -0.9, + "stress": -0.01 + }, + "drinking": { + "thirst": -2.8, + "stress": -0.01 + }, + "use_tap": { + "thirst": -2.8, + "stress": -0.01 + }, + "locomotion": { + "tiredness": 0.0015, + "hunger": 0.025, + "thirst": 0.045, + "stress": 0.0001, + "libido": 0.00015, + "toilet": 0.0002 + } +} +func update_stats(npc: Node): + var stats = npc.get_meta("stats") + if stats.tiredness < 10.0: + if stats.stamina < stats.max_stamina: + stats.stamina += 0.1 + stats.stamina = clamp(stats.stamina, 0, stats.max_stamina) + var animtree = npc.get_meta("animation_tree") + var state = animtree["parameters/state/playback"].get_current_node() + if state in stat_changes.keys(): + for s in stat_changes[state].keys(): + stats[s] += stat_changes[state][s] + if stats[s] < 0: + stats[s] = 0.0 + npc.set_meta("stats", stats) + +# Action part should be integrated into SmartObjectManager +func check_leave_smart(npc: Node): + return + if !npc.has_meta("smart_object"): + return + var sm = npc.get_meta("smart_object") + var new_goal = calculate_goal(npc) + if !sm.is_in_group(new_goal): +# var animtree = npc.get_meta("animation_tree") +# animtree["parameters/state/playback"].travel("locomotion") + npc.remove_meta("smart_object") + +func calculate_goal(npc: Node): + var utility = { + "sleep": ["tiredness", 900], + "hungry": ["hunger", 1000], + "thirsty": ["thirst", 1300], + "relieve_stress": ["stress", 800], + "have_sex": ["libido", 500], + "idle": ["", 600] + } + var stats = npc.get_meta("stats") + var rutility = -10000 + var goal = "idle" + var last_goal = "" + var last_utility = -1 + if npc.has_meta("last_goal"): + last_goal = npc.get_meta("last_goal") + goal = npc.get_meta("last_goal") + if npc.has_meta("last_utility"): + last_utility = int(npc.get_meta("last_utility")) + rutility = int(npc.get_meta("last_utility") * 2.0) + for k in utility.keys(): + var st = 1.0 + if utility[k][0] != "": + st = stats[utility[k][0]] + var mul = utility[k][1] + var cutil = int(st * mul) + if rutility < cutil: + rutility = cutil + goal = k + npc.set_meta("last_goal", goal) + if goal == last_goal: + npc.set_meta("last_utility", last_utility) + else: + npc.set_meta("last_utility", rutility) + + return goal + +var cooldown = 0.0 + +var close_groups = {} + +func walkto_(npc, target): + assert(npc.has_meta("agent_id")) + if npc.has_mete("agent_id"): + walkto_agent(npc, target) +# if npc.has_meta("_target"): +# var otarget = npc.get_meta("_target") +# if target == otarget: +# return +# assert(npc.has_meta("agent_id")) +# npc.set_meta("_target", target) +## print("walk to ", target) +## print("walk to ", target) +## print("walk to ", target) +# var agent_id = npc.get_meta("agent_id") +# if target is Spatial: +# get_crowd().set_agent_target_position(agent_id, target.global_transform.origin) +# elif target is Vector3: +# get_crowd().set_agent_target_position(agent_id, target) + +#func update_to_agent(root): +# if !_crowd: +# return +# if !root.has_meta("agent_id"): +# _crowd.add_agent(root, 0, false, PoolRealArray([0.2, 1.5, 0.3, 3.0])) +# if !root.has_meta("agent_id"): +# return +# if !root.has_meta("_target"): +# return +# var velocity = root.get_meta("agent_velocity") +# if velocity.length() == 0: +# characters.set_walk_speed(root, 0, 0) +# else: +## print("agent_velocity=", velocity) +# var vel1 = velocity +# vel1.y = 0 +# var xform: = Transform().looking_at(vel1, Vector3.UP) +# xform = xform.orthonormalized() +# var orientation = root.get_meta("orientation") +# orientation.basis = orientation.basis.slerp(xform.basis, get_physics_process_delta_time()) +# root.set_meta("orientation", orientation) +# characters.set_walk_speed(root, clamp(vel1.length() / 6.5, 0.0, 1.0), 0) +# +#func character_physics(root): +# var delta = get_physics_process_delta_time() +# var animtree = root.get_meta("animation_tree") +# var orientation = root.get_meta("orientation") +# var root_motion = animtree.get_root_motion_transform() +# orientation *= root_motion +# var h_velocity = orientation.origin / delta +# var velocity: = Vector3() +# velocity.x = h_velocity.x +# velocity.z = h_velocity.z +# velocity.y = h_velocity.y +## if root.has_meta("climb"): +## print("has climb meta") +## if root.has_meta("cmdqueue"): +## print("+has cmdqueue") +# if !root.has_meta("vehicle") && !root.has_meta("cmdqueue"): +# if root is KinematicBody: +# if !root.is_on_floor(): +# velocity += Vector3(0, -9.8, 0) +# velocity = root.move_and_slide(velocity, Vector3.UP, true, 4, 0.785, false) +# elif root.has_meta("cmdqueue") && root.has_meta("cmdq_walk"): +# if root is KinematicBody: +# if !root.is_on_floor() && !root.has_meta("climb"): +# velocity += Vector3(0, -9.8, 0) +# velocity = root.move_and_slide(velocity, Vector3.UP, true, 4, 0.785, false) +# elif root.has_meta("cmdqueue") && root.has_meta("climb"): +# if root is KinematicBody: +# velocity.y = h_velocity.y +# velocity = root.move_and_slide(velocity, Vector3.UP, true, 4, 0.785, false) +# orientation.origin = Vector3() +# orientation = orientation.orthonormalized() +# root.global_transform.basis = orientation.basis +# root.set_meta("orientation", orientation) +# if root.has_meta("vehicle"): +# var vehicle: VehicleBody = get_meta("vehicle") +# if has_meta("vehicle_offset"): +# var xform = get_meta("vehicle_offset") +# root.global_transform = vehicle.global_transform * xform +# if root.has_node("blackboard"): +# var bb = root.get_node("blackboard") +# bb.set("velocity", velocity) +# update_to_agent(root) + +func check_main_animtree(item): + if !item is AnimationTree: + return false + for g in ["hair", "face"]: + if item.is_in_group(g): + return false + return true + +func check_main_skeleton(item): + if !item is Skeleton: + return false + for g in ["hair", "face"]: + if item.is_in_group(g): + return false + return true + +func setup_character_physics(root): + var queue = [root] + while queue.size() > 0: + var item = queue.pop_front() + if check_main_animtree(item): + root.set_meta("animation_tree", item) + if check_main_skeleton(item): + root.set_meta("skeleton", item) + if item is Skeleton && item.is_in_group("hair"): + root.set_meta("hair_skeleton", item) + if item is Skeleton && item.is_in_group("face"): + root.set_meta("face_skeleton", item) + for e in item.get_children(): + queue.push_back(e) +# var velocity = Vector3() + var orientation = Transform() + if root.is_inside_tree(): + orientation = root.global_transform + orientation.origin = Vector3() + root.set_meta("orientation", orientation) + +func _process(delta): + if cooldown > 0.0: + cooldown -= delta + return + for e in get_tree().get_nodes_in_group("character"): + var gr = [] + for o in get_tree().get_nodes_in_group("character"): + if e == o: + continue + var e_org = e.global_transform.origin + var o_org = o.global_transform.origin + if e_org.distance_to(o_org) < 1.2: + gr.push_back(o) + close_groups[e] = gr + if e.has_meta("animation_tree"): + var animtree = e.get_meta("animation_tree") + var state = animtree["parameters/state/playback"].get_current_node() + var face_playback = e.get_meta("face_playback") + var face_ctrl = e.get_meta("face_control") + var p = face_ctrl[face_playback] + if state == "sleeping": + if p.get_current_node() != "sleeping": + p.travel("sleeping") + else: + if p.get_current_node() != "locomotion": + p.travel("locomotion") + cooldown = 0.2 +func get_player(): + var c = get_viewport().get_camera() + if !c: + return null + if !c.has_meta("player"): + return null + var player = c.get_meta("player") + if !player: + return null + return player + +func _physics_process(delta): + var player = get_player() + if !player: + return + if player.has_meta("animation_tree") && !player.has_meta("vehicle"): + character_physics(player) +# for e in get_tree().get_nodes_in_group("character") + [player]: +# if e && e.has_meta("animation_tree"): +# character_physics(e) diff --git a/autoload/controls.gd b/autoload/controls.gd new file mode 100644 index 0000000..bb3694d --- /dev/null +++ b/autoload/controls.gd @@ -0,0 +1,192 @@ +extends Node + +var is_gui = false + +var rot_cam = Vector3() +var mouse_sens = 0.3 +var camera_anglev = 0 + +var fps_mode = false +var tmp_fps_mode = false +var focus_cam: Camera +var cam_focused: bool = false + +var menu: Node +func display_menu(): + menu.popup() + + +func _ready(): + focus_cam = Camera.new() + add_child(focus_cam) + focus_cam.set_as_toplevel(true) +# var escape_menu = preload("res://ui/save_game.tscn") +# menu = escape_menu.instance() +# add_child(menu) + +func is_fps_mode(): + return fps_mode || tmp_fps_mode + +func _input(event): + if !is_gui: + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + if event is InputEventMouseMotion && !is_gui: + rot_cam.y = deg2rad(-event.relative.x * mouse_sens) + var changev = -event.relative.y * mouse_sens + var player + if get_viewport().get_camera().has_meta("player"): + player = get_viewport().get_camera().get_meta("player") + if !player: + return + var cam = player.get_meta("cam") + var fps_cam = player.get_meta("fps_cam") + if cam.current: + if camera_anglev + changev > -30 and camera_anglev + changev < 40: + camera_anglev += changev + rot_cam.x = deg2rad(changev) + elif fps_cam.current: + if camera_anglev + changev > -60 and camera_anglev + changev < 60: + camera_anglev += changev + rot_cam.x = deg2rad(changev) +func focus_camera(obj): + if !obj: + print("NOTHING TO FOCUS") + return + if cam_focused: + return + print("FOCUS") + var cur_cam = get_viewport().get_camera() + var player = cur_cam.get_meta("player") + var cam = player.get_meta("cam") + focus_cam.global_transform = cam.global_transform + var do = obj.global_transform.origin + focus_cam.look_at(do, Vector3.UP) + cam_focused = true + focus_cam.set_meta("camera", cur_cam) + focus_cam.set_current(true) + focus_cam.set_meta("player", player) +func unfocus_camera(): + cam_focused = false + var ncam = focus_cam.get_meta("camera") + ncam.set_current(true) + +func fix_cam(state, _delta): + var player = get_viewport().get_camera().get_meta("player") + if !is_fps_mode(): + var cam = player.get_meta("cam") + var cam_rot_y = cam.get_meta("cam_rot_y") + var cam_rot_x = cam.get_meta("cam_rot_x") + cam_rot_y.rotate_y(rot_cam.y) + cam_rot_x.rotate_x(rot_cam.x) + else: + if !player.has_meta("vehicle") && !player.has_meta("cmdqueue"): + var fps_cam = player.get_meta("fps_cam") + var fps_cam_rot_x = fps_cam.get_meta("fps_cam_rot_x") + var o: Transform = player.get_meta("orientation") + o.basis = o.basis.rotated(Vector3(0, 1, 0), rot_cam.y) + fps_cam_rot_x.rotate_x(rot_cam.x) + player.set_meta("orientation", o) + + rot_cam.y = 0 + rot_cam.x = 0 +func get_player(): + var c = get_viewport().get_camera() + assert(c) + if !c: + return null + assert(c.has_meta("player")) + if !c.has_meta("player"): + return null + var player = c.get_meta("player") + assert(player) + if !player: + return null + assert(player) + return player + +func switch_fps_mode(value): + var player = get_player() + print(player) + if !player: + return + assert(player != null) + var cam = player.get_meta("cam") + var fps_cam = player.get_meta("fps_cam") + var cam_rot_y = cam.get_meta("cam_rot_y") + if !value: + cam.current = true + player.show_face() + #need to convert to globals + cam_rot_y.rotation.y = player.rotation.y + else: + fps_cam.current = true + player.hide_face() + +var tmp_fps_cooldown = 0.0 + + +func _process(delta): + var c = get_viewport().get_camera() + if !c: + return + + if !c.has_meta("player"): + return + + var player = get_player() + if !player: + return + if !is_gui && Input.is_action_just_pressed("ui_cancel"): + is_gui = true + Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) + display_menu() + if !is_gui && Input.get_mouse_mode() != Input.MOUSE_MODE_CAPTURED: + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + elif is_gui && Input.get_mouse_mode() == Input.MOUSE_MODE_CAPTURED: + Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) + var cam = player.get_meta("cam") + var fps_cam = player.get_meta("fps_cam") + var cam_pos = cam.get_meta("cam_pos") + var cam_arm = cam.get_meta("cam_arm") + cam_pos.global_transform.origin = player.global_transform.origin + cam.look_at(player.global_transform.origin + Vector3(0, 1.9, 0), Vector3.UP) + + if Input.is_action_just_pressed("fps_mode") && !tmp_fps_mode: + fps_mode = !fps_mode + switch_fps_mode(fps_mode) + if !fps_mode && !tmp_fps_mode && !player.has_meta("vehicle"): + var s = cam_arm.global_transform.origin + var t = cam.global_transform.origin + if tmp_fps_cooldown <= 0.0: + if s.distance_to(t) < 0.3: + tmp_fps_mode = true + switch_fps_mode(tmp_fps_mode) + tmp_fps_cooldown = 1.0 + if !fps_mode && tmp_fps_mode: + var s = cam_arm.global_transform.origin + var t = cam.global_transform.origin + if tmp_fps_cooldown <= 0.0: + if s.distance_to(t) > 0.4: + tmp_fps_mode = false + switch_fps_mode(tmp_fps_mode) + tmp_fps_cooldown = 3.0 + if tmp_fps_cooldown > 0.0: + tmp_fps_cooldown -= delta + +var spawn_delay = 0.5 +func _physics_process(delta): + if spawn_delay > 0.5: + spawn_delay -= delta + return + var c = get_viewport().get_camera() + if !c: + return + if !c.has_meta("player"): + return + var player = c.get_meta("player") + if !player: + return + var space = player.get_world().space + var state = PhysicsServer.space_get_direct_state(space) + fix_cam(state, delta) + diff --git a/autoload/doors.gd b/autoload/doors.gd new file mode 100644 index 0000000..fed16fe --- /dev/null +++ b/autoload/doors.gd @@ -0,0 +1,72 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" +var door_list = {} + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + +func register_door(obj: Node, name, door_obj, axis, cangle, oangle, spd): + assert(obj) + assert(door_obj) + var root_name = str(obj.get_path()) + if !door_list.has(root_name): + door_list[root_name] = {} + var base = door_obj.transform + door_list[root_name][name] = {} + door_list[root_name][name].obj = door_obj + door_list[root_name][name].base = base + door_list[root_name][name].axis = axis + door_list[root_name][name].cangle = cangle + door_list[root_name][name].oangle = oangle + door_list[root_name][name].cur_angle = cangle + door_list[root_name][name].speed = spd + door_list[root_name][name].active = false + door_list[root_name][name].state = 0 +func open_door(obj, name): + var root_name = str(obj.get_path()) + if !door_list.has(root_name): + return + door_list[root_name][name].active = true + door_list[root_name][name].state = 1 +func close_door(obj, name): + var root_name = str(obj.get_path()) + if !door_list.has(root_name): + return + door_list[root_name][name].active = true + door_list[root_name][name].state = 0 +func is_active(obj, name): + var root_name = str(obj.get_path()) + if !door_list.has(root_name): + return false + return door_list[root_name][name].active +func get_state(obj, name): + var root_name = str(obj.get_path()) + if !door_list.has(root_name): + return -1 + return door_list[root_name][name].state +func _process(delta): + for e in door_list.keys(): + for j in door_list[e].keys(): + var m = door_list[e][j] + if m.active: + var change = min(1.0, m.speed * delta) + match m.state: + 0: + if abs(m.cur_angle - m.cangle) < 0.001: + m.cur_angle = m.cangle + m.active = false + else: + m.cur_angle = lerp_angle(m.cur_angle, m.cangle, change) + 1: + if abs(m.cur_angle - m.oangle) < 0.001: + m.cur_angle = m.oangle + m.active = false + else: + m.cur_angle = lerp_angle(m.cur_angle, m.oangle, change) + m.obj.transform.basis = m.base.basis.rotated(m.axis, m.cur_angle) + diff --git a/autoload/freezer.gd b/autoload/freezer.gd new file mode 100644 index 0000000..4db14e2 --- /dev/null +++ b/autoload/freezer.gd @@ -0,0 +1,131 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +var freeze_dist = 20.0 +func _ready(): + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func freeze_character(c): + var pos = c.transform + var sp = Spatial.new() + var pp = c.get_parent() + var character_data = {} + var stats = {} + if c.has_meta("character_data"): + character_data = c.get_meta("character_data") + if c.has_meta("stats"): + stats = c.get_meta("stats") + pp.add_child(sp) + sp.transform = pos + sp.add_to_group("frozen") + sp.set_meta("character_data", character_data) + var animtree: AnimationTree = c.get_meta("animation_tree") + assert(animtree) + var animation_node = animtree["parameters/state/playback"].get_current_node() + sp.set_meta("animation_node", animation_node) +# sp.set_meta("animation_tree", str(c.get_path_to(animtree))) + sp.set_meta("stats", stats) + if characters.get_crowd(): + characters.get_crowd().remove_agent(c) + c.queue_free() + +func prepare_save_data() -> bool: + if !freeze_all(): + return false + scenario.save_data.characters = [] + for c in get_tree().get_nodes_in_group("frozen"): + var n = {} + n.character_data = c.get_meta("character_data") + n.stats = c.get_meta("stats") + n.animation_node = c.get_meta("animation_node") + n.xform = var2str(c.global_transform) + scenario.save_data.characters.push_back(n) + return true +func get_player(): + var c = get_viewport().get_camera() + if !c: + return null + if !c.has_meta("player"): + return null + var player = c.get_meta("player") + if !player: + return null + return player + +func unfreeze_character(c): + var data = c.get_meta("character_data") + var stats = c.get_meta("stats") + print("HAIR: ", data.hair, " ", data.hair_mat) + var nc = characters.replace_character(c, data.sex, data.modules, data.face, data.hair, data.hair_mat) + nc.set_meta("stats", stats) + var animtree: AnimationTree = nc.get_meta("animation_tree") + assert(animtree) + var animation_node = c.get_meta("animation_node") + animtree["parameters/state/playback"].start(animation_node) + animtree["parameters/state/playback"].travel(animation_node) + nc.set_meta("saved_anim_state", animation_node) +var state = 0 +var delay = 0.0 +func freeze_all() -> bool: + var player = get_player() + var ok = true + for c in get_tree().get_nodes_in_group("character"): + if c == player: + continue + elif c.name.begins_with("npc_spawn"): + c.queue_free() + continue + elif c.name == "npc" && !c.has_meta("animation_tree"): + print("bad ", c.name, " ", c.get_meta_list()) + for e in c.get_meta_list(): + print("bad", c.get_meta(e)) + c.queue_free() + continue + assert(c.has_meta("animation_tree")) + if c.has_meta("animation_tree"): + freeze_character(c) + else: + ok = false + assert(ok) + return ok +func _process(delta): + var cam = get_viewport().get_camera() + var player = get_player() + if !player: + return + var cpos = cam.global_transform.origin + match state: + 0: + characters.set_process(false) + for c in get_tree().get_nodes_in_group("character"): + if c == player: + continue + var p = c.global_transform.origin + if p.distance_squared_to(cpos) > freeze_dist * freeze_dist: + if c.has_meta("animation_tree"): + freeze_character(c) + characters.set_process(true) + state = 1 + delay = 1.0 +# print("spawned: ", get_tree().get_nodes_in_group("character").size()) +# print("frozen: ", get_tree().get_nodes_in_group("frozen").size()) + 1: + characters.set_process(false) + for c in get_tree().get_nodes_in_group("frozen"): + var p = c.global_transform.origin + if p.distance_squared_to(cpos) < 0.25 * freeze_dist * freeze_dist: + print("unfreeze") + unfreeze_character(c) + characters.set_process(true) + if delay > 0.0: + delay -= delta + else: + state = 0 diff --git a/autoload/inventory.gd b/autoload/inventory.gd new file mode 100644 index 0000000..621b629 --- /dev/null +++ b/autoload/inventory.gd @@ -0,0 +1,89 @@ +extends Node +signal pick_up(item_name, obj) + +func _ready(): + pass + +var items = { + "s_dagger": false +} + +var item_dialogue = { + "s_dagger": { + "item_fullname": "sacrificial dagger", + "item_artname": "the sacrificial dagger", + "item_msg": "You see ancient dagger a small piece of metal with nothing special about it except the feeling of uneasiness and understanding that this is not ordinary weapon, but something with different purpose than just defeating the enemy. Something to thank bloodthirsty gods? Or avoid their wrath.", + "item_take_msg": "You fill freezing touch of the rough dagger at your hand. You feel the touch of ancient history, of many many veins opened, and lots of hearts pierced.", + "item_leave_msg": "You left the dagger be." + } +} + +onready var item_scenes = { + "s_dagger": load("res://scenes/weapons/sacrificial_dagger.tscn") +} +onready var item_collision_scenes = { + "s_dagger": load("res://scenes/weapons/dagger_collision.tscn") +} +func equip(obj, item_name): + if obj.has_meta("equipped"): + return + print("EQUIP ", item_name) + assert(obj) + assert(item_scenes.has(item_name)) + var r = item_scenes[item_name].instance() + var c = item_collision_scenes[item_name].instance() + obj.add_child(r) + r.add_child(c) + r.transform = Transform() + c.transform = Transform() + print("EQUIP ", item_name, " OK", obj, r) + obj.set_meta("equipped", item_name) +func register_pick_up(m, obj, item_name): + var mdata = { + "method": "pick_up", + "item": item_name, + "item_obj": obj + } + markers.init_marker(self, m, mdata) + +func pick_up_dialogue(item, item_obj): + return +# if controls.is_gui: +# return +# Dialogic.set_autosave(false) +# var scene = "pick_up_item" +# print("SCENE: ", scene) +# controls.is_gui = true +# var dialogue = Dialogic.start(scene, false) +# Dialogic.set_variable("item_name", item) +# Dialogic.set_variable("item_fullname", item_dialogue[item].item_fullname) +# Dialogic.set_variable("item_artname", item_dialogue[item].item_artname) +# Dialogic.set_variable("item_msg", item_dialogue[item].item_msg) +# Dialogic.set_variable("item_take_msg", item_dialogue[item].item_take_msg) +# Dialogic.set_variable("item_leave_msg", item_dialogue[item].item_leave_msg) +# add_child(dialogue) +# dialogue.connect("timeline_end", self, "finish_dialogue", [dialogue]) +# dialogue.connect("dialogic_signal", self, "signal_process", [dialogue]) +# dialogue.set_meta("item", item) +# dialogue.set_meta("item_obj", item_obj) +func finish_dialogue(dname, d): + controls.is_gui = false + d.queue_free() + +func signal_process(s, d): + var item = d.get_meta("item") + var item_obj = d.get_meta("item_obj") + match s: + "item_accepted": + items[item] = true + emit_signal("pick_up", item, item_obj) + "item_rejected": + pass +func pick_up(obj): + if items.has(obj.item) && items[obj.item]: + return + if item_dialogue.has(obj.item): + pick_up_dialogue(obj.item, obj.item_obj) + else: + items[obj.item] = true + emit_signal("pick_up", obj.item, obj.item_obj) diff --git a/autoload/map.gd b/autoload/map.gd new file mode 100644 index 0000000..cf28113 --- /dev/null +++ b/autoload/map.gd @@ -0,0 +1,52 @@ +tool +extends Node +export var noise: OpenSimplexNoise +export var curve: Curve +# +#var points = [] +##var rg: RoadGrid +#var setup = false +# +#func _ready(): +# if curve: +# curve.bake() +# else: +# curve = Curve.new() +# curve.min_value = -300 +# curve.max_value = 300 +# curve.add_point(Vector2(0, -300)) +# curve.add_point(Vector2(1, 300)) +# curve.bake() +# rg.build(curve, noise) +# setup = true +# +#func _init(): +# rg = Roads.get_road_grid() + +# var center = Vector2(0, 0) +# points.push_back(center) +# randomize() +# var npatches = 8 +# var sa = randf() * 2.0 * PI +# var center_count = 15 + randi() % 5 +# var center_step = 500 +# var centers = [] +# while centers.size() < center_count: +# var center_x = clamp(center_step * ((randi() % 100) - 50), -10000, 10000) +# var center_y = clamp(center_step * ((randi() % 100) - 50), -10000, 10000) +# var c = Vector2(center_x, center_y) +# if !c in centers: +# centers.push_back(c) +# for cx in centers: +# for e in range(npatches * 8): +# var a = sa + sqrt(e) * 8.0 +# var r = 0 if e == 0 else 100 + e * 100.0 + 50 * randf() +# var x = cos(a) * r + cx.x +# var y = sin(a) * r + cx.y +# var d = Vector2(x, y) +# points.push_back(d) +# print("voronoi start") +# var diagram = Voronoi.generate_diagram(points, 11) +# print("voronoi end, processing") +# rg.process_diagram(diagram) +# print("processing done") diff --git a/autoload/map.tscn b/autoload/map.tscn new file mode 100644 index 0000000..4b2bc77 --- /dev/null +++ b/autoload/map.tscn @@ -0,0 +1,16 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://autoload/map.gd" type="Script" id=1] + +[sub_resource type="OpenSimplexNoise" id=2] + +[sub_resource type="Curve" id=1] +min_value = -300.0 +max_value = 300.0 +bake_resolution = 200 +_data = [ Vector2( 0, -259.615 ), 0.0, 0.0, 0, 0, Vector2( 0.975, 300 ), 0.0, 0.0, 0, 0 ] + +[node name="Map" type="Node"] +script = ExtResource( 1 ) +noise = SubResource( 2 ) +curve = SubResource( 1 ) diff --git a/autoload/marker.gd b/autoload/marker.gd new file mode 100644 index 0000000..39ef729 --- /dev/null +++ b/autoload/marker.gd @@ -0,0 +1,213 @@ +extends Node + +var marker_list = [] +var label_count = 10 +var labels = [] +var max_dist = 4 +var current_marker +var cam + +func node_added(node): + if node.name.begins_with("marker_"): + if !node in marker_list: + marker_list.push_back(node) +func node_removed(node): + marker_list.erase(node) + +var state = 0 +func _ready(): + get_tree().connect("node_added", self, "node_added") + get_tree().connect("node_removed", self, "node_removed") + var root = get_tree().get_root() + var queue = [root] + while queue.size() > 0: + var item = queue.pop_front() + if item.name.begins_with("marker_"): + marker_list.push_back(item) + for e in item.get_children(): + queue.push_back(e) + +func see_through_marker(m): + if !m.has_meta("marker_data"): + return false + var md = m.get_meta("marker_data") + if md.has("see_through") && md.see_through == true: + return true + return false + +func _process(delta): + if state == 0: + var root = get_tree().get_root() + for _e in range(label_count): + var tl = Label.new() + root.add_child(tl) + tl.hide() + labels.push_back(tl) + state = 1 + if state == 1: + var cam = get_viewport().get_camera() + if !cam.has_meta("player"): + return + var player = cam.get_meta("player") + assert(player) + var size = get_viewport().size + var center = size/2 + var visible_markers = [] + var wstate = cam.get_world().direct_space_state + for e in marker_list: + var cam_pos = cam.global_transform.origin + var player_pos = player.global_transform.origin + var marker_pos = e.global_transform.origin + if player_pos.distance_squared_to(marker_pos) < max_dist * max_dist: + var lpos = cam.global_transform.xform_inv(marker_pos) + if lpos.z < 0: + if see_through_marker(e) && e.visible: + visible_markers.push_back(e) + elif e.visible: + var xlist = [player] + if e.has_meta("marker_data"): + var md = e.get_meta("marker_data") + if !md.has("obj"): + e.hide() + else: + if md.obj is PhysicsBody: + xlist.push_back(md.obj) + else: + e.hide() + + var result = wstate.intersect_ray(cam_pos, marker_pos, xlist) + if !result.has("collider") || !result.collider: + visible_markers.push_back(e) + + var free_labels = [] + var process_markers = visible_markers.duplicate() + for e in labels: + var l: Label = e + if l.has_meta("marker"): +# var n = l.get_meta("marker") +# if n in visible_markers: +# process_markers.erase(n) +# else: + l.remove_meta("marker") + free_labels.push_back(l) + l.hide() + else: + free_labels.push_back(l) + l.hide() + if free_labels.size() == 0: + state = 2 + return + for e in process_markers: + if free_labels.size() == 0: + break + var pos = cam.unproject_position(e.global_transform.origin) + var l = free_labels.pop_front() + var t = InputMap.get_action_list("activate")[0].as_text() + ": " + if e.name.ends_with("_door"): + t += "Open" + elif e.name.ends_with("_container"): + t += "Access" + elif e.name.ends_with("_pickup"): + t += "Pick up" + elif e.name.ends_with("_vehicleseat") || e.name.ends_with("_seat"): + t += "Sit" + elif e.name.ends_with("_exit"): + t += "Exit" + elif e.name.ends_with("_talk"): + t += "Talk" + elif e.name.ends_with("_action"): + t += "Action" + elif e.name.ends_with("_grab"): + t += "Grab" + elif e.name.ends_with("_take"): + t += "Take" + elif e.name.ends_with("_sacrifice"): + t += "Sacrifice" + l.set_meta("marker", e) + l.text = t + l.add_color_override("font_color", Color(0.6,0.6,1,1)) + l.rect_position = pos - l.rect_size / 2.0 + l.show() + var current = null + var cur_d = INF + for l in labels: + if l.visible: + var d = l.rect_position.distance_squared_to(center) + if !current: + cur_d = d + current = l + else: + if cur_d > d: + current = l + cur_d = d + if current: + current.add_color_override("font_color", Color(0.9,0.9,1,1)) + current_marker = current.get_meta("marker") + else: + current_marker = null + + state = 2 + + if state == 2: + state = 1 +# var player = get_viewport().get_camera().get_meta("player") +# if !controls.is_gui && !player.has_meta("group_behavior") && !player.has_meta("") +# if Input.is_action_just_pressed("activate"): +# var marker = current_marker +# if marker && marker.has_meta("marker_data"): +# var md = marker.get_meta("marker_data") +# print("marker_data: ", md) +# if md.has("obj"): +# print("obj: ", md.obj.name) +# if md.has("obj") && md.has("method"): +# print("activate ", md.obj.name, " ", md.method) +# md.obj.call_deferred(md.method, md) +func activate_marker(): + print("Activate marker") + var marker = current_marker + if marker && marker.has_meta("marker_data"): + var md = marker.get_meta("marker_data") + print("marker_data: ", md) + if md.has("obj"): + print("obj: ", md.obj.name) + if md.has("obj") && md.has("method"): + print("activate ", md.obj.name, " ", md.method) + md.obj.call_deferred(md.method, md) + +func init_markers(obj, marker_info): + var queue = [obj] + while queue.size() > 0: + var item = queue.pop_front() + if item.name.begins_with("marker_"): + if marker_info.has(item.name): + marker_info[item.name].marker_obj = item + for e in item.get_children(): + queue.push_back(e) + queue = [obj] + while queue.size() > 0: + var item = queue.pop_front() + if item.name.begins_with("marker_"): + var marker_data = {} + marker_data.obj = obj + if marker_info.has(item.name): + var o = marker_info[item.name] + for k in o.keys(): + marker_data[k] = o[k] + if o.has("see_through") && o.see_through: + item.hide() + item.set_meta("marker_data", marker_data) + for e in item.get_children(): + queue.push_back(e) +func init_marker(m, obj, data): + assert(m) + assert(obj) + assert(data) + var marker_data = {} + marker_data.obj = m + for e in data.keys(): + marker_data[e] = data[e] + if data.has("see_through") && data.see_through: + obj.hide() + obj.set_meta("marker_data", marker_data) + if !obj in marker_list: + marker_list.push_back(obj) diff --git a/autoload/scenario.gd b/autoload/scenario.gd new file mode 100644 index 0000000..0dd2c5d --- /dev/null +++ b/autoload/scenario.gd @@ -0,0 +1,17 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + +var save_data = {} + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta): +# pass diff --git a/autoload/streaming.gd b/autoload/streaming.gd new file mode 100644 index 0000000..0ce8a79 --- /dev/null +++ b/autoload/streaming.gd @@ -0,0 +1,296 @@ +extends Node + +export var trailer_house: PackedScene +export var palace: PackedScene +export var car: PackedScene + +onready var obj_names = { + "palace": palace, + "trailer_house": trailer_house +} + +var done = false + +class radial_grid: + var radial_points = [] + var max_r = 0.0 + var grid = [] + var width: int = 0 + var height: int = 0 + var nodes = [] + func build(poly, center): + var height = center.y + max_r = 0.0 + for p in range(poly.size()): + var ep1 = poly[p] + ep1.y = height + var ep2 = poly[(p + 1) % poly.size()] + ep2.y = height + var d = (ep2 - ep1).normalized() + radial_points.push_back(ep1) + var dst = ep1.distance_to(ep2) + while dst > 32: + ep1 += d * 32 + radial_points.push_back(ep1) + dst -= 32 + for p in range(radial_points.size()): + var ep = radial_points[p] + var dst = ep.distance_to(center) + if max_r < dst: + max_r = dst + width = radial_points.size() + height = int(max_r / 32) + grid.resize(width * height) + for p in range(width): + var start = radial_points[p] + var end = center + var step = (end - start).normalized() * (end - start).length() / float(height + 1) + var val = start + for q in range(height): + grid[p * height + q] = {"position": val, "node": null} + func get_grid_node(x, y): + return grid[x * height + y].node + func set_grid_node(x, y, node): + if !node in nodes: + nodes.push_back(node) + grid[x * height + y].node = node + func place_grid(aabb: AABB, node) -> void: + for u in range(width): + for v in range(height): + if aabb.has_point(grid[u * height + v].position): + set_grid_node(u, v, node) + func get_pos(x, y): + return grid[x * height + y].position + +onready var grid = radial_grid.new() + +func debug_poly(poly): + for k in range(poly.size()): + var p1 = poly[k] + var p2 = poly[(k + 1) % poly.size()] + var l = p1.distance_to(p2) + var d = (p2 - p1).normalized() + var pt = p1 + while l > 0.0: + for e in range(0, 30, 2): + var mi = MeshInstance.new() + mi.mesh = CubeMesh.new() + get_tree().root.add_child(mi) + mi.global_transform.origin = pt + Vector3(0, e, 0) + pt += d * 5.0 + l -= 5.0 + +func calc_border(poly, offt): + var height = RoadsData.get_site_avg_height(0) + var border = [] + border.resize(poly.size()) + for k in range(poly.size()): + var i = k - 1 + if i < 0: + i += poly.size() + var p1 = poly[i] + var p2 = poly[k] + var p3 = poly[(k + 1) % poly.size()] + var p1x = Vector2(p1.x, p1.z) + var p2x = Vector2(p2.x, p2.z) + var p3x = Vector2(p2.x, p2.z) + var p4x = Vector2(p3.x, p3.z) + var n1 = (p2x - p1x).tangent().normalized() + var n2 = (p4x - p3x).tangent().normalized() + p1x -= n1 * offt + p2x -= n1 * offt + p3x -= n2 * offt + p4x -= n2 * offt + + var xp = Geometry.segment_intersects_segment_2d(p1x, p2x, p3x, p4x) + if !xp: + xp = p2x.linear_interpolate(p3x, 0.5) - (n1 + n2).normalized() * offt + var tp = Vector3(xp.x, height, xp.y) + border[k] = tp + return border + +var towns = 0 +func setup_town(site): + if !RoadsData.site_is_town(site): + print("site ", site, " type: ", RoadsData.get_site_type(site)) + return + var poly = RoadsData.get_site_polygon_3d(site) + var height = RoadsData.get_site_avg_height(site) + var border2 = calc_border(poly, 60) + var aabbs = [] + var poly2 = [] + poly2.resize(border2.size()) + for p in range(border2.size()): + poly2[p] = Vector2(border2[p].x, border2[p].z) + var center = Vector3() + for p in poly: + center += p + center /= poly.size() + center.y = height + grid.build(border2, center) + var radial_points = grid.radial_points + var max_r = 0.0 + for p in range(radial_points.size()): + var ep = radial_points[p] + var dst = ep.distance_to(center) + if max_r < dst: + max_r = dst + for p in range(radial_points.size()): + var ep = radial_points[p] + var d = (center - ep).normalized() + var dst = ep.distance_to(center) + print(dst) + if dst < 64.0 + 12 + 8 + 4: + continue + var step = 16.0 + var pstart = ep + while dst > 0.0: + var ok = true + if !Geometry.is_point_in_polygon(Vector2(pstart.x, pstart.z), poly2): + ok = false + if ok: + for b in aabbs: + if b.has_point(pstart): + ok = false + if ok: + var xform = Transform(Basis(), pstart).looking_at(pstart + d, Vector3.UP) + stream_obj("trailer_house", xform) + var aabb = AABB(pstart, Vector3()) + aabb = aabb.grow(20) + aabbs.push_back(aabb) + print("placed to: ", pstart) + pstart = pstart + d * step + dst -= step + towns += 1 + +func setup_first_town(): + assert(!done) + var poly = RoadsData.get_site_polygon_3d(0) + var height = RoadsData.get_site_avg_height(0) + var border = calc_border(poly, 32) + var border1a = calc_border(poly, 42) + var border2 = calc_border(poly, 60) + + var poly2 = [] + poly2.resize(border2.size()) + for p in range(border2.size()): + poly2[p] = Vector2(border2[p].x, border2[p].z) + var center = Vector3() + for p in poly: + center += p + center /= poly.size() + center.y = height + grid.build(border2, center) + var radial_points = grid.radial_points + var max_r = 0.0 + for p in range(radial_points.size()): + var ep = radial_points[p] + var dst = ep.distance_to(center) + if max_r < dst: + max_r = dst + var u = radial_points.size() + var v = int(max_r / 32) + var grid = [] + grid.resize(u * v) + for p in range(u): + var start = radial_points[p] + var end = center + var step = (end - start).normalized() * (end - start).length() / float(v + 1) + var val = start + for q in range(v): + grid[p * v + q] = {"position": val} + var aabbs = [] + var palace_aabb = AABB(center, Vector3()) + palace_aabb = palace_aabb.grow(48) + print(palace_aabb) + aabbs.push_back(palace_aabb) + stream_obj("palace", Transform(Basis(), center)) + + for p in range(radial_points.size()): + var ep = radial_points[p] + var d = (center - ep).normalized() + var dst = ep.distance_to(center) + print(dst) + if dst < 64.0 + 12 + 8 + 4: + continue + var step = 16.0 + var pstart = ep + while dst > 0.0: + var ok = true + if !Geometry.is_point_in_polygon(Vector2(pstart.x, pstart.z), poly2): + ok = false + if ok: + for b in aabbs: + if b.has_point(pstart): + ok = false + if ok: + var xform = Transform(Basis(), pstart).looking_at(pstart + d, Vector3.UP) + stream_obj("trailer_house", xform) + var aabb = AABB(pstart, Vector3()) + aabb = aabb.grow(20) + aabbs.push_back(aabb) + print("placed to: ", pstart) + pstart = pstart + d * step + dst -= step + towns += 1 + done = true + +func _ready(): + for k in obj_names.keys(): + Spawner.add_scene(k, obj_names[k]) + +# Called every frame. 'delta' is the elapsed time since the previous frame. +var delay = 3.0 +var state = 0 +func _process(delta): + match state: + 0: + delay -= delta + if delay < 0: + state = 1 + 1: + Spawner.update_view(self, 300) + var sc = get_tree().root + var viewport: = get_viewport() + if !viewport: + return + var cam: = viewport.get_camera() + if !cam: + return + var cam_xform: = cam.global_transform + +func stream_obj(obj: String, xform: Transform): + Spawner.place_scene(obj, xform) +func _physics_process(delta): + var cam = get_viewport().get_camera() + if !cam: + return + match state: + 1: + var space_state = get_viewport().get_world().direct_space_state + # probaly should not be here + for n in get_tree().get_nodes_in_group("spawn"): + var ok = false + if !n.is_in_group("keep"): + var where = n.get_global_transform().origin + var from = where + var to = where + from.y -= 8.0 + to.y += 8.0 + var result = space_state.intersect_ray(from, to) + if result.empty() || !result.has("collider"): + continue + if result.collider: + n.global_transform.origin = result.position + ok = true + if ok || n.is_in_group("keep"): + if n.is_in_group("male"): + characters.replace_character(n, "male", ["cmdq", "marker", "hurtboxes", "student"]) + elif n.is_in_group("female"): + characters.replace_character(n, "female", ["cmdq", "marker", "hurtboxes", "student"]) + elif n.is_in_group("car"): + var c = car.instance() + var p = get_tree().root + p.add_child(c) + c.global_transform = n.global_transform + n.queue_free() diff --git a/autoload/streaming.tscn b/autoload/streaming.tscn new file mode 100644 index 0000000..473b595 --- /dev/null +++ b/autoload/streaming.tscn @@ -0,0 +1,12 @@ +[gd_scene load_steps=5 format=2] + +[ext_resource path="res://autoload/streaming.gd" type="Script" id=1] +[ext_resource path="res://objects/trailer-house.tscn" type="PackedScene" id=2] +[ext_resource path="res://objects/palace.tscn" type="PackedScene" id=3] +[ext_resource path="res://scenes/vehicles/car.tscn" type="PackedScene" id=4] + +[node name="streaming" type="Node"] +script = ExtResource( 1 ) +trailer_house = ExtResource( 2 ) +palace = ExtResource( 3 ) +car = ExtResource( 4 ) diff --git a/camera/camera_pos.tscn b/camera/camera_pos.tscn new file mode 100644 index 0000000..378cd99 --- /dev/null +++ b/camera/camera_pos.tscn @@ -0,0 +1,26 @@ +[gd_scene load_steps=3 format=2] + +[ext_resource path="res://camera/environment.tres" type="Environment" id=1] + +[sub_resource type="SphereShape" id=1] +radius = 0.1 + +[node name="camera_pos" type="Spatial"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 6.75037, 0 ) + +[node name="rot_y" type="Spatial" parent="."] + +[node name="rot_x" type="Spatial" parent="rot_y"] + +[node name="SpringArm" type="SpringArm" parent="rot_y/rot_x"] +transform = Transform( 1, 0, 0, 0, 0.903013, 0.429613, 0, -0.429613, 0.903013, 0, 1.75, 0.2 ) +shape = SubResource( 1 ) +spring_length = 2.0 +margin = 0.04 + +[node name="camera_offset" type="Spatial" parent="rot_y/rot_x/SpringArm"] + +[node name="Camera" type="Camera" parent="rot_y/rot_x/SpringArm/camera_offset"] +transform = Transform( 1, 0, 0, 0, 0.900455, -0.434948, 0, 0.434948, 0.900455, 0, 0, 0 ) +environment = ExtResource( 1 ) +far = 350.0 diff --git a/camera/environment.tres b/camera/environment.tres new file mode 100644 index 0000000..f4c6c6d --- /dev/null +++ b/camera/environment.tres @@ -0,0 +1,15 @@ +[gd_resource type="Environment" load_steps=2 format=2] + +[sub_resource type="ProceduralSky" id=1] + +[resource] +background_mode = 2 +background_sky = SubResource( 1 ) +ambient_light_energy = 0.7 +fog_enabled = true +fog_color = Color( 0.447059, 0.501961, 0.552941, 1 ) +fog_sun_color = Color( 1, 0.901961, 0.701961, 1 ) +fog_sun_amount = 0.25 +fog_depth_end = 250.0 +fog_depth_curve = 0.196146 +dof_blur_far_quality = 0 diff --git a/camera/fps_cam_pos.tscn b/camera/fps_cam_pos.tscn new file mode 100644 index 0000000..6d78e86 --- /dev/null +++ b/camera/fps_cam_pos.tscn @@ -0,0 +1,13 @@ +[gd_scene load_steps=2 format=2] + +[ext_resource path="res://camera/environment.tres" type="Environment" id=1] + +[node name="fps_cam_pos" type="Spatial"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.75, -0.2 ) + +[node name="fos_cam_rot_y" type="Spatial" parent="."] + +[node name="fps_cam_rot_x" type="Spatial" parent="fos_cam_rot_y"] + +[node name="fps_camera" type="Camera" parent="fos_cam_rot_y/fps_cam_rot_x"] +environment = ExtResource( 1 ) diff --git a/characters/character.gd b/characters/character.gd new file mode 100644 index 0000000..8f4db18 --- /dev/null +++ b/characters/character.gd @@ -0,0 +1,12 @@ +extends KinematicBody + + +func _ready(): + add_to_group("characters") + +func hide_face(): + $"vroid1-man/Skeleton/head/face".hide() + $"vroid1-man/Skeleton/head/hair".hide() +func show_face(): + $"vroid1-man/Skeleton/head/face".show() + $"vroid1-man/Skeleton/head/hair".show() diff --git a/characters/vroid1-female.tscn b/characters/vroid1-female.tscn new file mode 100644 index 0000000..7a9f044 --- /dev/null +++ b/characters/vroid1-female.tscn @@ -0,0 +1,734 @@ +[gd_scene load_steps=138 format=2] + +[ext_resource path="res://scenes/characters/vroid1-female.gltf" type="PackedScene" id=1] +[ext_resource path="res://scenes/hair/female-hair1.tscn" type="PackedScene" id=2] +[ext_resource path="res://scenes/face/female-face1.tscn" type="PackedScene" id=3] + +[sub_resource type="SphereShape" id=1] +radius = 0.13 + +[sub_resource type="SphereShape" id=2] +radius = 0.14 + +[sub_resource type="BoxShape" id=3] +extents = Vector3( 0.13, 0.16, 0.06 ) + +[sub_resource type="AnimationNodeAnimation" id=4] +animation = "blend-right-arm-blade" + +[sub_resource type="AnimationNodeAnimation" id=5] +animation = "blend-left-arm-blade" + +[sub_resource type="AnimationNodeTimeScale" id=6] + +[sub_resource type="AnimationNodeBlend2" id=7] +filter_enabled = true +filters = [ "skeleton/Skeleton:hand_l", "skeleton/Skeleton:index_1_l", "skeleton/Skeleton:index_2_l", "skeleton/Skeleton:index_3_end_l", "skeleton/Skeleton:index_3_l", "skeleton/Skeleton:little_1_l", "skeleton/Skeleton:little_2_l", "skeleton/Skeleton:little_3_end_l", "skeleton/Skeleton:little_3_l", "skeleton/Skeleton:middle_1_l", "skeleton/Skeleton:middle_2_l", "skeleton/Skeleton:middle_3_end_l", "skeleton/Skeleton:middle_3_l", "skeleton/Skeleton:ring_1_l", "skeleton/Skeleton:ring_2_l", "skeleton/Skeleton:ring_3_end_l", "skeleton/Skeleton:ring_3_l", "skeleton/Skeleton:thumb_1_l", "skeleton/Skeleton:thumb_2_l", "skeleton/Skeleton:thumb_3_end_l", "skeleton/Skeleton:thumb_3_l" ] + +[sub_resource type="AnimationNodeBlend2" id=8] +filter_enabled = true +filters = [ "skeleton/Skeleton:hand_r", "skeleton/Skeleton:index_1_r", "skeleton/Skeleton:index_2_r", "skeleton/Skeleton:index_3_end_r", "skeleton/Skeleton:index_3_r", "skeleton/Skeleton:little_1_r", "skeleton/Skeleton:little_2_r", "skeleton/Skeleton:little_3_end_r", "skeleton/Skeleton:little_3_r", "skeleton/Skeleton:middle_1_r", "skeleton/Skeleton:middle_2_r", "skeleton/Skeleton:middle_3_end_r", "skeleton/Skeleton:middle_3_r", "skeleton/Skeleton:ring_1_r", "skeleton/Skeleton:ring_2_r", "skeleton/Skeleton:ring_3_end_r", "skeleton/Skeleton:ring_3_r", "skeleton/Skeleton:thumb_1_r", "skeleton/Skeleton:thumb_2_r", "skeleton/Skeleton:thumb_3_end_r", "skeleton/Skeleton:thumb_3_r" ] + +[sub_resource type="AnimationNodeAnimation" id=9] +animation = "climb1" + +[sub_resource type="AnimationNodeTimeScale" id=10] + +[sub_resource type="AnimationNodeBlendTree" id=11] +nodes/Animation/node = SubResource( 9 ) +nodes/Animation/position = Vector2( 235, 191 ) +nodes/TimeScale/node = SubResource( 10 ) +nodes/TimeScale/position = Vector2( 480, 160 ) +nodes/output/position = Vector2( 760, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=12] +animation = "climb1a" + +[sub_resource type="AnimationNodeTimeScale" id=13] + +[sub_resource type="AnimationNodeBlendTree" id=14] +nodes/Animation/node = SubResource( 12 ) +nodes/Animation/position = Vector2( 354, 279 ) +nodes/TimeScale/node = SubResource( 13 ) +nodes/TimeScale/position = Vector2( 763, 297 ) +nodes/output/position = Vector2( 1220, 300 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeBlendTree" id=15] + +[sub_resource type="AnimationNodeAnimation" id=16] +animation = "start-grabbed" + +[sub_resource type="AnimationNodeTimeScale" id=17] + +[sub_resource type="AnimationNodeBlendTree" id=18] +nodes/Animation/node = SubResource( 16 ) +nodes/Animation/position = Vector2( 380, 100 ) +nodes/TimeScale/node = SubResource( 17 ) +nodes/TimeScale/position = Vector2( 592, 184 ) +nodes/output/position = Vector2( 860, 120 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=19] +animation = "female-idle-to-kneel1" + +[sub_resource type="AnimationNodeTimeScale" id=20] + +[sub_resource type="AnimationNodeBlendTree" id=21] +nodes/Animation/node = SubResource( 19 ) +nodes/Animation/position = Vector2( 390, 274 ) +nodes/TimeScale/node = SubResource( 20 ) +nodes/TimeScale/position = Vector2( 826, 273 ) +nodes/output/position = Vector2( 1180, 280 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=22] +animation = "11_01-idle" + +[sub_resource type="AnimationNodeAnimation" id=23] +animation = "10_01-idle" + +[sub_resource type="AnimationNodeTimeScale" id=24] + +[sub_resource type="AnimationNodeTimeScale" id=25] + +[sub_resource type="AnimationNodeTransition" id=26] +input_count = 2 +xfade_time = 0.4 +input_0/name = "idle1" +input_0/auto_advance = true +input_1/name = "idle2" +input_1/auto_advance = true + +[sub_resource type="AnimationNodeBlendTree" id=27] +nodes/Animation/node = SubResource( 23 ) +nodes/Animation/position = Vector2( 55, 117 ) +"nodes/Animation 2/node" = SubResource( 22 ) +"nodes/Animation 2/position" = Vector2( 80, 260 ) +nodes/TimeScale/node = SubResource( 25 ) +nodes/TimeScale/position = Vector2( 580, 100 ) +"nodes/TimeScale 2/node" = SubResource( 24 ) +"nodes/TimeScale 2/position" = Vector2( 380, 240 ) +nodes/output/position = Vector2( 1120, 120 ) +nodes/t1/node = SubResource( 26 ) +nodes/t1/position = Vector2( 880, 100 ) +node_connections = [ "output", 0, "t1", "TimeScale", 0, "Animation", "TimeScale 2", 0, "Animation 2", "t1", 0, "TimeScale", "t1", 1, "TimeScale 2" ] + +[sub_resource type="AnimationNodeAnimation" id=28] +animation = "walk1p2" + +[sub_resource type="AnimationNodeAnimation" id=29] +animation = "walk1p1" + +[sub_resource type="AnimationNodeTimeScale" id=30] + +[sub_resource type="AnimationNodeTimeScale" id=31] + +[sub_resource type="AnimationNodeTransition" id=32] +input_count = 2 +input_0/name = "state 0" +input_0/auto_advance = true +input_1/name = "state 1" +input_1/auto_advance = true + +[sub_resource type="AnimationNodeBlendTree" id=33] +nodes/Animation/node = SubResource( 29 ) +nodes/Animation/position = Vector2( 140, 100 ) +"nodes/Animation 2/node" = SubResource( 28 ) +"nodes/Animation 2/position" = Vector2( 180, 260 ) +nodes/TimeScale/node = SubResource( 31 ) +nodes/TimeScale/position = Vector2( 620, 40 ) +"nodes/TimeScale 2/node" = SubResource( 30 ) +"nodes/TimeScale 2/position" = Vector2( 610, 231 ) +nodes/Transition/node = SubResource( 32 ) +nodes/Transition/position = Vector2( 905, 264 ) +nodes/output/position = Vector2( 1280, 120 ) +node_connections = [ "output", 0, "Transition", "TimeScale", 0, "Animation", "Transition", 0, "TimeScale", "Transition", 1, "TimeScale 2", "TimeScale 2", 0, "Animation 2" ] + +[sub_resource type="AnimationNodeAnimation" id=34] +animation = "07_01-walk" + +[sub_resource type="AnimationNodeTimeScale" id=35] + +[sub_resource type="AnimationNodeBlendTree" id=36] +nodes/Animation/node = SubResource( 34 ) +nodes/Animation/position = Vector2( 128, 154 ) +nodes/TimeScale/node = SubResource( 35 ) +nodes/TimeScale/position = Vector2( 420, 160 ) +nodes/output/position = Vector2( 640, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=37] +animation = "07_03-walk" + +[sub_resource type="AnimationNodeTimeScale" id=38] + +[sub_resource type="AnimationNodeBlendTree" id=39] +nodes/Animation/node = SubResource( 37 ) +nodes/Animation/position = Vector2( 220, 120 ) +nodes/TimeScale/node = SubResource( 38 ) +nodes/TimeScale/position = Vector2( 580, 120 ) +nodes/output/position = Vector2( 840, 140 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=40] +animation = "walk1p2" + +[sub_resource type="AnimationNodeAnimation" id=41] +animation = "walk1p1" + +[sub_resource type="AnimationNodeTimeScale" id=42] + +[sub_resource type="AnimationNodeTimeScale" id=43] + +[sub_resource type="AnimationNodeTransition" id=44] +input_count = 2 +input_0/name = "state 0" +input_0/auto_advance = true +input_1/name = "state 1" +input_1/auto_advance = true + +[sub_resource type="AnimationNodeBlendTree" id=45] +graph_offset = Vector2( 0, -259 ) +nodes/Animation/node = SubResource( 41 ) +nodes/Animation/position = Vector2( 200, 80 ) +"nodes/Animation 2/node" = SubResource( 40 ) +"nodes/Animation 2/position" = Vector2( 200, 280 ) +nodes/TimeScale/node = SubResource( 43 ) +nodes/TimeScale/position = Vector2( 660, 60 ) +"nodes/TimeScale 2/node" = SubResource( 42 ) +"nodes/TimeScale 2/position" = Vector2( 580, 260 ) +nodes/Transition/node = SubResource( 44 ) +nodes/Transition/position = Vector2( 920, 120 ) +nodes/output/position = Vector2( 1260, 160 ) +node_connections = [ "output", 0, "Transition", "TimeScale", 0, "Animation", "Transition", 0, "TimeScale", "Transition", 1, "TimeScale 2", "TimeScale 2", 0, "Animation 2" ] + +[sub_resource type="AnimationNodeAnimation" id=46] +animation = "walk1p2" + +[sub_resource type="AnimationNodeAnimation" id=47] +animation = "walk1p1" + +[sub_resource type="AnimationNodeTimeScale" id=48] + +[sub_resource type="AnimationNodeTimeScale" id=49] + +[sub_resource type="AnimationNodeTransition" id=50] +input_count = 2 +xfade_time = 0.2 +input_0/name = "state 0" +input_0/auto_advance = true +input_1/name = "state 1" +input_1/auto_advance = true + +[sub_resource type="AnimationNodeBlendTree" id=51] +graph_offset = Vector2( 0, -294.25 ) +nodes/Animation/node = SubResource( 47 ) +nodes/Animation/position = Vector2( 208, 136 ) +"nodes/Animation 2/node" = SubResource( 46 ) +"nodes/Animation 2/position" = Vector2( 230, 287 ) +nodes/TimeScale/node = SubResource( 49 ) +nodes/TimeScale/position = Vector2( 660, 80 ) +"nodes/TimeScale 2/node" = SubResource( 48 ) +"nodes/TimeScale 2/position" = Vector2( 680, 260 ) +nodes/Transition/node = SubResource( 50 ) +nodes/Transition/position = Vector2( 1000, 140 ) +nodes/output/position = Vector2( 1260, 140 ) +node_connections = [ "output", 0, "Transition", "TimeScale", 0, "Animation", "Transition", 0, "TimeScale", "Transition", 1, "TimeScale 2", "TimeScale 2", 0, "Animation 2" ] + +[sub_resource type="AnimationNodeBlendSpace2D" id=52] +blend_point_0/node = SubResource( 27 ) +blend_point_0/pos = Vector2( 0, 0 ) +blend_point_1/node = SubResource( 33 ) +blend_point_1/pos = Vector2( 0.2, 0 ) +blend_point_2/node = SubResource( 36 ) +blend_point_2/pos = Vector2( 0.2, -1 ) +blend_point_3/node = SubResource( 39 ) +blend_point_3/pos = Vector2( 0.2, 1 ) +blend_point_4/node = SubResource( 45 ) +blend_point_4/pos = Vector2( 0.6, 0 ) +blend_point_5/node = SubResource( 51 ) +blend_point_5/pos = Vector2( 0.4, 0 ) + +[sub_resource type="AnimationNodeBlendTree" id=53] +graph_offset = Vector2( 0, -95 ) +nodes/loc/node = SubResource( 52 ) +nodes/loc/position = Vector2( 580, 80 ) +nodes/output/position = Vector2( 960, 160 ) +node_connections = [ "output", 0, "loc" ] + +[sub_resource type="AnimationNodeBlendTree" id=54] + +[sub_resource type="AnimationNodeAnimation" id=55] +animation = "female-pray-startled-walk1-loop" + +[sub_resource type="AnimationNodeAnimation" id=56] +animation = "female-pray-startled-walk1-loop" + +[sub_resource type="AnimationNodeTimeScale" id=57] + +[sub_resource type="AnimationNodeTimeScale" id=58] + +[sub_resource type="AnimationNodeTransition" id=59] +input_count = 2 +input_0/name = "state 0" +input_0/auto_advance = true +input_1/name = "state 1" +input_1/auto_advance = true + +[sub_resource type="AnimationNodeBlendTree" id=60] +nodes/Animation/node = SubResource( 56 ) +nodes/Animation/position = Vector2( 200, 280 ) +"nodes/Animation 2/node" = SubResource( 55 ) +"nodes/Animation 2/position" = Vector2( 200, 420 ) +nodes/TimeScale/node = SubResource( 58 ) +nodes/TimeScale/position = Vector2( 640, 200 ) +"nodes/TimeScale 2/node" = SubResource( 57 ) +"nodes/TimeScale 2/position" = Vector2( 640, 360 ) +nodes/Transition/node = SubResource( 59 ) +nodes/Transition/position = Vector2( 860, 220 ) +nodes/output/position = Vector2( 1080, 200 ) +node_connections = [ "output", 0, "Transition", "TimeScale", 0, "Animation", "Transition", 1, "TimeScale 2", "TimeScale 2", 0, "Animation 2" ] + +[sub_resource type="AnimationNodeAnimation" id=61] +animation = "female-pray-startled1" + +[sub_resource type="AnimationNodeTimeScale" id=62] + +[sub_resource type="AnimationNodeBlendTree" id=63] +nodes/Animation/node = SubResource( 61 ) +nodes/Animation/position = Vector2( 181, 220 ) +nodes/TimeScale/node = SubResource( 62 ) +nodes/TimeScale/position = Vector2( 590, 212 ) +nodes/output/position = Vector2( 880, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=64] +animation = "female-pray-complete" + +[sub_resource type="AnimationNodeTimeScale" id=65] + +[sub_resource type="AnimationNodeBlendTree" id=66] +nodes/Animation/node = SubResource( 64 ) +nodes/Animation/position = Vector2( 585, 170 ) +nodes/TimeScale/node = SubResource( 65 ) +nodes/TimeScale/position = Vector2( 865, 191 ) +nodes/output/position = Vector2( 1280, 180 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=67] +animation = "idle-lying-tied-attack1" + +[sub_resource type="AnimationNodeAnimation" id=68] +animation = "idle-lying-tied-attack2" + +[sub_resource type="AnimationNodeAnimation" id=69] +animation = "idle-lying-tied-loop" + +[sub_resource type="AnimationNodeTimeScale" id=70] + +[sub_resource type="AnimationNodeTimeScale" id=71] + +[sub_resource type="AnimationNodeOneShot" id=72] + +[sub_resource type="AnimationNodeOneShot" id=73] + +[sub_resource type="AnimationNodeTimeScale" id=74] + +[sub_resource type="AnimationNodeBlendTree" id=75] +graph_offset = Vector2( -12, 62 ) +nodes/Animation/node = SubResource( 69 ) +nodes/Animation/position = Vector2( 222, 131 ) +"nodes/Animation 2/node" = SubResource( 67 ) +"nodes/Animation 2/position" = Vector2( 220, 280 ) +"nodes/Animation 3/node" = SubResource( 68 ) +"nodes/Animation 3/position" = Vector2( 238, 428 ) +nodes/TimeScale/node = SubResource( 71 ) +nodes/TimeScale/position = Vector2( 500, 240 ) +"nodes/TimeScale 2/node" = SubResource( 70 ) +"nodes/TimeScale 2/position" = Vector2( 500, 380 ) +nodes/attack1/node = SubResource( 72 ) +nodes/attack1/position = Vector2( 800, 120 ) +nodes/attack2/node = SubResource( 73 ) +nodes/attack2/position = Vector2( 1140, 300 ) +nodes/output/position = Vector2( 1580, 180 ) +nodes/speed/node = SubResource( 74 ) +nodes/speed/position = Vector2( 540, 60 ) +node_connections = [ "speed", 0, "Animation", "output", 0, "attack2", "TimeScale", 0, "Animation 2", "attack1", 0, "speed", "attack1", 1, "TimeScale", "attack2", 0, "attack1", "attack2", 1, "TimeScale 2", "TimeScale 2", 0, "Animation 3" ] + +[sub_resource type="AnimationNodeAnimation" id=76] +animation = "dagger-sacrifice-counter-p" + +[sub_resource type="AnimationNodeTimeScale" id=77] + +[sub_resource type="AnimationNodeBlendTree" id=78] +graph_offset = Vector2( 0, -259 ) +nodes/Animation/node = SubResource( 76 ) +nodes/Animation/position = Vector2( 440, 160 ) +nodes/TimeScale/node = SubResource( 77 ) +nodes/TimeScale/position = Vector2( 760, 140 ) +nodes/output/position = Vector2( 1000, 180 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=79] +animation = "sleeping1-loop" + +[sub_resource type="AnimationNodeTimeScale" id=80] + +[sub_resource type="AnimationNodeBlendTree" id=81] +nodes/Animation/node = SubResource( 79 ) +nodes/Animation/position = Vector2( 321, 172 ) +nodes/TimeScale/node = SubResource( 80 ) +nodes/TimeScale/position = Vector2( 600, 160 ) +nodes/output/position = Vector2( 800, 140 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=82] +animation = "female-pray-startled-walk1-stand" + +[sub_resource type="AnimationNodeTimeScale" id=83] + +[sub_resource type="AnimationNodeBlendTree" id=84] +graph_offset = Vector2( 0, -259 ) +nodes/Animation/node = SubResource( 82 ) +nodes/Animation/position = Vector2( 120, 160 ) +nodes/TimeScale/node = SubResource( 83 ) +nodes/TimeScale/position = Vector2( 640, 100 ) +nodes/output/position = Vector2( 1040, 80 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=121] +animation = "start-walking" + +[sub_resource type="AnimationNodeTimeScale" id=122] + +[sub_resource type="AnimationNodeBlendTree" id=115] +nodes/Animation/node = SubResource( 121 ) +nodes/Animation/position = Vector2( 189, 171 ) +nodes/TimeScale/node = SubResource( 122 ) +nodes/TimeScale/position = Vector2( 420, 160 ) +nodes/output/position = Vector2( 640, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=123] +animation = "stop-walking" + +[sub_resource type="AnimationNodeTimeScale" id=124] + +[sub_resource type="AnimationNodeBlendTree" id=116] +nodes/Animation/node = SubResource( 123 ) +nodes/Animation/position = Vector2( 275, 334 ) +nodes/TimeScale/node = SubResource( 124 ) +nodes/TimeScale/position = Vector2( 587, 359 ) +nodes/output/position = Vector2( 860, 340 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=131] +animation = "turn-left" + +[sub_resource type="AnimationNodeTimeScale" id=132] + +[sub_resource type="AnimationNodeBlendTree" id=125] +nodes/Animation/node = SubResource( 131 ) +nodes/Animation/position = Vector2( 200, 240 ) +nodes/TimeScale/node = SubResource( 132 ) +nodes/TimeScale/position = Vector2( 445, 231 ) +nodes/output/position = Vector2( 680, 240 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=133] +animation = "turn-right" + +[sub_resource type="AnimationNodeTimeScale" id=134] + +[sub_resource type="AnimationNodeBlendTree" id=126] +nodes/Animation/node = SubResource( 133 ) +nodes/Animation/position = Vector2( 213, 136 ) +nodes/TimeScale/node = SubResource( 134 ) +nodes/TimeScale/position = Vector2( 480, 140 ) +nodes/output/position = Vector2( 780, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=113] +animation = "default" + +[sub_resource type="AnimationNodeTimeScale" id=114] + +[sub_resource type="AnimationNodeBlendTree" id=85] +nodes/Animation/node = SubResource( 113 ) +nodes/Animation/position = Vector2( 139, 122 ) +nodes/TimeScale/node = SubResource( 114 ) +nodes/TimeScale/position = Vector2( 461, 131 ) +nodes/output/position = Vector2( 860, 140 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeStateMachineTransition" id=86] + +[sub_resource type="AnimationNodeStateMachineTransition" id=87] + +[sub_resource type="AnimationNodeStateMachineTransition" id=88] + +[sub_resource type="AnimationNodeStateMachineTransition" id=89] + +[sub_resource type="AnimationNodeStateMachineTransition" id=90] + +[sub_resource type="AnimationNodeStateMachineTransition" id=91] + +[sub_resource type="AnimationNodeStateMachineTransition" id=92] + +[sub_resource type="AnimationNodeStateMachineTransition" id=93] +switch_mode = 2 +auto_advance = true + +[sub_resource type="AnimationNodeStateMachineTransition" id=94] + +[sub_resource type="AnimationNodeStateMachineTransition" id=95] +switch_mode = 2 + +[sub_resource type="AnimationNodeStateMachineTransition" id=96] + +[sub_resource type="AnimationNodeStateMachineTransition" id=97] + +[sub_resource type="AnimationNodeStateMachineTransition" id=98] +switch_mode = 2 +auto_advance = true +xfade_time = 0.1 + +[sub_resource type="AnimationNodeStateMachineTransition" id=99] + +[sub_resource type="AnimationNodeStateMachineTransition" id=100] +switch_mode = 2 + +[sub_resource type="AnimationNodeStateMachineTransition" id=101] +switch_mode = 2 + +[sub_resource type="AnimationNodeStateMachineTransition" id=102] + +[sub_resource type="AnimationNodeStateMachineTransition" id=103] + +[sub_resource type="AnimationNodeStateMachineTransition" id=104] + +[sub_resource type="AnimationNodeStateMachineTransition" id=105] +switch_mode = 2 +auto_advance = true + +[sub_resource type="AnimationNodeStateMachineTransition" id=106] + +[sub_resource type="AnimationNodeStateMachineTransition" id=107] +switch_mode = 2 +auto_advance = true + +[sub_resource type="AnimationNodeStateMachineTransition" id=108] +switch_mode = 2 +auto_advance = true + +[sub_resource type="AnimationNodeStateMachineTransition" id=109] + +[sub_resource type="AnimationNodeStateMachineTransition" id=117] + +[sub_resource type="AnimationNodeStateMachineTransition" id=118] +switch_mode = 2 +auto_advance = true + +[sub_resource type="AnimationNodeStateMachineTransition" id=119] + +[sub_resource type="AnimationNodeStateMachineTransition" id=120] +switch_mode = 2 +auto_advance = true + +[sub_resource type="AnimationNodeStateMachineTransition" id=127] + +[sub_resource type="AnimationNodeStateMachineTransition" id=128] +switch_mode = 2 + +[sub_resource type="AnimationNodeStateMachineTransition" id=129] + +[sub_resource type="AnimationNodeStateMachineTransition" id=130] +switch_mode = 2 + +[sub_resource type="AnimationNodeStateMachine" id=110] +states/climb1/node = SubResource( 11 ) +states/climb1/position = Vector2( 804, 503.193 ) +states/climb1a/node = SubResource( 14 ) +states/climb1a/position = Vector2( 947, 503.193 ) +states/drive/node = SubResource( 15 ) +states/drive/position = Vector2( 868, 316.193 ) +states/grabbed/node = SubResource( 18 ) +states/grabbed/position = Vector2( 1277, 182.193 ) +states/kneel/node = SubResource( 21 ) +states/kneel/position = Vector2( 522, 84 ) +states/locomotion/node = SubResource( 53 ) +states/locomotion/position = Vector2( 822, 111 ) +states/passenger/node = SubResource( 54 ) +states/passenger/position = Vector2( 574, 327 ) +states/pray/node = SubResource( 66 ) +states/pray/position = Vector2( 381, 222 ) +states/pray-startled/node = SubResource( 63 ) +states/pray-startled/position = Vector2( 294, 316.193 ) +states/pray-startled-walk/node = SubResource( 60 ) +states/pray-startled-walk/position = Vector2( 294, 514.193 ) +states/sacrifice/node = SubResource( 75 ) +states/sacrifice/position = Vector2( 1023, 135 ) +states/sacrificed/node = SubResource( 78 ) +states/sacrificed/position = Vector2( 1125, 283 ) +states/sleeping/node = SubResource( 81 ) +states/sleeping/position = Vector2( 1078, 411.193 ) +states/stand-startled/node = SubResource( 84 ) +states/stand-startled/position = Vector2( 717, 411.193 ) +states/start_walking/node = SubResource( 115 ) +states/start_walking/position = Vector2( 522, 597.193 ) +states/stop_walking/node = SubResource( 116 ) +states/stop_walking/position = Vector2( 663, 697.193 ) +states/tun_left/node = SubResource( 125 ) +states/tun_left/position = Vector2( 868, 633.193 ) +states/turn_right/node = SubResource( 126 ) +states/turn_right/position = Vector2( 1059, 620.193 ) +states/use_tap/node = SubResource( 85 ) +states/use_tap/position = Vector2( 283, 143.193 ) +transitions = [ "locomotion", "passenger", SubResource( 86 ), "passenger", "locomotion", SubResource( 87 ), "passenger", "drive", SubResource( 88 ), "drive", "passenger", SubResource( 89 ), "drive", "locomotion", SubResource( 90 ), "locomotion", "drive", SubResource( 91 ), "sacrifice", "sacrificed", SubResource( 92 ), "sacrificed", "sacrifice", SubResource( 93 ), "locomotion", "kneel", SubResource( 94 ), "kneel", "pray", SubResource( 95 ), "pray", "locomotion", SubResource( 96 ), "pray", "pray-startled", SubResource( 97 ), "pray-startled", "pray-startled-walk", SubResource( 98 ), "sleeping", "locomotion", SubResource( 99 ), "pray-startled-walk", "stand-startled", SubResource( 100 ), "stand-startled", "locomotion", SubResource( 101 ), "locomotion", "grabbed", SubResource( 102 ), "grabbed", "locomotion", SubResource( 103 ), "locomotion", "climb1", SubResource( 104 ), "climb1", "locomotion", SubResource( 105 ), "locomotion", "climb1a", SubResource( 106 ), "climb1a", "locomotion", SubResource( 107 ), "use_tap", "locomotion", SubResource( 108 ), "locomotion", "use_tap", SubResource( 109 ), "locomotion", "start_walking", SubResource( 117 ), "start_walking", "locomotion", SubResource( 118 ), "locomotion", "stop_walking", SubResource( 119 ), "stop_walking", "locomotion", SubResource( 120 ), "locomotion", "tun_left", SubResource( 127 ), "tun_left", "locomotion", SubResource( 128 ), "locomotion", "turn_right", SubResource( 129 ), "turn_right", "locomotion", SubResource( 130 ) ] +start_node = "locomotion" +graph_offset = Vector2( -232, 15.1925 ) + +[sub_resource type="AnimationNodeBlendTree" id=111] +graph_offset = Vector2( 0, -221 ) +nodes/Animation/node = SubResource( 5 ) +nodes/Animation/position = Vector2( 540, 280 ) +"nodes/Animation 2/node" = SubResource( 4 ) +"nodes/Animation 2/position" = Vector2( 920, 280 ) +nodes/all_scale/node = SubResource( 6 ) +nodes/all_scale/position = Vector2( 840, -20 ) +nodes/blade_left/node = SubResource( 7 ) +nodes/blade_left/position = Vector2( 1040, 0 ) +nodes/blade_right/node = SubResource( 8 ) +nodes/blade_right/position = Vector2( 1400, 100 ) +nodes/output/position = Vector2( 1820, -20 ) +nodes/state/node = SubResource( 110 ) +nodes/state/position = Vector2( 480, 120 ) +node_connections = [ "output", 0, "blade_right", "blade_right", 0, "blade_left", "blade_right", 1, "Animation 2", "blade_left", 0, "all_scale", "blade_left", 1, "Animation", "all_scale", 0, "state" ] + +[sub_resource type="AnimationNodeStateMachinePlayback" id=112] + +[node name="vroid1-female" instance=ExtResource( 1 )] + +[node name="Skeleton" parent="skeleton" index="0"] +bones/1/bound_children = [ NodePath("hips") ] +bones/25/bound_children = [ NodePath("chest") ] +bones/80/bound_children = [ NodePath("head") ] +bones/99/bound_children = [ NodePath("wrist_l") ] +bones/101/bound_children = [ NodePath("wrist_r") ] + +[node name="body" parent="skeleton/Skeleton" index="0"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -0.00418961, 0.00654769, 0.00506566 ) + +[node name="head" type="BoneAttachment" parent="skeleton/Skeleton" index="2"] +transform = Transform( 0.695045, 0.34614, -0.630227, -0.0867818, 0.910422, 0.404298, 0.713771, -0.226324, 0.66284, -0.0445963, 1.35245, -0.0152731 ) +bone_name = "Head" + +[node name="marker_talk" type="Spatial" parent="skeleton/Skeleton/head" index="0"] +transform = Transform( 0.938982, -0.1833, 0.290986, 0.0970959, 0.953036, 0.286975, -0.3299, -0.241222, 0.912684, -0.00304712, 0.094561, -0.232747 ) + +[node name="marker_hips_action" type="Spatial" parent="skeleton/Skeleton/head" index="1"] +transform = Transform( 0.845972, -0.248965, 0.471515, 0.270435, 0.962465, 0.0230151, -0.459582, 0.108024, 0.88155, 0.0862694, -0.150184, 0.25561 ) + +[node name="head_hurt" type="Area" parent="skeleton/Skeleton/head" index="2"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.1, 0.02 ) + +[node name="CollisionShape" type="CollisionShape" parent="skeleton/Skeleton/head/head_hurt" index="0"] +shape = SubResource( 1 ) + +[node name="hair" type="Spatial" parent="skeleton/Skeleton/head" index="3"] +transform = Transform( 1, 0, 0, 0, 0.984808, -0.173648, 0, 0.173648, 0.984808, 0, 0, 0 ) + +[node name="female-hair1" parent="skeleton/Skeleton/head/hair" index="0" instance=ExtResource( 2 )] +transform = Transform( 1, -3.21306e-08, 5.58794e-08, 1.86265e-08, 1, 1.49012e-08, 3.35276e-08, -7.45058e-09, 1, 0, 0, 0 ) + +[node name="face" type="Spatial" parent="skeleton/Skeleton/head" index="4"] +transform = Transform( 1, -1.24197e-11, 0, 1.06852e-11, 1, -5.82077e-11, 0, 0, 1, -0.005, -0.002, 0.006 ) + +[node name="female-face1" parent="skeleton/Skeleton/head/face" index="0" instance=ExtResource( 3 )] + +[node name="hips" type="BoneAttachment" parent="skeleton/Skeleton" index="3"] +transform = Transform( 0.932837, 0.0669982, 0.354143, 0.0474986, -0.99678, 0.0635026, 0.357293, -0.0424105, -0.933064, 0.000203875, 0.898321, -0.00645695 ) +bone_name = "Hips" + +[node name="marker_dagger_sacrifice" type="Spatial" parent="skeleton/Skeleton/hips" index="0"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.2, 0.2 ) + +[node name="hips_hurt" type="Area" parent="skeleton/Skeleton/hips" index="1"] + +[node name="CollisionShape" type="CollisionShape" parent="skeleton/Skeleton/hips/hips_hurt" index="0"] +shape = SubResource( 2 ) + +[node name="wrist_r" type="BoneAttachment" parent="skeleton/Skeleton" index="4"] +transform = Transform( -0.287977, 0.919611, -0.267176, 0.942778, 0.321208, 0.0894101, 0.168042, -0.22614, -0.95949, 0.217922, 0.840792, 0.0647382 ) +bone_name = "wrist_ik_R" + +[node name="weapon_right" type="Spatial" parent="skeleton/Skeleton/wrist_r" index="0"] +transform = Transform( 1, 0, 0, 0, -1.62921e-07, 1, 0, -1, -1.62921e-07, -0.08, 0, -0.01 ) + +[node name="wrist_l" type="BoneAttachment" parent="skeleton/Skeleton" index="5"] +transform = Transform( -0.0744099, -0.85538, 0.512627, -0.989629, 0.126679, 0.0677309, -0.122875, -0.50227, -0.855936, -0.175723, 0.838131, -0.0414757 ) +bone_name = "wrist_ik_L" + +[node name="weapon_left" type="Spatial" parent="skeleton/Skeleton/wrist_l" index="0"] +transform = Transform( 1, 0, 0, 0, -1.62921e-07, -1, 0, 1, -1.62921e-07, 0.08, 0, -0.01 ) + +[node name="chest" type="BoneAttachment" parent="skeleton/Skeleton" index="6"] +transform = Transform( 0.941419, -0.0483243, -0.333891, 0.0575738, 0.998111, 0.0178291, 0.332436, -0.0360186, 0.942465, -0.00328054, 1.05887, -0.018731 ) +bone_name = "Chest" + +[node name="chest_hurt" type="Area" parent="skeleton/Skeleton/chest" index="0"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.05, 0 ) + +[node name="CollisionShape" type="CollisionShape" parent="skeleton/Skeleton/chest/chest_hurt" index="0"] +shape = SubResource( 3 ) + +[node name="MeshInstance" type="MeshInstance" parent="skeleton/Skeleton" index="7"] + +[node name="AnimationTree" type="AnimationTree" parent="." index="2"] +tree_root = SubResource( 111 ) +anim_player = NodePath("../AnimationPlayer") +active = true +root_motion_track = NodePath("skeleton/Skeleton:root") +parameters/all_scale/scale = 1.0 +parameters/blade_left/blend_amount = 0.0 +parameters/blade_right/blend_amount = 0.0 +parameters/state/playback = SubResource( 112 ) +parameters/state/climb1/TimeScale/scale = 2.0 +parameters/state/climb1a/TimeScale/scale = 2.0 +parameters/state/grabbed/TimeScale/scale = 1.0 +parameters/state/kneel/TimeScale/scale = 1.0 +parameters/state/locomotion/loc/blend_position = Vector2( -0.00127554, 0.00220752 ) +parameters/state/locomotion/loc/0/TimeScale/scale = 2.0 +"parameters/state/locomotion/loc/0/TimeScale 2/scale" = 1.5 +parameters/state/locomotion/loc/0/t1/current = 1 +parameters/state/locomotion/loc/1/TimeScale/scale = 1.0 +"parameters/state/locomotion/loc/1/TimeScale 2/scale" = 1.0 +parameters/state/locomotion/loc/1/Transition/current = 0 +parameters/state/locomotion/loc/2/TimeScale/scale = 1.0 +parameters/state/locomotion/loc/3/TimeScale/scale = 1.0 +parameters/state/locomotion/loc/4/TimeScale/scale = 3.5 +"parameters/state/locomotion/loc/4/TimeScale 2/scale" = 3.5 +parameters/state/locomotion/loc/4/Transition/current = 0 +parameters/state/locomotion/loc/5/TimeScale/scale = 1.5 +"parameters/state/locomotion/loc/5/TimeScale 2/scale" = 1.5 +parameters/state/locomotion/loc/5/Transition/current = 0 +parameters/state/pray/TimeScale/scale = 1.0 +parameters/state/pray-startled/TimeScale/scale = 1.8 +parameters/state/pray-startled-walk/TimeScale/scale = 1.3 +"parameters/state/pray-startled-walk/TimeScale 2/scale" = 1.6 +parameters/state/pray-startled-walk/Transition/current = 1 +parameters/state/sacrifice/TimeScale/scale = 1.0 +"parameters/state/sacrifice/TimeScale 2/scale" = 1.0 +parameters/state/sacrifice/attack1/active = false +parameters/state/sacrifice/attack2/active = false +parameters/state/sacrifice/speed/scale = 1.0 +parameters/state/sacrificed/TimeScale/scale = 1.0 +parameters/state/sleeping/TimeScale/scale = 1.0 +parameters/state/stand-startled/TimeScale/scale = 0.7 +parameters/state/start_walking/TimeScale/scale = 1.0 +parameters/state/stop_walking/TimeScale/scale = 1.0 +parameters/state/tun_left/TimeScale/scale = 1.0 +parameters/state/turn_right/TimeScale/scale = 1.0 +parameters/state/use_tap/TimeScale/scale = 1.0 diff --git a/characters/vroid1-man-animate.bin b/characters/vroid1-man-animate.bin new file mode 100644 index 0000000..cef462b Binary files /dev/null and b/characters/vroid1-man-animate.bin differ diff --git a/characters/vroid1-man-animate.gltf b/characters/vroid1-man-animate.gltf new file mode 100644 index 0000000..ccd7b50 --- /dev/null +++ b/characters/vroid1-man-animate.gltf @@ -0,0 +1,259662 @@ +{ + "asset" : { + "generator" : "Khronos glTF Blender I/O v1.6.16", + "version" : "2.0" + }, + "scene" : 0, + "scenes" : [ + { + "name" : "Scene", + "nodes" : [ + 0 + ] + } + ], + "nodes" : [ + { + "name" : "v1_man_collection" + }, + { + "name" : "J_Bip_R_ToeBase", + "rotation" : [ + 1.272164809051901e-07, + 8.684583008289337e-08, + 7.450580596923828e-08, + 1 + ], + "scale" : [ + 1, + 1, + 0.9999999403953552 + ], + "translation" : [ + -9.313236848385031e-10, + 0.1689366102218628, + 1.2223621004281426e-09 + ] + }, + { + "children" : [ + 1 + ], + "name" : "J_Bip_R_Foot", + "rotation" : [ + 0.5084412097930908, + -0.3107217848300934, + 0.1914980113506317, + 0.7799153923988342 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1 + ], + "translation" : [ + 1.4297310890754034e-08, + 0.4988768994808197, + 3.154856154097274e-09 + ] + }, + { + "children" : [ + 2 + ], + "name" : "J_Bip_R_LowerLeg", + "rotation" : [ + 0.02861420251429081, + -0.9049676656723022, + -0.03956547752022743, + 0.42266926169395447 + ], + "scale" : [ + 1.0000030994415283, + 1.0000003576278687, + 0.9999972581863403 + ], + "translation" : [ + 1.9424955866043092e-08, + 0.4406389892101288, + -5.980712813880018e-09 + ] + }, + { + "name" : "J_Sec_R_TopsUpperLegSide_end", + "rotation" : [ + -1.0244548320770264e-08, + 1.1237571015954018e-06, + 7.019843906164169e-08, + 1 + ], + "scale" : [ + 1, + 1, + 0.9999999403953552 + ], + "translation" : [ + -3.4226104617118835e-08, + 0.12764902412891388, + -2.328239379068009e-09 + ] + }, + { + "children" : [ + 4 + ], + "name" : "J_Sec_R_TopsUpperLegSide", + "rotation" : [ + 0.004872420337051153, + 0.14672206342220306, + 0.11526449769735336, + 0.9824271202087402 + ], + "translation" : [ + -0.113991878926754, + 0.00858400110155344, + 0.011958261951804161 + ] + }, + { + "name" : "J_Sec_R_TopsUpperLegFront_end", + "rotation" : [ + -1.0710210318620739e-07, + -1.648906504669867e-06, + -4.190952651583757e-08, + 1 + ], + "scale" : [ + 1, + 0.9999999403953552, + 1.0000001192092896 + ], + "translation" : [ + 1.1175870895385742e-08, + 0.128175750374794, + -7.450556172017286e-09 + ] + }, + { + "children" : [ + 6 + ], + "name" : "J_Sec_R_TopsUpperLegFront", + "rotation" : [ + 0.03088965266942978, + -0.8991373777389526, + 0.07703450322151184, + 0.42972511053085327 + ], + "scale" : [ + 1, + 0.9999996423721313, + 0.9999998211860657 + ], + "translation" : [ + -0.01444194559007883, + 0.015450059436261654, + -0.13984672725200653 + ] + }, + { + "name" : "J_Sec_R_TopsUpperLegBack_end 1", + "rotation" : [ + 3.719469532370567e-08, + 0.00017598032718524337, + -6.621121428906918e-08, + 1 + ], + "scale" : [ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation" : [ + -1.8600149198633176e-09, + 0.1404847651720047, + 1.1175874448099421e-08 + ] + }, + { + "children" : [ + 8 + ], + "name" : "J_Sec_R_TopsUpperLegBack", + "rotation" : [ + -0.01644461415708065, + 0.7177996039390564, + 0.03560595214366913, + 0.6951442360877991 + ], + "scale" : [ + 1, + 0.9999998211860657, + 1.0000001192092896 + ], + "translation" : [ + 0.013024763204157352, + -0.00487157516181469, + 0.126051664352417 + ] + }, + { + "children" : [ + 3, + 5, + 7, + 9 + ], + "name" : "J_Bip_R_UpperLeg", + "rotation" : [ + 0.055046338587999344, + 0.06081124767661095, + 0.9961151480674744, + 0.03204021230340004 + ], + "scale" : [ + 0.9999983310699463, + 0.9999995231628418, + 0.9999902248382568 + ], + "translation" : [ + 0.09136106073856354, + -0.04310036078095436, + 0.009420439600944519 + ] + }, + { + "name" : "J_Bip_L_ToeBase", + "rotation" : [ + -3.6983689000180675e-08, + -2.9802322387695312e-08, + 1.0523945093154907e-07, + 1 + ], + "scale" : [ + 0.9999999403953552, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation" : [ + 6.257322215930117e-09, + 0.16893601417541504, + -5.82076742361437e-09 + ] + }, + { + "children" : [ + 11 + ], + "name" : "J_Bip_L_Foot", + "rotation" : [ + 0.5084453225135803, + 0.31069472432136536, + -0.19148670136928558, + 0.7799263000488281 + ], + "scale" : [ + 1.0000001192092896, + 1.000000238418579, + 1.0000001192092896 + ], + "translation" : [ + 6.785520145768942e-09, + 0.49887725710868835, + -5.161367333528233e-09 + ] + }, + { + "children" : [ + 12 + ], + "name" : "J_Bip_L_LowerLeg", + "rotation" : [ + 0.02861850894987583, + 0.9049782752990723, + 0.03957154601812363, + 0.4226457476615906 + ], + "scale" : [ + 0.9999998211860657, + 1.0000009536743164, + 1.0000001192092896 + ], + "translation" : [ + -1.0504650482801026e-09, + 0.4406387507915497, + -3.5003759890628316e-09 + ] + }, + { + "name" : "J_Sec_L_TopsUpperLegSide_end", + "rotation" : [ + 7.916241884231567e-09, + -5.775946192443371e-07, + 8.73115357791221e-10, + 1 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation" : [ + -6.111803685371342e-08, + 0.12764908373355865, + -1.2572923147047277e-08 + ] + }, + { + "children" : [ + 14 + ], + "name" : "J_Sec_L_TopsUpperLegSide", + "rotation" : [ + 0.004872043151408434, + -0.14672258496284485, + -0.11526472121477127, + 0.9824270009994507 + ], + "translation" : [ + 0.11399175971746445, + 0.008583723567426205, + 0.011957718059420586 + ] + }, + { + "name" : "J_Sec_L_TopsUpperLegFront_end", + "rotation" : [ + 6.612391700855369e-08, + 7.1338145062327385e-06, + 1.6763806343078613e-08, + 1 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1 + ], + "translation" : [ + 1.1175445457922706e-08, + 0.1281757801771164, + -2.235184837218185e-08 + ] + }, + { + "children" : [ + 16 + ], + "name" : "J_Sec_L_TopsUpperLegFront", + "rotation" : [ + 0.03088921308517456, + 0.899133026599884, + -0.077034592628479, + 0.42973411083221436 + ], + "translation" : [ + 0.014441818930208683, + 0.015449777245521545, + -0.13984626531600952 + ] + }, + { + "name" : "J_Sec_R_TopsUpperLegBack_end", + "rotation" : [ + 2.4389009922742844e-08, + -4.7295055992435664e-05, + -1.458097376172418e-08, + 1 + ], + "scale" : [ + 1.000000238418579, + 1.0000001192092896, + 1 + ], + "translation" : [ + -1.2107191693644381e-08, + 0.14048491418361664, + 8.381905836074566e-09 + ] + }, + { + "children" : [ + 18 + ], + "name" : "J_Sec_L_TopsUpperLegBack", + "rotation" : [ + -0.01644911617040634, + -0.7178812026977539, + -0.03560417890548706, + 0.6950599551200867 + ], + "scale" : [ + 0.9999999403953552, + 1.0000001192092896, + 0.9999999403953552 + ], + "translation" : [ + -0.013024579733610153, + -0.004871658515185118, + 0.12605126202106476 + ] + }, + { + "children" : [ + 13, + 15, + 17, + 19 + ], + "name" : "J_Bip_L_UpperLeg", + "rotation" : [ + 0.05504310876131058, + -0.06080758199095726, + -0.996115505695343, + 0.03204026445746422 + ], + "scale" : [ + 1.000000238418579, + 0.9999994039535522, + 1.0000004768371582 + ], + "translation" : [ + -0.09136108309030533, + -0.04310022294521332, + 0.009420450776815414 + ] + }, + { + "name" : "J_Bip_R_Thumb3", + "rotation" : [ + 1.1082738637924194e-07, + 1.4901161193847656e-07, + 1.3224781980625266e-07, + 1 + ], + "scale" : [ + 0.9999999403953552, + 0.9999998807907104, + 1 + ], + "translation" : [ + 1.7136336794010276e-07, + 0.04097570478916168, + -7.450583439094771e-08 + ] + }, + { + "children" : [ + 21 + ], + "name" : "J_Bip_R_Thumb2", + "rotation" : [ + 0.029826218262314796, + 0.04092632979154587, + -0.02489856630563736, + 0.9984064698219299 + ], + "scale" : [ + 1, + 0.9999999403953552, + 1 + ], + "translation" : [ + -1.0030926489434933e-07, + 0.06678059697151184, + 2.358600426077828e-08 + ] + }, + { + "children" : [ + 22 + ], + "name" : "J_Bip_R_Thumb1", + "rotation" : [ + -0.3795768916606903, + -0.3546251952648163, + 0.1037030965089798, + 0.8481792211532593 + ], + "scale" : [ + 1, + 0.9999999403953552, + 1 + ], + "translation" : [ + 0.010819162242114544, + 0.0027138246223330498, + -0.02517610788345337 + ] + }, + { + "name" : "J_Bip_R_Ring3", + "rotation" : [ + -1.709850039333105e-08, + 1.3913086149841547e-07, + 2.4050679670040154e-08, + 1 + ], + "scale" : [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation" : [ + 1.3102544471621513e-07, + 0.028252089396119118, + -9.313205762140342e-10 + ] + }, + { + "children" : [ + 24 + ], + "name" : "J_Bip_R_Ring2", + "rotation" : [ + -0.004928166512399912, + -0.00512204272672534, + 0.026388561353087425, + 0.9996265172958374 + ], + "scale" : [ + 0.9999998807907104, + 0.9999998807907104, + 1 + ], + "translation" : [ + -1.506910223270097e-07, + 0.04894895851612091, + -1.51580614726754e-08 + ] + }, + { + "children" : [ + 25 + ], + "name" : "J_Bip_R_Ring1", + "rotation" : [ + 0.010028007440268993, + 0.010376036167144775, + -0.04413510113954544, + 0.9989214539527893 + ], + "scale" : [ + 0.9999999403953552, + 1, + 1.0000001192092896 + ], + "translation" : [ + -0.005628606304526329, + 0.09535358846187592, + 0.017862021923065186 + ] + }, + { + "name" : "J_Bip_R_Middle3", + "rotation" : [ + 1.227017492055893e-07, + -1.3853423297405243e-08, + 8.492497727274895e-07, + 1 + ], + "scale" : [ + 1, + 1, + 1.0000001192092896 + ], + "translation" : [ + 2.5110773549386067e-07, + 0.032563984394073486, + 7.450594807778543e-09 + ] + }, + { + "children" : [ + 27 + ], + "name" : "J_Bip_R_Middle2", + "rotation" : [ + 0.012153951451182365, + 0.015025596134364605, + -0.035932861268520355, + 0.9991673231124878 + ], + "translation" : [ + 4.061010727696157e-08, + 0.052769191563129425, + 1.4848263063527156e-08 + ] + }, + { + "children" : [ + 28 + ], + "name" : "J_Bip_R_Middle1", + "rotation" : [ + -0.02205735631287098, + -0.01911861076951027, + -0.0551581010222435, + 0.9980508685112 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation" : [ + -0.005362143740057945, + 0.09505859762430191, + -0.004618634935468435 + ] + }, + { + "name" : "J_Bip_R_Little3", + "rotation" : [ + 3.537570592015982e-08, + 8.277129381895065e-08, + -8.733478011890838e-07, + 1 + ], + "scale" : [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation" : [ + -2.857414074242115e-07, + 0.025809427723288536, + 4.190971125694887e-09 + ] + }, + { + "children" : [ + 30 + ], + "name" : "J_Bip_R_Little2", + "rotation" : [ + 0.025792628526687622, + 0.025927400216460228, + 0.025506136938929558, + 0.9990054965019226 + ], + "scale" : [ + 1.0000001192092896, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation" : [ + -1.800126625539633e-07, + 0.04477384313941002, + 1.2677442207120748e-08 + ] + }, + { + "children" : [ + 31 + ], + "name" : "J_Bip_R_Little1", + "rotation" : [ + 0.012228592298924923, + 0.012327862903475761, + -0.04045229032635689, + 0.999030590057373 + ], + "scale" : [ + 1.0000001192092896, + 1.000000238418579, + 1 + ], + "translation" : [ + 0.0011919443495571613, + 0.0894225537776947, + 0.04037902131676674 + ] + }, + { + "name" : "J_Bip_R_Index3", + "rotation" : [ + 2.5727786123752594e-08, + 1.442967914044857e-07, + 1.4435499018361497e-08, + 1 + ], + "translation" : [ + 1.396984004031765e-07, + 0.02917579561471939, + 1.4901126554889288e-08 + ] + }, + { + "children" : [ + 33 + ], + "name" : "J_Bip_R_Index2", + "rotation" : [ + 0.02113688737154007, + 0.023763131350278854, + -0.017445633187890053, + 0.9993419051170349 + ], + "scale" : [ + 0.9999998807907104, + 0.9999999403953552, + 1 + ], + "translation" : [ + -9.360142172454289e-08, + 0.04737463966012001, + 2.229145223964224e-08 + ] + }, + { + "children" : [ + 34 + ], + "name" : "J_Bip_R_Index1", + "rotation" : [ + -0.06773614138364792, + -0.06197555735707283, + -0.03524279594421387, + 0.9951526522636414 + ], + "scale" : [ + 0.9999999403953552, + 0.9999999403953552, + 1 + ], + "translation" : [ + -0.0010203048586845398, + 0.09215483069419861, + -0.028446247801184654 + ] + }, + { + "children" : [ + 23, + 26, + 29, + 32, + 35 + ], + "name" : "J_Bip_R_Hand", + "rotation" : [ + 0.034442972391843796, + 0.02834952250123024, + 0.03538220375776291, + 0.9983777403831482 + ], + "scale" : [ + 1.0000001192092896, + 1, + 1 + ], + "translation" : [ + 2.538974968047114e-07, + 0.3047296106815338, + -1.8126950607211256e-08 + ] + }, + { + "children" : [ + 36 + ], + "name" : "J_Bip_R_LowerArm", + "rotation" : [ + -0.045864302664995193, + -0.04638344794511795, + 0.02677389793097973, + 0.9975110292434692 + ], + "scale" : [ + 0.9999997615814209, + 1.000000238418579, + 1 + ], + "translation" : [ + 1.2539334193206741e-07, + 0.2477652132511139, + 4.553614818547658e-09 + ] + }, + { + "name" : "J_Sec_R_TopsUpperArmOutside_end", + "rotation" : [ + 3.387685865163803e-08, + -1.9907016479692174e-08, + 2.1274898642786866e-07, + 1 + ], + "scale" : [ + 1.0000001192092896, + 1, + 1.0000001192092896 + ], + "translation" : [ + 1.7229467630386353e-08, + 0.2209494560956955, + 1.9557775843281888e-08 + ] + }, + { + "children" : [ + 38 + ], + "name" : "J_Sec_R_TopsUpperArmOutside", + "rotation" : [ + -0.01916741579771042, + -0.020876958966255188, + 0.11351003497838974, + 0.9931325316429138 + ], + "scale" : [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation" : [ + -0.05301572382450104, + 0.021311061456799507, + -0.007645224686712027 + ] + }, + { + "name" : "J_Sec_R_TopsUpperArmInside_end", + "rotation" : [ + -7.086781828036237e-09, + 5.0087692216038704e-08, + -2.0280276658013463e-07, + 1 + ], + "scale" : [ + 0.9999999403953552, + 0.9999998807907104, + 1 + ], + "translation" : [ + 6.388266360346506e-09, + 0.13878101110458374, + 2.5611379683709856e-09 + ] + }, + { + "children" : [ + 40 + ], + "name" : "J_Sec_R_TopsUpperArmInside", + "rotation" : [ + -0.011973684653639793, + -0.013613137416541576, + 0.04390083998441696, + 0.9988715052604675 + ], + "scale" : [ + 1, + 0.9999998807907104, + 1 + ], + "translation" : [ + 0.09039643406867981, + 0.14618800580501556, + 0.011398399248719215 + ] + }, + { + "children" : [ + 37, + 39, + 41 + ], + "name" : "J_Bip_R_UpperArm", + "rotation" : [ + 0.033780790865421295, + -0.00010560236114542931, + 0.061150770634412766, + 0.997556746006012 + ], + "scale" : [ + 0.9999999403953552, + 0.9999997615814209, + 1.000000238418579 + ], + "translation" : [ + -7.103233201632975e-08, + 0.15340186655521393, + -1.4412166571275975e-08 + ] + }, + { + "name" : "ctrl_lowerarm.R", + "rotation" : [ + -2.9899172659497708e-05, + -0.04644899070262909, + 1.7465572454966605e-05, + 0.9989206790924072 + ], + "scale" : [ + 0.999999463558197, + 1.000000238418579, + 0.9999995827674866 + ], + "translation" : [ + 1.8013376745784626e-07, + 0.24776527285575867, + 2.0942643175203557e-08 + ] + }, + { + "children" : [ + 43 + ], + "name" : "ctrl_upperarm.R", + "rotation" : [ + -0.24571602046489716, + -0.13300387561321259, + -0.4724012613296509, + 0.8359250426292419 + ], + "scale" : [ + 1.0000005960464478, + 1.0000001192092896, + 1.0000007152557373 + ], + "translation" : [ + -1.441297428073085e-07, + 0.15340235829353333, + -2.150707842929478e-07 + ] + }, + { + "children" : [ + 42, + 44 + ], + "name" : "J_Bip_R_Shoulder", + "rotation" : [ + -0.058834441006183624, + -0.018967142328619957, + -0.763911783695221, + 0.6423532962799072 + ], + "translation" : [ + 0.024624185636639595, + 0.1302872598171234, + -0.0012899278663098812 + ] + }, + { + "name" : "J_Bip_L_Thumb3", + "rotation" : [ + 2.9616057872772217e-07, + 4.6193599700927734e-07, + -5.690380930900574e-07, + 1 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1 + ], + "translation" : [ + -5.960464477539063e-08, + 0.0409761518239975, + -2.2351741790771484e-08 + ] + }, + { + "children" : [ + 46 + ], + "name" : "J_Bip_L_Thumb2", + "rotation" : [ + 0.029814887791872025, + -0.0409059040248394, + 0.024855079129338264, + 0.9984087944030762 + ], + "scale" : [ + 0.9999999403953552, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation" : [ + 2.045138458584006e-08, + 0.0667807012796402, + -1.5568222977435653e-07 + ] + }, + { + "children" : [ + 47 + ], + "name" : "J_Bip_L_Thumb1", + "rotation" : [ + -0.37955567240715027, + 0.35459649562835693, + -0.10336672514677048, + 0.8482418060302734 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1 + ], + "translation" : [ + -0.010819151997566223, + 0.0027136867865920067, + -0.02517610229551792 + ] + }, + { + "name" : "J_Bip_L_Ring3", + "rotation" : [ + 4.4907210394740105e-08, + 2.444721758365631e-08, + -9.582072379998863e-08, + 1 + ], + "translation" : [ + -2.250308313023197e-07, + 0.02825179696083069, + 9.313230187046884e-10 + ] + }, + { + "children" : [ + 49 + ], + "name" : "J_Bip_L_Ring2", + "rotation" : [ + -0.004928726702928543, + 0.005122320260852575, + -0.02638424187898636, + 0.9996266961097717 + ], + "scale" : [ + 0.9999999403953552, + 0.9999999403953552, + 1 + ], + "translation" : [ + -1.2816384753477905e-07, + 0.04894892871379852, + 1.3778012064591394e-10 + ] + }, + { + "children" : [ + 50 + ], + "name" : "J_Bip_L_Ring1", + "rotation" : [ + 0.010031206533312798, + -0.010379071347415447, + 0.044133540242910385, + 0.9989214539527893 + ], + "scale" : [ + 0.9999998807907104, + 0.9999998807907104, + 1 + ], + "translation" : [ + 0.005628383718430996, + 0.09535342454910278, + 0.017862016335129738 + ] + }, + { + "name" : "J_Bip_L_Middle3", + "rotation" : [ + -1.4784745872020721e-08, + -1.0128132998943329e-07, + 5.226756911724806e-07, + 1 + ], + "scale" : [ + 1, + 0.9999999403953552, + 1 + ], + "translation" : [ + 1.0512309955856836e-07, + 0.0325637124478817, + 3.7253156115468755e-09 + ] + }, + { + "children" : [ + 52 + ], + "name" : "J_Bip_L_Middle2", + "rotation" : [ + 0.012154356576502323, + -0.015025791712105274, + 0.03593219444155693, + 0.9991674423217773 + ], + "scale" : [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999999403953552 + ], + "translation" : [ + 6.752088665962219e-08, + 0.05276934802532196, + 7.450580596923828e-09 + ] + }, + { + "children" : [ + 53 + ], + "name" : "J_Bip_L_Middle1", + "rotation" : [ + -0.022057317197322845, + 0.019118310883641243, + 0.055160023272037506, + 0.9980508089065552 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1 + ], + "translation" : [ + 0.0053618298843503, + 0.09505833685398102, + -0.004618621896952391 + ] + }, + { + "name" : "J_Bip_L_Little3", + "rotation" : [ + 3.036984708160162e-08, + 2.6600901037454605e-08, + 4.1356543079018593e-07, + 1 + ], + "scale" : [ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation" : [ + 3.789318725466728e-08, + 0.025809362530708313, + -2.7939677238464355e-09 + ] + }, + { + "children" : [ + 55 + ], + "name" : "J_Bip_L_Little2", + "rotation" : [ + 0.025792274624109268, + -0.025927865877747536, + -0.02550715021789074, + 0.9990054965019226 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1 + ], + "translation" : [ + -4.104780515490347e-08, + 0.04477394372224808, + 1.741247257491807e-09 + ] + }, + { + "children" : [ + 56 + ], + "name" : "J_Bip_L_Little1", + "rotation" : [ + 0.012240331619977951, + -0.012338867411017418, + 0.04045582562685013, + 0.9990301728248596 + ], + "scale" : [ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation" : [ + -0.0011919225798919797, + 0.08942224830389023, + 0.04037901759147644 + ] + }, + { + "name" : "J_Bip_L_Index3", + "rotation" : [ + -1.802109181880951e-07, + -7.770722731947899e-08, + 1.1199154670293865e-07, + 1 + ], + "scale" : [ + 1, + 0.9999999403953552, + 1.0000001192092896 + ], + "translation" : [ + -6.798657636863936e-08, + 0.02917623147368431, + -7.450625005844813e-09 + ] + }, + { + "children" : [ + 58 + ], + "name" : "J_Bip_L_Index2", + "rotation" : [ + 0.021136870607733727, + -0.023763274773955345, + 0.01744786649942398, + 0.9993418455123901 + ], + "scale" : [ + 0.9999998807907104, + 1, + 1 + ], + "translation" : [ + -1.4004806203615772e-09, + 0.04737449437379837, + -2.9742036389279747e-08 + ] + }, + { + "children" : [ + 59 + ], + "name" : "J_Bip_L_Index1", + "rotation" : [ + -0.0677315816283226, + 0.061971284449100494, + 0.03524177148938179, + 0.9951532483100891 + ], + "scale" : [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999999403953552 + ], + "translation" : [ + 0.0010201216209679842, + 0.0921545997262001, + -0.028446314856410027 + ] + }, + { + "children" : [ + 48, + 51, + 54, + 57, + 60 + ], + "name" : "J_Bip_L_Hand", + "rotation" : [ + 0.03444361686706543, + -0.028351621702313423, + -0.035382725298404694, + 0.9983776211738586 + ], + "scale" : [ + 1.000000238418579, + 1, + 1.0000001192092896 + ], + "translation" : [ + 1.0042180775826637e-07, + 0.3047225773334503, + -1.6387350143531876e-08 + ] + }, + { + "children" : [ + 61 + ], + "name" : "J_Bip_L_LowerArm", + "rotation" : [ + -0.04586128890514374, + 0.04638585448265076, + -0.026770910248160362, + 0.9975111484527588 + ], + "scale" : [ + 0.9999998807907104, + 1.0000005960464478, + 1.0000001192092896 + ], + "translation" : [ + -3.904370942109381e-07, + 0.2477714866399765, + 2.871604642962211e-08 + ] + }, + { + "name" : "J_Sec_L_TopsUpperArmOutside_end", + "rotation" : [ + -1.3504177331924438e-08, + 1.7811544239521027e-08, + 3.0864612199366093e-07, + 1 + ], + "scale" : [ + 0.9999998807907104, + 0.9999999403953552, + 1 + ], + "translation" : [ + 1.910957507789135e-07, + 0.2209739089012146, + 7.450580596923828e-09 + ] + }, + { + "children" : [ + 63 + ], + "name" : "J_Sec_L_TopsUpperArmOutside", + "rotation" : [ + -0.019165948033332825, + 0.020875152200460434, + -0.11349494755268097, + 0.9931343793869019 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation" : [ + 0.05301577225327492, + 0.02131376601755619, + -0.0076453243382275105 + ] + }, + { + "name" : "J_Sec_L_TopsUpperArmInside_end", + "rotation" : [ + 6.592017598450184e-09, + -5.577749462304382e-08, + -1.1496013918588233e-08, + 1 + ], + "scale" : [ + 0.9999999403953552, + 1, + 1 + ], + "translation" : [ + 1.537337084300816e-07, + 0.1387971192598343, + -1.1641395625261453e-09 + ] + }, + { + "children" : [ + 65 + ], + "name" : "J_Sec_L_TopsUpperArmInside", + "rotation" : [ + -0.011972649022936821, + 0.013611927628517151, + -0.043894119560718536, + 0.9988716840744019 + ], + "scale" : [ + 1, + 1, + 1.0000001192092896 + ], + "translation" : [ + -0.09039702266454697, + 0.14620459079742432, + 0.011398500762879848 + ] + }, + { + "children" : [ + 62, + 64, + 66 + ], + "name" : "J_Bip_L_UpperArm", + "rotation" : [ + 0.033778734505176544, + 0.00010645100701367483, + -0.06115303933620453, + 0.9975566864013672 + ], + "scale" : [ + 0.9999995231628418, + 1, + 1 + ], + "translation" : [ + -3.244844322125573e-07, + 0.15340186655521393, + -3.206656984389156e-08 + ] + }, + { + "name" : "ctrl_lowerarm.L", + "rotation" : [ + -3.018876122951042e-05, + 0.04645136743783951, + -1.7614964235690422e-05, + 0.9989205598831177 + ], + "scale" : [ + 1, + 1.0000004768371582, + 0.9999992251396179 + ], + "translation" : [ + -1.844824879526641e-07, + 0.24777144193649292, + 1.2723496922717459e-08 + ] + }, + { + "children" : [ + 68 + ], + "name" : "ctrl_upperarm.L", + "rotation" : [ + -0.13325180113315582, + 0.17817583680152893, + 0.5440006852149963, + 0.8090491890907288 + ], + "scale" : [ + 1.0000005960464478, + 1.0000004768371582, + 1.0000001192092896 + ], + "translation" : [ + 2.582511342552607e-07, + 0.15340161323547363, + -2.4797677156129794e-07 + ] + }, + { + "children" : [ + 67, + 69 + ], + "name" : "J_Bip_L_Shoulder", + "rotation" : [ + -0.058834485709667206, + 0.01896715722978115, + 0.763911783695221, + 0.6423532962799072 + ], + "scale" : [ + 0.9999999403953552, + 1, + 1.0000001192092896 + ], + "translation" : [ + -0.02462417632341385, + 0.13028542697429657, + -0.0012929841177538037 + ] + }, + { + "name" : "J_Adj_R_FaceEye", + "rotation" : [ + -0.1741931438446045, + 0.008449910208582878, + -0.1294926255941391, + 0.9761234521865845 + ], + "scale" : [ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998211860657 + ], + "translation" : [ + 0.018721116706728935, + 0.06786739081144333, + -0.025644320994615555 + ] + }, + { + "name" : "J_Adj_L_FaceEye", + "rotation" : [ + -0.17419341206550598, + -0.006961521692574024, + 0.1233423724770546, + 0.9769313335418701 + ], + "scale" : [ + 0.9999998807907104, + 1, + 0.9999999403953552 + ], + "translation" : [ + -0.0178753100335598, + 0.06810029596090317, + -0.025630148127675056 + ] + }, + { + "children" : [ + 71, + 72 + ], + "name" : "J_Bip_C_Head", + "rotation" : [ + 0.018150372430682182, + -0.00025218102382496, + 0.0031841059681028128, + 0.9998301863670349 + ], + "scale" : [ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation" : [ + -9.797590516669175e-10, + 0.09821367263793945, + -1.940742855310873e-08 + ] + }, + { + "children" : [ + 73 + ], + "name" : "J_Bip_C_Neck", + "rotation" : [ + -0.10366671532392502, + -1.0014984752615419e-07, + -4.373722731543239e-06, + 0.9946120977401733 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1 + ], + "translation" : [ + 1.0164535879653158e-08, + 0.16298921406269073, + 0.002582899061962962 + ] + }, + { + "children" : [ + 45, + 70, + 74 + ], + "name" : "J_Bip_C_UpperChest", + "rotation" : [ + -0.002416610484942794, + -2.9315682326114256e-08, + 3.0862743471971044e-08, + 0.999997079372406 + ], + "translation" : [ + -1.3873679982623344e-11, + 0.10002829134464264, + 4.465005254417065e-09 + ] + }, + { + "children" : [ + 75 + ], + "name" : "J_Bip_C_Chest", + "rotation" : [ + 0.0016998255159705877, + 1.126280082530684e-07, + -1.189366543030701e-07, + 0.9999985694885254 + ], + "scale" : [ + 1, + 1, + 0.9999999403953552 + ], + "translation" : [ + -2.8044233602031454e-12, + 0.09359538555145264, + -3.5671869902387243e-09 + ] + }, + { + "children" : [ + 76 + ], + "name" : "J_Bip_C_Spine", + "rotation" : [ + -0.03833840787410736, + 8.236827220287068e-09, + 1.7794954398908658e-09, + 0.9992648363113403 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1 + ], + "translation" : [ + -1.96151650477816e-09, + 0.14417217671871185, + -0.01884089782834053 + ] + }, + { + "name" : "penis2", + "rotation" : [ + 2.6077029247062455e-07, + -1.1990406971885796e-14, + -3.774758283725532e-14, + 1 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation" : [ + 3.4949210192536384e-11, + 0.04353584721684456, + 5.954757753556805e-08 + ] + }, + { + "children" : [ + 78 + ], + "name" : "penis1", + "rotation" : [ + -0.9783334732055664, + 5.972643890572726e-08, + 3.11722232027023e-07, + 0.20703527331352234 + ], + "scale" : [ + 1, + 1, + 1.0000001192092896 + ], + "translation" : [ + -3.1534153066559156e-08, + -0.0822085440158844, + -0.060722947120666504 + ] + }, + { + "name" : "testicles", + "rotation" : [ + -0.9972882866859436, + 6.80695748656035e-08, + 3.2759174928287393e-07, + 0.07359538972377777 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1.0000088214874268 + ], + "translation" : [ + -2.860587144937199e-08, + -0.1063196063041687, + -0.037338659167289734 + ] + }, + { + "name" : "ctrl_lowerleg.R", + "rotation" : [ + 0.18108747899532318, + -0.8617039918899536, + -0.25039222836494446, + 0.40246403217315674 + ], + "scale" : [ + 1.0000171661376953, + 0.9999917149543762, + 0.9999915361404419 + ], + "translation" : [ + 1.2026685425325923e-08, + 0.44063887000083923, + 4.2257731536210486e-08 + ] + }, + { + "children" : [ + 81 + ], + "name" : "ctrl_upperleg.R", + "rotation" : [ + 0.033234138041734695, + -0.17239311337471008, + 0.9830918908119202, + 0.05202557519078255 + ], + "scale" : [ + 0.999994158744812, + 0.9999926090240479, + 0.9999772906303406 + ], + "translation" : [ + 0.09136216342449188, + -0.04309994727373123, + 0.009420402348041534 + ] + }, + { + "name" : "ctrl_lowerleg.L", + "rotation" : [ + 0.3181384205818176, + 0.7609161138534546, + 0.4398977756500244, + 0.3553653955459595 + ], + "scale" : [ + 1.0000016689300537, + 1.0000007152557373, + 1.0000016689300537 + ], + "translation" : [ + 2.6590686985628054e-08, + 0.44063863158226013, + -2.0458832850067665e-08 + ] + }, + { + "children" : [ + 83 + ], + "name" : "ctrl_upperleg.L", + "rotation" : [ + 0.003491681534796953, + 0.27587890625, + -0.9586653113365173, + 0.06956665962934494 + ], + "scale" : [ + 1.000001072883606, + 1.0000003576278687, + 1.0000008344650269 + ], + "translation" : [ + -0.09136013686656952, + -0.04309993237257004, + 0.00942041166126728 + ] + }, + { + "children" : [ + 10, + 20, + 77, + 79, + 80, + 82, + 84 + ], + "name" : "J_Bip_C_Hips", + "rotation" : [ + 0.0691264420747757, + 1.469241215090733e-05, + 0.00023106610751710832, + 0.9976078867912292 + ], + "scale" : [ + 1, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation" : [ + 2.919619407348861e-11, + 1.1115360260009766, + -8.285598318558129e-10 + ] + }, + { + "name" : "knee_r", + "rotation" : [ + 0.9238810539245605, + 0.010281587019562721, + 0.38177067041397095, + 0.02427532896399498 + ], + "scale" : [ + 1, + 1, + 1.0000498294830322 + ], + "translation" : [ + 0.06735582649707794, + 0.6791356205940247, + -0.2761208117008209 + ] + }, + { + "name" : "knee_l", + "rotation" : [ + 0.9239134192466736, + -0.009852028451859951, + -0.3816925287246704, + 0.024454651400446892 + ], + "scale" : [ + 1, + 0.9999998807907104, + 0.9998778700828552 + ], + "translation" : [ + -0.06695505976676941, + 0.6790736317634583, + -0.27612122893333435 + ] + }, + { + "name" : "ctrl_foot.R", + "rotation" : [ + -0.2281365990638733, + -0.36739635467529297, + -0.10248879343271255, + 0.8958068490028381 + ], + "scale" : [ + 1.0000003576278687, + 1.0000003576278687, + 1 + ], + "translation" : [ + 2.3773665702719882e-07, + 2.487467156697676e-07, + 1.0869830191495566e-07 + ] + }, + { + "children" : [ + 88 + ], + "name" : "foot_ik_r", + "rotation" : [ + -0.6515417695045471, + 0.272993803024292, + -0.2722439169883728, + 0.6533383727073669 + ], + "scale" : [ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998211860657 + ], + "translation" : [ + 0.052775025367736816, + 0.13060735166072845, + 0.037504781037569046 + ] + }, + { + "name" : "ctrl_foot.L", + "rotation" : [ + -0.2281375378370285, + 0.3673670291900635, + 0.10248590260744095, + 0.8958189487457275 + ], + "scale" : [ + 0.9999999403953552, + 0.9999999403953552, + 0.9999998807907104 + ], + "translation" : [ + 4.536180995273753e-07, + 2.5954253146664996e-07, + -2.135547276793659e-07 + ] + }, + { + "children" : [ + 90 + ], + "name" : "foot_ik_l", + "rotation" : [ + -0.6514232158660889, + -0.27327919006347656, + 0.2725270390510559, + 0.6532191634178162 + ], + "scale" : [ + 0.9999999403953552, + 0.9999998807907104, + 1 + ], + "translation" : [ + -0.05186867341399193, + 0.13055865466594696, + 0.0375044010579586 + ] + }, + { + "name" : "elbow_r", + "rotation" : [ + 0.49147576093673706, + -0.5081514120101929, + -0.5135607719421387, + 0.48630160093307495 + ], + "scale" : [ + 0.9999998807907104, + 0.9999998807907104, + 0.9999999403953552 + ], + "translation" : [ + 0.42277514934539795, + 1.5391452312469482, + 0.276719331741333 + ] + }, + { + "name" : "elbow_l", + "rotation" : [ + 0.49123963713645935, + 0.5083773136138916, + 0.5137865543365479, + 0.4860653281211853 + ], + "scale" : [ + 0.9999998211860657, + 0.9999996423721313, + 0.9999997019767761 + ], + "translation" : [ + -0.42317861318588257, + 1.5387523174285889, + 0.27671414613723755 + ] + }, + { + "name" : "ctrl_hand.R", + "rotation" : [ + -0.5068707466125488, + 0.5456416606903076, + -0.4532647430896759, + 0.4898044764995575 + ], + "scale" : [ + 1.0000001192092896, + 0.9999998807907104, + 1.000000238418579 + ], + "translation" : [ + -2.2319701642459222e-11, + -2.6728548263577068e-08, + 2.9395202716386848e-08 + ] + }, + { + "children" : [ + 94 + ], + "name" : "wrist_ik_r", + "rotation" : [ + -0.00445479154586792, + -0.7365793585777283, + 0.005193888675421476, + 0.6763165593147278 + ], + "scale" : [ + 1, + 0.9999998807907104, + 1 + ], + "translation" : [ + 0.7262402176856995, + 1.542434811592102, + -0.015865333378314972 + ] + }, + { + "name" : "ctrl_hand.L", + "rotation" : [ + -0.5068717002868652, + -0.5456433296203613, + 0.4532627463340759, + 0.48980340361595154 + ], + "scale" : [ + 0.9999996423721313, + 0.9999997615814209, + 1 + ], + "translation" : [ + 1.2594557574630016e-07, + -1.6854514228725748e-07, + 1.0034001007852567e-07 + ] + }, + { + "children" : [ + 96 + ], + "name" : "wrist_ik_l", + "rotation" : [ + -0.004795713350176811, + 0.7365772724151611, + -0.004880846012383699, + 0.6763188242912292 + ], + "scale" : [ + 1.000000238418579, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation" : [ + -0.7266380786895752, + 1.5417609214782715, + -0.01587185077369213 + ] + }, + { + "children" : [ + 85, + 86, + 87, + 89, + 91, + 92, + 93, + 95, + 97 + ], + "name" : "Root", + "rotation" : [ + -0.005293018650263548, + -2.2047237280276022e-07, + -0.00023148013860918581, + 0.9999860525131226 + ], + "scale" : [ + 1, + 0.9999999403953552, + 0.9999999403953552 + ] + } + ], + "animations" : [ + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "08_01-walk", + "samplers" : [ + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 1 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 2 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 3 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 4 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 5 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 6 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 7 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 8 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 9 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 10 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 11 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 12 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 13 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 14 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 15 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 16 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 17 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 18 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 19 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 20 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 21 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 22 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 23 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 24 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 25 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 26 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 27 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 28 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 29 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 30 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 31 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 32 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 33 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 34 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 35 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 36 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 37 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 38 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 39 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 40 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 41 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 42 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 43 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 44 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 45 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 46 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 47 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 48 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 49 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 50 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 51 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 52 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 53 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 54 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 55 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 56 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 57 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 58 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 59 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 60 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 61 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 62 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 63 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 64 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 65 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 66 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 67 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 68 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 69 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 70 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 71 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 72 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 73 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 74 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 75 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 76 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 77 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 78 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 79 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 80 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 81 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 82 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 83 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 84 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 85 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 86 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 87 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 88 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 89 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 90 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 91 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 92 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 93 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 94 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 95 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 96 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 97 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 98 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 99 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 100 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 101 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 102 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 103 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 104 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 105 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 106 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 107 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 108 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 109 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 110 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 111 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 112 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 113 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 114 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 115 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 116 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 117 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 118 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 119 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 120 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 121 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 122 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 123 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 124 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 125 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 126 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 127 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 128 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 129 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 130 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 131 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 132 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 133 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 134 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 135 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 136 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 137 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 138 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 139 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 140 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 141 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 142 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 143 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 144 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 145 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 146 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 147 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 148 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 149 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 150 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 151 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 152 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 153 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 154 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 155 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 156 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 157 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 158 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 159 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 160 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 161 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 162 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 163 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 164 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 165 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 166 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 167 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 168 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 169 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 170 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 171 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 172 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 173 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 174 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 175 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 176 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 177 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 178 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 179 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 180 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 181 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 182 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 183 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 184 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 185 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 186 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 187 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 188 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 189 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 190 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 191 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 192 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 193 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 194 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 195 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 196 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 197 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 198 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 199 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 200 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 201 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 202 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 203 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 204 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 205 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 206 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 207 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 208 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 209 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 210 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 211 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 212 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 213 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 214 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 215 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 216 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 217 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 218 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 219 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 220 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 221 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 222 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 223 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 224 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 225 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 226 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 227 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 228 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 229 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 230 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 231 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 232 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 233 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 234 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 235 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 236 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 237 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 238 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 239 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 240 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 241 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 242 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 243 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 244 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 245 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 246 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 247 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 248 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 249 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 250 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 251 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 252 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 253 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 254 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 255 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 256 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 257 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 258 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 259 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 260 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 261 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 262 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 263 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 264 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 265 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 266 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 267 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 268 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 269 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 270 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 271 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 272 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 273 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 274 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 275 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 276 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 277 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 278 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 279 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 280 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 281 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 282 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 283 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 284 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 285 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 286 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 287 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 288 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 289 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 290 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 291 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 292 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 293 + }, + { + "input" : 0, + "interpolation" : "LINEAR", + "output" : 294 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "08_01-walk-fast-p1", + "samplers" : [ + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 296 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 297 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 298 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 299 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 300 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 301 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 302 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 303 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 304 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 305 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 306 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 307 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 308 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 309 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 310 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 311 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 312 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 313 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 314 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 315 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 316 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 317 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 318 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 319 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 320 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 321 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 322 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 323 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 324 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 325 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 326 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 327 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 328 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 329 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 330 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 331 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 332 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 333 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 334 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 335 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 336 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 337 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 338 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 339 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 340 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 341 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 342 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 343 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 344 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 345 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 346 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 347 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 348 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 349 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 350 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 351 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 352 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 353 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 354 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 355 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 356 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 357 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 358 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 359 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 360 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 361 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 362 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 363 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 364 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 365 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 366 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 367 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 368 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 369 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 370 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 371 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 372 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 373 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 374 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 375 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 376 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 377 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 378 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 379 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 380 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 381 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 382 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 383 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 384 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 385 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 386 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 387 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 388 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 389 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 390 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 391 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 392 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 393 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 394 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 395 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 396 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 397 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 398 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 399 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 400 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 401 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 402 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 403 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 404 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 405 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 406 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 407 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 408 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 409 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 410 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 411 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 412 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 413 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 414 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 415 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 416 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 417 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 418 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 419 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 420 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 421 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 422 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 423 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 424 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 425 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 426 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 427 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 428 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 429 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 430 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 431 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 432 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 433 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 434 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 435 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 436 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 437 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 438 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 439 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 440 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 441 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 442 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 443 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 444 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 445 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 446 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 447 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 448 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 449 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 450 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 451 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 452 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 453 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 454 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 455 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 456 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 457 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 458 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 459 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 460 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 461 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 462 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 463 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 464 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 465 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 466 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 467 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 468 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 469 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 470 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 471 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 472 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 473 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 474 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 475 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 476 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 477 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 478 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 479 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 480 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 481 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 482 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 483 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 484 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 485 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 486 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 487 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 488 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 489 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 490 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 491 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 492 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 493 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 494 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 495 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 496 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 497 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 498 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 499 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 500 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 501 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 502 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 503 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 504 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 505 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 506 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 507 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 508 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 509 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 510 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 511 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 512 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 513 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 514 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 515 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 516 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 517 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 518 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 519 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 520 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 521 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 522 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 523 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 524 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 525 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 526 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 527 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 528 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 529 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 530 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 531 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 532 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 533 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 534 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 535 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 536 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 537 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 538 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 539 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 540 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 541 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 542 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 543 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 544 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 545 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 546 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 547 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 548 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 549 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 550 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 551 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 552 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 553 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 554 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 555 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 556 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 557 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 558 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 559 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 560 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 561 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 562 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 563 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 564 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 565 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 566 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 567 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 568 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 569 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 570 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 571 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 572 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 573 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 574 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 575 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 576 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 577 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 578 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 579 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 580 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 581 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 582 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 583 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 584 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 585 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 586 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 587 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 588 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 589 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "08_01-walk-fast-p2", + "samplers" : [ + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 590 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 591 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 592 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 593 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 594 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 595 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 596 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 597 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 598 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 599 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 600 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 601 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 602 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 603 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 604 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 605 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 606 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 607 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 608 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 609 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 610 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 611 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 612 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 613 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 614 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 615 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 616 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 617 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 618 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 619 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 620 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 621 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 622 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 623 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 624 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 625 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 626 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 627 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 628 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 629 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 630 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 631 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 632 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 633 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 634 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 635 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 636 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 637 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 638 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 639 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 640 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 641 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 642 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 643 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 644 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 645 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 646 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 647 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 648 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 649 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 650 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 651 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 652 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 653 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 654 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 655 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 656 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 657 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 658 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 659 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 660 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 661 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 662 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 663 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 664 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 665 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 666 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 667 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 668 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 669 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 670 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 671 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 672 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 673 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 674 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 675 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 676 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 677 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 678 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 679 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 680 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 681 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 682 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 683 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 684 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 685 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 686 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 687 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 688 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 689 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 690 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 691 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 692 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 693 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 694 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 695 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 696 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 697 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 698 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 699 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 700 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 701 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 702 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 703 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 704 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 705 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 706 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 707 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 708 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 709 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 710 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 711 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 712 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 713 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 714 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 715 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 716 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 717 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 718 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 719 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 720 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 721 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 722 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 723 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 724 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 725 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 726 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 727 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 728 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 729 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 730 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 731 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 732 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 733 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 734 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 735 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 736 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 737 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 738 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 739 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 740 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 741 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 742 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 743 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 744 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 745 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 746 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 747 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 748 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 749 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 750 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 751 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 752 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 753 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 754 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 755 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 756 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 757 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 758 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 759 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 760 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 761 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 762 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 763 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 764 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 765 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 766 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 767 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 768 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 769 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 770 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 771 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 772 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 773 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 774 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 775 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 776 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 777 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 778 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 779 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 780 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 781 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 782 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 783 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 784 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 785 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 786 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 787 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 788 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 789 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 790 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 791 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 792 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 793 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 794 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 795 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 796 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 797 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 798 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 799 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 800 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 801 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 802 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 803 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 804 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 805 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 806 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 807 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 808 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 809 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 810 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 811 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 812 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 813 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 814 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 815 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 816 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 817 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 818 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 819 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 820 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 821 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 822 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 823 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 824 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 825 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 826 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 827 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 828 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 829 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 830 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 831 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 832 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 833 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 834 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 835 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 836 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 837 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 838 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 839 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 840 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 841 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 842 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 843 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 844 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 845 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 846 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 847 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 848 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 849 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 850 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 851 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 852 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 853 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 854 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 855 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 856 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 857 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 858 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 859 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 860 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 861 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 862 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 863 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 864 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 865 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 866 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 867 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 868 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 869 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 870 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 871 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 872 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 873 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 874 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 875 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 876 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 877 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 878 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 879 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 880 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 881 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 882 + }, + { + "input" : 295, + "interpolation" : "LINEAR", + "output" : 883 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "08_01-walk-p1", + "samplers" : [ + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 885 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 886 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 887 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 888 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 889 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 890 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 891 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 892 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 893 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 894 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 895 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 896 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 897 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 898 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 899 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 900 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 901 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 902 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 903 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 904 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 905 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 906 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 907 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 908 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 909 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 910 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 911 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 912 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 913 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 914 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 915 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 916 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 917 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 918 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 919 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 920 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 921 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 922 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 923 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 924 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 925 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 926 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 927 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 928 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 929 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 930 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 931 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 932 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 933 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 934 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 935 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 936 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 937 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 938 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 939 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 940 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 941 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 942 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 943 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 944 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 945 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 946 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 947 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 948 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 949 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 950 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 951 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 952 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 953 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 954 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 955 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 956 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 957 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 958 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 959 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 960 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 961 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 962 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 963 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 964 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 965 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 966 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 967 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 968 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 969 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 970 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 971 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 972 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 973 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 974 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 975 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 976 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 977 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 978 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 979 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 980 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 981 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 982 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 983 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 984 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 985 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 986 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 987 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 988 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 989 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 990 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 991 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 992 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 993 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 994 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 995 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 996 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 997 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 998 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 999 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1000 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1001 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1002 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1003 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1004 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1005 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1006 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1007 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1008 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1009 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1010 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1011 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1012 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1013 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1014 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1015 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1016 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1017 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1018 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1019 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1020 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1021 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1022 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1023 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1024 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1025 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1026 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1027 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1028 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1029 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1030 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1031 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1032 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1033 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1034 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1035 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1036 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1037 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1038 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1039 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1040 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1041 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1042 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1043 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1044 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1045 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1046 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1047 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1048 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1049 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1050 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1051 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1052 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1053 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1054 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1055 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1056 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1057 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1058 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1059 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1060 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1061 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1062 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1063 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1064 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1065 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1066 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1067 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1068 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1069 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1070 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1071 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1072 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1073 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1074 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1075 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1076 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1077 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1078 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1079 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1080 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1081 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1082 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1083 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1084 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1085 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1086 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1087 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1088 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1089 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1090 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1091 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1092 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1093 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1094 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1095 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1096 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1097 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1098 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1099 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1100 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1101 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1102 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1103 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1104 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1105 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1106 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1107 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1108 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1109 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1110 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1111 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1112 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1113 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1114 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1115 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1116 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1117 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1118 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1119 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1120 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1121 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1122 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1123 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1124 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1125 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1126 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1127 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1128 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1129 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1130 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1131 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1132 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1133 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1134 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1135 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1136 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1137 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1138 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1139 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1140 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1141 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1142 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1143 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1144 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1145 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1146 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1147 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1148 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1149 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1150 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1151 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1152 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1153 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1154 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1155 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1156 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1157 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1158 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1159 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1160 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1161 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1162 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1163 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1164 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1165 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1166 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1167 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1168 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1169 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1170 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1171 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1172 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1173 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1174 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1175 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1176 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1177 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1178 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "08_01-walk-p2", + "samplers" : [ + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1179 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1180 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1181 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1182 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1183 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1184 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1185 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1186 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1187 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1188 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1189 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1190 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1191 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1192 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1193 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1194 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1195 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1196 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1197 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1198 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1199 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1200 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1201 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1202 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1203 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1204 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1205 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1206 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1207 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1208 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1209 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1210 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1211 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1212 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1213 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1214 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1215 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1216 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1217 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1218 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1219 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1220 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1221 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1222 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1223 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1224 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1225 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1226 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1227 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1228 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1229 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1230 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1231 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1232 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1233 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1234 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1235 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1236 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1237 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1238 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1239 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1240 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1241 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1242 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1243 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1244 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1245 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1246 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1247 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1248 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1249 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1250 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1251 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1252 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1253 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1254 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1255 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1256 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1257 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1258 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1259 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1260 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1261 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1262 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1263 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1264 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1265 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1266 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1267 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1268 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1269 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1270 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1271 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1272 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1273 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1274 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1275 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1276 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1277 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1278 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1279 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1280 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1281 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1282 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1283 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1284 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1285 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1286 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1287 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1288 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1289 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1290 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1291 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1292 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1293 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1294 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1295 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1296 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1297 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1298 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1299 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1300 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1301 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1302 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1303 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1304 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1305 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1306 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1307 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1308 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1309 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1310 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1311 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1312 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1313 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1314 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1315 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1316 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1317 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1318 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1319 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1320 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1321 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1322 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1323 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1324 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1325 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1326 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1327 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1328 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1329 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1330 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1331 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1332 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1333 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1334 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1335 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1336 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1337 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1338 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1339 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1340 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1341 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1342 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1343 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1344 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1345 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1346 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1347 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1348 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1349 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1350 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1351 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1352 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1353 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1354 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1355 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1356 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1357 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1358 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1359 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1360 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1361 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1362 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1363 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1364 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1365 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1366 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1367 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1368 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1369 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1370 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1371 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1372 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1373 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1374 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1375 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1376 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1377 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1378 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1379 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1380 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1381 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1382 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1383 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1384 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1385 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1386 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1387 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1388 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1389 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1390 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1391 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1392 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1393 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1394 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1395 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1396 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1397 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1398 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1399 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1400 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1401 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1402 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1403 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1404 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1405 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1406 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1407 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1408 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1409 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1410 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1411 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1412 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1413 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1414 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1415 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1416 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1417 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1418 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1419 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1420 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1421 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1422 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1423 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1424 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1425 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1426 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1427 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1428 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1429 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1430 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1431 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1432 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1433 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1434 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1435 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1436 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1437 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1438 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1439 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1440 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1441 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1442 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1443 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1444 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1445 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1446 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1447 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1448 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1449 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1450 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1451 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1452 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1453 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1454 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1455 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1456 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1457 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1458 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1459 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1460 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1461 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1462 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1463 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1464 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1465 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1466 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1467 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1468 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1469 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1470 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1471 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1472 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "08_01-walk-p3", + "samplers" : [ + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1473 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1474 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1475 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1476 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1477 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1478 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1479 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1480 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1481 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1482 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1483 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1484 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1485 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1486 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1487 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1488 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1489 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1490 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1491 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1492 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1493 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1494 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1495 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1496 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1497 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1498 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1499 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1500 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1501 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1502 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1503 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1504 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1505 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1506 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1507 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1508 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1509 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1510 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1511 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1512 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1513 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1514 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1515 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1516 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1517 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1518 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1519 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1520 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1521 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1522 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1523 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1524 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1525 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1526 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1527 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1528 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1529 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1530 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1531 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1532 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1533 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1534 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1535 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1536 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1537 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1538 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1539 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1540 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1541 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1542 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1543 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1544 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1545 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1546 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1547 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1548 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1549 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1550 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1551 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1552 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1553 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1554 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1555 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1556 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1557 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1558 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1559 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1560 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1561 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1562 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1563 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1564 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1565 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1566 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1567 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1568 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1569 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1570 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1571 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1572 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1573 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1574 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1575 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1576 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1577 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1578 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1579 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1580 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1581 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1582 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1583 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1584 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1585 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1586 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1587 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1588 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1589 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1590 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1591 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1592 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1593 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1594 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1595 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1596 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1597 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1598 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1599 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1600 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1601 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1602 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1603 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1604 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1605 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1606 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1607 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1608 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1609 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1610 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1611 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1612 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1613 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1614 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1615 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1616 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1617 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1618 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1619 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1620 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1621 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1622 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1623 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1624 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1625 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1626 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1627 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1628 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1629 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1630 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1631 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1632 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1633 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1634 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1635 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1636 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1637 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1638 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1639 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1640 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1641 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1642 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1643 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1644 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1645 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1646 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1647 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1648 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1649 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1650 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1651 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1652 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1653 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1654 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1655 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1656 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1657 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1658 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1659 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1660 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1661 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1662 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1663 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1664 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1665 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1666 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1667 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1668 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1669 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1670 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1671 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1672 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1673 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1674 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1675 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1676 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1677 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1678 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1679 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1680 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1681 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1682 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1683 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1684 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1685 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1686 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1687 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1688 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1689 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1690 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1691 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1692 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1693 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1694 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1695 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1696 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1697 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1698 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1699 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1700 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1701 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1702 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1703 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1704 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1705 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1706 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1707 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1708 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1709 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1710 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1711 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1712 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1713 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1714 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1715 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1716 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1717 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1718 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1719 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1720 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1721 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1722 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1723 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1724 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1725 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1726 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1727 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1728 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1729 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1730 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1731 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1732 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1733 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1734 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1735 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1736 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1737 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1738 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1739 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1740 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1741 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1742 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1743 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1744 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1745 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1746 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1747 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1748 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1749 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1750 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1751 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1752 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1753 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1754 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1755 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1756 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1757 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1758 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1759 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1760 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1761 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1762 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1763 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1764 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1765 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 1766 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "08_01-walk-p4", + "samplers" : [ + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1768 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1769 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1770 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1771 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1772 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1773 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1774 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1775 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1776 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1777 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1778 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1779 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1780 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1781 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1782 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1783 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1784 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1785 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1786 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1787 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1788 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1789 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1790 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1791 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1792 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1793 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1794 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1795 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1796 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1797 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1798 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1799 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1800 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1801 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1802 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1803 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1804 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1805 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1806 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1807 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1808 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1809 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1810 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1811 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1812 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1813 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1814 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1815 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1816 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1817 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1818 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1819 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1820 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1821 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1822 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1823 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1824 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1825 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1826 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1827 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1828 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1829 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1830 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1831 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1832 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1833 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1834 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1835 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1836 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1837 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1838 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1839 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1840 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1841 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1842 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1843 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1844 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1845 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1846 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1847 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1848 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1849 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1850 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1851 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1852 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1853 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1854 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1855 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1856 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1857 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1858 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1859 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1860 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1861 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1862 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1863 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1864 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1865 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1866 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1867 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1868 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1869 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1870 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1871 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1872 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1873 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1874 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1875 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1876 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1877 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1878 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1879 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1880 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1881 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1882 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1883 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1884 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1885 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1886 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1887 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1888 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1889 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1890 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1891 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1892 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1893 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1894 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1895 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1896 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1897 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1898 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1899 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1900 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1901 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1902 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1903 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1904 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1905 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1906 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1907 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1908 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1909 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1910 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1911 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1912 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1913 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1914 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1915 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1916 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1917 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1918 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1919 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1920 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1921 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1922 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1923 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1924 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1925 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1926 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1927 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1928 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1929 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1930 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1931 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1932 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1933 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1934 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1935 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1936 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1937 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1938 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1939 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1940 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1941 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1942 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1943 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1944 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1945 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1946 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1947 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1948 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1949 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1950 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1951 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1952 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1953 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1954 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1955 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1956 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1957 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1958 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1959 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1960 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1961 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1962 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1963 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1964 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1965 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1966 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1967 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1968 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1969 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1970 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1971 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1972 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1973 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1974 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1975 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1976 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1977 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1978 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1979 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1980 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1981 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1982 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1983 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1984 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1985 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1986 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1987 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1988 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1989 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1990 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1991 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1992 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1993 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1994 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1995 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1996 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1997 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1998 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 1999 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2000 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2001 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2002 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2003 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2004 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2005 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2006 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2007 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2008 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2009 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2010 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2011 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2012 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2013 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2014 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2015 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2016 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2017 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2018 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2019 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2020 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2021 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2022 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2023 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2024 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2025 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2026 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2027 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2028 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2029 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2030 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2031 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2032 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2033 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2034 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2035 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2036 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2037 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2038 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2039 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2040 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2041 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2042 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2043 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2044 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2045 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2046 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2047 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2048 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2049 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2050 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2051 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2052 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2053 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2054 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2055 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2056 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2057 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2058 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2059 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2060 + }, + { + "input" : 1767, + "interpolation" : "LINEAR", + "output" : 2061 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "08_01-walk-slow-p1", + "samplers" : [ + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2062 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2063 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2064 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2065 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2066 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2067 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2068 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2069 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2070 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2071 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2072 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2073 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2074 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2075 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2076 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2077 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2078 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2079 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2080 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2081 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2082 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2083 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2084 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2085 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2086 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2087 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2088 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2089 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2090 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2091 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2092 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2093 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2094 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2095 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2096 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2097 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2098 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2099 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2100 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2101 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2102 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2103 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2104 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2105 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2106 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2107 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2108 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2109 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2110 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2111 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2112 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2113 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2114 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2115 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2116 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2117 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2118 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2119 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2120 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2121 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2122 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2123 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2124 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2125 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2126 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2127 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2128 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2129 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2130 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2131 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2132 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2133 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2134 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2135 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2136 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2137 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2138 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2139 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2140 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2141 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2142 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2143 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2144 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2145 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2146 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2147 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2148 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2149 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2150 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2151 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2152 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2153 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2154 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2155 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2156 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2157 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2158 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2159 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2160 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2161 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2162 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2163 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2164 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2165 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2166 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2167 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2168 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2169 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2170 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2171 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2172 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2173 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2174 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2175 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2176 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2177 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2178 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2179 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2180 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2181 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2182 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2183 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2184 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2185 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2186 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2187 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2188 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2189 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2190 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2191 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2192 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2193 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2194 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2195 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2196 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2197 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2198 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2199 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2200 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2201 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2202 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2203 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2204 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2205 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2206 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2207 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2208 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2209 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2210 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2211 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2212 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2213 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2214 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2215 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2216 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2217 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2218 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2219 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2220 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2221 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2222 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2223 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2224 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2225 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2226 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2227 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2228 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2229 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2230 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2231 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2232 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2233 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2234 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2235 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2236 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2237 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2238 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2239 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2240 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2241 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2242 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2243 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2244 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2245 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2246 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2247 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2248 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2249 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2250 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2251 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2252 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2253 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2254 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2255 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2256 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2257 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2258 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2259 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2260 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2261 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2262 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2263 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2264 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2265 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2266 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2267 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2268 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2269 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2270 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2271 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2272 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2273 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2274 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2275 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2276 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2277 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2278 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2279 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2280 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2281 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2282 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2283 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2284 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2285 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2286 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2287 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2288 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2289 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2290 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2291 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2292 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2293 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2294 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2295 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2296 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2297 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2298 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2299 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2300 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2301 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2302 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2303 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2304 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2305 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2306 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2307 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2308 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2309 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2310 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2311 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2312 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2313 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2314 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2315 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2316 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2317 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2318 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2319 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2320 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2321 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2322 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2323 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2324 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2325 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2326 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2327 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2328 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2329 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2330 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2331 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2332 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2333 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2334 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2335 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2336 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2337 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2338 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2339 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2340 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2341 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2342 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2343 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2344 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2345 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2346 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2347 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2348 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2349 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2350 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2351 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2352 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2353 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2354 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2355 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "08_01-walk-slow-p2", + "samplers" : [ + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2356 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2357 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2358 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2359 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2360 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2361 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2362 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2363 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2364 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2365 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2366 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2367 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2368 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2369 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2370 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2371 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2372 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2373 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2374 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2375 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2376 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2377 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2378 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2379 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2380 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2381 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2382 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2383 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2384 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2385 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2386 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2387 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2388 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2389 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2390 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2391 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2392 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2393 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2394 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2395 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2396 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2397 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2398 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2399 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2400 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2401 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2402 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2403 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2404 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2405 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2406 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2407 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2408 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2409 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2410 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2411 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2412 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2413 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2414 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2415 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2416 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2417 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2418 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2419 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2420 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2421 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2422 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2423 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2424 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2425 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2426 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2427 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2428 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2429 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2430 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2431 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2432 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2433 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2434 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2435 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2436 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2437 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2438 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2439 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2440 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2441 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2442 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2443 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2444 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2445 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2446 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2447 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2448 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2449 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2450 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2451 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2452 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2453 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2454 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2455 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2456 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2457 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2458 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2459 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2460 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2461 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2462 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2463 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2464 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2465 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2466 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2467 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2468 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2469 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2470 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2471 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2472 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2473 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2474 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2475 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2476 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2477 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2478 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2479 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2480 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2481 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2482 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2483 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2484 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2485 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2486 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2487 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2488 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2489 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2490 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2491 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2492 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2493 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2494 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2495 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2496 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2497 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2498 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2499 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2500 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2501 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2502 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2503 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2504 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2505 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2506 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2507 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2508 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2509 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2510 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2511 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2512 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2513 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2514 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2515 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2516 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2517 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2518 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2519 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2520 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2521 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2522 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2523 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2524 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2525 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2526 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2527 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2528 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2529 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2530 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2531 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2532 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2533 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2534 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2535 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2536 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2537 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2538 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2539 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2540 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2541 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2542 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2543 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2544 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2545 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2546 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2547 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2548 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2549 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2550 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2551 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2552 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2553 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2554 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2555 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2556 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2557 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2558 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2559 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2560 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2561 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2562 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2563 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2564 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2565 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2566 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2567 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2568 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2569 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2570 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2571 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2572 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2573 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2574 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2575 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2576 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2577 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2578 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2579 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2580 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2581 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2582 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2583 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2584 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2585 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2586 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2587 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2588 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2589 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2590 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2591 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2592 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2593 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2594 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2595 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2596 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2597 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2598 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2599 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2600 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2601 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2602 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2603 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2604 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2605 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2606 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2607 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2608 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2609 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2610 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2611 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2612 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2613 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2614 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2615 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2616 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2617 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2618 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2619 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2620 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2621 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2622 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2623 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2624 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2625 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2626 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2627 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2628 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2629 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2630 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2631 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2632 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2633 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2634 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2635 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2636 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2637 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2638 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2639 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2640 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2641 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2642 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2643 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2644 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2645 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2646 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2647 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2648 + }, + { + "input" : 884, + "interpolation" : "LINEAR", + "output" : 2649 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "08_01-walk-slow-p3", + "samplers" : [ + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2651 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2652 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2653 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2654 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2655 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2656 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2657 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2658 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2659 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2660 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2661 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2662 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2663 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2664 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2665 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2666 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2667 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2668 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2669 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2670 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2671 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2672 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2673 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2674 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2675 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2676 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2677 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2678 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2679 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2680 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2681 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2682 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2683 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2684 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2685 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2686 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2687 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2688 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2689 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2690 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2691 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2692 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2693 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2694 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2695 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2696 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2697 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2698 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2699 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2700 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2701 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2702 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2703 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2704 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2705 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2706 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2707 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2708 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2709 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2710 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2711 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2712 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2713 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2714 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2715 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2716 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2717 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2718 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2719 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2720 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2721 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2722 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2723 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2724 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2725 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2726 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2727 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2728 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2729 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2730 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2731 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2732 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2733 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2734 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2735 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2736 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2737 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2738 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2739 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2740 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2741 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2742 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2743 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2744 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2745 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2746 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2747 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2748 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2749 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2750 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2751 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2752 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2753 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2754 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2755 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2756 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2757 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2758 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2759 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2760 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2761 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2762 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2763 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2764 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2765 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2766 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2767 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2768 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2769 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2770 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2771 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2772 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2773 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2774 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2775 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2776 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2777 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2778 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2779 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2780 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2781 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2782 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2783 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2784 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2785 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2786 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2787 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2788 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2789 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2790 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2791 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2792 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2793 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2794 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2795 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2796 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2797 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2798 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2799 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2800 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2801 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2802 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2803 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2804 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2805 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2806 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2807 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2808 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2809 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2810 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2811 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2812 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2813 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2814 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2815 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2816 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2817 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2818 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2819 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2820 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2821 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2822 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2823 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2824 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2825 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2826 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2827 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2828 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2829 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2830 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2831 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2832 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2833 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2834 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2835 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2836 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2837 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2838 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2839 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2840 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2841 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2842 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2843 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2844 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2845 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2846 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2847 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2848 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2849 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2850 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2851 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2852 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2853 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2854 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2855 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2856 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2857 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2858 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2859 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2860 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2861 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2862 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2863 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2864 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2865 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2866 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2867 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2868 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2869 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2870 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2871 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2872 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2873 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2874 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2875 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2876 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2877 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2878 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2879 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2880 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2881 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2882 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2883 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2884 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2885 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2886 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2887 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2888 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2889 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2890 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2891 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2892 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2893 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2894 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2895 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2896 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2897 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2898 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2899 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2900 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2901 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2902 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2903 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2904 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2905 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2906 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2907 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2908 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2909 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2910 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2911 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2912 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2913 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2914 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2915 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2916 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2917 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2918 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2919 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2920 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2921 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2922 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2923 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2924 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2925 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2926 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2927 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2928 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2929 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2930 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2931 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2932 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2933 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2934 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2935 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2936 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2937 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2938 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2939 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2940 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2941 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2942 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2943 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2944 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "08_01-walk-slow-p4", + "samplers" : [ + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2945 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2946 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2947 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2948 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2949 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2950 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2951 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2952 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2953 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2954 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2955 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2956 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2957 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2958 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2959 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2960 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2961 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2962 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2963 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2964 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2965 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2966 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2967 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2968 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2969 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2970 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2971 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2972 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2973 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2974 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2975 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2976 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2977 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2978 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2979 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2980 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2981 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2982 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2983 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2984 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2985 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2986 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2987 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2988 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2989 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2990 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2991 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2992 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2993 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2994 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2995 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2996 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2997 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2998 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 2999 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3000 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3001 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3002 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3003 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3004 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3005 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3006 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3007 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3008 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3009 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3010 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3011 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3012 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3013 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3014 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3015 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3016 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3017 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3018 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3019 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3020 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3021 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3022 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3023 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3024 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3025 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3026 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3027 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3028 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3029 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3030 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3031 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3032 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3033 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3034 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3035 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3036 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3037 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3038 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3039 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3040 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3041 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3042 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3043 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3044 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3045 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3046 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3047 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3048 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3049 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3050 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3051 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3052 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3053 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3054 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3055 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3056 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3057 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3058 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3059 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3060 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3061 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3062 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3063 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3064 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3065 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3066 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3067 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3068 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3069 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3070 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3071 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3072 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3073 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3074 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3075 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3076 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3077 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3078 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3079 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3080 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3081 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3082 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3083 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3084 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3085 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3086 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3087 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3088 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3089 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3090 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3091 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3092 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3093 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3094 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3095 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3096 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3097 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3098 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3099 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3100 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3101 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3102 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3103 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3104 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3105 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3106 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3107 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3108 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3109 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3110 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3111 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3112 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3113 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3114 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3115 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3116 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3117 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3118 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3119 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3120 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3121 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3122 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3123 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3124 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3125 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3126 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3127 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3128 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3129 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3130 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3131 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3132 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3133 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3134 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3135 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3136 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3137 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3138 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3139 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3140 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3141 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3142 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3143 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3144 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3145 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3146 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3147 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3148 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3149 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3150 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3151 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3152 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3153 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3154 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3155 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3156 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3157 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3158 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3159 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3160 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3161 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3162 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3163 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3164 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3165 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3166 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3167 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3168 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3169 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3170 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3171 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3172 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3173 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3174 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3175 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3176 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3177 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3178 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3179 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3180 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3181 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3182 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3183 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3184 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3185 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3186 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3187 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3188 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3189 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3190 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3191 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3192 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3193 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3194 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3195 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3196 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3197 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3198 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3199 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3200 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3201 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3202 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3203 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3204 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3205 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3206 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3207 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3208 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3209 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3210 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3211 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3212 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3213 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3214 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3215 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3216 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3217 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3218 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3219 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3220 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3221 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3222 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3223 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3224 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3225 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3226 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3227 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3228 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3229 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3230 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3231 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3232 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3233 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3234 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3235 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3236 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3237 + }, + { + "input" : 2650, + "interpolation" : "LINEAR", + "output" : 3238 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "blend-blade-left", + "samplers" : [ + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3240 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3241 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3242 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3243 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3244 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3245 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3246 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3247 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3248 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3249 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3250 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3251 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3252 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3253 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3254 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3255 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3256 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3257 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3258 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3259 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3260 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3261 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3262 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3263 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3264 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3265 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3266 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3267 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3268 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3269 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3270 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3271 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3272 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3273 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3274 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3275 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3276 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3277 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3278 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3279 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3280 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3281 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3282 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3283 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3284 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3285 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3286 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3287 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3288 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3289 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3290 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3291 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3292 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3293 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3294 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3295 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3296 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3297 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3298 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3299 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3300 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3301 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3302 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3303 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3304 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3305 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3306 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3307 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3308 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3309 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3310 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3311 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3312 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3313 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3314 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3315 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3316 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3317 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3318 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3319 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3320 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3321 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3322 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3323 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3324 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3325 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3326 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3327 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3328 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3329 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3330 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3331 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3332 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3333 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3334 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3335 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3336 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3337 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3338 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3339 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3340 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3341 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3342 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3343 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3344 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3345 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3346 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3347 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3348 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3349 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3350 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3351 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3352 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3353 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3354 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3355 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3356 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3357 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3358 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3359 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3360 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3361 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3362 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3363 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3364 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3365 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3366 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3367 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3368 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3369 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3370 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3371 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3372 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3373 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3374 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3375 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3376 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3377 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3378 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3379 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3380 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3381 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3382 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3383 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3384 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3385 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3386 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3387 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3388 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3389 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3390 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3391 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3392 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3393 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3394 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3395 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3396 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3397 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3398 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3399 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3400 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3401 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3402 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3403 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3404 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3405 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3406 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3407 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3408 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3409 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3410 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3411 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3412 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3413 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3414 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3415 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3416 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3417 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3418 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3419 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3420 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3421 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3422 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3423 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3424 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3425 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3426 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3427 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3428 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3429 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3430 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3431 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3432 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3433 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3434 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3435 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3436 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3437 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3438 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3439 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3440 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3441 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3442 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3443 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3444 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3445 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3446 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3447 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3448 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3449 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3450 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3451 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3452 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3453 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3454 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3455 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3456 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3457 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3458 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3459 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3460 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3461 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3462 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3463 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3464 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3465 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3466 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3467 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3468 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3469 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3470 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3471 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3472 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3473 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3474 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3475 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3476 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3477 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3478 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3479 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3480 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3481 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3482 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3483 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3484 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3485 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3486 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3487 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3488 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3489 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3490 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3491 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3492 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3493 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3494 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3495 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3496 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3497 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3498 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3499 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3500 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3501 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3502 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3503 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3504 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3505 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3506 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3507 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3508 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3509 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3510 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3511 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3512 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3513 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3514 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3515 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3516 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3517 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3518 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3519 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3520 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3521 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3522 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3523 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3524 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3525 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3526 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3527 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3528 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3529 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3530 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3531 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3532 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3533 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "blend-blade-right", + "samplers" : [ + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3534 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3535 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3536 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3537 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3538 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3539 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3540 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3541 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3542 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3543 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3544 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3545 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3546 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3547 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3548 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3549 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3550 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3551 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3552 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3553 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3554 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3555 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3556 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3557 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3558 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3559 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3560 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3561 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3562 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3563 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3564 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3565 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3566 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3567 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3568 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3569 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3570 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3571 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3572 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3573 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3574 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3575 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3576 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3577 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3578 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3579 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3580 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3581 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3582 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3583 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3584 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3585 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3586 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3587 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3588 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3589 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3590 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3591 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3592 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3593 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3594 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3595 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3596 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3597 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3598 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3599 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3600 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3601 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3602 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3603 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3604 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3605 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3606 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3607 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3608 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3609 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3610 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3611 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3612 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3613 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3614 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3615 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3616 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3617 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3618 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3619 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3620 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3621 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3622 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3623 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3624 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3625 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3626 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3627 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3628 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3629 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3630 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3631 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3632 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3633 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3634 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3635 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3636 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3637 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3638 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3639 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3640 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3641 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3642 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3643 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3644 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3645 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3646 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3647 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3648 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3649 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3650 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3651 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3652 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3653 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3654 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3655 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3656 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3657 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3658 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3659 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3660 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3661 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3662 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3663 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3664 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3665 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3666 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3667 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3668 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3669 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3670 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3671 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3672 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3673 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3674 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3675 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3676 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3677 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3678 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3679 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3680 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3681 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3682 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3683 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3684 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3685 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3686 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3687 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3688 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3689 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3690 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3691 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3692 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3693 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3694 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3695 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3696 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3697 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3698 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3699 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3700 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3701 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3702 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3703 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3704 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3705 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3706 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3707 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3708 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3709 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3710 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3711 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3712 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3713 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3714 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3715 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3716 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3717 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3718 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3719 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3720 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3721 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3722 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3723 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3724 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3725 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3726 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3727 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3728 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3729 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3730 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3731 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3732 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3733 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3734 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3735 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3736 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3737 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3738 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3739 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3740 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3741 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3742 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3743 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3744 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3745 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3746 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3747 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3748 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3749 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3750 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3751 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3752 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3753 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3754 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3755 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3756 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3757 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3758 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3759 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3760 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3761 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3762 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3763 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3764 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3765 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3766 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3767 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3768 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3769 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3770 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3771 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3772 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3773 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3774 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3775 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3776 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3777 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3778 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3779 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3780 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3781 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3782 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3783 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3784 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3785 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3786 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3787 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3788 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3789 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3790 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3791 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3792 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3793 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3794 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3795 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3796 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3797 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3798 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3799 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3800 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3801 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3802 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3803 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3804 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3805 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3806 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3807 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3808 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3809 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3810 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3811 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3812 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3813 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3814 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3815 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3816 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3817 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3818 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3819 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3820 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3821 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3822 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3823 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3824 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3825 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3826 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3827 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "car-passenger-loop", + "samplers" : [ + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3828 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3829 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3830 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3831 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3832 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3833 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3834 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3835 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3836 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3837 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3838 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3839 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3840 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3841 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3842 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3843 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3844 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3845 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3846 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3847 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3848 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3849 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3850 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3851 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3852 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3853 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3854 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3855 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3856 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3857 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3858 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3859 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3860 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3861 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3862 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3863 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3864 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3865 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3866 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3867 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3868 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3869 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3870 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3871 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3872 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3873 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3874 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3875 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3876 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3877 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3878 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3879 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3880 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3881 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3882 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3883 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3884 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3885 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3886 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3887 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3888 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3889 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3890 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3891 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3892 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3893 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3894 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3895 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3896 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3897 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3898 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3899 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3900 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3901 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3902 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3903 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3904 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3905 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3906 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3907 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3908 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3909 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3910 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3911 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3912 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3913 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3914 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3915 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3916 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3917 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3918 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3919 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3920 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3921 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3922 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3923 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3924 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3925 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3926 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3927 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3928 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3929 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3930 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3931 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3932 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3933 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3934 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3935 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3936 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3937 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3938 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3939 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3940 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3941 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3942 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3943 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3944 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3945 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3946 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3947 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3948 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3949 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3950 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3951 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3952 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3953 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3954 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3955 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3956 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3957 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3958 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3959 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3960 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3961 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3962 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3963 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3964 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3965 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3966 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3967 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3968 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3969 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3970 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3971 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3972 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3973 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3974 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3975 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3976 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3977 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3978 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3979 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3980 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3981 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3982 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3983 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3984 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3985 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3986 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3987 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3988 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3989 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3990 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3991 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3992 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3993 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3994 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3995 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3996 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3997 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3998 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 3999 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4000 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4001 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4002 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4003 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4004 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4005 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4006 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4007 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4008 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4009 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4010 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4011 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4012 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4013 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4014 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4015 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4016 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4017 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4018 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4019 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4020 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4021 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4022 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4023 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4024 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4025 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4026 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4027 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4028 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4029 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4030 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4031 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4032 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4033 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4034 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4035 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4036 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4037 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4038 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4039 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4040 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4041 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4042 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4043 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4044 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4045 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4046 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4047 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4048 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4049 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4050 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4051 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4052 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4053 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4054 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4055 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4056 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4057 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4058 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4059 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4060 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4061 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4062 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4063 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4064 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4065 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4066 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4067 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4068 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4069 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4070 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4071 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4072 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4073 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4074 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4075 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4076 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4077 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4078 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4079 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4080 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4081 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4082 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4083 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4084 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4085 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4086 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4087 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4088 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4089 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4090 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4091 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4092 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4093 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4094 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4095 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4096 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4097 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4098 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4099 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4100 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4101 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4102 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4103 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4104 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4105 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4106 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4107 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4108 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4109 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4110 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4111 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4112 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4113 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4114 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4115 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4116 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4117 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4118 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4119 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4120 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 4121 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "cliimb1", + "samplers" : [ + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4123 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4124 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4125 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4126 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4127 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4128 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4129 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4130 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4131 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4132 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4133 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4134 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4135 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4136 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4137 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4138 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4139 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4140 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4141 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4142 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4143 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4144 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4145 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4146 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4147 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4148 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4149 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4150 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4151 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4152 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4153 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4154 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4155 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4156 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4157 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4158 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4159 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4160 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4161 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4162 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4163 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4164 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4165 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4166 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4167 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4168 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4169 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4170 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4171 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4172 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4173 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4174 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4175 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4176 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4177 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4178 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4179 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4180 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4181 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4182 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4183 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4184 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4185 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4186 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4187 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4188 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4189 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4190 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4191 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4192 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4193 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4194 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4195 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4196 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4197 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4198 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4199 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4200 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4201 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4202 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4203 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4204 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4205 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4206 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4207 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4208 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4209 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4210 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4211 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4212 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4213 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4214 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4215 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4216 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4217 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4218 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4219 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4220 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4221 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4222 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4223 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4224 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4225 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4226 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4227 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4228 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4229 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4230 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4231 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4232 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4233 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4234 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4235 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4236 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4237 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4238 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4239 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4240 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4241 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4242 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4243 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4244 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4245 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4246 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4247 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4248 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4249 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4250 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4251 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4252 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4253 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4254 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4255 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4256 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4257 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4258 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4259 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4260 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4261 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4262 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4263 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4264 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4265 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4266 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4267 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4268 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4269 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4270 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4271 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4272 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4273 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4274 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4275 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4276 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4277 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4278 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4279 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4280 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4281 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4282 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4283 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4284 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4285 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4286 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4287 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4288 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4289 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4290 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4291 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4292 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4293 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4294 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4295 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4296 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4297 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4298 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4299 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4300 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4301 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4302 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4303 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4304 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4305 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4306 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4307 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4308 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4309 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4310 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4311 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4312 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4313 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4314 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4315 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4316 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4317 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4318 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4319 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4320 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4321 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4322 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4323 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4324 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4325 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4326 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4327 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4328 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4329 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4330 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4331 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4332 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4333 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4334 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4335 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4336 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4337 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4338 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4339 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4340 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4341 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4342 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4343 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4344 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4345 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4346 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4347 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4348 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4349 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4350 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4351 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4352 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4353 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4354 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4355 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4356 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4357 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4358 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4359 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4360 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4361 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4362 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4363 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4364 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4365 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4366 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4367 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4368 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4369 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4370 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4371 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4372 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4373 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4374 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4375 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4376 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4377 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4378 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4379 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4380 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4381 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4382 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4383 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4384 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4385 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4386 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4387 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4388 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4389 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4390 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4391 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4392 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4393 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4394 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4395 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4396 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4397 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4398 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4399 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4400 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4401 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4402 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4403 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4404 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4405 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4406 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4407 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4408 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4409 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4410 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4411 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4412 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4413 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4414 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4415 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4416 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "cliimb1a", + "samplers" : [ + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4417 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4418 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4419 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4420 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4421 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4422 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4423 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4424 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4425 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4426 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4427 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4428 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4429 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4430 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4431 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4432 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4433 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4434 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4435 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4436 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4437 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4438 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4439 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4440 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4441 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4442 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4443 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4444 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4445 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4446 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4447 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4448 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4449 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4450 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4451 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4452 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4453 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4454 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4455 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4456 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4457 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4458 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4459 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4460 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4461 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4462 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4463 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4464 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4465 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4466 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4467 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4468 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4469 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4470 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4471 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4472 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4473 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4474 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4475 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4476 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4477 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4478 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4479 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4480 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4481 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4482 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4483 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4484 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4485 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4486 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4487 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4488 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4489 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4490 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4491 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4492 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4493 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4494 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4495 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4496 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4497 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4498 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4499 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4500 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4501 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4502 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4503 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4504 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4505 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4506 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4507 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4508 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4509 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4510 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4511 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4512 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4513 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4514 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4515 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4516 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4517 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4518 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4519 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4520 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4521 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4522 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4523 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4524 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4525 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4526 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4527 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4528 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4529 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4530 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4531 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4532 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4533 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4534 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4535 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4536 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4537 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4538 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4539 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4540 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4541 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4542 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4543 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4544 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4545 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4546 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4547 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4548 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4549 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4550 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4551 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4552 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4553 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4554 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4555 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4556 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4557 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4558 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4559 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4560 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4561 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4562 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4563 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4564 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4565 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4566 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4567 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4568 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4569 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4570 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4571 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4572 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4573 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4574 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4575 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4576 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4577 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4578 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4579 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4580 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4581 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4582 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4583 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4584 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4585 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4586 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4587 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4588 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4589 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4590 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4591 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4592 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4593 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4594 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4595 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4596 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4597 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4598 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4599 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4600 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4601 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4602 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4603 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4604 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4605 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4606 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4607 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4608 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4609 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4610 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4611 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4612 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4613 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4614 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4615 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4616 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4617 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4618 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4619 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4620 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4621 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4622 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4623 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4624 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4625 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4626 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4627 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4628 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4629 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4630 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4631 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4632 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4633 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4634 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4635 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4636 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4637 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4638 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4639 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4640 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4641 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4642 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4643 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4644 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4645 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4646 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4647 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4648 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4649 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4650 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4651 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4652 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4653 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4654 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4655 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4656 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4657 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4658 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4659 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4660 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4661 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4662 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4663 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4664 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4665 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4666 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4667 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4668 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4669 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4670 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4671 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4672 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4673 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4674 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4675 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4676 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4677 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4678 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4679 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4680 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4681 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4682 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4683 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4684 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4685 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4686 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4687 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4688 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4689 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4690 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4691 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4692 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4693 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4694 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4695 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4696 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4697 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4698 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4699 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4700 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4701 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4702 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4703 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4704 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4705 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4706 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4707 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4708 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4709 + }, + { + "input" : 4122, + "interpolation" : "LINEAR", + "output" : 4710 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "dagger-sacrifice-counter-a", + "samplers" : [ + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4712 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4713 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4714 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4715 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4716 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4717 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4718 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4719 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4720 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4721 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4722 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4723 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4724 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4725 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4726 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4727 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4728 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4729 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4730 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4731 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4732 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4733 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4734 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4735 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4736 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4737 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4738 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4739 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4740 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4741 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4742 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4743 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4744 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4745 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4746 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4747 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4748 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4749 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4750 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4751 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4752 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4753 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4754 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4755 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4756 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4757 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4758 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4759 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4760 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4761 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4762 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4763 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4764 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4765 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4766 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4767 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4768 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4769 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4770 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4771 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4772 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4773 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4774 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4775 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4776 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4777 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4778 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4779 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4780 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4781 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4782 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4783 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4784 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4785 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4786 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4787 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4788 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4789 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4790 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4791 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4792 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4793 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4794 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4795 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4796 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4797 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4798 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4799 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4800 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4801 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4802 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4803 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4804 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4805 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4806 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4807 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4808 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4809 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4810 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4811 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4812 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4813 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4814 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4815 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4816 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4817 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4818 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4819 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4820 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4821 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4822 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4823 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4824 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4825 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4826 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4827 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4828 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4829 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4830 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4831 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4832 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4833 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4834 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4835 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4836 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4837 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4838 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4839 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4840 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4841 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4842 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4843 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4844 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4845 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4846 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4847 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4848 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4849 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4850 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4851 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4852 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4853 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4854 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4855 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4856 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4857 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4858 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4859 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4860 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4861 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4862 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4863 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4864 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4865 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4866 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4867 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4868 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4869 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4870 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4871 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4872 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4873 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4874 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4875 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4876 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4877 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4878 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4879 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4880 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4881 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4882 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4883 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4884 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4885 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4886 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4887 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4888 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4889 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4890 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4891 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4892 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4893 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4894 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4895 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4896 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4897 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4898 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4899 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4900 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4901 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4902 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4903 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4904 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4905 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4906 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4907 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4908 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4909 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4910 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4911 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4912 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4913 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4914 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4915 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4916 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4917 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4918 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4919 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4920 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4921 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4922 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4923 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4924 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4925 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4926 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4927 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4928 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4929 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4930 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4931 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4932 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4933 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4934 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4935 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4936 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4937 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4938 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4939 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4940 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4941 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4942 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4943 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4944 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4945 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4946 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4947 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4948 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4949 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4950 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4951 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4952 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4953 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4954 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4955 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4956 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4957 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4958 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4959 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4960 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4961 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4962 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4963 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4964 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4965 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4966 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4967 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4968 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4969 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4970 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4971 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4972 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4973 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4974 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4975 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4976 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4977 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4978 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4979 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4980 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4981 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4982 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4983 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4984 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4985 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4986 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4987 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4988 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4989 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4990 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4991 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4992 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4993 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4994 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4995 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4996 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4997 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4998 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 4999 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 5000 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 5001 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 5002 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 5003 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 5004 + }, + { + "input" : 4711, + "interpolation" : "LINEAR", + "output" : 5005 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "dagger-sacrifice-end1", + "samplers" : [ + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5007 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5008 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5009 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5010 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5011 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5012 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5013 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5014 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5015 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5016 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5017 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5018 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5019 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5020 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5021 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5022 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5023 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5024 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5025 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5026 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5027 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5028 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5029 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5030 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5031 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5032 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5033 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5034 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5035 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5036 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5037 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5038 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5039 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5040 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5041 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5042 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5043 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5044 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5045 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5046 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5047 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5048 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5049 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5050 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5051 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5052 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5053 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5054 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5055 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5056 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5057 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5058 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5059 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5060 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5061 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5062 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5063 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5064 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5065 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5066 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5067 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5068 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5069 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5070 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5071 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5072 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5073 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5074 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5075 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5076 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5077 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5078 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5079 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5080 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5081 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5082 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5083 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5084 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5085 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5086 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5087 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5088 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5089 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5090 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5091 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5092 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5093 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5094 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5095 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5096 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5097 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5098 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5099 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5100 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5101 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5102 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5103 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5104 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5105 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5106 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5107 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5108 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5109 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5110 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5111 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5112 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5113 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5114 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5115 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5116 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5117 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5118 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5119 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5120 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5121 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5122 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5123 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5124 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5125 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5126 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5127 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5128 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5129 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5130 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5131 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5132 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5133 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5134 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5135 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5136 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5137 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5138 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5139 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5140 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5141 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5142 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5143 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5144 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5145 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5146 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5147 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5148 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5149 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5150 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5151 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5152 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5153 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5154 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5155 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5156 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5157 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5158 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5159 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5160 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5161 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5162 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5163 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5164 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5165 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5166 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5167 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5168 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5169 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5170 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5171 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5172 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5173 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5174 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5175 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5176 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5177 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5178 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5179 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5180 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5181 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5182 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5183 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5184 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5185 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5186 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5187 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5188 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5189 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5190 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5191 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5192 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5193 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5194 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5195 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5196 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5197 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5198 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5199 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5200 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5201 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5202 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5203 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5204 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5205 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5206 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5207 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5208 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5209 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5210 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5211 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5212 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5213 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5214 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5215 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5216 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5217 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5218 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5219 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5220 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5221 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5222 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5223 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5224 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5225 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5226 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5227 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5228 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5229 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5230 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5231 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5232 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5233 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5234 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5235 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5236 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5237 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5238 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5239 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5240 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5241 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5242 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5243 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5244 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5245 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5246 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5247 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5248 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5249 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5250 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5251 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5252 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5253 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5254 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5255 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5256 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5257 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5258 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5259 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5260 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5261 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5262 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5263 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5264 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5265 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5266 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5267 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5268 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5269 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5270 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5271 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5272 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5273 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5274 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5275 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5276 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5277 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5278 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5279 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5280 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5281 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5282 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5283 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5284 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5285 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5286 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5287 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5288 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5289 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5290 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5291 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5292 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5293 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5294 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5295 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5296 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5297 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5298 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5299 + }, + { + "input" : 5006, + "interpolation" : "LINEAR", + "output" : 5300 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "dagger-sacrifice-kneel1", + "samplers" : [ + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5302 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5303 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5304 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5305 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5306 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5307 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5308 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5309 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5310 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5311 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5312 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5313 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5314 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5315 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5316 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5317 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5318 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5319 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5320 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5321 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5322 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5323 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5324 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5325 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5326 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5327 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5328 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5329 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5330 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5331 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5332 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5333 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5334 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5335 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5336 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5337 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5338 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5339 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5340 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5341 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5342 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5343 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5344 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5345 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5346 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5347 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5348 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5349 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5350 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5351 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5352 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5353 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5354 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5355 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5356 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5357 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5358 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5359 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5360 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5361 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5362 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5363 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5364 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5365 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5366 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5367 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5368 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5369 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5370 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5371 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5372 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5373 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5374 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5375 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5376 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5377 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5378 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5379 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5380 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5381 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5382 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5383 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5384 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5385 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5386 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5387 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5388 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5389 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5390 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5391 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5392 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5393 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5394 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5395 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5396 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5397 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5398 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5399 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5400 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5401 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5402 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5403 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5404 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5405 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5406 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5407 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5408 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5409 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5410 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5411 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5412 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5413 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5414 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5415 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5416 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5417 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5418 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5419 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5420 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5421 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5422 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5423 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5424 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5425 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5426 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5427 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5428 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5429 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5430 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5431 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5432 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5433 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5434 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5435 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5436 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5437 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5438 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5439 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5440 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5441 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5442 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5443 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5444 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5445 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5446 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5447 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5448 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5449 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5450 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5451 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5452 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5453 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5454 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5455 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5456 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5457 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5458 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5459 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5460 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5461 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5462 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5463 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5464 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5465 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5466 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5467 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5468 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5469 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5470 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5471 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5472 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5473 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5474 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5475 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5476 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5477 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5478 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5479 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5480 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5481 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5482 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5483 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5484 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5485 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5486 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5487 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5488 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5489 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5490 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5491 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5492 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5493 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5494 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5495 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5496 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5497 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5498 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5499 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5500 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5501 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5502 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5503 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5504 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5505 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5506 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5507 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5508 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5509 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5510 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5511 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5512 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5513 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5514 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5515 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5516 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5517 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5518 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5519 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5520 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5521 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5522 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5523 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5524 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5525 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5526 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5527 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5528 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5529 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5530 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5531 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5532 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5533 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5534 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5535 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5536 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5537 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5538 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5539 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5540 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5541 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5542 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5543 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5544 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5545 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5546 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5547 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5548 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5549 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5550 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5551 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5552 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5553 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5554 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5555 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5556 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5557 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5558 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5559 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5560 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5561 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5562 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5563 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5564 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5565 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5566 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5567 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5568 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5569 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5570 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5571 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5572 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5573 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5574 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5575 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5576 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5577 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5578 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5579 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5580 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5581 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5582 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5583 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5584 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5585 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5586 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5587 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5588 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5589 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5590 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5591 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5592 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5593 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5594 + }, + { + "input" : 5301, + "interpolation" : "LINEAR", + "output" : 5595 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "dagger-sacrifice-kneel1.001", + "samplers" : [ + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5597 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5598 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5599 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5600 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5601 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5602 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5603 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5604 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5605 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5606 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5607 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5608 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5609 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5610 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5611 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5612 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5613 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5614 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5615 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5616 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5617 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5618 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5619 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5620 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5621 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5622 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5623 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5624 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5625 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5626 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5627 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5628 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5629 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5630 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5631 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5632 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5633 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5634 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5635 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5636 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5637 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5638 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5639 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5640 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5641 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5642 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5643 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5644 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5645 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5646 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5647 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5648 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5649 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5650 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5651 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5652 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5653 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5654 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5655 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5656 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5657 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5658 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5659 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5660 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5661 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5662 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5663 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5664 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5665 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5666 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5667 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5668 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5669 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5670 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5671 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5672 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5673 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5674 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5675 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5676 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5677 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5678 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5679 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5680 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5681 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5682 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5683 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5684 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5685 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5686 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5687 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5688 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5689 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5690 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5691 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5692 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5693 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5694 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5695 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5696 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5697 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5698 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5699 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5700 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5701 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5702 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5703 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5704 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5705 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5706 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5707 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5708 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5709 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5710 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5711 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5712 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5713 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5714 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5715 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5716 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5717 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5718 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5719 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5720 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5721 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5722 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5723 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5724 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5725 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5726 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5727 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5728 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5729 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5730 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5731 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5732 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5733 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5734 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5735 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5736 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5737 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5738 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5739 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5740 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5741 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5742 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5743 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5744 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5745 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5746 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5747 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5748 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5749 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5750 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5751 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5752 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5753 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5754 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5755 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5756 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5757 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5758 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5759 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5760 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5761 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5762 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5763 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5764 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5765 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5766 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5767 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5768 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5769 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5770 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5771 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5772 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5773 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5774 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5775 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5776 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5777 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5778 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5779 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5780 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5781 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5782 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5783 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5784 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5785 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5786 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5787 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5788 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5789 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5790 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5791 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5792 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5793 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5794 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5795 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5796 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5797 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5798 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5799 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5800 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5801 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5802 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5803 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5804 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5805 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5806 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5807 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5808 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5809 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5810 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5811 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5812 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5813 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5814 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5815 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5816 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5817 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5818 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5819 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5820 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5821 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5822 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5823 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5824 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5825 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5826 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5827 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5828 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5829 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5830 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5831 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5832 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5833 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5834 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5835 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5836 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5837 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5838 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5839 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5840 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5841 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5842 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5843 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5844 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5845 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5846 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5847 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5848 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5849 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5850 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5851 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5852 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5853 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5854 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5855 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5856 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5857 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5858 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5859 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5860 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5861 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5862 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5863 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5864 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5865 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5866 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5867 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5868 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5869 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5870 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5871 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5872 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5873 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5874 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5875 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5876 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5877 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5878 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5879 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5880 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5881 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5882 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5883 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5884 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5885 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5886 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5887 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5888 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5889 + }, + { + "input" : 5596, + "interpolation" : "LINEAR", + "output" : 5890 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "dagger-sacrifice-stab1", + "samplers" : [ + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5892 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5893 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5894 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5895 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5896 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5897 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5898 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5899 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5900 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5901 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5902 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5903 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5904 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5905 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5906 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5907 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5908 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5909 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5910 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5911 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5912 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5913 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5914 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5915 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5916 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5917 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5918 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5919 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5920 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5921 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5922 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5923 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5924 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5925 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5926 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5927 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5928 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5929 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5930 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5931 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5932 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5933 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5934 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5935 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5936 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5937 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5938 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5939 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5940 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5941 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5942 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5943 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5944 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5945 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5946 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5947 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5948 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5949 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5950 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5951 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5952 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5953 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5954 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5955 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5956 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5957 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5958 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5959 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5960 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5961 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5962 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5963 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5964 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5965 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5966 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5967 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5968 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5969 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5970 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5971 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5972 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5973 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5974 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5975 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5976 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5977 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5978 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5979 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5980 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5981 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5982 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5983 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5984 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5985 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5986 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5987 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5988 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5989 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5990 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5991 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5992 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5993 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5994 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5995 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5996 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5997 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5998 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 5999 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6000 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6001 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6002 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6003 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6004 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6005 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6006 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6007 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6008 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6009 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6010 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6011 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6012 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6013 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6014 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6015 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6016 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6017 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6018 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6019 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6020 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6021 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6022 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6023 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6024 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6025 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6026 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6027 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6028 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6029 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6030 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6031 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6032 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6033 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6034 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6035 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6036 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6037 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6038 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6039 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6040 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6041 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6042 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6043 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6044 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6045 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6046 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6047 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6048 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6049 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6050 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6051 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6052 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6053 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6054 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6055 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6056 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6057 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6058 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6059 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6060 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6061 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6062 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6063 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6064 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6065 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6066 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6067 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6068 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6069 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6070 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6071 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6072 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6073 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6074 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6075 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6076 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6077 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6078 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6079 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6080 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6081 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6082 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6083 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6084 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6085 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6086 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6087 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6088 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6089 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6090 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6091 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6092 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6093 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6094 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6095 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6096 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6097 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6098 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6099 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6100 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6101 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6102 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6103 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6104 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6105 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6106 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6107 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6108 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6109 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6110 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6111 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6112 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6113 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6114 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6115 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6116 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6117 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6118 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6119 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6120 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6121 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6122 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6123 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6124 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6125 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6126 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6127 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6128 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6129 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6130 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6131 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6132 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6133 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6134 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6135 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6136 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6137 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6138 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6139 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6140 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6141 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6142 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6143 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6144 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6145 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6146 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6147 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6148 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6149 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6150 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6151 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6152 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6153 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6154 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6155 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6156 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6157 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6158 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6159 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6160 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6161 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6162 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6163 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6164 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6165 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6166 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6167 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6168 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6169 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6170 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6171 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6172 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6173 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6174 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6175 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6176 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6177 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6178 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6179 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6180 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6181 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6182 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6183 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6184 + }, + { + "input" : 5891, + "interpolation" : "LINEAR", + "output" : 6185 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "default", + "samplers" : [ + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6186 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6187 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6188 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6189 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6190 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6191 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6192 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6193 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6194 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6195 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6196 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6197 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6198 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6199 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6200 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6201 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6202 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6203 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6204 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6205 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6206 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6207 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6208 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6209 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6210 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6211 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6212 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6213 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6214 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6215 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6216 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6217 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6218 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6219 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6220 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6221 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6222 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6223 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6224 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6225 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6226 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6227 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6228 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6229 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6230 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6231 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6232 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6233 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6234 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6235 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6236 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6237 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6238 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6239 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6240 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6241 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6242 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6243 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6244 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6245 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6246 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6247 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6248 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6249 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6250 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6251 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6252 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6253 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6254 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6255 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6256 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6257 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6258 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6259 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6260 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6261 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6262 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6263 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6264 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6265 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6266 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6267 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6268 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6269 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6270 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6271 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6272 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6273 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6274 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6275 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6276 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6277 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6278 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6279 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6280 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6281 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6282 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6283 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6284 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6285 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6286 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6287 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6288 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6289 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6290 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6291 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6292 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6293 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6294 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6295 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6296 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6297 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6298 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6299 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6300 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6301 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6302 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6303 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6304 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6305 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6306 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6307 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6308 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6309 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6310 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6311 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6312 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6313 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6314 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6315 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6316 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6317 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6318 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6319 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6320 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6321 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6322 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6323 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6324 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6325 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6326 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6327 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6328 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6329 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6330 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6331 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6332 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6333 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6334 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6335 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6336 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6337 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6338 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6339 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6340 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6341 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6342 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6343 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6344 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6345 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6346 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6347 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6348 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6349 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6350 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6351 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6352 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6353 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6354 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6355 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6356 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6357 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6358 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6359 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6360 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6361 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6362 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6363 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6364 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6365 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6366 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6367 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6368 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6369 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6370 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6371 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6372 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6373 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6374 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6375 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6376 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6377 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6378 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6379 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6380 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6381 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6382 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6383 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6384 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6385 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6386 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6387 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6388 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6389 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6390 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6391 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6392 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6393 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6394 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6395 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6396 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6397 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6398 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6399 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6400 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6401 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6402 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6403 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6404 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6405 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6406 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6407 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6408 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6409 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6410 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6411 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6412 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6413 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6414 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6415 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6416 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6417 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6418 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6419 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6420 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6421 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6422 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6423 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6424 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6425 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6426 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6427 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6428 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6429 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6430 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6431 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6432 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6433 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6434 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6435 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6436 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6437 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6438 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6439 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6440 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6441 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6442 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6443 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6444 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6445 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6446 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6447 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6448 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6449 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6450 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6451 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6452 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6453 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6454 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6455 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6456 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6457 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6458 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6459 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6460 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6461 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6462 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6463 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6464 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6465 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6466 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6467 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6468 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6469 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6470 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6471 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6472 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6473 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6474 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6475 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6476 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6477 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6478 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6479 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "drive-loop", + "samplers" : [ + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6480 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6481 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6482 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6483 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6484 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6485 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6486 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6487 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6488 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6489 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6490 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6491 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6492 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6493 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6494 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6495 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6496 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6497 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6498 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6499 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6500 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6501 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6502 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6503 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6504 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6505 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6506 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6507 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6508 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6509 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6510 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6511 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6512 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6513 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6514 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6515 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6516 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6517 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6518 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6519 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6520 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6521 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6522 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6523 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6524 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6525 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6526 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6527 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6528 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6529 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6530 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6531 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6532 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6533 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6534 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6535 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6536 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6537 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6538 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6539 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6540 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6541 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6542 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6543 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6544 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6545 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6546 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6547 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6548 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6549 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6550 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6551 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6552 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6553 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6554 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6555 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6556 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6557 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6558 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6559 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6560 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6561 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6562 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6563 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6564 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6565 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6566 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6567 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6568 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6569 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6570 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6571 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6572 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6573 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6574 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6575 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6576 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6577 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6578 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6579 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6580 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6581 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6582 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6583 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6584 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6585 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6586 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6587 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6588 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6589 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6590 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6591 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6592 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6593 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6594 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6595 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6596 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6597 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6598 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6599 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6600 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6601 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6602 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6603 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6604 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6605 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6606 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6607 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6608 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6609 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6610 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6611 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6612 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6613 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6614 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6615 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6616 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6617 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6618 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6619 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6620 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6621 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6622 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6623 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6624 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6625 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6626 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6627 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6628 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6629 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6630 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6631 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6632 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6633 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6634 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6635 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6636 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6637 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6638 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6639 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6640 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6641 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6642 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6643 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6644 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6645 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6646 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6647 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6648 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6649 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6650 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6651 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6652 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6653 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6654 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6655 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6656 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6657 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6658 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6659 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6660 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6661 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6662 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6663 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6664 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6665 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6666 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6667 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6668 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6669 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6670 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6671 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6672 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6673 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6674 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6675 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6676 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6677 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6678 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6679 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6680 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6681 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6682 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6683 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6684 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6685 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6686 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6687 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6688 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6689 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6690 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6691 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6692 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6693 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6694 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6695 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6696 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6697 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6698 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6699 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6700 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6701 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6702 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6703 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6704 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6705 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6706 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6707 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6708 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6709 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6710 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6711 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6712 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6713 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6714 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6715 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6716 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6717 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6718 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6719 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6720 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6721 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6722 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6723 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6724 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6725 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6726 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6727 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6728 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6729 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6730 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6731 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6732 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6733 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6734 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6735 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6736 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6737 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6738 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6739 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6740 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6741 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6742 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6743 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6744 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6745 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6746 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6747 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6748 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6749 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6750 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6751 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6752 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6753 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6754 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6755 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6756 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6757 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6758 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6759 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6760 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6761 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6762 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6763 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6764 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6765 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6766 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6767 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6768 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6769 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6770 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6771 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6772 + }, + { + "input" : 3239, + "interpolation" : "LINEAR", + "output" : 6773 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "hips-action-master", + "samplers" : [ + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6775 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6776 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6777 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6778 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6779 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6780 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6781 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6782 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6783 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6784 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6785 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6786 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6787 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6788 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6789 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6790 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6791 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6792 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6793 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6794 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6795 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6796 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6797 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6798 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6799 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6800 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6801 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6802 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6803 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6804 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6805 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6806 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6807 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6808 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6809 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6810 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6811 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6812 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6813 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6814 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6815 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6816 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6817 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6818 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6819 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6820 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6821 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6822 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6823 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6824 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6825 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6826 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6827 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6828 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6829 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6830 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6831 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6832 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6833 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6834 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6835 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6836 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6837 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6838 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6839 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6840 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6841 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6842 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6843 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6844 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6845 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6846 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6847 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6848 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6849 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6850 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6851 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6852 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6853 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6854 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6855 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6856 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6857 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6858 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6859 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6860 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6861 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6862 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6863 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6864 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6865 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6866 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6867 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6868 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6869 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6870 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6871 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6872 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6873 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6874 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6875 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6876 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6877 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6878 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6879 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6880 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6881 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6882 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6883 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6884 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6885 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6886 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6887 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6888 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6889 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6890 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6891 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6892 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6893 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6894 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6895 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6896 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6897 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6898 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6899 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6900 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6901 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6902 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6903 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6904 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6905 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6906 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6907 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6908 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6909 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6910 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6911 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6912 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6913 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6914 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6915 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6916 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6917 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6918 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6919 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6920 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6921 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6922 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6923 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6924 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6925 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6926 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6927 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6928 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6929 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6930 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6931 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6932 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6933 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6934 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6935 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6936 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6937 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6938 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6939 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6940 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6941 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6942 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6943 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6944 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6945 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6946 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6947 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6948 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6949 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6950 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6951 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6952 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6953 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6954 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6955 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6956 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6957 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6958 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6959 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6960 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6961 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6962 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6963 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6964 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6965 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6966 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6967 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6968 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6969 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6970 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6971 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6972 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6973 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6974 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6975 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6976 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6977 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6978 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6979 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6980 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6981 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6982 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6983 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6984 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6985 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6986 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6987 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6988 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6989 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6990 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6991 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6992 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6993 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6994 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6995 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6996 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6997 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6998 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 6999 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7000 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7001 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7002 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7003 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7004 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7005 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7006 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7007 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7008 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7009 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7010 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7011 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7012 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7013 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7014 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7015 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7016 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7017 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7018 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7019 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7020 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7021 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7022 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7023 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7024 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7025 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7026 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7027 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7028 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7029 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7030 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7031 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7032 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7033 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7034 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7035 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7036 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7037 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7038 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7039 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7040 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7041 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7042 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7043 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7044 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7045 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7046 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7047 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7048 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7049 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7050 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7051 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7052 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7053 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7054 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7055 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7056 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7057 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7058 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7059 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7060 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7061 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7062 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7063 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7064 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7065 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7066 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7067 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 7068 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "leave-car-left", + "samplers" : [ + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7070 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7071 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7072 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7073 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7074 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7075 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7076 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7077 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7078 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7079 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7080 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7081 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7082 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7083 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7084 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7085 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7086 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7087 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7088 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7089 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7090 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7091 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7092 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7093 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7094 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7095 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7096 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7097 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7098 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7099 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7100 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7101 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7102 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7103 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7104 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7105 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7106 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7107 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7108 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7109 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7110 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7111 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7112 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7113 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7114 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7115 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7116 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7117 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7118 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7119 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7120 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7121 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7122 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7123 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7124 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7125 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7126 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7127 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7128 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7129 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7130 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7131 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7132 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7133 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7134 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7135 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7136 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7137 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7138 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7139 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7140 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7141 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7142 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7143 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7144 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7145 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7146 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7147 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7148 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7149 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7150 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7151 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7152 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7153 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7154 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7155 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7156 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7157 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7158 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7159 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7160 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7161 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7162 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7163 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7164 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7165 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7166 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7167 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7168 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7169 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7170 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7171 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7172 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7173 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7174 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7175 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7176 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7177 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7178 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7179 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7180 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7181 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7182 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7183 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7184 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7185 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7186 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7187 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7188 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7189 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7190 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7191 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7192 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7193 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7194 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7195 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7196 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7197 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7198 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7199 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7200 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7201 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7202 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7203 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7204 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7205 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7206 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7207 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7208 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7209 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7210 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7211 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7212 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7213 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7214 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7215 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7216 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7217 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7218 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7219 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7220 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7221 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7222 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7223 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7224 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7225 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7226 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7227 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7228 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7229 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7230 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7231 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7232 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7233 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7234 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7235 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7236 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7237 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7238 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7239 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7240 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7241 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7242 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7243 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7244 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7245 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7246 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7247 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7248 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7249 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7250 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7251 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7252 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7253 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7254 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7255 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7256 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7257 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7258 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7259 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7260 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7261 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7262 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7263 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7264 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7265 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7266 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7267 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7268 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7269 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7270 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7271 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7272 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7273 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7274 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7275 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7276 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7277 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7278 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7279 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7280 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7281 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7282 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7283 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7284 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7285 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7286 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7287 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7288 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7289 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7290 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7291 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7292 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7293 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7294 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7295 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7296 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7297 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7298 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7299 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7300 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7301 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7302 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7303 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7304 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7305 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7306 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7307 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7308 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7309 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7310 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7311 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7312 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7313 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7314 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7315 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7316 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7317 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7318 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7319 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7320 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7321 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7322 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7323 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7324 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7325 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7326 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7327 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7328 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7329 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7330 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7331 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7332 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7333 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7334 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7335 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7336 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7337 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7338 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7339 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7340 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7341 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7342 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7343 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7344 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7345 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7346 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7347 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7348 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7349 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7350 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7351 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7352 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7353 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7354 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7355 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7356 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7357 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7358 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7359 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7360 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7361 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7362 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7363 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "leave-car-right", + "samplers" : [ + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7364 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7365 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7366 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7367 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7368 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7369 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7370 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7371 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7372 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7373 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7374 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7375 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7376 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7377 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7378 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7379 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7380 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7381 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7382 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7383 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7384 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7385 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7386 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7387 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7388 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7389 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7390 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7391 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7392 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7393 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7394 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7395 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7396 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7397 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7398 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7399 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7400 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7401 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7402 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7403 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7404 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7405 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7406 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7407 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7408 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7409 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7410 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7411 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7412 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7413 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7414 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7415 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7416 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7417 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7418 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7419 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7420 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7421 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7422 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7423 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7424 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7425 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7426 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7427 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7428 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7429 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7430 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7431 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7432 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7433 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7434 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7435 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7436 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7437 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7438 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7439 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7440 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7441 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7442 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7443 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7444 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7445 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7446 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7447 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7448 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7449 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7450 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7451 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7452 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7453 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7454 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7455 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7456 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7457 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7458 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7459 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7460 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7461 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7462 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7463 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7464 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7465 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7466 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7467 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7468 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7469 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7470 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7471 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7472 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7473 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7474 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7475 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7476 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7477 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7478 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7479 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7480 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7481 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7482 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7483 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7484 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7485 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7486 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7487 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7488 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7489 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7490 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7491 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7492 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7493 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7494 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7495 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7496 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7497 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7498 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7499 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7500 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7501 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7502 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7503 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7504 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7505 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7506 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7507 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7508 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7509 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7510 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7511 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7512 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7513 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7514 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7515 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7516 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7517 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7518 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7519 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7520 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7521 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7522 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7523 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7524 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7525 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7526 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7527 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7528 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7529 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7530 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7531 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7532 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7533 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7534 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7535 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7536 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7537 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7538 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7539 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7540 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7541 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7542 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7543 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7544 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7545 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7546 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7547 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7548 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7549 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7550 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7551 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7552 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7553 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7554 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7555 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7556 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7557 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7558 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7559 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7560 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7561 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7562 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7563 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7564 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7565 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7566 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7567 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7568 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7569 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7570 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7571 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7572 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7573 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7574 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7575 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7576 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7577 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7578 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7579 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7580 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7581 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7582 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7583 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7584 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7585 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7586 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7587 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7588 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7589 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7590 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7591 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7592 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7593 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7594 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7595 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7596 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7597 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7598 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7599 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7600 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7601 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7602 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7603 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7604 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7605 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7606 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7607 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7608 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7609 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7610 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7611 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7612 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7613 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7614 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7615 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7616 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7617 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7618 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7619 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7620 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7621 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7622 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7623 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7624 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7625 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7626 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7627 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7628 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7629 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7630 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7631 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7632 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7633 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7634 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7635 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7636 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7637 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7638 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7639 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7640 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7641 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7642 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7643 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7644 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7645 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7646 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7647 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7648 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7649 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7650 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7651 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7652 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7653 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7654 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7655 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7656 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 7657 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "male-mx-idle", + "samplers" : [ + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7659 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7660 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7661 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7662 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7663 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7664 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7665 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7666 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7667 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7668 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7669 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7670 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7671 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7672 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7673 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7674 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7675 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7676 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7677 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7678 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7679 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7680 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7681 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7682 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7683 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7684 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7685 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7686 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7687 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7688 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7689 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7690 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7691 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7692 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7693 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7694 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7695 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7696 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7697 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7698 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7699 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7700 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7701 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7702 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7703 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7704 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7705 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7706 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7707 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7708 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7709 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7710 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7711 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7712 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7713 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7714 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7715 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7716 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7717 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7718 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7719 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7720 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7721 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7722 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7723 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7724 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7725 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7726 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7727 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7728 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7729 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7730 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7731 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7732 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7733 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7734 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7735 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7736 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7737 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7738 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7739 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7740 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7741 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7742 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7743 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7744 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7745 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7746 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7747 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7748 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7749 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7750 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7751 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7752 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7753 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7754 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7755 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7756 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7757 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7758 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7759 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7760 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7761 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7762 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7763 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7764 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7765 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7766 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7767 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7768 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7769 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7770 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7771 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7772 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7773 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7774 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7775 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7776 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7777 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7778 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7779 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7780 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7781 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7782 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7783 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7784 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7785 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7786 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7787 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7788 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7789 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7790 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7791 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7792 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7793 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7794 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7795 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7796 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7797 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7798 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7799 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7800 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7801 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7802 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7803 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7804 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7805 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7806 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7807 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7808 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7809 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7810 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7811 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7812 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7813 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7814 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7815 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7816 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7817 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7818 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7819 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7820 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7821 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7822 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7823 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7824 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7825 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7826 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7827 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7828 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7829 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7830 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7831 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7832 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7833 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7834 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7835 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7836 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7837 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7838 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7839 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7840 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7841 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7842 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7843 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7844 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7845 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7846 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7847 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7848 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7849 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7850 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7851 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7852 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7853 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7854 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7855 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7856 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7857 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7858 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7859 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7860 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7861 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7862 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7863 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7864 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7865 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7866 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7867 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7868 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7869 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7870 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7871 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7872 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7873 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7874 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7875 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7876 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7877 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7878 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7879 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7880 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7881 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7882 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7883 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7884 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7885 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7886 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7887 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7888 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7889 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7890 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7891 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7892 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7893 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7894 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7895 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7896 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7897 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7898 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7899 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7900 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7901 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7902 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7903 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7904 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7905 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7906 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7907 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7908 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7909 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7910 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7911 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7912 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7913 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7914 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7915 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7916 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7917 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7918 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7919 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7920 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7921 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7922 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7923 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7924 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7925 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7926 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7927 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7928 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7929 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7930 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7931 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7932 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7933 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7934 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7935 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7936 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7937 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7938 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7939 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7940 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7941 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7942 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7943 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7944 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7945 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7946 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7947 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7948 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7949 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7950 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7951 + }, + { + "input" : 7658, + "interpolation" : "LINEAR", + "output" : 7952 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "male-mx-run", + "samplers" : [ + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7954 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7955 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7956 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7957 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7958 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7959 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7960 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7961 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7962 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7963 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7964 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7965 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7966 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7967 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7968 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7969 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7970 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7971 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7972 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7973 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7974 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7975 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7976 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7977 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7978 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7979 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7980 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7981 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7982 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7983 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7984 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7985 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7986 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7987 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7988 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7989 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7990 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7991 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7992 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7993 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7994 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7995 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7996 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7997 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7998 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 7999 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8000 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8001 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8002 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8003 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8004 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8005 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8006 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8007 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8008 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8009 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8010 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8011 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8012 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8013 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8014 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8015 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8016 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8017 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8018 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8019 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8020 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8021 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8022 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8023 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8024 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8025 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8026 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8027 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8028 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8029 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8030 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8031 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8032 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8033 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8034 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8035 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8036 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8037 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8038 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8039 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8040 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8041 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8042 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8043 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8044 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8045 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8046 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8047 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8048 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8049 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8050 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8051 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8052 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8053 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8054 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8055 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8056 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8057 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8058 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8059 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8060 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8061 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8062 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8063 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8064 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8065 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8066 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8067 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8068 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8069 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8070 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8071 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8072 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8073 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8074 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8075 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8076 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8077 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8078 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8079 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8080 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8081 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8082 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8083 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8084 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8085 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8086 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8087 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8088 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8089 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8090 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8091 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8092 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8093 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8094 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8095 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8096 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8097 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8098 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8099 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8100 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8101 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8102 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8103 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8104 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8105 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8106 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8107 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8108 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8109 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8110 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8111 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8112 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8113 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8114 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8115 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8116 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8117 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8118 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8119 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8120 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8121 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8122 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8123 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8124 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8125 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8126 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8127 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8128 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8129 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8130 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8131 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8132 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8133 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8134 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8135 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8136 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8137 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8138 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8139 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8140 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8141 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8142 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8143 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8144 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8145 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8146 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8147 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8148 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8149 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8150 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8151 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8152 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8153 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8154 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8155 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8156 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8157 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8158 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8159 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8160 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8161 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8162 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8163 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8164 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8165 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8166 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8167 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8168 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8169 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8170 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8171 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8172 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8173 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8174 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8175 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8176 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8177 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8178 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8179 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8180 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8181 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8182 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8183 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8184 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8185 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8186 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8187 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8188 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8189 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8190 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8191 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8192 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8193 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8194 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8195 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8196 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8197 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8198 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8199 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8200 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8201 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8202 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8203 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8204 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8205 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8206 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8207 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8208 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8209 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8210 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8211 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8212 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8213 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8214 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8215 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8216 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8217 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8218 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8219 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8220 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8221 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8222 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8223 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8224 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8225 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8226 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8227 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8228 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8229 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8230 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8231 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8232 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8233 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8234 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8235 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8236 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8237 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8238 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8239 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8240 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8241 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8242 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8243 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8244 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8245 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8246 + }, + { + "input" : 7953, + "interpolation" : "LINEAR", + "output" : 8247 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "male-mx-walk", + "samplers" : [ + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8249 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8250 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8251 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8252 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8253 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8254 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8255 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8256 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8257 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8258 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8259 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8260 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8261 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8262 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8263 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8264 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8265 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8266 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8267 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8268 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8269 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8270 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8271 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8272 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8273 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8274 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8275 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8276 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8277 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8278 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8279 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8280 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8281 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8282 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8283 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8284 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8285 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8286 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8287 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8288 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8289 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8290 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8291 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8292 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8293 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8294 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8295 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8296 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8297 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8298 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8299 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8300 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8301 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8302 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8303 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8304 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8305 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8306 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8307 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8308 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8309 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8310 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8311 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8312 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8313 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8314 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8315 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8316 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8317 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8318 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8319 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8320 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8321 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8322 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8323 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8324 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8325 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8326 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8327 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8328 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8329 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8330 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8331 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8332 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8333 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8334 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8335 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8336 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8337 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8338 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8339 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8340 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8341 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8342 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8343 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8344 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8345 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8346 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8347 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8348 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8349 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8350 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8351 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8352 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8353 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8354 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8355 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8356 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8357 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8358 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8359 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8360 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8361 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8362 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8363 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8364 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8365 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8366 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8367 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8368 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8369 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8370 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8371 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8372 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8373 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8374 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8375 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8376 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8377 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8378 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8379 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8380 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8381 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8382 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8383 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8384 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8385 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8386 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8387 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8388 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8389 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8390 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8391 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8392 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8393 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8394 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8395 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8396 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8397 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8398 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8399 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8400 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8401 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8402 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8403 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8404 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8405 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8406 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8407 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8408 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8409 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8410 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8411 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8412 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8413 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8414 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8415 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8416 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8417 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8418 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8419 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8420 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8421 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8422 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8423 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8424 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8425 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8426 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8427 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8428 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8429 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8430 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8431 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8432 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8433 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8434 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8435 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8436 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8437 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8438 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8439 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8440 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8441 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8442 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8443 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8444 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8445 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8446 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8447 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8448 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8449 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8450 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8451 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8452 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8453 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8454 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8455 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8456 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8457 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8458 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8459 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8460 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8461 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8462 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8463 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8464 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8465 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8466 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8467 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8468 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8469 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8470 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8471 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8472 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8473 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8474 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8475 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8476 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8477 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8478 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8479 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8480 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8481 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8482 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8483 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8484 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8485 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8486 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8487 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8488 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8489 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8490 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8491 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8492 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8493 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8494 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8495 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8496 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8497 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8498 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8499 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8500 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8501 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8502 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8503 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8504 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8505 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8506 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8507 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8508 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8509 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8510 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8511 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8512 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8513 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8514 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8515 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8516 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8517 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8518 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8519 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8520 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8521 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8522 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8523 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8524 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8525 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8526 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8527 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8528 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8529 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8530 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8531 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8532 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8533 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8534 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8535 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8536 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8537 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8538 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8539 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8540 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8541 + }, + { + "input" : 8248, + "interpolation" : "LINEAR", + "output" : 8542 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "sleeping1-loop", + "samplers" : [ + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8544 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8545 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8546 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8547 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8548 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8549 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8550 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8551 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8552 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8553 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8554 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8555 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8556 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8557 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8558 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8559 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8560 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8561 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8562 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8563 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8564 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8565 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8566 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8567 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8568 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8569 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8570 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8571 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8572 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8573 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8574 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8575 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8576 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8577 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8578 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8579 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8580 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8581 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8582 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8583 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8584 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8585 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8586 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8587 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8588 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8589 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8590 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8591 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8592 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8593 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8594 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8595 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8596 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8597 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8598 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8599 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8600 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8601 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8602 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8603 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8604 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8605 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8606 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8607 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8608 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8609 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8610 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8611 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8612 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8613 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8614 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8615 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8616 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8617 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8618 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8619 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8620 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8621 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8622 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8623 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8624 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8625 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8626 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8627 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8628 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8629 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8630 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8631 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8632 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8633 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8634 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8635 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8636 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8637 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8638 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8639 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8640 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8641 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8642 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8643 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8644 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8645 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8646 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8647 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8648 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8649 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8650 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8651 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8652 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8653 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8654 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8655 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8656 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8657 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8658 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8659 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8660 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8661 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8662 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8663 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8664 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8665 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8666 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8667 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8668 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8669 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8670 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8671 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8672 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8673 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8674 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8675 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8676 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8677 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8678 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8679 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8680 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8681 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8682 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8683 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8684 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8685 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8686 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8687 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8688 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8689 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8690 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8691 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8692 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8693 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8694 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8695 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8696 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8697 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8698 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8699 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8700 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8701 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8702 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8703 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8704 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8705 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8706 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8707 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8708 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8709 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8710 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8711 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8712 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8713 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8714 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8715 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8716 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8717 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8718 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8719 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8720 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8721 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8722 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8723 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8724 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8725 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8726 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8727 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8728 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8729 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8730 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8731 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8732 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8733 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8734 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8735 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8736 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8737 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8738 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8739 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8740 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8741 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8742 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8743 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8744 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8745 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8746 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8747 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8748 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8749 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8750 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8751 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8752 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8753 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8754 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8755 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8756 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8757 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8758 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8759 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8760 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8761 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8762 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8763 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8764 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8765 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8766 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8767 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8768 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8769 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8770 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8771 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8772 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8773 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8774 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8775 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8776 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8777 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8778 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8779 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8780 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8781 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8782 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8783 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8784 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8785 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8786 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8787 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8788 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8789 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8790 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8791 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8792 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8793 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8794 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8795 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8796 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8797 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8798 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8799 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8800 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8801 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8802 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8803 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8804 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8805 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8806 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8807 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8808 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8809 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8810 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8811 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8812 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8813 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8814 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8815 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8816 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8817 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8818 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8819 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8820 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8821 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8822 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8823 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8824 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8825 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8826 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8827 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8828 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8829 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8830 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8831 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8832 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8833 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8834 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8835 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8836 + }, + { + "input" : 8543, + "interpolation" : "LINEAR", + "output" : 8837 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "stand1-loop", + "samplers" : [ + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8839 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8840 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8841 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8842 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8843 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8844 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8845 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8846 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8847 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8848 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8849 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8850 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8851 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8852 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8853 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8854 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8855 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8856 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8857 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8858 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8859 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8860 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8861 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8862 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8863 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8864 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8865 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8866 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8867 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8868 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8869 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8870 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8871 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8872 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8873 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8874 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8875 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8876 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8877 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8878 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8879 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8880 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8881 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8882 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8883 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8884 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8885 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8886 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8887 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8888 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8889 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8890 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8891 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8892 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8893 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8894 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8895 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8896 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8897 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8898 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8899 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8900 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8901 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8902 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8903 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8904 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8905 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8906 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8907 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8908 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8909 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8910 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8911 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8912 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8913 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8914 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8915 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8916 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8917 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8918 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8919 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8920 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8921 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8922 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8923 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8924 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8925 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8926 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8927 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8928 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8929 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8930 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8931 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8932 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8933 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8934 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8935 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8936 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8937 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8938 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8939 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8940 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8941 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8942 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8943 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8944 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8945 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8946 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8947 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8948 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8949 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8950 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8951 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8952 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8953 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8954 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8955 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8956 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8957 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8958 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8959 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8960 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8961 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8962 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8963 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8964 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8965 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8966 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8967 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8968 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8969 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8970 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8971 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8972 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8973 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8974 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8975 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8976 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8977 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8978 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8979 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8980 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8981 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8982 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8983 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8984 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8985 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8986 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8987 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8988 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8989 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8990 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8991 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8992 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8993 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8994 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8995 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8996 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8997 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8998 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 8999 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9000 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9001 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9002 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9003 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9004 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9005 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9006 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9007 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9008 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9009 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9010 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9011 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9012 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9013 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9014 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9015 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9016 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9017 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9018 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9019 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9020 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9021 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9022 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9023 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9024 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9025 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9026 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9027 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9028 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9029 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9030 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9031 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9032 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9033 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9034 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9035 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9036 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9037 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9038 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9039 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9040 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9041 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9042 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9043 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9044 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9045 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9046 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9047 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9048 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9049 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9050 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9051 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9052 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9053 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9054 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9055 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9056 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9057 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9058 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9059 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9060 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9061 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9062 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9063 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9064 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9065 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9066 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9067 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9068 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9069 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9070 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9071 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9072 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9073 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9074 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9075 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9076 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9077 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9078 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9079 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9080 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9081 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9082 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9083 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9084 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9085 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9086 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9087 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9088 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9089 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9090 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9091 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9092 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9093 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9094 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9095 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9096 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9097 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9098 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9099 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9100 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9101 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9102 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9103 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9104 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9105 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9106 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9107 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9108 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9109 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9110 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9111 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9112 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9113 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9114 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9115 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9116 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9117 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9118 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9119 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9120 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9121 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9122 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9123 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9124 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9125 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9126 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9127 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9128 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9129 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9130 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9131 + }, + { + "input" : 8838, + "interpolation" : "LINEAR", + "output" : 9132 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "start-grab", + "samplers" : [ + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9133 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9134 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9135 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9136 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9137 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9138 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9139 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9140 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9141 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9142 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9143 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9144 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9145 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9146 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9147 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9148 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9149 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9150 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9151 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9152 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9153 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9154 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9155 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9156 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9157 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9158 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9159 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9160 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9161 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9162 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9163 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9164 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9165 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9166 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9167 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9168 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9169 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9170 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9171 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9172 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9173 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9174 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9175 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9176 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9177 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9178 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9179 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9180 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9181 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9182 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9183 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9184 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9185 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9186 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9187 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9188 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9189 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9190 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9191 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9192 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9193 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9194 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9195 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9196 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9197 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9198 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9199 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9200 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9201 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9202 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9203 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9204 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9205 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9206 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9207 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9208 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9209 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9210 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9211 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9212 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9213 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9214 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9215 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9216 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9217 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9218 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9219 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9220 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9221 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9222 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9223 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9224 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9225 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9226 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9227 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9228 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9229 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9230 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9231 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9232 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9233 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9234 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9235 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9236 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9237 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9238 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9239 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9240 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9241 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9242 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9243 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9244 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9245 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9246 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9247 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9248 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9249 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9250 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9251 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9252 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9253 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9254 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9255 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9256 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9257 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9258 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9259 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9260 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9261 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9262 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9263 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9264 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9265 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9266 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9267 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9268 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9269 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9270 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9271 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9272 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9273 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9274 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9275 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9276 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9277 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9278 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9279 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9280 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9281 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9282 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9283 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9284 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9285 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9286 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9287 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9288 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9289 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9290 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9291 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9292 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9293 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9294 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9295 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9296 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9297 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9298 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9299 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9300 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9301 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9302 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9303 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9304 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9305 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9306 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9307 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9308 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9309 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9310 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9311 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9312 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9313 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9314 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9315 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9316 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9317 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9318 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9319 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9320 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9321 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9322 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9323 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9324 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9325 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9326 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9327 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9328 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9329 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9330 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9331 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9332 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9333 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9334 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9335 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9336 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9337 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9338 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9339 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9340 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9341 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9342 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9343 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9344 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9345 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9346 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9347 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9348 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9349 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9350 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9351 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9352 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9353 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9354 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9355 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9356 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9357 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9358 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9359 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9360 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9361 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9362 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9363 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9364 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9365 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9366 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9367 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9368 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9369 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9370 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9371 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9372 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9373 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9374 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9375 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9376 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9377 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9378 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9379 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9380 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9381 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9382 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9383 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9384 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9385 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9386 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9387 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9388 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9389 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9390 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9391 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9392 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9393 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9394 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9395 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9396 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9397 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9398 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9399 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9400 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9401 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9402 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9403 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9404 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9405 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9406 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9407 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9408 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9409 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9410 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9411 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9412 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9413 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9414 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9415 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9416 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9417 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9418 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9419 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9420 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9421 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9422 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9423 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9424 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9425 + }, + { + "input" : 6774, + "interpolation" : "LINEAR", + "output" : 9426 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "start-walking", + "samplers" : [ + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9428 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9429 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9430 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9431 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9432 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9433 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9434 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9435 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9436 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9437 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9438 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9439 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9440 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9441 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9442 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9443 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9444 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9445 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9446 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9447 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9448 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9449 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9450 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9451 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9452 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9453 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9454 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9455 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9456 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9457 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9458 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9459 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9460 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9461 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9462 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9463 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9464 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9465 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9466 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9467 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9468 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9469 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9470 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9471 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9472 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9473 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9474 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9475 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9476 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9477 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9478 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9479 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9480 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9481 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9482 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9483 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9484 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9485 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9486 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9487 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9488 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9489 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9490 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9491 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9492 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9493 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9494 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9495 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9496 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9497 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9498 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9499 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9500 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9501 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9502 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9503 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9504 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9505 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9506 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9507 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9508 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9509 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9510 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9511 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9512 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9513 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9514 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9515 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9516 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9517 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9518 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9519 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9520 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9521 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9522 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9523 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9524 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9525 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9526 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9527 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9528 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9529 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9530 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9531 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9532 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9533 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9534 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9535 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9536 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9537 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9538 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9539 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9540 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9541 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9542 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9543 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9544 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9545 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9546 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9547 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9548 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9549 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9550 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9551 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9552 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9553 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9554 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9555 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9556 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9557 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9558 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9559 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9560 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9561 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9562 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9563 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9564 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9565 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9566 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9567 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9568 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9569 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9570 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9571 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9572 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9573 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9574 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9575 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9576 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9577 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9578 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9579 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9580 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9581 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9582 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9583 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9584 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9585 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9586 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9587 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9588 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9589 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9590 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9591 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9592 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9593 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9594 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9595 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9596 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9597 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9598 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9599 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9600 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9601 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9602 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9603 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9604 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9605 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9606 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9607 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9608 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9609 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9610 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9611 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9612 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9613 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9614 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9615 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9616 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9617 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9618 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9619 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9620 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9621 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9622 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9623 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9624 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9625 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9626 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9627 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9628 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9629 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9630 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9631 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9632 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9633 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9634 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9635 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9636 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9637 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9638 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9639 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9640 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9641 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9642 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9643 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9644 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9645 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9646 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9647 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9648 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9649 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9650 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9651 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9652 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9653 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9654 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9655 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9656 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9657 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9658 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9659 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9660 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9661 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9662 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9663 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9664 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9665 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9666 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9667 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9668 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9669 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9670 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9671 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9672 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9673 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9674 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9675 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9676 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9677 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9678 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9679 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9680 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9681 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9682 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9683 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9684 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9685 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9686 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9687 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9688 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9689 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9690 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9691 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9692 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9693 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9694 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9695 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9696 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9697 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9698 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9699 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9700 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9701 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9702 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9703 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9704 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9705 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9706 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9707 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9708 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9709 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9710 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9711 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9712 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9713 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9714 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9715 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9716 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9717 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9718 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9719 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9720 + }, + { + "input" : 9427, + "interpolation" : "LINEAR", + "output" : 9721 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "stop-walking", + "samplers" : [ + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9723 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9724 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9725 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9726 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9727 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9728 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9729 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9730 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9731 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9732 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9733 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9734 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9735 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9736 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9737 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9738 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9739 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9740 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9741 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9742 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9743 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9744 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9745 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9746 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9747 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9748 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9749 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9750 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9751 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9752 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9753 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9754 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9755 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9756 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9757 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9758 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9759 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9760 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9761 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9762 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9763 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9764 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9765 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9766 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9767 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9768 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9769 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9770 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9771 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9772 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9773 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9774 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9775 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9776 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9777 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9778 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9779 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9780 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9781 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9782 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9783 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9784 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9785 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9786 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9787 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9788 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9789 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9790 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9791 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9792 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9793 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9794 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9795 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9796 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9797 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9798 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9799 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9800 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9801 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9802 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9803 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9804 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9805 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9806 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9807 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9808 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9809 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9810 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9811 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9812 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9813 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9814 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9815 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9816 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9817 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9818 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9819 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9820 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9821 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9822 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9823 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9824 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9825 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9826 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9827 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9828 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9829 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9830 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9831 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9832 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9833 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9834 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9835 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9836 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9837 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9838 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9839 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9840 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9841 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9842 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9843 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9844 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9845 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9846 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9847 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9848 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9849 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9850 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9851 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9852 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9853 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9854 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9855 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9856 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9857 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9858 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9859 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9860 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9861 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9862 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9863 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9864 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9865 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9866 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9867 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9868 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9869 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9870 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9871 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9872 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9873 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9874 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9875 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9876 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9877 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9878 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9879 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9880 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9881 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9882 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9883 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9884 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9885 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9886 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9887 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9888 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9889 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9890 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9891 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9892 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9893 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9894 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9895 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9896 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9897 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9898 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9899 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9900 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9901 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9902 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9903 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9904 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9905 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9906 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9907 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9908 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9909 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9910 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9911 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9912 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9913 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9914 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9915 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9916 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9917 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9918 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9919 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9920 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9921 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9922 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9923 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9924 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9925 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9926 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9927 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9928 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9929 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9930 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9931 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9932 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9933 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9934 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9935 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9936 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9937 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9938 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9939 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9940 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9941 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9942 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9943 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9944 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9945 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9946 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9947 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9948 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9949 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9950 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9951 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9952 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9953 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9954 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9955 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9956 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9957 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9958 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9959 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9960 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9961 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9962 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9963 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9964 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9965 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9966 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9967 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9968 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9969 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9970 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9971 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9972 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9973 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9974 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9975 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9976 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9977 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9978 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9979 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9980 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9981 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9982 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9983 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9984 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9985 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9986 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9987 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9988 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9989 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9990 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9991 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9992 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9993 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9994 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9995 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9996 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9997 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9998 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 9999 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10000 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10001 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10002 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10003 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10004 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10005 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10006 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10007 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10008 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10009 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10010 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10011 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10012 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10013 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10014 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10015 + }, + { + "input" : 9722, + "interpolation" : "LINEAR", + "output" : 10016 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "strafe-left-loop", + "samplers" : [ + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10017 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10018 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10019 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10020 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10021 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10022 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10023 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10024 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10025 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10026 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10027 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10028 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10029 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10030 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10031 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10032 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10033 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10034 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10035 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10036 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10037 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10038 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10039 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10040 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10041 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10042 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10043 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10044 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10045 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10046 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10047 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10048 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10049 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10050 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10051 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10052 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10053 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10054 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10055 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10056 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10057 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10058 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10059 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10060 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10061 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10062 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10063 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10064 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10065 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10066 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10067 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10068 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10069 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10070 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10071 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10072 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10073 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10074 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10075 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10076 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10077 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10078 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10079 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10080 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10081 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10082 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10083 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10084 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10085 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10086 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10087 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10088 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10089 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10090 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10091 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10092 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10093 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10094 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10095 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10096 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10097 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10098 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10099 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10100 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10101 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10102 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10103 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10104 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10105 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10106 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10107 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10108 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10109 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10110 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10111 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10112 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10113 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10114 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10115 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10116 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10117 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10118 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10119 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10120 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10121 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10122 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10123 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10124 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10125 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10126 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10127 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10128 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10129 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10130 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10131 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10132 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10133 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10134 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10135 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10136 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10137 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10138 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10139 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10140 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10141 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10142 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10143 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10144 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10145 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10146 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10147 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10148 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10149 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10150 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10151 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10152 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10153 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10154 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10155 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10156 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10157 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10158 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10159 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10160 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10161 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10162 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10163 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10164 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10165 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10166 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10167 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10168 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10169 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10170 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10171 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10172 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10173 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10174 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10175 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10176 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10177 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10178 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10179 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10180 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10181 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10182 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10183 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10184 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10185 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10186 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10187 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10188 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10189 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10190 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10191 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10192 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10193 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10194 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10195 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10196 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10197 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10198 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10199 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10200 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10201 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10202 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10203 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10204 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10205 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10206 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10207 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10208 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10209 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10210 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10211 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10212 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10213 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10214 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10215 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10216 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10217 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10218 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10219 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10220 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10221 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10222 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10223 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10224 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10225 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10226 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10227 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10228 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10229 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10230 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10231 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10232 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10233 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10234 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10235 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10236 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10237 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10238 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10239 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10240 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10241 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10242 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10243 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10244 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10245 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10246 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10247 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10248 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10249 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10250 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10251 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10252 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10253 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10254 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10255 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10256 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10257 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10258 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10259 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10260 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10261 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10262 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10263 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10264 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10265 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10266 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10267 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10268 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10269 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10270 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10271 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10272 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10273 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10274 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10275 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10276 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10277 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10278 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10279 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10280 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10281 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10282 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10283 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10284 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10285 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10286 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10287 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10288 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10289 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10290 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10291 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10292 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10293 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10294 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10295 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10296 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10297 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10298 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10299 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10300 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10301 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10302 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10303 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10304 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10305 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10306 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10307 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10308 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10309 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10310 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "strafe-right-loop", + "samplers" : [ + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10312 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10313 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10314 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10315 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10316 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10317 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10318 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10319 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10320 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10321 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10322 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10323 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10324 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10325 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10326 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10327 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10328 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10329 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10330 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10331 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10332 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10333 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10334 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10335 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10336 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10337 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10338 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10339 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10340 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10341 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10342 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10343 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10344 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10345 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10346 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10347 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10348 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10349 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10350 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10351 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10352 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10353 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10354 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10355 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10356 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10357 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10358 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10359 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10360 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10361 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10362 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10363 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10364 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10365 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10366 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10367 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10368 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10369 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10370 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10371 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10372 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10373 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10374 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10375 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10376 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10377 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10378 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10379 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10380 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10381 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10382 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10383 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10384 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10385 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10386 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10387 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10388 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10389 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10390 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10391 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10392 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10393 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10394 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10395 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10396 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10397 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10398 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10399 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10400 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10401 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10402 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10403 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10404 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10405 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10406 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10407 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10408 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10409 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10410 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10411 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10412 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10413 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10414 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10415 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10416 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10417 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10418 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10419 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10420 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10421 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10422 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10423 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10424 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10425 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10426 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10427 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10428 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10429 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10430 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10431 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10432 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10433 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10434 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10435 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10436 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10437 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10438 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10439 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10440 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10441 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10442 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10443 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10444 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10445 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10446 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10447 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10448 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10449 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10450 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10451 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10452 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10453 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10454 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10455 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10456 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10457 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10458 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10459 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10460 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10461 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10462 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10463 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10464 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10465 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10466 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10467 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10468 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10469 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10470 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10471 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10472 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10473 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10474 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10475 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10476 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10477 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10478 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10479 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10480 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10481 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10482 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10483 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10484 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10485 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10486 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10487 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10488 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10489 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10490 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10491 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10492 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10493 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10494 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10495 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10496 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10497 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10498 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10499 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10500 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10501 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10502 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10503 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10504 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10505 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10506 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10507 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10508 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10509 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10510 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10511 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10512 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10513 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10514 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10515 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10516 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10517 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10518 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10519 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10520 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10521 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10522 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10523 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10524 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10525 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10526 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10527 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10528 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10529 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10530 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10531 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10532 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10533 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10534 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10535 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10536 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10537 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10538 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10539 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10540 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10541 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10542 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10543 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10544 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10545 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10546 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10547 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10548 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10549 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10550 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10551 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10552 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10553 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10554 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10555 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10556 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10557 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10558 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10559 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10560 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10561 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10562 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10563 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10564 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10565 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10566 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10567 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10568 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10569 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10570 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10571 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10572 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10573 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10574 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10575 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10576 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10577 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10578 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10579 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10580 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10581 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10582 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10583 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10584 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10585 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10586 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10587 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10588 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10589 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10590 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10591 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10592 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10593 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10594 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10595 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10596 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10597 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10598 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10599 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10600 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10601 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10602 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10603 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10604 + }, + { + "input" : 10311, + "interpolation" : "LINEAR", + "output" : 10605 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "turn-left", + "samplers" : [ + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10606 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10607 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10608 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10609 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10610 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10611 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10612 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10613 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10614 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10615 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10616 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10617 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10618 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10619 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10620 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10621 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10622 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10623 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10624 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10625 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10626 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10627 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10628 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10629 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10630 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10631 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10632 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10633 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10634 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10635 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10636 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10637 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10638 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10639 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10640 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10641 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10642 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10643 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10644 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10645 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10646 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10647 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10648 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10649 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10650 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10651 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10652 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10653 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10654 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10655 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10656 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10657 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10658 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10659 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10660 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10661 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10662 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10663 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10664 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10665 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10666 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10667 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10668 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10669 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10670 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10671 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10672 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10673 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10674 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10675 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10676 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10677 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10678 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10679 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10680 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10681 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10682 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10683 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10684 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10685 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10686 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10687 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10688 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10689 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10690 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10691 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10692 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10693 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10694 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10695 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10696 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10697 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10698 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10699 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10700 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10701 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10702 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10703 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10704 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10705 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10706 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10707 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10708 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10709 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10710 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10711 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10712 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10713 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10714 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10715 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10716 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10717 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10718 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10719 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10720 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10721 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10722 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10723 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10724 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10725 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10726 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10727 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10728 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10729 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10730 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10731 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10732 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10733 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10734 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10735 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10736 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10737 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10738 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10739 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10740 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10741 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10742 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10743 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10744 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10745 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10746 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10747 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10748 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10749 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10750 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10751 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10752 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10753 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10754 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10755 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10756 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10757 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10758 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10759 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10760 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10761 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10762 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10763 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10764 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10765 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10766 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10767 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10768 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10769 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10770 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10771 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10772 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10773 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10774 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10775 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10776 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10777 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10778 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10779 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10780 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10781 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10782 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10783 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10784 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10785 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10786 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10787 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10788 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10789 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10790 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10791 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10792 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10793 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10794 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10795 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10796 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10797 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10798 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10799 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10800 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10801 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10802 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10803 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10804 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10805 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10806 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10807 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10808 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10809 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10810 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10811 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10812 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10813 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10814 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10815 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10816 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10817 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10818 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10819 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10820 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10821 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10822 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10823 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10824 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10825 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10826 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10827 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10828 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10829 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10830 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10831 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10832 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10833 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10834 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10835 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10836 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10837 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10838 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10839 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10840 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10841 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10842 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10843 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10844 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10845 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10846 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10847 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10848 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10849 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10850 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10851 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10852 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10853 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10854 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10855 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10856 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10857 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10858 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10859 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10860 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10861 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10862 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10863 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10864 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10865 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10866 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10867 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10868 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10869 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10870 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10871 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10872 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10873 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10874 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10875 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10876 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10877 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10878 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10879 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10880 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10881 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10882 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10883 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10884 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10885 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10886 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10887 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10888 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10889 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10890 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10891 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10892 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10893 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10894 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10895 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10896 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10897 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10898 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10899 + } + ] + }, + { + "channels" : [ + { + "sampler" : 0, + "target" : { + "node" : 98, + "path" : "translation" + } + }, + { + "sampler" : 1, + "target" : { + "node" : 98, + "path" : "rotation" + } + }, + { + "sampler" : 2, + "target" : { + "node" : 98, + "path" : "scale" + } + }, + { + "sampler" : 3, + "target" : { + "node" : 85, + "path" : "translation" + } + }, + { + "sampler" : 4, + "target" : { + "node" : 85, + "path" : "rotation" + } + }, + { + "sampler" : 5, + "target" : { + "node" : 85, + "path" : "scale" + } + }, + { + "sampler" : 6, + "target" : { + "node" : 10, + "path" : "translation" + } + }, + { + "sampler" : 7, + "target" : { + "node" : 10, + "path" : "rotation" + } + }, + { + "sampler" : 8, + "target" : { + "node" : 10, + "path" : "scale" + } + }, + { + "sampler" : 9, + "target" : { + "node" : 3, + "path" : "translation" + } + }, + { + "sampler" : 10, + "target" : { + "node" : 3, + "path" : "rotation" + } + }, + { + "sampler" : 11, + "target" : { + "node" : 3, + "path" : "scale" + } + }, + { + "sampler" : 12, + "target" : { + "node" : 2, + "path" : "translation" + } + }, + { + "sampler" : 13, + "target" : { + "node" : 2, + "path" : "rotation" + } + }, + { + "sampler" : 14, + "target" : { + "node" : 2, + "path" : "scale" + } + }, + { + "sampler" : 15, + "target" : { + "node" : 1, + "path" : "translation" + } + }, + { + "sampler" : 16, + "target" : { + "node" : 1, + "path" : "rotation" + } + }, + { + "sampler" : 17, + "target" : { + "node" : 1, + "path" : "scale" + } + }, + { + "sampler" : 18, + "target" : { + "node" : 5, + "path" : "translation" + } + }, + { + "sampler" : 19, + "target" : { + "node" : 5, + "path" : "rotation" + } + }, + { + "sampler" : 20, + "target" : { + "node" : 5, + "path" : "scale" + } + }, + { + "sampler" : 21, + "target" : { + "node" : 4, + "path" : "translation" + } + }, + { + "sampler" : 22, + "target" : { + "node" : 4, + "path" : "rotation" + } + }, + { + "sampler" : 23, + "target" : { + "node" : 4, + "path" : "scale" + } + }, + { + "sampler" : 24, + "target" : { + "node" : 7, + "path" : "translation" + } + }, + { + "sampler" : 25, + "target" : { + "node" : 7, + "path" : "rotation" + } + }, + { + "sampler" : 26, + "target" : { + "node" : 7, + "path" : "scale" + } + }, + { + "sampler" : 27, + "target" : { + "node" : 6, + "path" : "translation" + } + }, + { + "sampler" : 28, + "target" : { + "node" : 6, + "path" : "rotation" + } + }, + { + "sampler" : 29, + "target" : { + "node" : 6, + "path" : "scale" + } + }, + { + "sampler" : 30, + "target" : { + "node" : 9, + "path" : "translation" + } + }, + { + "sampler" : 31, + "target" : { + "node" : 9, + "path" : "rotation" + } + }, + { + "sampler" : 32, + "target" : { + "node" : 9, + "path" : "scale" + } + }, + { + "sampler" : 33, + "target" : { + "node" : 8, + "path" : "translation" + } + }, + { + "sampler" : 34, + "target" : { + "node" : 8, + "path" : "rotation" + } + }, + { + "sampler" : 35, + "target" : { + "node" : 8, + "path" : "scale" + } + }, + { + "sampler" : 36, + "target" : { + "node" : 20, + "path" : "translation" + } + }, + { + "sampler" : 37, + "target" : { + "node" : 20, + "path" : "rotation" + } + }, + { + "sampler" : 38, + "target" : { + "node" : 20, + "path" : "scale" + } + }, + { + "sampler" : 39, + "target" : { + "node" : 13, + "path" : "translation" + } + }, + { + "sampler" : 40, + "target" : { + "node" : 13, + "path" : "rotation" + } + }, + { + "sampler" : 41, + "target" : { + "node" : 13, + "path" : "scale" + } + }, + { + "sampler" : 42, + "target" : { + "node" : 12, + "path" : "translation" + } + }, + { + "sampler" : 43, + "target" : { + "node" : 12, + "path" : "rotation" + } + }, + { + "sampler" : 44, + "target" : { + "node" : 12, + "path" : "scale" + } + }, + { + "sampler" : 45, + "target" : { + "node" : 11, + "path" : "translation" + } + }, + { + "sampler" : 46, + "target" : { + "node" : 11, + "path" : "rotation" + } + }, + { + "sampler" : 47, + "target" : { + "node" : 11, + "path" : "scale" + } + }, + { + "sampler" : 48, + "target" : { + "node" : 15, + "path" : "translation" + } + }, + { + "sampler" : 49, + "target" : { + "node" : 15, + "path" : "rotation" + } + }, + { + "sampler" : 50, + "target" : { + "node" : 15, + "path" : "scale" + } + }, + { + "sampler" : 51, + "target" : { + "node" : 14, + "path" : "translation" + } + }, + { + "sampler" : 52, + "target" : { + "node" : 14, + "path" : "rotation" + } + }, + { + "sampler" : 53, + "target" : { + "node" : 14, + "path" : "scale" + } + }, + { + "sampler" : 54, + "target" : { + "node" : 17, + "path" : "translation" + } + }, + { + "sampler" : 55, + "target" : { + "node" : 17, + "path" : "rotation" + } + }, + { + "sampler" : 56, + "target" : { + "node" : 17, + "path" : "scale" + } + }, + { + "sampler" : 57, + "target" : { + "node" : 16, + "path" : "translation" + } + }, + { + "sampler" : 58, + "target" : { + "node" : 16, + "path" : "rotation" + } + }, + { + "sampler" : 59, + "target" : { + "node" : 16, + "path" : "scale" + } + }, + { + "sampler" : 60, + "target" : { + "node" : 19, + "path" : "translation" + } + }, + { + "sampler" : 61, + "target" : { + "node" : 19, + "path" : "rotation" + } + }, + { + "sampler" : 62, + "target" : { + "node" : 19, + "path" : "scale" + } + }, + { + "sampler" : 63, + "target" : { + "node" : 18, + "path" : "translation" + } + }, + { + "sampler" : 64, + "target" : { + "node" : 18, + "path" : "rotation" + } + }, + { + "sampler" : 65, + "target" : { + "node" : 18, + "path" : "scale" + } + }, + { + "sampler" : 66, + "target" : { + "node" : 77, + "path" : "translation" + } + }, + { + "sampler" : 67, + "target" : { + "node" : 77, + "path" : "rotation" + } + }, + { + "sampler" : 68, + "target" : { + "node" : 77, + "path" : "scale" + } + }, + { + "sampler" : 69, + "target" : { + "node" : 76, + "path" : "translation" + } + }, + { + "sampler" : 70, + "target" : { + "node" : 76, + "path" : "rotation" + } + }, + { + "sampler" : 71, + "target" : { + "node" : 76, + "path" : "scale" + } + }, + { + "sampler" : 72, + "target" : { + "node" : 75, + "path" : "translation" + } + }, + { + "sampler" : 73, + "target" : { + "node" : 75, + "path" : "rotation" + } + }, + { + "sampler" : 74, + "target" : { + "node" : 75, + "path" : "scale" + } + }, + { + "sampler" : 75, + "target" : { + "node" : 45, + "path" : "translation" + } + }, + { + "sampler" : 76, + "target" : { + "node" : 45, + "path" : "rotation" + } + }, + { + "sampler" : 77, + "target" : { + "node" : 45, + "path" : "scale" + } + }, + { + "sampler" : 78, + "target" : { + "node" : 42, + "path" : "translation" + } + }, + { + "sampler" : 79, + "target" : { + "node" : 42, + "path" : "rotation" + } + }, + { + "sampler" : 80, + "target" : { + "node" : 42, + "path" : "scale" + } + }, + { + "sampler" : 81, + "target" : { + "node" : 37, + "path" : "translation" + } + }, + { + "sampler" : 82, + "target" : { + "node" : 37, + "path" : "rotation" + } + }, + { + "sampler" : 83, + "target" : { + "node" : 37, + "path" : "scale" + } + }, + { + "sampler" : 84, + "target" : { + "node" : 36, + "path" : "translation" + } + }, + { + "sampler" : 85, + "target" : { + "node" : 36, + "path" : "rotation" + } + }, + { + "sampler" : 86, + "target" : { + "node" : 36, + "path" : "scale" + } + }, + { + "sampler" : 87, + "target" : { + "node" : 23, + "path" : "translation" + } + }, + { + "sampler" : 88, + "target" : { + "node" : 23, + "path" : "rotation" + } + }, + { + "sampler" : 89, + "target" : { + "node" : 23, + "path" : "scale" + } + }, + { + "sampler" : 90, + "target" : { + "node" : 22, + "path" : "translation" + } + }, + { + "sampler" : 91, + "target" : { + "node" : 22, + "path" : "rotation" + } + }, + { + "sampler" : 92, + "target" : { + "node" : 22, + "path" : "scale" + } + }, + { + "sampler" : 93, + "target" : { + "node" : 21, + "path" : "translation" + } + }, + { + "sampler" : 94, + "target" : { + "node" : 21, + "path" : "rotation" + } + }, + { + "sampler" : 95, + "target" : { + "node" : 21, + "path" : "scale" + } + }, + { + "sampler" : 96, + "target" : { + "node" : 26, + "path" : "translation" + } + }, + { + "sampler" : 97, + "target" : { + "node" : 26, + "path" : "rotation" + } + }, + { + "sampler" : 98, + "target" : { + "node" : 26, + "path" : "scale" + } + }, + { + "sampler" : 99, + "target" : { + "node" : 25, + "path" : "translation" + } + }, + { + "sampler" : 100, + "target" : { + "node" : 25, + "path" : "rotation" + } + }, + { + "sampler" : 101, + "target" : { + "node" : 25, + "path" : "scale" + } + }, + { + "sampler" : 102, + "target" : { + "node" : 24, + "path" : "translation" + } + }, + { + "sampler" : 103, + "target" : { + "node" : 24, + "path" : "rotation" + } + }, + { + "sampler" : 104, + "target" : { + "node" : 24, + "path" : "scale" + } + }, + { + "sampler" : 105, + "target" : { + "node" : 29, + "path" : "translation" + } + }, + { + "sampler" : 106, + "target" : { + "node" : 29, + "path" : "rotation" + } + }, + { + "sampler" : 107, + "target" : { + "node" : 29, + "path" : "scale" + } + }, + { + "sampler" : 108, + "target" : { + "node" : 28, + "path" : "translation" + } + }, + { + "sampler" : 109, + "target" : { + "node" : 28, + "path" : "rotation" + } + }, + { + "sampler" : 110, + "target" : { + "node" : 28, + "path" : "scale" + } + }, + { + "sampler" : 111, + "target" : { + "node" : 27, + "path" : "translation" + } + }, + { + "sampler" : 112, + "target" : { + "node" : 27, + "path" : "rotation" + } + }, + { + "sampler" : 113, + "target" : { + "node" : 27, + "path" : "scale" + } + }, + { + "sampler" : 114, + "target" : { + "node" : 32, + "path" : "translation" + } + }, + { + "sampler" : 115, + "target" : { + "node" : 32, + "path" : "rotation" + } + }, + { + "sampler" : 116, + "target" : { + "node" : 32, + "path" : "scale" + } + }, + { + "sampler" : 117, + "target" : { + "node" : 31, + "path" : "translation" + } + }, + { + "sampler" : 118, + "target" : { + "node" : 31, + "path" : "rotation" + } + }, + { + "sampler" : 119, + "target" : { + "node" : 31, + "path" : "scale" + } + }, + { + "sampler" : 120, + "target" : { + "node" : 30, + "path" : "translation" + } + }, + { + "sampler" : 121, + "target" : { + "node" : 30, + "path" : "rotation" + } + }, + { + "sampler" : 122, + "target" : { + "node" : 30, + "path" : "scale" + } + }, + { + "sampler" : 123, + "target" : { + "node" : 35, + "path" : "translation" + } + }, + { + "sampler" : 124, + "target" : { + "node" : 35, + "path" : "rotation" + } + }, + { + "sampler" : 125, + "target" : { + "node" : 35, + "path" : "scale" + } + }, + { + "sampler" : 126, + "target" : { + "node" : 34, + "path" : "translation" + } + }, + { + "sampler" : 127, + "target" : { + "node" : 34, + "path" : "rotation" + } + }, + { + "sampler" : 128, + "target" : { + "node" : 34, + "path" : "scale" + } + }, + { + "sampler" : 129, + "target" : { + "node" : 33, + "path" : "translation" + } + }, + { + "sampler" : 130, + "target" : { + "node" : 33, + "path" : "rotation" + } + }, + { + "sampler" : 131, + "target" : { + "node" : 33, + "path" : "scale" + } + }, + { + "sampler" : 132, + "target" : { + "node" : 39, + "path" : "translation" + } + }, + { + "sampler" : 133, + "target" : { + "node" : 39, + "path" : "rotation" + } + }, + { + "sampler" : 134, + "target" : { + "node" : 39, + "path" : "scale" + } + }, + { + "sampler" : 135, + "target" : { + "node" : 38, + "path" : "translation" + } + }, + { + "sampler" : 136, + "target" : { + "node" : 38, + "path" : "rotation" + } + }, + { + "sampler" : 137, + "target" : { + "node" : 38, + "path" : "scale" + } + }, + { + "sampler" : 138, + "target" : { + "node" : 41, + "path" : "translation" + } + }, + { + "sampler" : 139, + "target" : { + "node" : 41, + "path" : "rotation" + } + }, + { + "sampler" : 140, + "target" : { + "node" : 41, + "path" : "scale" + } + }, + { + "sampler" : 141, + "target" : { + "node" : 40, + "path" : "translation" + } + }, + { + "sampler" : 142, + "target" : { + "node" : 40, + "path" : "rotation" + } + }, + { + "sampler" : 143, + "target" : { + "node" : 40, + "path" : "scale" + } + }, + { + "sampler" : 144, + "target" : { + "node" : 44, + "path" : "translation" + } + }, + { + "sampler" : 145, + "target" : { + "node" : 44, + "path" : "rotation" + } + }, + { + "sampler" : 146, + "target" : { + "node" : 44, + "path" : "scale" + } + }, + { + "sampler" : 147, + "target" : { + "node" : 43, + "path" : "translation" + } + }, + { + "sampler" : 148, + "target" : { + "node" : 43, + "path" : "rotation" + } + }, + { + "sampler" : 149, + "target" : { + "node" : 43, + "path" : "scale" + } + }, + { + "sampler" : 150, + "target" : { + "node" : 70, + "path" : "translation" + } + }, + { + "sampler" : 151, + "target" : { + "node" : 70, + "path" : "rotation" + } + }, + { + "sampler" : 152, + "target" : { + "node" : 70, + "path" : "scale" + } + }, + { + "sampler" : 153, + "target" : { + "node" : 67, + "path" : "translation" + } + }, + { + "sampler" : 154, + "target" : { + "node" : 67, + "path" : "rotation" + } + }, + { + "sampler" : 155, + "target" : { + "node" : 67, + "path" : "scale" + } + }, + { + "sampler" : 156, + "target" : { + "node" : 62, + "path" : "translation" + } + }, + { + "sampler" : 157, + "target" : { + "node" : 62, + "path" : "rotation" + } + }, + { + "sampler" : 158, + "target" : { + "node" : 62, + "path" : "scale" + } + }, + { + "sampler" : 159, + "target" : { + "node" : 61, + "path" : "translation" + } + }, + { + "sampler" : 160, + "target" : { + "node" : 61, + "path" : "rotation" + } + }, + { + "sampler" : 161, + "target" : { + "node" : 61, + "path" : "scale" + } + }, + { + "sampler" : 162, + "target" : { + "node" : 48, + "path" : "translation" + } + }, + { + "sampler" : 163, + "target" : { + "node" : 48, + "path" : "rotation" + } + }, + { + "sampler" : 164, + "target" : { + "node" : 48, + "path" : "scale" + } + }, + { + "sampler" : 165, + "target" : { + "node" : 47, + "path" : "translation" + } + }, + { + "sampler" : 166, + "target" : { + "node" : 47, + "path" : "rotation" + } + }, + { + "sampler" : 167, + "target" : { + "node" : 47, + "path" : "scale" + } + }, + { + "sampler" : 168, + "target" : { + "node" : 46, + "path" : "translation" + } + }, + { + "sampler" : 169, + "target" : { + "node" : 46, + "path" : "rotation" + } + }, + { + "sampler" : 170, + "target" : { + "node" : 46, + "path" : "scale" + } + }, + { + "sampler" : 171, + "target" : { + "node" : 51, + "path" : "translation" + } + }, + { + "sampler" : 172, + "target" : { + "node" : 51, + "path" : "rotation" + } + }, + { + "sampler" : 173, + "target" : { + "node" : 51, + "path" : "scale" + } + }, + { + "sampler" : 174, + "target" : { + "node" : 50, + "path" : "translation" + } + }, + { + "sampler" : 175, + "target" : { + "node" : 50, + "path" : "rotation" + } + }, + { + "sampler" : 176, + "target" : { + "node" : 50, + "path" : "scale" + } + }, + { + "sampler" : 177, + "target" : { + "node" : 49, + "path" : "translation" + } + }, + { + "sampler" : 178, + "target" : { + "node" : 49, + "path" : "rotation" + } + }, + { + "sampler" : 179, + "target" : { + "node" : 49, + "path" : "scale" + } + }, + { + "sampler" : 180, + "target" : { + "node" : 54, + "path" : "translation" + } + }, + { + "sampler" : 181, + "target" : { + "node" : 54, + "path" : "rotation" + } + }, + { + "sampler" : 182, + "target" : { + "node" : 54, + "path" : "scale" + } + }, + { + "sampler" : 183, + "target" : { + "node" : 53, + "path" : "translation" + } + }, + { + "sampler" : 184, + "target" : { + "node" : 53, + "path" : "rotation" + } + }, + { + "sampler" : 185, + "target" : { + "node" : 53, + "path" : "scale" + } + }, + { + "sampler" : 186, + "target" : { + "node" : 52, + "path" : "translation" + } + }, + { + "sampler" : 187, + "target" : { + "node" : 52, + "path" : "rotation" + } + }, + { + "sampler" : 188, + "target" : { + "node" : 52, + "path" : "scale" + } + }, + { + "sampler" : 189, + "target" : { + "node" : 57, + "path" : "translation" + } + }, + { + "sampler" : 190, + "target" : { + "node" : 57, + "path" : "rotation" + } + }, + { + "sampler" : 191, + "target" : { + "node" : 57, + "path" : "scale" + } + }, + { + "sampler" : 192, + "target" : { + "node" : 56, + "path" : "translation" + } + }, + { + "sampler" : 193, + "target" : { + "node" : 56, + "path" : "rotation" + } + }, + { + "sampler" : 194, + "target" : { + "node" : 56, + "path" : "scale" + } + }, + { + "sampler" : 195, + "target" : { + "node" : 55, + "path" : "translation" + } + }, + { + "sampler" : 196, + "target" : { + "node" : 55, + "path" : "rotation" + } + }, + { + "sampler" : 197, + "target" : { + "node" : 55, + "path" : "scale" + } + }, + { + "sampler" : 198, + "target" : { + "node" : 60, + "path" : "translation" + } + }, + { + "sampler" : 199, + "target" : { + "node" : 60, + "path" : "rotation" + } + }, + { + "sampler" : 200, + "target" : { + "node" : 60, + "path" : "scale" + } + }, + { + "sampler" : 201, + "target" : { + "node" : 59, + "path" : "translation" + } + }, + { + "sampler" : 202, + "target" : { + "node" : 59, + "path" : "rotation" + } + }, + { + "sampler" : 203, + "target" : { + "node" : 59, + "path" : "scale" + } + }, + { + "sampler" : 204, + "target" : { + "node" : 58, + "path" : "translation" + } + }, + { + "sampler" : 205, + "target" : { + "node" : 58, + "path" : "rotation" + } + }, + { + "sampler" : 206, + "target" : { + "node" : 58, + "path" : "scale" + } + }, + { + "sampler" : 207, + "target" : { + "node" : 64, + "path" : "translation" + } + }, + { + "sampler" : 208, + "target" : { + "node" : 64, + "path" : "rotation" + } + }, + { + "sampler" : 209, + "target" : { + "node" : 64, + "path" : "scale" + } + }, + { + "sampler" : 210, + "target" : { + "node" : 63, + "path" : "translation" + } + }, + { + "sampler" : 211, + "target" : { + "node" : 63, + "path" : "rotation" + } + }, + { + "sampler" : 212, + "target" : { + "node" : 63, + "path" : "scale" + } + }, + { + "sampler" : 213, + "target" : { + "node" : 66, + "path" : "translation" + } + }, + { + "sampler" : 214, + "target" : { + "node" : 66, + "path" : "rotation" + } + }, + { + "sampler" : 215, + "target" : { + "node" : 66, + "path" : "scale" + } + }, + { + "sampler" : 216, + "target" : { + "node" : 65, + "path" : "translation" + } + }, + { + "sampler" : 217, + "target" : { + "node" : 65, + "path" : "rotation" + } + }, + { + "sampler" : 218, + "target" : { + "node" : 65, + "path" : "scale" + } + }, + { + "sampler" : 219, + "target" : { + "node" : 69, + "path" : "translation" + } + }, + { + "sampler" : 220, + "target" : { + "node" : 69, + "path" : "rotation" + } + }, + { + "sampler" : 221, + "target" : { + "node" : 69, + "path" : "scale" + } + }, + { + "sampler" : 222, + "target" : { + "node" : 68, + "path" : "translation" + } + }, + { + "sampler" : 223, + "target" : { + "node" : 68, + "path" : "rotation" + } + }, + { + "sampler" : 224, + "target" : { + "node" : 68, + "path" : "scale" + } + }, + { + "sampler" : 225, + "target" : { + "node" : 74, + "path" : "translation" + } + }, + { + "sampler" : 226, + "target" : { + "node" : 74, + "path" : "rotation" + } + }, + { + "sampler" : 227, + "target" : { + "node" : 74, + "path" : "scale" + } + }, + { + "sampler" : 228, + "target" : { + "node" : 73, + "path" : "translation" + } + }, + { + "sampler" : 229, + "target" : { + "node" : 73, + "path" : "rotation" + } + }, + { + "sampler" : 230, + "target" : { + "node" : 73, + "path" : "scale" + } + }, + { + "sampler" : 231, + "target" : { + "node" : 71, + "path" : "translation" + } + }, + { + "sampler" : 232, + "target" : { + "node" : 71, + "path" : "rotation" + } + }, + { + "sampler" : 233, + "target" : { + "node" : 71, + "path" : "scale" + } + }, + { + "sampler" : 234, + "target" : { + "node" : 72, + "path" : "translation" + } + }, + { + "sampler" : 235, + "target" : { + "node" : 72, + "path" : "rotation" + } + }, + { + "sampler" : 236, + "target" : { + "node" : 72, + "path" : "scale" + } + }, + { + "sampler" : 237, + "target" : { + "node" : 79, + "path" : "translation" + } + }, + { + "sampler" : 238, + "target" : { + "node" : 79, + "path" : "rotation" + } + }, + { + "sampler" : 239, + "target" : { + "node" : 79, + "path" : "scale" + } + }, + { + "sampler" : 240, + "target" : { + "node" : 78, + "path" : "translation" + } + }, + { + "sampler" : 241, + "target" : { + "node" : 78, + "path" : "rotation" + } + }, + { + "sampler" : 242, + "target" : { + "node" : 78, + "path" : "scale" + } + }, + { + "sampler" : 243, + "target" : { + "node" : 80, + "path" : "translation" + } + }, + { + "sampler" : 244, + "target" : { + "node" : 80, + "path" : "rotation" + } + }, + { + "sampler" : 245, + "target" : { + "node" : 80, + "path" : "scale" + } + }, + { + "sampler" : 246, + "target" : { + "node" : 82, + "path" : "translation" + } + }, + { + "sampler" : 247, + "target" : { + "node" : 82, + "path" : "rotation" + } + }, + { + "sampler" : 248, + "target" : { + "node" : 82, + "path" : "scale" + } + }, + { + "sampler" : 249, + "target" : { + "node" : 81, + "path" : "translation" + } + }, + { + "sampler" : 250, + "target" : { + "node" : 81, + "path" : "rotation" + } + }, + { + "sampler" : 251, + "target" : { + "node" : 81, + "path" : "scale" + } + }, + { + "sampler" : 252, + "target" : { + "node" : 84, + "path" : "translation" + } + }, + { + "sampler" : 253, + "target" : { + "node" : 84, + "path" : "rotation" + } + }, + { + "sampler" : 254, + "target" : { + "node" : 84, + "path" : "scale" + } + }, + { + "sampler" : 255, + "target" : { + "node" : 83, + "path" : "translation" + } + }, + { + "sampler" : 256, + "target" : { + "node" : 83, + "path" : "rotation" + } + }, + { + "sampler" : 257, + "target" : { + "node" : 83, + "path" : "scale" + } + }, + { + "sampler" : 258, + "target" : { + "node" : 86, + "path" : "translation" + } + }, + { + "sampler" : 259, + "target" : { + "node" : 86, + "path" : "rotation" + } + }, + { + "sampler" : 260, + "target" : { + "node" : 86, + "path" : "scale" + } + }, + { + "sampler" : 261, + "target" : { + "node" : 87, + "path" : "translation" + } + }, + { + "sampler" : 262, + "target" : { + "node" : 87, + "path" : "rotation" + } + }, + { + "sampler" : 263, + "target" : { + "node" : 87, + "path" : "scale" + } + }, + { + "sampler" : 264, + "target" : { + "node" : 89, + "path" : "translation" + } + }, + { + "sampler" : 265, + "target" : { + "node" : 89, + "path" : "rotation" + } + }, + { + "sampler" : 266, + "target" : { + "node" : 89, + "path" : "scale" + } + }, + { + "sampler" : 267, + "target" : { + "node" : 88, + "path" : "translation" + } + }, + { + "sampler" : 268, + "target" : { + "node" : 88, + "path" : "rotation" + } + }, + { + "sampler" : 269, + "target" : { + "node" : 88, + "path" : "scale" + } + }, + { + "sampler" : 270, + "target" : { + "node" : 91, + "path" : "translation" + } + }, + { + "sampler" : 271, + "target" : { + "node" : 91, + "path" : "rotation" + } + }, + { + "sampler" : 272, + "target" : { + "node" : 91, + "path" : "scale" + } + }, + { + "sampler" : 273, + "target" : { + "node" : 90, + "path" : "translation" + } + }, + { + "sampler" : 274, + "target" : { + "node" : 90, + "path" : "rotation" + } + }, + { + "sampler" : 275, + "target" : { + "node" : 90, + "path" : "scale" + } + }, + { + "sampler" : 276, + "target" : { + "node" : 92, + "path" : "translation" + } + }, + { + "sampler" : 277, + "target" : { + "node" : 92, + "path" : "rotation" + } + }, + { + "sampler" : 278, + "target" : { + "node" : 92, + "path" : "scale" + } + }, + { + "sampler" : 279, + "target" : { + "node" : 93, + "path" : "translation" + } + }, + { + "sampler" : 280, + "target" : { + "node" : 93, + "path" : "rotation" + } + }, + { + "sampler" : 281, + "target" : { + "node" : 93, + "path" : "scale" + } + }, + { + "sampler" : 282, + "target" : { + "node" : 95, + "path" : "translation" + } + }, + { + "sampler" : 283, + "target" : { + "node" : 95, + "path" : "rotation" + } + }, + { + "sampler" : 284, + "target" : { + "node" : 95, + "path" : "scale" + } + }, + { + "sampler" : 285, + "target" : { + "node" : 94, + "path" : "translation" + } + }, + { + "sampler" : 286, + "target" : { + "node" : 94, + "path" : "rotation" + } + }, + { + "sampler" : 287, + "target" : { + "node" : 94, + "path" : "scale" + } + }, + { + "sampler" : 288, + "target" : { + "node" : 97, + "path" : "translation" + } + }, + { + "sampler" : 289, + "target" : { + "node" : 97, + "path" : "rotation" + } + }, + { + "sampler" : 290, + "target" : { + "node" : 97, + "path" : "scale" + } + }, + { + "sampler" : 291, + "target" : { + "node" : 96, + "path" : "translation" + } + }, + { + "sampler" : 292, + "target" : { + "node" : 96, + "path" : "rotation" + } + }, + { + "sampler" : 293, + "target" : { + "node" : 96, + "path" : "scale" + } + } + ], + "name" : "turn-right", + "samplers" : [ + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10900 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10901 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10902 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10903 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10904 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10905 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10906 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10907 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10908 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10909 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10910 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10911 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10912 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10913 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10914 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10915 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10916 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10917 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10918 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10919 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10920 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10921 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10922 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10923 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10924 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10925 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10926 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10927 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10928 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10929 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10930 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10931 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10932 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10933 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10934 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10935 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10936 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10937 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10938 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10939 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10940 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10941 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10942 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10943 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10944 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10945 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10946 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10947 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10948 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10949 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10950 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10951 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10952 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10953 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10954 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10955 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10956 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10957 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10958 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10959 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10960 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10961 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10962 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10963 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10964 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10965 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10966 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10967 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10968 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10969 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10970 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10971 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10972 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10973 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10974 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10975 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10976 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10977 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10978 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10979 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10980 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10981 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10982 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10983 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10984 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10985 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10986 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10987 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10988 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10989 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10990 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10991 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10992 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10993 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10994 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10995 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10996 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10997 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10998 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 10999 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11000 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11001 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11002 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11003 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11004 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11005 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11006 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11007 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11008 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11009 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11010 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11011 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11012 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11013 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11014 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11015 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11016 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11017 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11018 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11019 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11020 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11021 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11022 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11023 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11024 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11025 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11026 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11027 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11028 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11029 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11030 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11031 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11032 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11033 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11034 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11035 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11036 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11037 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11038 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11039 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11040 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11041 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11042 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11043 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11044 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11045 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11046 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11047 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11048 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11049 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11050 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11051 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11052 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11053 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11054 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11055 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11056 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11057 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11058 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11059 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11060 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11061 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11062 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11063 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11064 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11065 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11066 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11067 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11068 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11069 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11070 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11071 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11072 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11073 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11074 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11075 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11076 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11077 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11078 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11079 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11080 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11081 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11082 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11083 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11084 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11085 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11086 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11087 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11088 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11089 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11090 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11091 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11092 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11093 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11094 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11095 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11096 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11097 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11098 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11099 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11100 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11101 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11102 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11103 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11104 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11105 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11106 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11107 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11108 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11109 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11110 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11111 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11112 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11113 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11114 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11115 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11116 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11117 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11118 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11119 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11120 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11121 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11122 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11123 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11124 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11125 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11126 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11127 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11128 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11129 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11130 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11131 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11132 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11133 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11134 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11135 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11136 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11137 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11138 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11139 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11140 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11141 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11142 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11143 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11144 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11145 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11146 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11147 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11148 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11149 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11150 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11151 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11152 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11153 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11154 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11155 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11156 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11157 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11158 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11159 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11160 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11161 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11162 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11163 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11164 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11165 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11166 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11167 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11168 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11169 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11170 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11171 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11172 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11173 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11174 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11175 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11176 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11177 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11178 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11179 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11180 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11181 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11182 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11183 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11184 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11185 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11186 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11187 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11188 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11189 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11190 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11191 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11192 + }, + { + "input" : 7069, + "interpolation" : "LINEAR", + "output" : 11193 + } + ] + } + ], + "accessors" : [ + { + "bufferView" : 0, + "componentType" : 5126, + "count" : 281, + "max" : [ + 11.708333333333334 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 1, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 2, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 3, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 4, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 5, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 6, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 7, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 8, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 9, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 10, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 11, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 12, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 13, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 14, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 15, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 16, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 17, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 18, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 19, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 20, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 21, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 22, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 23, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 24, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 25, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 26, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 27, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 28, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 29, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 30, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 31, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 32, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 33, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 34, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 35, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 36, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 37, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 38, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 39, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 40, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 41, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 42, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 43, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 44, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 45, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 46, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 47, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 48, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 49, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 50, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 51, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 52, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 53, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 54, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 55, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 56, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 57, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 58, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 59, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 60, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 61, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 62, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 63, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 64, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 65, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 66, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 67, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 68, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 69, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 70, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 71, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 72, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 73, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 74, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 75, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 76, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 77, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 78, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 79, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 80, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 81, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 82, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 83, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 84, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 85, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 86, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 87, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 88, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 89, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 90, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 91, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 92, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 93, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 94, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 95, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 96, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 97, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 98, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 99, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 100, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 101, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 102, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 103, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 104, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 105, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 106, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 107, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 108, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 109, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 110, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 111, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 112, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 113, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 114, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 115, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 116, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 117, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 118, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 119, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 120, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 121, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 122, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 123, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 124, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 125, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 126, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 127, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 128, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 129, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 130, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 131, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 132, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 133, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 134, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 135, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 136, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 137, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 138, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 139, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 140, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 141, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 142, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 143, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 144, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 145, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 146, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 147, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 148, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 149, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 150, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 151, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 152, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 153, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 154, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 155, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 156, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 157, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 158, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 159, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 160, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 161, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 162, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 163, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 164, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 165, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 166, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 167, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 168, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 169, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 170, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 171, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 172, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 173, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 174, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 175, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 176, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 177, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 178, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 179, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 180, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 181, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 182, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 183, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 184, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 185, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 186, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 187, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 188, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 189, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 190, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 191, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 192, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 193, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 194, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 195, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 196, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 197, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 198, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 199, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 200, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 201, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 202, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 203, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 204, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 205, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 206, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 207, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 208, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 209, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 210, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 211, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 212, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 213, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 214, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 215, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 216, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 217, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 218, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 219, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 220, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 221, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 222, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 223, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 224, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 225, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 226, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 227, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 228, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 229, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 230, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 231, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 232, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 233, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 234, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 235, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 236, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 237, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 238, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 239, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 240, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 241, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 242, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 243, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 244, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 245, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 246, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 247, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 248, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 249, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 250, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 251, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 252, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 253, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 254, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 255, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 256, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 257, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 258, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 259, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 260, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 261, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 262, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 263, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 264, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 265, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 266, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 267, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 268, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 269, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 270, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 271, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 272, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 273, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 274, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 275, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 276, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 277, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 278, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 279, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 280, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 281, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 282, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 283, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 284, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 285, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 286, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 287, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 288, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 289, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 290, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 291, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 292, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 293, + "componentType" : 5126, + "count" : 281, + "type" : "VEC4" + }, + { + "bufferView" : 294, + "componentType" : 5126, + "count" : 281, + "type" : "VEC3" + }, + { + "bufferView" : 295, + "componentType" : 5126, + "count" : 26, + "max" : [ + 1.0833333333333333 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 296, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 297, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 298, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 299, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 300, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 301, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 302, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 303, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 304, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 305, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 306, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 307, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 308, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 309, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 310, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 311, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 312, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 313, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 314, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 315, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 316, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 317, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 318, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 319, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 320, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 321, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 322, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 323, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 324, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 325, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 326, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 327, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 328, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 329, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 330, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 331, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 332, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 333, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 334, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 335, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 336, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 337, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 338, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 339, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 340, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 341, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 342, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 343, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 344, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 345, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 346, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 347, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 348, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 349, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 350, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 351, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 352, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 353, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 354, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 355, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 356, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 357, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 358, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 359, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 360, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 361, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 362, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 363, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 364, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 365, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 366, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 367, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 368, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 369, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 370, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 371, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 372, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 373, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 374, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 375, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 376, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 377, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 378, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 379, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 380, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 381, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 382, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 383, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 384, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 385, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 386, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 387, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 388, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 389, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 390, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 391, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 392, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 393, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 394, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 395, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 396, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 397, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 398, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 399, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 400, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 401, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 402, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 403, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 404, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 405, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 406, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 407, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 408, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 409, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 410, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 411, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 412, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 413, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 414, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 415, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 416, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 417, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 418, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 419, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 420, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 421, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 422, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 423, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 424, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 425, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 426, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 427, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 428, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 429, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 430, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 431, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 432, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 433, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 434, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 435, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 436, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 437, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 438, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 439, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 440, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 441, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 442, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 443, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 444, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 445, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 446, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 447, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 448, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 449, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 450, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 451, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 452, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 453, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 454, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 455, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 456, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 457, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 458, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 459, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 460, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 461, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 462, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 463, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 464, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 465, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 466, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 467, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 468, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 469, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 470, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 471, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 472, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 473, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 474, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 475, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 476, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 477, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 478, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 479, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 480, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 481, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 482, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 483, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 484, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 485, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 486, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 487, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 488, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 489, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 490, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 491, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 492, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 493, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 494, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 495, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 496, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 497, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 498, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 499, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 500, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 501, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 502, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 503, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 504, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 505, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 506, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 507, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 508, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 509, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 510, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 511, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 512, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 513, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 514, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 515, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 516, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 517, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 518, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 519, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 520, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 521, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 522, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 523, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 524, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 525, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 526, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 527, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 528, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 529, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 530, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 531, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 532, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 533, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 534, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 535, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 536, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 537, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 538, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 539, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 540, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 541, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 542, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 543, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 544, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 545, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 546, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 547, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 548, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 549, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 550, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 551, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 552, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 553, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 554, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 555, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 556, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 557, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 558, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 559, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 560, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 561, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 562, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 563, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 564, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 565, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 566, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 567, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 568, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 569, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 570, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 571, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 572, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 573, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 574, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 575, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 576, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 577, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 578, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 579, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 580, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 581, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 582, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 583, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 584, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 585, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 586, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 587, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 588, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 589, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 590, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 591, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 592, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 593, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 594, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 595, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 596, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 597, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 598, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 599, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 600, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 601, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 602, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 603, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 604, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 605, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 606, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 607, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 608, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 609, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 610, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 611, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 612, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 613, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 614, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 615, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 616, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 617, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 618, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 619, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 620, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 621, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 622, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 623, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 624, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 625, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 626, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 627, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 628, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 629, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 630, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 631, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 632, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 633, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 634, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 635, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 636, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 637, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 638, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 639, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 640, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 641, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 642, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 643, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 644, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 645, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 646, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 647, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 648, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 649, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 650, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 651, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 652, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 653, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 654, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 655, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 656, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 657, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 658, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 659, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 660, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 661, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 662, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 663, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 664, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 665, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 666, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 667, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 668, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 669, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 670, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 671, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 672, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 673, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 674, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 675, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 676, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 677, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 678, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 679, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 680, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 681, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 682, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 683, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 684, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 685, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 686, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 687, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 688, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 689, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 690, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 691, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 692, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 693, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 694, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 695, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 696, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 697, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 698, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 699, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 700, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 701, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 702, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 703, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 704, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 705, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 706, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 707, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 708, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 709, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 710, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 711, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 712, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 713, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 714, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 715, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 716, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 717, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 718, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 719, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 720, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 721, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 722, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 723, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 724, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 725, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 726, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 727, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 728, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 729, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 730, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 731, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 732, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 733, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 734, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 735, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 736, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 737, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 738, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 739, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 740, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 741, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 742, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 743, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 744, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 745, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 746, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 747, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 748, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 749, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 750, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 751, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 752, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 753, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 754, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 755, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 756, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 757, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 758, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 759, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 760, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 761, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 762, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 763, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 764, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 765, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 766, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 767, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 768, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 769, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 770, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 771, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 772, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 773, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 774, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 775, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 776, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 777, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 778, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 779, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 780, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 781, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 782, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 783, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 784, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 785, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 786, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 787, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 788, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 789, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 790, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 791, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 792, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 793, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 794, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 795, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 796, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 797, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 798, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 799, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 800, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 801, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 802, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 803, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 804, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 805, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 806, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 807, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 808, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 809, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 810, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 811, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 812, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 813, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 814, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 815, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 816, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 817, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 818, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 819, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 820, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 821, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 822, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 823, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 824, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 825, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 826, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 827, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 828, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 829, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 830, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 831, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 832, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 833, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 834, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 835, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 836, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 837, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 838, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 839, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 840, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 841, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 842, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 843, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 844, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 845, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 846, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 847, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 848, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 849, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 850, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 851, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 852, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 853, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 854, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 855, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 856, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 857, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 858, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 859, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 860, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 861, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 862, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 863, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 864, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 865, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 866, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 867, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 868, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 869, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 870, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 871, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 872, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 873, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 874, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 875, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 876, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 877, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 878, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 879, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 880, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 881, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 882, + "componentType" : 5126, + "count" : 26, + "type" : "VEC4" + }, + { + "bufferView" : 883, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 884, + "componentType" : 5126, + "count" : 59, + "max" : [ + 2.4583333333333335 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 885, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 886, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 887, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 888, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 889, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 890, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 891, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 892, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 893, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 894, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 895, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 896, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 897, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 898, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 899, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 900, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 901, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 902, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 903, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 904, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 905, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 906, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 907, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 908, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 909, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 910, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 911, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 912, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 913, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 914, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 915, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 916, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 917, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 918, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 919, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 920, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 921, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 922, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 923, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 924, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 925, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 926, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 927, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 928, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 929, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 930, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 931, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 932, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 933, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 934, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 935, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 936, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 937, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 938, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 939, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 940, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 941, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 942, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 943, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 944, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 945, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 946, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 947, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 948, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 949, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 950, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 951, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 952, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 953, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 954, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 955, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 956, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 957, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 958, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 959, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 960, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 961, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 962, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 963, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 964, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 965, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 966, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 967, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 968, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 969, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 970, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 971, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 972, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 973, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 974, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 975, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 976, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 977, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 978, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 979, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 980, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 981, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 982, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 983, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 984, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 985, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 986, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 987, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 988, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 989, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 990, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 991, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 992, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 993, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 994, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 995, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 996, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 997, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 998, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 999, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1000, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1001, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1002, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1003, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1004, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1005, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1006, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1007, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1008, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1009, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1010, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1011, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1012, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1013, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1014, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1015, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1016, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1017, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1018, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1019, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1020, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1021, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1022, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1023, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1024, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1025, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1026, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1027, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1028, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1029, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1030, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1031, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1032, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1033, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1034, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1035, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1036, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1037, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1038, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1039, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1040, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1041, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1042, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1043, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1044, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1045, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1046, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1047, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1048, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1049, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1050, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1051, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1052, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1053, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1054, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1055, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1056, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1057, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1058, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1059, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1060, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1061, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1062, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1063, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1064, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1065, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1066, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1067, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1068, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1069, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1070, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1071, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1072, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1073, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1074, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1075, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1076, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1077, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1078, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1079, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1080, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1081, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1082, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1083, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1084, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1085, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1086, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1087, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1088, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1089, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1090, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1091, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1092, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1093, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1094, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1095, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1096, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1097, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1098, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1099, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1100, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1101, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1102, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1103, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1104, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1105, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1106, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1107, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1108, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1109, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1110, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1111, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1112, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1113, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1114, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1115, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1116, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1117, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1118, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1119, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1120, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1121, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1122, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1123, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1124, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1125, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1126, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1127, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1128, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1129, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1130, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1131, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1132, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1133, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1134, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1135, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1136, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1137, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1138, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1139, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1140, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1141, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1142, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1143, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1144, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1145, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1146, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1147, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1148, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1149, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1150, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1151, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1152, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1153, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1154, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1155, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1156, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1157, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1158, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1159, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1160, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1161, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1162, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1163, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1164, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1165, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1166, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1167, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1168, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1169, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1170, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1171, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1172, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1173, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1174, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1175, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1176, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1177, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1178, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1179, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1180, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1181, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1182, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1183, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1184, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1185, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1186, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1187, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1188, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1189, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1190, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1191, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1192, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1193, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1194, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1195, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1196, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1197, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1198, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1199, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1200, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1201, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1202, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1203, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1204, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1205, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1206, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1207, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1208, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1209, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1210, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1211, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1212, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1213, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1214, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1215, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1216, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1217, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1218, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1219, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1220, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1221, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1222, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1223, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1224, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1225, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1226, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1227, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1228, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1229, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1230, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1231, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1232, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1233, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1234, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1235, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1236, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1237, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1238, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1239, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1240, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1241, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1242, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1243, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1244, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1245, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1246, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1247, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1248, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1249, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1250, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1251, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1252, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1253, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1254, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1255, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1256, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1257, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1258, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1259, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1260, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1261, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1262, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1263, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1264, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1265, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1266, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1267, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1268, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1269, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1270, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1271, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1272, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1273, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1274, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1275, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1276, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1277, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1278, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1279, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1280, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1281, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1282, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1283, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1284, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1285, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1286, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1287, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1288, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1289, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1290, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1291, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1292, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1293, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1294, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1295, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1296, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1297, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1298, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1299, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1300, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1301, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1302, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1303, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1304, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1305, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1306, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1307, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1308, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1309, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1310, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1311, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1312, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1313, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1314, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1315, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1316, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1317, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1318, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1319, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1320, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1321, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1322, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1323, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1324, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1325, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1326, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1327, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1328, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1329, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1330, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1331, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1332, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1333, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1334, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1335, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1336, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1337, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1338, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1339, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1340, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1341, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1342, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1343, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1344, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1345, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1346, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1347, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1348, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1349, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1350, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1351, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1352, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1353, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1354, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1355, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1356, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1357, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1358, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1359, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1360, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1361, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1362, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1363, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1364, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1365, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1366, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1367, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1368, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1369, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1370, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1371, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1372, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1373, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1374, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1375, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1376, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1377, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1378, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1379, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1380, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1381, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1382, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1383, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1384, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1385, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1386, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1387, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1388, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1389, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1390, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1391, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1392, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1393, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1394, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1395, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1396, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1397, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1398, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1399, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1400, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1401, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1402, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1403, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1404, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1405, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1406, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1407, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1408, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1409, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1410, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1411, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1412, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1413, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1414, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1415, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1416, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1417, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1418, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1419, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1420, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1421, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1422, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1423, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1424, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1425, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1426, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1427, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1428, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1429, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1430, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1431, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1432, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1433, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1434, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1435, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1436, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1437, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1438, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1439, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1440, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1441, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1442, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1443, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1444, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1445, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1446, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1447, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1448, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1449, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1450, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1451, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1452, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1453, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1454, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1455, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1456, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1457, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1458, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1459, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1460, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1461, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1462, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1463, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1464, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1465, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1466, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1467, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1468, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1469, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1470, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1471, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1472, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1473, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1474, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1475, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1476, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1477, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1478, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1479, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1480, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1481, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1482, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1483, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1484, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1485, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1486, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1487, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1488, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1489, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1490, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1491, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1492, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1493, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1494, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1495, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1496, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1497, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1498, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1499, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1500, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1501, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1502, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1503, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1504, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1505, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1506, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1507, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1508, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1509, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1510, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1511, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1512, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1513, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1514, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1515, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1516, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1517, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1518, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1519, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1520, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1521, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1522, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1523, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1524, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1525, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1526, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1527, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1528, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1529, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1530, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1531, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1532, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1533, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1534, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1535, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1536, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1537, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1538, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1539, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1540, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1541, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1542, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1543, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1544, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1545, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1546, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1547, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1548, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1549, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1550, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1551, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1552, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1553, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1554, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1555, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1556, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1557, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1558, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1559, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1560, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1561, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1562, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1563, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1564, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1565, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1566, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1567, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1568, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1569, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1570, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1571, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1572, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1573, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1574, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1575, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1576, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1577, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1578, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1579, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1580, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1581, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1582, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1583, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1584, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1585, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1586, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1587, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1588, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1589, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1590, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1591, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1592, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1593, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1594, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1595, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1596, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1597, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1598, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1599, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1600, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1601, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1602, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1603, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1604, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1605, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1606, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1607, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1608, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1609, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1610, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1611, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1612, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1613, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1614, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1615, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1616, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1617, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1618, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1619, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1620, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1621, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1622, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1623, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1624, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1625, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1626, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1627, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1628, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1629, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1630, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1631, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1632, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1633, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1634, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1635, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1636, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1637, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1638, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1639, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1640, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1641, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1642, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1643, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1644, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1645, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1646, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1647, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1648, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1649, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1650, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1651, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1652, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1653, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1654, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1655, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1656, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1657, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1658, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1659, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1660, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1661, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1662, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1663, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1664, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1665, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1666, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1667, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1668, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1669, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1670, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1671, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1672, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1673, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1674, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1675, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1676, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1677, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1678, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1679, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1680, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1681, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1682, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1683, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1684, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1685, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1686, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1687, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1688, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1689, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1690, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1691, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1692, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1693, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1694, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1695, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1696, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1697, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1698, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1699, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1700, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1701, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1702, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1703, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1704, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1705, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1706, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1707, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1708, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1709, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1710, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1711, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1712, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1713, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1714, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1715, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1716, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1717, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1718, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1719, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1720, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1721, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1722, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1723, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1724, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1725, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1726, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1727, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1728, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1729, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1730, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1731, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1732, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1733, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1734, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1735, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1736, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1737, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1738, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1739, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1740, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1741, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1742, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1743, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1744, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1745, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1746, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1747, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1748, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1749, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1750, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1751, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1752, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1753, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1754, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1755, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1756, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1757, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1758, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1759, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1760, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1761, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1762, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1763, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1764, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1765, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 1766, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 1767, + "componentType" : 5126, + "count" : 65, + "max" : [ + 2.7083333333333335 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 1768, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1769, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1770, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1771, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1772, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1773, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1774, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1775, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1776, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1777, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1778, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1779, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1780, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1781, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1782, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1783, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1784, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1785, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1786, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1787, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1788, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1789, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1790, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1791, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1792, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1793, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1794, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1795, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1796, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1797, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1798, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1799, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1800, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1801, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1802, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1803, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1804, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1805, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1806, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1807, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1808, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1809, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1810, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1811, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1812, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1813, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1814, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1815, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1816, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1817, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1818, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1819, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1820, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1821, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1822, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1823, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1824, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1825, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1826, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1827, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1828, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1829, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1830, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1831, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1832, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1833, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1834, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1835, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1836, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1837, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1838, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1839, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1840, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1841, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1842, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1843, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1844, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1845, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1846, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1847, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1848, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1849, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1850, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1851, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1852, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1853, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1854, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1855, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1856, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1857, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1858, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1859, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1860, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1861, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1862, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1863, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1864, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1865, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1866, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1867, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1868, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1869, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1870, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1871, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1872, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1873, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1874, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1875, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1876, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1877, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1878, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1879, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1880, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1881, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1882, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1883, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1884, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1885, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1886, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1887, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1888, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1889, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1890, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1891, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1892, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1893, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1894, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1895, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1896, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1897, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1898, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1899, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1900, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1901, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1902, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1903, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1904, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1905, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1906, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1907, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1908, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1909, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1910, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1911, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1912, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1913, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1914, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1915, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1916, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1917, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1918, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1919, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1920, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1921, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1922, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1923, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1924, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1925, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1926, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1927, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1928, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1929, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1930, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1931, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1932, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1933, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1934, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1935, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1936, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1937, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1938, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1939, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1940, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1941, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1942, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1943, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1944, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1945, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1946, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1947, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1948, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1949, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1950, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1951, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1952, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1953, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1954, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1955, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1956, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1957, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1958, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1959, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1960, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1961, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1962, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1963, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1964, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1965, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1966, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1967, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1968, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1969, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1970, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1971, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1972, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1973, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1974, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1975, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1976, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1977, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1978, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1979, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1980, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1981, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1982, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1983, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1984, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1985, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1986, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1987, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1988, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1989, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1990, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1991, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1992, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1993, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1994, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1995, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1996, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1997, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 1998, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 1999, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2000, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2001, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2002, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2003, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2004, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2005, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2006, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2007, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2008, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2009, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2010, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2011, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2012, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2013, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2014, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2015, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2016, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2017, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2018, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2019, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2020, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2021, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2022, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2023, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2024, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2025, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2026, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2027, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2028, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2029, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2030, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2031, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2032, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2033, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2034, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2035, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2036, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2037, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2038, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2039, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2040, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2041, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2042, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2043, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2044, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2045, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2046, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2047, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2048, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2049, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2050, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2051, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2052, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2053, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2054, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2055, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2056, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2057, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2058, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2059, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2060, + "componentType" : 5126, + "count" : 65, + "type" : "VEC4" + }, + { + "bufferView" : 2061, + "componentType" : 5126, + "count" : 65, + "type" : "VEC3" + }, + { + "bufferView" : 2062, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2063, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2064, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2065, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2066, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2067, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2068, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2069, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2070, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2071, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2072, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2073, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2074, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2075, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2076, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2077, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2078, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2079, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2080, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2081, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2082, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2083, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2084, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2085, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2086, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2087, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2088, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2089, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2090, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2091, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2092, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2093, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2094, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2095, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2096, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2097, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2098, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2099, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2100, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2101, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2102, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2103, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2104, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2105, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2106, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2107, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2108, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2109, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2110, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2111, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2112, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2113, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2114, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2115, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2116, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2117, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2118, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2119, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2120, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2121, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2122, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2123, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2124, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2125, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2126, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2127, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2128, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2129, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2130, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2131, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2132, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2133, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2134, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2135, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2136, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2137, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2138, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2139, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2140, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2141, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2142, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2143, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2144, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2145, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2146, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2147, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2148, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2149, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2150, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2151, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2152, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2153, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2154, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2155, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2156, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2157, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2158, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2159, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2160, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2161, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2162, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2163, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2164, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2165, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2166, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2167, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2168, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2169, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2170, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2171, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2172, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2173, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2174, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2175, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2176, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2177, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2178, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2179, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2180, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2181, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2182, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2183, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2184, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2185, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2186, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2187, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2188, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2189, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2190, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2191, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2192, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2193, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2194, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2195, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2196, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2197, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2198, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2199, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2200, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2201, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2202, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2203, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2204, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2205, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2206, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2207, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2208, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2209, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2210, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2211, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2212, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2213, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2214, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2215, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2216, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2217, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2218, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2219, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2220, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2221, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2222, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2223, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2224, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2225, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2226, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2227, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2228, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2229, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2230, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2231, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2232, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2233, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2234, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2235, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2236, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2237, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2238, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2239, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2240, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2241, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2242, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2243, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2244, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2245, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2246, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2247, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2248, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2249, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2250, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2251, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2252, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2253, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2254, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2255, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2256, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2257, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2258, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2259, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2260, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2261, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2262, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2263, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2264, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2265, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2266, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2267, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2268, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2269, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2270, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2271, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2272, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2273, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2274, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2275, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2276, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2277, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2278, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2279, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2280, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2281, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2282, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2283, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2284, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2285, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2286, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2287, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2288, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2289, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2290, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2291, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2292, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2293, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2294, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2295, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2296, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2297, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2298, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2299, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2300, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2301, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2302, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2303, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2304, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2305, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2306, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2307, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2308, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2309, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2310, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2311, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2312, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2313, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2314, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2315, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2316, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2317, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2318, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2319, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2320, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2321, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2322, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2323, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2324, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2325, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2326, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2327, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2328, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2329, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2330, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2331, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2332, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2333, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2334, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2335, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2336, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2337, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2338, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2339, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2340, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2341, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2342, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2343, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2344, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2345, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2346, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2347, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2348, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2349, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2350, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2351, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2352, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2353, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2354, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2355, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2356, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2357, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2358, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2359, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2360, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2361, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2362, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2363, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2364, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2365, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2366, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2367, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2368, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2369, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2370, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2371, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2372, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2373, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2374, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2375, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2376, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2377, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2378, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2379, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2380, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2381, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2382, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2383, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2384, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2385, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2386, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2387, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2388, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2389, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2390, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2391, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2392, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2393, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2394, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2395, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2396, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2397, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2398, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2399, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2400, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2401, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2402, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2403, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2404, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2405, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2406, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2407, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2408, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2409, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2410, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2411, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2412, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2413, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2414, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2415, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2416, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2417, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2418, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2419, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2420, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2421, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2422, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2423, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2424, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2425, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2426, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2427, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2428, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2429, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2430, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2431, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2432, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2433, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2434, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2435, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2436, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2437, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2438, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2439, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2440, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2441, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2442, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2443, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2444, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2445, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2446, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2447, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2448, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2449, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2450, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2451, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2452, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2453, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2454, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2455, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2456, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2457, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2458, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2459, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2460, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2461, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2462, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2463, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2464, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2465, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2466, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2467, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2468, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2469, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2470, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2471, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2472, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2473, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2474, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2475, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2476, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2477, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2478, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2479, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2480, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2481, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2482, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2483, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2484, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2485, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2486, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2487, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2488, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2489, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2490, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2491, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2492, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2493, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2494, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2495, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2496, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2497, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2498, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2499, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2500, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2501, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2502, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2503, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2504, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2505, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2506, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2507, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2508, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2509, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2510, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2511, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2512, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2513, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2514, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2515, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2516, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2517, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2518, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2519, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2520, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2521, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2522, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2523, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2524, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2525, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2526, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2527, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2528, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2529, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2530, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2531, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2532, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2533, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2534, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2535, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2536, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2537, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2538, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2539, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2540, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2541, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2542, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2543, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2544, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2545, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2546, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2547, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2548, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2549, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2550, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2551, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2552, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2553, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2554, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2555, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2556, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2557, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2558, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2559, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2560, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2561, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2562, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2563, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2564, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2565, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2566, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2567, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2568, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2569, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2570, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2571, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2572, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2573, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2574, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2575, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2576, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2577, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2578, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2579, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2580, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2581, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2582, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2583, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2584, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2585, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2586, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2587, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2588, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2589, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2590, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2591, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2592, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2593, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2594, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2595, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2596, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2597, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2598, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2599, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2600, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2601, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2602, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2603, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2604, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2605, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2606, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2607, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2608, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2609, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2610, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2611, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2612, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2613, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2614, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2615, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2616, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2617, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2618, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2619, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2620, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2621, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2622, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2623, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2624, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2625, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2626, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2627, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2628, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2629, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2630, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2631, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2632, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2633, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2634, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2635, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2636, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2637, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2638, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2639, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2640, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2641, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2642, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2643, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2644, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2645, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2646, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2647, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2648, + "componentType" : 5126, + "count" : 59, + "type" : "VEC4" + }, + { + "bufferView" : 2649, + "componentType" : 5126, + "count" : 59, + "type" : "VEC3" + }, + { + "bufferView" : 2650, + "componentType" : 5126, + "count" : 56, + "max" : [ + 2.3333333333333335 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 2651, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2652, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2653, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2654, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2655, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2656, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2657, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2658, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2659, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2660, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2661, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2662, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2663, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2664, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2665, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2666, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2667, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2668, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2669, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2670, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2671, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2672, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2673, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2674, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2675, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2676, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2677, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2678, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2679, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2680, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2681, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2682, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2683, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2684, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2685, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2686, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2687, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2688, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2689, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2690, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2691, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2692, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2693, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2694, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2695, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2696, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2697, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2698, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2699, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2700, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2701, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2702, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2703, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2704, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2705, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2706, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2707, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2708, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2709, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2710, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2711, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2712, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2713, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2714, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2715, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2716, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2717, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2718, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2719, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2720, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2721, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2722, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2723, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2724, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2725, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2726, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2727, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2728, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2729, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2730, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2731, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2732, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2733, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2734, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2735, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2736, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2737, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2738, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2739, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2740, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2741, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2742, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2743, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2744, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2745, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2746, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2747, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2748, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2749, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2750, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2751, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2752, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2753, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2754, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2755, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2756, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2757, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2758, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2759, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2760, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2761, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2762, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2763, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2764, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2765, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2766, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2767, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2768, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2769, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2770, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2771, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2772, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2773, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2774, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2775, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2776, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2777, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2778, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2779, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2780, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2781, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2782, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2783, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2784, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2785, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2786, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2787, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2788, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2789, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2790, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2791, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2792, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2793, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2794, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2795, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2796, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2797, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2798, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2799, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2800, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2801, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2802, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2803, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2804, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2805, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2806, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2807, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2808, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2809, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2810, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2811, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2812, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2813, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2814, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2815, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2816, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2817, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2818, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2819, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2820, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2821, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2822, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2823, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2824, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2825, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2826, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2827, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2828, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2829, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2830, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2831, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2832, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2833, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2834, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2835, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2836, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2837, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2838, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2839, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2840, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2841, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2842, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2843, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2844, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2845, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2846, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2847, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2848, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2849, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2850, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2851, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2852, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2853, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2854, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2855, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2856, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2857, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2858, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2859, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2860, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2861, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2862, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2863, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2864, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2865, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2866, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2867, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2868, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2869, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2870, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2871, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2872, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2873, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2874, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2875, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2876, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2877, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2878, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2879, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2880, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2881, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2882, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2883, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2884, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2885, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2886, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2887, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2888, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2889, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2890, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2891, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2892, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2893, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2894, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2895, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2896, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2897, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2898, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2899, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2900, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2901, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2902, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2903, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2904, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2905, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2906, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2907, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2908, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2909, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2910, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2911, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2912, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2913, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2914, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2915, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2916, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2917, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2918, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2919, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2920, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2921, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2922, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2923, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2924, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2925, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2926, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2927, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2928, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2929, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2930, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2931, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2932, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2933, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2934, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2935, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2936, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2937, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2938, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2939, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2940, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2941, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2942, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2943, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2944, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2945, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2946, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2947, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2948, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2949, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2950, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2951, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2952, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2953, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2954, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2955, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2956, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2957, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2958, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2959, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2960, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2961, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2962, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2963, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2964, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2965, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2966, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2967, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2968, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2969, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2970, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2971, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2972, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2973, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2974, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2975, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2976, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2977, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2978, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2979, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2980, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2981, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2982, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2983, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2984, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2985, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2986, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2987, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2988, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2989, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2990, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2991, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2992, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2993, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2994, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2995, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2996, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2997, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 2998, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 2999, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3000, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3001, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3002, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3003, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3004, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3005, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3006, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3007, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3008, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3009, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3010, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3011, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3012, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3013, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3014, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3015, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3016, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3017, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3018, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3019, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3020, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3021, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3022, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3023, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3024, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3025, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3026, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3027, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3028, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3029, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3030, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3031, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3032, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3033, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3034, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3035, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3036, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3037, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3038, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3039, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3040, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3041, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3042, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3043, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3044, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3045, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3046, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3047, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3048, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3049, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3050, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3051, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3052, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3053, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3054, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3055, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3056, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3057, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3058, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3059, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3060, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3061, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3062, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3063, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3064, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3065, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3066, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3067, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3068, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3069, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3070, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3071, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3072, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3073, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3074, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3075, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3076, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3077, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3078, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3079, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3080, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3081, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3082, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3083, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3084, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3085, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3086, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3087, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3088, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3089, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3090, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3091, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3092, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3093, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3094, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3095, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3096, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3097, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3098, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3099, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3100, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3101, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3102, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3103, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3104, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3105, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3106, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3107, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3108, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3109, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3110, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3111, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3112, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3113, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3114, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3115, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3116, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3117, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3118, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3119, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3120, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3121, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3122, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3123, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3124, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3125, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3126, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3127, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3128, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3129, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3130, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3131, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3132, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3133, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3134, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3135, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3136, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3137, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3138, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3139, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3140, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3141, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3142, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3143, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3144, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3145, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3146, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3147, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3148, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3149, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3150, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3151, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3152, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3153, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3154, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3155, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3156, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3157, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3158, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3159, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3160, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3161, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3162, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3163, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3164, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3165, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3166, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3167, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3168, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3169, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3170, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3171, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3172, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3173, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3174, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3175, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3176, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3177, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3178, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3179, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3180, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3181, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3182, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3183, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3184, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3185, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3186, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3187, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3188, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3189, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3190, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3191, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3192, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3193, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3194, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3195, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3196, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3197, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3198, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3199, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3200, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3201, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3202, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3203, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3204, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3205, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3206, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3207, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3208, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3209, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3210, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3211, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3212, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3213, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3214, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3215, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3216, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3217, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3218, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3219, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3220, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3221, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3222, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3223, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3224, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3225, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3226, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3227, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3228, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3229, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3230, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3231, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3232, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3233, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3234, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3235, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3236, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3237, + "componentType" : 5126, + "count" : 56, + "type" : "VEC4" + }, + { + "bufferView" : 3238, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 3239, + "componentType" : 5126, + "count" : 1, + "max" : [ + 0.041666666666666664 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 3240, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3241, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3242, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3243, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3244, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3245, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3246, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3247, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3248, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3249, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3250, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3251, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3252, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3253, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3254, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3255, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3256, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3257, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3258, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3259, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3260, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3261, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3262, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3263, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3264, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3265, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3266, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3267, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3268, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3269, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3270, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3271, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3272, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3273, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3274, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3275, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3276, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3277, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3278, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3279, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3280, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3281, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3282, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3283, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3284, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3285, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3286, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3287, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3288, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3289, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3290, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3291, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3292, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3293, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3294, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3295, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3296, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3297, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3298, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3299, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3300, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3301, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3302, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3303, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3304, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3305, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3306, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3307, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3308, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3309, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3310, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3311, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3312, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3313, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3314, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3315, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3316, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3317, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3318, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3319, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3320, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3321, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3322, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3323, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3324, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3325, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3326, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3327, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3328, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3329, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3330, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3331, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3332, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3333, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3334, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3335, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3336, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3337, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3338, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3339, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3340, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3341, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3342, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3343, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3344, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3345, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3346, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3347, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3348, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3349, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3350, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3351, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3352, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3353, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3354, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3355, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3356, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3357, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3358, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3359, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3360, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3361, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3362, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3363, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3364, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3365, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3366, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3367, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3368, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3369, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3370, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3371, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3372, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3373, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3374, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3375, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3376, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3377, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3378, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3379, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3380, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3381, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3382, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3383, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3384, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3385, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3386, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3387, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3388, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3389, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3390, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3391, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3392, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3393, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3394, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3395, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3396, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3397, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3398, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3399, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3400, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3401, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3402, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3403, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3404, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3405, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3406, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3407, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3408, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3409, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3410, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3411, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3412, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3413, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3414, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3415, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3416, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3417, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3418, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3419, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3420, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3421, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3422, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3423, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3424, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3425, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3426, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3427, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3428, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3429, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3430, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3431, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3432, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3433, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3434, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3435, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3436, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3437, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3438, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3439, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3440, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3441, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3442, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3443, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3444, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3445, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3446, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3447, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3448, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3449, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3450, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3451, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3452, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3453, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3454, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3455, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3456, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3457, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3458, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3459, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3460, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3461, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3462, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3463, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3464, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3465, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3466, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3467, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3468, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3469, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3470, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3471, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3472, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3473, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3474, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3475, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3476, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3477, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3478, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3479, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3480, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3481, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3482, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3483, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3484, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3485, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3486, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3487, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3488, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3489, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3490, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3491, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3492, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3493, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3494, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3495, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3496, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3497, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3498, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3499, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3500, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3501, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3502, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3503, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3504, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3505, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3506, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3507, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3508, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3509, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3510, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3511, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3512, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3513, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3514, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3515, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3516, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3517, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3518, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3519, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3520, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3521, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3522, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3523, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3524, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3525, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3526, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3527, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3528, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3529, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3530, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3531, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3532, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3533, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3534, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3535, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3536, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3537, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3538, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3539, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3540, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3541, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3542, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3543, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3544, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3545, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3546, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3547, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3548, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3549, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3550, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3551, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3552, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3553, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3554, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3555, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3556, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3557, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3558, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3559, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3560, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3561, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3562, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3563, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3564, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3565, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3566, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3567, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3568, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3569, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3570, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3571, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3572, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3573, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3574, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3575, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3576, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3577, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3578, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3579, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3580, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3581, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3582, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3583, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3584, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3585, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3586, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3587, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3588, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3589, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3590, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3591, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3592, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3593, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3594, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3595, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3596, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3597, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3598, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3599, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3600, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3601, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3602, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3603, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3604, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3605, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3606, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3607, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3608, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3609, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3610, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3611, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3612, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3613, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3614, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3615, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3616, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3617, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3618, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3619, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3620, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3621, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3622, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3623, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3624, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3625, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3626, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3627, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3628, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3629, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3630, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3631, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3632, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3633, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3634, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3635, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3636, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3637, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3638, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3639, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3640, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3641, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3642, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3643, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3644, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3645, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3646, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3647, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3648, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3649, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3650, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3651, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3652, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3653, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3654, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3655, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3656, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3657, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3658, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3659, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3660, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3661, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3662, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3663, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3664, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3665, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3666, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3667, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3668, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3669, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3670, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3671, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3672, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3673, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3674, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3675, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3676, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3677, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3678, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3679, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3680, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3681, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3682, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3683, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3684, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3685, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3686, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3687, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3688, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3689, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3690, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3691, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3692, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3693, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3694, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3695, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3696, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3697, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3698, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3699, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3700, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3701, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3702, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3703, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3704, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3705, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3706, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3707, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3708, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3709, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3710, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3711, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3712, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3713, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3714, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3715, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3716, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3717, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3718, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3719, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3720, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3721, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3722, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3723, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3724, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3725, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3726, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3727, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3728, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3729, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3730, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3731, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3732, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3733, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3734, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3735, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3736, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3737, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3738, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3739, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3740, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3741, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3742, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3743, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3744, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3745, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3746, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3747, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3748, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3749, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3750, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3751, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3752, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3753, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3754, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3755, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3756, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3757, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3758, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3759, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3760, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3761, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3762, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3763, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3764, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3765, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3766, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3767, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3768, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3769, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3770, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3771, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3772, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3773, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3774, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3775, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3776, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3777, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3778, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3779, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3780, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3781, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3782, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3783, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3784, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3785, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3786, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3787, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3788, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3789, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3790, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3791, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3792, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3793, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3794, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3795, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3796, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3797, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3798, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3799, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3800, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3801, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3802, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3803, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3804, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3805, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3806, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3807, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3808, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3809, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3810, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3811, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3812, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3813, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3814, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3815, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3816, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3817, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3818, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3819, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3820, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3821, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3822, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3823, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3824, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3825, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3826, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3827, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3828, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3829, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3830, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3831, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3832, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3833, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3834, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3835, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3836, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3837, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3838, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3839, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3840, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3841, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3842, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3843, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3844, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3845, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3846, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3847, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3848, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3849, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3850, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3851, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3852, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3853, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3854, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3855, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3856, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3857, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3858, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3859, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3860, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3861, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3862, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3863, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3864, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3865, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3866, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3867, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3868, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3869, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3870, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3871, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3872, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3873, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3874, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3875, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3876, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3877, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3878, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3879, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3880, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3881, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3882, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3883, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3884, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3885, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3886, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3887, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3888, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3889, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3890, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3891, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3892, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3893, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3894, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3895, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3896, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3897, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3898, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3899, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3900, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3901, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3902, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3903, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3904, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3905, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3906, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3907, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3908, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3909, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3910, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3911, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3912, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3913, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3914, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3915, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3916, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3917, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3918, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3919, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3920, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3921, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3922, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3923, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3924, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3925, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3926, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3927, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3928, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3929, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3930, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3931, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3932, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3933, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3934, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3935, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3936, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3937, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3938, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3939, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3940, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3941, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3942, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3943, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3944, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3945, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3946, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3947, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3948, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3949, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3950, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3951, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3952, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3953, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3954, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3955, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3956, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3957, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3958, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3959, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3960, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3961, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3962, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3963, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3964, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3965, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3966, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3967, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3968, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3969, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3970, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3971, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3972, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3973, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3974, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3975, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3976, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3977, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3978, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3979, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3980, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3981, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3982, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3983, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3984, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3985, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3986, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3987, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3988, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3989, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3990, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3991, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3992, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3993, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3994, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3995, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3996, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3997, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 3998, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 3999, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4000, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4001, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4002, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4003, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4004, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4005, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4006, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4007, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4008, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4009, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4010, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4011, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4012, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4013, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4014, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4015, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4016, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4017, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4018, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4019, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4020, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4021, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4022, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4023, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4024, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4025, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4026, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4027, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4028, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4029, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4030, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4031, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4032, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4033, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4034, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4035, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4036, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4037, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4038, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4039, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4040, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4041, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4042, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4043, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4044, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4045, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4046, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4047, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4048, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4049, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4050, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4051, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4052, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4053, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4054, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4055, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4056, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4057, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4058, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4059, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4060, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4061, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4062, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4063, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4064, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4065, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4066, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4067, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4068, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4069, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4070, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4071, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4072, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4073, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4074, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4075, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4076, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4077, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4078, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4079, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4080, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4081, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4082, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4083, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4084, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4085, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4086, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4087, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4088, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4089, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4090, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4091, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4092, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4093, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4094, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4095, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4096, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4097, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4098, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4099, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4100, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4101, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4102, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4103, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4104, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4105, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4106, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4107, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4108, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4109, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4110, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4111, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4112, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4113, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4114, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4115, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4116, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4117, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4118, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4119, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4120, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 4121, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 4122, + "componentType" : 5126, + "count" : 43, + "max" : [ + 1.7916666666666667 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 4123, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4124, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4125, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4126, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4127, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4128, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4129, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4130, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4131, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4132, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4133, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4134, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4135, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4136, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4137, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4138, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4139, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4140, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4141, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4142, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4143, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4144, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4145, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4146, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4147, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4148, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4149, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4150, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4151, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4152, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4153, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4154, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4155, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4156, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4157, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4158, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4159, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4160, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4161, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4162, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4163, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4164, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4165, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4166, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4167, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4168, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4169, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4170, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4171, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4172, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4173, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4174, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4175, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4176, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4177, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4178, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4179, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4180, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4181, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4182, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4183, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4184, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4185, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4186, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4187, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4188, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4189, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4190, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4191, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4192, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4193, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4194, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4195, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4196, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4197, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4198, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4199, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4200, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4201, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4202, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4203, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4204, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4205, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4206, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4207, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4208, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4209, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4210, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4211, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4212, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4213, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4214, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4215, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4216, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4217, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4218, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4219, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4220, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4221, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4222, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4223, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4224, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4225, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4226, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4227, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4228, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4229, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4230, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4231, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4232, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4233, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4234, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4235, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4236, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4237, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4238, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4239, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4240, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4241, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4242, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4243, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4244, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4245, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4246, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4247, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4248, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4249, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4250, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4251, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4252, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4253, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4254, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4255, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4256, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4257, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4258, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4259, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4260, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4261, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4262, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4263, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4264, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4265, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4266, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4267, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4268, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4269, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4270, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4271, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4272, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4273, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4274, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4275, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4276, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4277, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4278, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4279, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4280, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4281, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4282, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4283, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4284, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4285, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4286, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4287, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4288, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4289, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4290, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4291, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4292, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4293, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4294, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4295, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4296, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4297, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4298, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4299, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4300, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4301, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4302, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4303, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4304, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4305, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4306, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4307, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4308, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4309, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4310, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4311, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4312, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4313, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4314, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4315, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4316, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4317, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4318, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4319, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4320, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4321, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4322, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4323, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4324, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4325, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4326, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4327, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4328, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4329, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4330, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4331, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4332, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4333, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4334, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4335, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4336, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4337, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4338, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4339, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4340, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4341, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4342, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4343, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4344, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4345, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4346, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4347, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4348, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4349, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4350, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4351, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4352, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4353, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4354, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4355, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4356, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4357, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4358, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4359, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4360, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4361, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4362, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4363, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4364, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4365, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4366, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4367, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4368, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4369, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4370, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4371, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4372, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4373, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4374, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4375, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4376, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4377, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4378, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4379, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4380, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4381, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4382, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4383, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4384, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4385, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4386, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4387, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4388, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4389, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4390, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4391, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4392, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4393, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4394, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4395, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4396, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4397, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4398, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4399, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4400, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4401, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4402, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4403, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4404, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4405, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4406, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4407, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4408, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4409, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4410, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4411, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4412, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4413, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4414, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4415, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4416, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4417, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4418, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4419, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4420, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4421, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4422, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4423, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4424, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4425, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4426, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4427, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4428, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4429, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4430, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4431, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4432, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4433, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4434, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4435, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4436, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4437, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4438, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4439, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4440, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4441, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4442, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4443, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4444, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4445, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4446, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4447, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4448, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4449, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4450, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4451, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4452, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4453, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4454, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4455, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4456, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4457, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4458, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4459, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4460, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4461, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4462, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4463, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4464, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4465, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4466, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4467, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4468, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4469, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4470, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4471, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4472, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4473, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4474, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4475, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4476, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4477, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4478, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4479, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4480, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4481, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4482, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4483, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4484, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4485, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4486, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4487, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4488, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4489, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4490, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4491, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4492, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4493, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4494, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4495, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4496, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4497, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4498, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4499, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4500, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4501, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4502, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4503, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4504, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4505, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4506, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4507, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4508, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4509, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4510, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4511, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4512, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4513, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4514, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4515, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4516, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4517, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4518, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4519, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4520, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4521, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4522, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4523, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4524, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4525, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4526, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4527, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4528, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4529, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4530, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4531, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4532, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4533, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4534, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4535, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4536, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4537, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4538, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4539, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4540, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4541, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4542, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4543, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4544, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4545, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4546, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4547, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4548, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4549, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4550, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4551, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4552, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4553, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4554, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4555, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4556, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4557, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4558, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4559, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4560, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4561, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4562, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4563, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4564, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4565, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4566, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4567, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4568, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4569, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4570, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4571, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4572, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4573, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4574, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4575, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4576, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4577, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4578, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4579, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4580, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4581, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4582, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4583, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4584, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4585, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4586, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4587, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4588, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4589, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4590, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4591, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4592, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4593, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4594, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4595, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4596, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4597, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4598, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4599, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4600, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4601, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4602, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4603, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4604, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4605, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4606, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4607, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4608, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4609, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4610, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4611, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4612, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4613, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4614, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4615, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4616, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4617, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4618, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4619, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4620, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4621, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4622, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4623, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4624, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4625, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4626, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4627, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4628, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4629, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4630, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4631, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4632, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4633, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4634, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4635, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4636, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4637, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4638, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4639, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4640, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4641, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4642, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4643, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4644, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4645, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4646, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4647, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4648, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4649, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4650, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4651, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4652, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4653, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4654, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4655, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4656, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4657, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4658, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4659, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4660, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4661, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4662, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4663, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4664, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4665, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4666, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4667, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4668, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4669, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4670, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4671, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4672, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4673, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4674, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4675, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4676, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4677, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4678, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4679, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4680, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4681, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4682, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4683, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4684, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4685, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4686, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4687, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4688, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4689, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4690, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4691, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4692, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4693, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4694, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4695, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4696, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4697, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4698, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4699, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4700, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4701, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4702, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4703, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4704, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4705, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4706, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4707, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4708, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4709, + "componentType" : 5126, + "count" : 43, + "type" : "VEC4" + }, + { + "bufferView" : 4710, + "componentType" : 5126, + "count" : 43, + "type" : "VEC3" + }, + { + "bufferView" : 4711, + "componentType" : 5126, + "count" : 87, + "max" : [ + 3.625 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 4712, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4713, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4714, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4715, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4716, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4717, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4718, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4719, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4720, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4721, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4722, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4723, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4724, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4725, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4726, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4727, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4728, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4729, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4730, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4731, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4732, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4733, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4734, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4735, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4736, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4737, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4738, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4739, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4740, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4741, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4742, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4743, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4744, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4745, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4746, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4747, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4748, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4749, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4750, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4751, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4752, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4753, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4754, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4755, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4756, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4757, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4758, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4759, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4760, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4761, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4762, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4763, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4764, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4765, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4766, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4767, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4768, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4769, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4770, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4771, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4772, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4773, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4774, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4775, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4776, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4777, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4778, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4779, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4780, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4781, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4782, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4783, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4784, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4785, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4786, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4787, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4788, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4789, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4790, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4791, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4792, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4793, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4794, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4795, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4796, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4797, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4798, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4799, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4800, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4801, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4802, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4803, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4804, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4805, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4806, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4807, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4808, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4809, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4810, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4811, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4812, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4813, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4814, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4815, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4816, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4817, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4818, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4819, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4820, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4821, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4822, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4823, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4824, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4825, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4826, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4827, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4828, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4829, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4830, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4831, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4832, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4833, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4834, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4835, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4836, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4837, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4838, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4839, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4840, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4841, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4842, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4843, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4844, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4845, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4846, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4847, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4848, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4849, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4850, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4851, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4852, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4853, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4854, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4855, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4856, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4857, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4858, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4859, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4860, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4861, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4862, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4863, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4864, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4865, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4866, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4867, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4868, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4869, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4870, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4871, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4872, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4873, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4874, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4875, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4876, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4877, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4878, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4879, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4880, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4881, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4882, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4883, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4884, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4885, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4886, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4887, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4888, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4889, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4890, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4891, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4892, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4893, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4894, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4895, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4896, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4897, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4898, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4899, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4900, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4901, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4902, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4903, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4904, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4905, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4906, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4907, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4908, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4909, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4910, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4911, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4912, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4913, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4914, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4915, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4916, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4917, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4918, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4919, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4920, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4921, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4922, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4923, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4924, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4925, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4926, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4927, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4928, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4929, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4930, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4931, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4932, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4933, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4934, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4935, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4936, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4937, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4938, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4939, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4940, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4941, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4942, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4943, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4944, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4945, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4946, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4947, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4948, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4949, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4950, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4951, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4952, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4953, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4954, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4955, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4956, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4957, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4958, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4959, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4960, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4961, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4962, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4963, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4964, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4965, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4966, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4967, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4968, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4969, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4970, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4971, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4972, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4973, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4974, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4975, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4976, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4977, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4978, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4979, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4980, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4981, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4982, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4983, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4984, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4985, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4986, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4987, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4988, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4989, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4990, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4991, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4992, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4993, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4994, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4995, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4996, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4997, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 4998, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 4999, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 5000, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 5001, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 5002, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 5003, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 5004, + "componentType" : 5126, + "count" : 87, + "type" : "VEC4" + }, + { + "bufferView" : 5005, + "componentType" : 5126, + "count" : 87, + "type" : "VEC3" + }, + { + "bufferView" : 5006, + "componentType" : 5126, + "count" : 34, + "max" : [ + 1.4166666666666667 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 5007, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5008, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5009, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5010, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5011, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5012, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5013, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5014, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5015, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5016, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5017, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5018, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5019, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5020, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5021, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5022, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5023, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5024, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5025, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5026, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5027, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5028, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5029, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5030, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5031, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5032, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5033, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5034, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5035, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5036, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5037, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5038, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5039, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5040, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5041, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5042, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5043, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5044, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5045, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5046, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5047, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5048, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5049, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5050, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5051, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5052, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5053, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5054, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5055, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5056, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5057, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5058, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5059, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5060, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5061, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5062, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5063, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5064, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5065, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5066, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5067, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5068, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5069, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5070, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5071, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5072, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5073, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5074, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5075, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5076, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5077, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5078, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5079, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5080, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5081, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5082, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5083, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5084, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5085, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5086, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5087, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5088, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5089, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5090, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5091, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5092, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5093, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5094, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5095, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5096, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5097, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5098, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5099, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5100, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5101, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5102, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5103, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5104, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5105, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5106, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5107, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5108, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5109, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5110, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5111, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5112, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5113, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5114, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5115, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5116, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5117, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5118, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5119, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5120, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5121, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5122, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5123, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5124, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5125, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5126, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5127, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5128, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5129, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5130, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5131, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5132, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5133, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5134, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5135, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5136, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5137, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5138, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5139, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5140, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5141, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5142, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5143, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5144, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5145, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5146, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5147, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5148, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5149, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5150, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5151, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5152, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5153, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5154, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5155, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5156, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5157, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5158, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5159, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5160, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5161, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5162, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5163, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5164, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5165, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5166, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5167, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5168, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5169, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5170, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5171, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5172, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5173, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5174, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5175, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5176, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5177, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5178, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5179, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5180, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5181, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5182, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5183, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5184, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5185, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5186, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5187, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5188, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5189, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5190, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5191, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5192, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5193, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5194, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5195, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5196, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5197, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5198, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5199, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5200, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5201, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5202, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5203, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5204, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5205, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5206, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5207, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5208, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5209, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5210, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5211, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5212, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5213, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5214, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5215, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5216, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5217, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5218, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5219, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5220, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5221, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5222, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5223, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5224, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5225, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5226, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5227, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5228, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5229, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5230, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5231, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5232, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5233, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5234, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5235, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5236, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5237, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5238, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5239, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5240, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5241, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5242, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5243, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5244, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5245, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5246, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5247, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5248, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5249, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5250, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5251, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5252, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5253, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5254, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5255, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5256, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5257, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5258, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5259, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5260, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5261, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5262, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5263, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5264, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5265, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5266, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5267, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5268, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5269, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5270, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5271, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5272, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5273, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5274, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5275, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5276, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5277, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5278, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5279, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5280, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5281, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5282, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5283, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5284, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5285, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5286, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5287, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5288, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5289, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5290, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5291, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5292, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5293, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5294, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5295, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5296, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5297, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5298, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5299, + "componentType" : 5126, + "count" : 34, + "type" : "VEC4" + }, + { + "bufferView" : 5300, + "componentType" : 5126, + "count" : 34, + "type" : "VEC3" + }, + { + "bufferView" : 5301, + "componentType" : 5126, + "count" : 10, + "max" : [ + 0.4166666666666667 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 5302, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5303, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5304, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5305, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5306, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5307, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5308, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5309, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5310, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5311, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5312, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5313, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5314, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5315, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5316, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5317, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5318, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5319, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5320, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5321, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5322, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5323, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5324, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5325, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5326, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5327, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5328, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5329, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5330, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5331, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5332, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5333, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5334, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5335, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5336, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5337, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5338, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5339, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5340, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5341, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5342, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5343, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5344, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5345, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5346, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5347, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5348, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5349, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5350, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5351, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5352, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5353, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5354, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5355, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5356, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5357, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5358, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5359, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5360, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5361, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5362, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5363, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5364, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5365, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5366, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5367, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5368, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5369, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5370, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5371, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5372, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5373, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5374, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5375, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5376, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5377, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5378, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5379, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5380, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5381, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5382, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5383, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5384, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5385, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5386, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5387, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5388, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5389, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5390, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5391, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5392, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5393, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5394, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5395, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5396, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5397, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5398, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5399, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5400, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5401, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5402, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5403, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5404, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5405, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5406, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5407, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5408, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5409, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5410, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5411, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5412, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5413, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5414, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5415, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5416, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5417, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5418, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5419, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5420, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5421, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5422, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5423, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5424, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5425, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5426, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5427, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5428, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5429, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5430, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5431, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5432, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5433, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5434, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5435, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5436, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5437, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5438, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5439, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5440, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5441, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5442, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5443, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5444, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5445, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5446, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5447, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5448, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5449, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5450, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5451, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5452, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5453, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5454, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5455, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5456, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5457, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5458, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5459, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5460, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5461, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5462, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5463, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5464, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5465, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5466, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5467, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5468, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5469, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5470, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5471, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5472, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5473, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5474, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5475, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5476, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5477, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5478, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5479, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5480, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5481, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5482, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5483, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5484, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5485, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5486, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5487, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5488, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5489, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5490, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5491, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5492, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5493, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5494, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5495, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5496, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5497, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5498, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5499, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5500, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5501, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5502, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5503, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5504, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5505, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5506, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5507, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5508, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5509, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5510, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5511, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5512, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5513, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5514, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5515, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5516, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5517, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5518, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5519, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5520, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5521, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5522, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5523, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5524, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5525, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5526, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5527, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5528, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5529, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5530, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5531, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5532, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5533, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5534, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5535, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5536, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5537, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5538, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5539, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5540, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5541, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5542, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5543, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5544, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5545, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5546, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5547, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5548, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5549, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5550, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5551, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5552, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5553, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5554, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5555, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5556, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5557, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5558, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5559, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5560, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5561, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5562, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5563, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5564, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5565, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5566, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5567, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5568, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5569, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5570, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5571, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5572, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5573, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5574, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5575, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5576, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5577, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5578, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5579, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5580, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5581, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5582, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5583, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5584, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5585, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5586, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5587, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5588, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5589, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5590, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5591, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5592, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5593, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5594, + "componentType" : 5126, + "count" : 10, + "type" : "VEC4" + }, + { + "bufferView" : 5595, + "componentType" : 5126, + "count" : 10, + "type" : "VEC3" + }, + { + "bufferView" : 5596, + "componentType" : 5126, + "count" : 2, + "max" : [ + 0.08333333333333333 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 5597, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5598, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5599, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5600, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5601, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5602, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5603, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5604, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5605, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5606, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5607, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5608, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5609, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5610, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5611, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5612, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5613, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5614, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5615, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5616, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5617, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5618, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5619, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5620, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5621, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5622, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5623, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5624, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5625, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5626, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5627, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5628, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5629, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5630, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5631, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5632, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5633, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5634, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5635, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5636, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5637, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5638, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5639, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5640, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5641, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5642, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5643, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5644, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5645, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5646, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5647, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5648, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5649, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5650, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5651, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5652, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5653, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5654, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5655, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5656, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5657, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5658, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5659, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5660, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5661, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5662, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5663, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5664, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5665, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5666, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5667, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5668, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5669, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5670, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5671, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5672, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5673, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5674, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5675, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5676, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5677, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5678, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5679, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5680, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5681, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5682, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5683, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5684, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5685, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5686, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5687, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5688, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5689, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5690, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5691, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5692, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5693, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5694, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5695, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5696, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5697, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5698, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5699, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5700, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5701, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5702, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5703, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5704, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5705, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5706, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5707, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5708, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5709, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5710, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5711, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5712, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5713, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5714, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5715, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5716, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5717, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5718, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5719, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5720, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5721, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5722, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5723, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5724, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5725, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5726, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5727, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5728, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5729, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5730, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5731, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5732, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5733, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5734, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5735, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5736, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5737, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5738, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5739, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5740, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5741, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5742, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5743, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5744, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5745, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5746, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5747, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5748, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5749, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5750, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5751, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5752, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5753, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5754, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5755, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5756, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5757, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5758, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5759, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5760, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5761, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5762, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5763, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5764, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5765, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5766, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5767, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5768, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5769, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5770, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5771, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5772, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5773, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5774, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5775, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5776, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5777, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5778, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5779, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5780, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5781, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5782, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5783, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5784, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5785, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5786, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5787, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5788, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5789, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5790, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5791, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5792, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5793, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5794, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5795, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5796, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5797, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5798, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5799, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5800, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5801, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5802, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5803, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5804, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5805, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5806, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5807, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5808, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5809, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5810, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5811, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5812, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5813, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5814, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5815, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5816, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5817, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5818, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5819, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5820, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5821, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5822, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5823, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5824, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5825, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5826, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5827, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5828, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5829, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5830, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5831, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5832, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5833, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5834, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5835, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5836, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5837, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5838, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5839, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5840, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5841, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5842, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5843, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5844, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5845, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5846, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5847, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5848, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5849, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5850, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5851, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5852, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5853, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5854, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5855, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5856, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5857, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5858, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5859, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5860, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5861, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5862, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5863, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5864, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5865, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5866, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5867, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5868, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5869, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5870, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5871, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5872, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5873, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5874, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5875, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5876, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5877, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5878, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5879, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5880, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5881, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5882, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5883, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5884, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5885, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5886, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5887, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5888, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5889, + "componentType" : 5126, + "count" : 2, + "type" : "VEC4" + }, + { + "bufferView" : 5890, + "componentType" : 5126, + "count" : 2, + "type" : "VEC3" + }, + { + "bufferView" : 5891, + "componentType" : 5126, + "count" : 70, + "max" : [ + 2.9166666666666665 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 5892, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5893, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5894, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5895, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5896, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5897, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5898, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5899, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5900, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5901, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5902, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5903, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5904, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5905, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5906, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5907, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5908, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5909, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5910, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5911, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5912, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5913, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5914, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5915, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5916, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5917, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5918, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5919, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5920, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5921, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5922, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5923, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5924, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5925, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5926, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5927, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5928, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5929, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5930, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5931, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5932, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5933, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5934, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5935, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5936, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5937, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5938, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5939, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5940, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5941, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5942, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5943, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5944, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5945, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5946, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5947, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5948, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5949, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5950, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5951, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5952, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5953, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5954, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5955, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5956, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5957, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5958, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5959, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5960, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5961, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5962, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5963, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5964, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5965, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5966, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5967, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5968, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5969, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5970, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5971, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5972, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5973, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5974, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5975, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5976, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5977, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5978, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5979, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5980, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5981, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5982, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5983, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5984, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5985, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5986, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5987, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5988, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5989, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5990, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5991, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5992, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5993, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5994, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5995, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5996, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5997, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 5998, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 5999, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6000, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6001, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6002, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6003, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6004, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6005, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6006, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6007, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6008, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6009, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6010, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6011, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6012, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6013, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6014, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6015, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6016, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6017, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6018, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6019, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6020, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6021, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6022, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6023, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6024, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6025, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6026, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6027, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6028, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6029, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6030, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6031, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6032, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6033, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6034, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6035, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6036, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6037, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6038, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6039, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6040, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6041, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6042, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6043, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6044, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6045, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6046, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6047, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6048, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6049, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6050, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6051, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6052, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6053, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6054, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6055, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6056, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6057, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6058, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6059, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6060, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6061, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6062, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6063, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6064, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6065, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6066, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6067, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6068, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6069, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6070, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6071, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6072, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6073, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6074, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6075, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6076, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6077, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6078, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6079, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6080, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6081, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6082, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6083, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6084, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6085, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6086, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6087, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6088, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6089, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6090, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6091, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6092, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6093, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6094, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6095, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6096, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6097, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6098, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6099, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6100, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6101, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6102, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6103, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6104, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6105, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6106, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6107, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6108, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6109, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6110, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6111, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6112, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6113, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6114, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6115, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6116, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6117, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6118, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6119, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6120, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6121, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6122, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6123, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6124, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6125, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6126, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6127, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6128, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6129, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6130, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6131, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6132, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6133, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6134, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6135, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6136, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6137, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6138, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6139, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6140, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6141, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6142, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6143, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6144, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6145, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6146, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6147, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6148, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6149, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6150, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6151, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6152, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6153, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6154, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6155, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6156, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6157, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6158, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6159, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6160, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6161, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6162, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6163, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6164, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6165, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6166, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6167, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6168, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6169, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6170, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6171, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6172, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6173, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6174, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6175, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6176, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6177, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6178, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6179, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6180, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6181, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6182, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6183, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6184, + "componentType" : 5126, + "count" : 70, + "type" : "VEC4" + }, + { + "bufferView" : 6185, + "componentType" : 5126, + "count" : 70, + "type" : "VEC3" + }, + { + "bufferView" : 6186, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6187, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6188, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6189, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6190, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6191, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6192, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6193, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6194, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6195, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6196, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6197, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6198, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6199, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6200, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6201, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6202, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6203, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6204, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6205, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6206, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6207, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6208, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6209, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6210, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6211, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6212, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6213, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6214, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6215, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6216, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6217, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6218, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6219, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6220, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6221, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6222, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6223, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6224, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6225, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6226, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6227, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6228, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6229, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6230, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6231, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6232, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6233, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6234, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6235, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6236, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6237, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6238, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6239, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6240, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6241, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6242, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6243, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6244, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6245, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6246, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6247, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6248, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6249, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6250, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6251, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6252, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6253, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6254, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6255, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6256, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6257, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6258, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6259, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6260, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6261, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6262, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6263, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6264, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6265, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6266, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6267, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6268, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6269, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6270, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6271, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6272, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6273, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6274, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6275, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6276, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6277, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6278, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6279, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6280, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6281, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6282, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6283, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6284, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6285, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6286, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6287, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6288, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6289, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6290, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6291, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6292, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6293, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6294, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6295, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6296, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6297, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6298, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6299, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6300, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6301, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6302, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6303, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6304, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6305, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6306, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6307, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6308, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6309, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6310, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6311, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6312, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6313, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6314, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6315, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6316, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6317, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6318, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6319, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6320, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6321, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6322, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6323, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6324, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6325, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6326, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6327, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6328, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6329, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6330, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6331, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6332, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6333, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6334, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6335, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6336, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6337, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6338, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6339, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6340, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6341, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6342, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6343, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6344, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6345, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6346, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6347, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6348, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6349, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6350, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6351, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6352, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6353, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6354, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6355, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6356, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6357, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6358, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6359, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6360, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6361, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6362, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6363, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6364, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6365, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6366, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6367, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6368, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6369, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6370, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6371, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6372, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6373, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6374, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6375, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6376, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6377, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6378, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6379, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6380, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6381, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6382, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6383, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6384, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6385, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6386, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6387, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6388, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6389, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6390, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6391, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6392, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6393, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6394, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6395, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6396, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6397, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6398, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6399, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6400, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6401, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6402, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6403, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6404, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6405, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6406, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6407, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6408, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6409, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6410, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6411, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6412, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6413, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6414, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6415, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6416, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6417, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6418, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6419, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6420, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6421, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6422, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6423, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6424, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6425, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6426, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6427, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6428, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6429, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6430, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6431, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6432, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6433, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6434, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6435, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6436, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6437, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6438, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6439, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6440, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6441, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6442, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6443, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6444, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6445, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6446, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6447, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6448, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6449, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6450, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6451, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6452, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6453, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6454, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6455, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6456, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6457, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6458, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6459, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6460, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6461, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6462, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6463, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6464, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6465, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6466, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6467, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6468, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6469, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6470, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6471, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6472, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6473, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6474, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6475, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6476, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6477, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6478, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6479, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6480, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6481, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6482, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6483, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6484, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6485, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6486, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6487, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6488, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6489, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6490, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6491, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6492, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6493, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6494, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6495, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6496, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6497, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6498, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6499, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6500, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6501, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6502, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6503, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6504, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6505, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6506, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6507, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6508, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6509, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6510, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6511, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6512, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6513, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6514, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6515, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6516, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6517, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6518, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6519, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6520, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6521, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6522, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6523, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6524, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6525, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6526, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6527, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6528, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6529, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6530, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6531, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6532, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6533, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6534, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6535, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6536, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6537, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6538, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6539, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6540, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6541, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6542, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6543, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6544, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6545, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6546, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6547, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6548, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6549, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6550, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6551, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6552, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6553, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6554, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6555, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6556, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6557, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6558, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6559, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6560, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6561, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6562, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6563, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6564, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6565, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6566, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6567, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6568, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6569, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6570, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6571, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6572, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6573, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6574, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6575, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6576, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6577, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6578, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6579, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6580, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6581, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6582, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6583, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6584, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6585, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6586, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6587, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6588, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6589, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6590, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6591, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6592, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6593, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6594, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6595, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6596, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6597, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6598, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6599, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6600, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6601, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6602, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6603, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6604, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6605, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6606, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6607, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6608, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6609, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6610, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6611, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6612, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6613, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6614, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6615, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6616, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6617, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6618, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6619, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6620, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6621, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6622, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6623, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6624, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6625, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6626, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6627, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6628, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6629, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6630, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6631, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6632, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6633, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6634, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6635, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6636, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6637, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6638, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6639, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6640, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6641, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6642, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6643, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6644, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6645, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6646, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6647, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6648, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6649, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6650, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6651, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6652, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6653, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6654, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6655, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6656, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6657, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6658, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6659, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6660, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6661, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6662, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6663, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6664, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6665, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6666, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6667, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6668, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6669, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6670, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6671, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6672, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6673, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6674, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6675, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6676, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6677, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6678, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6679, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6680, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6681, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6682, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6683, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6684, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6685, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6686, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6687, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6688, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6689, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6690, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6691, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6692, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6693, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6694, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6695, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6696, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6697, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6698, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6699, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6700, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6701, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6702, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6703, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6704, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6705, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6706, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6707, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6708, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6709, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6710, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6711, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6712, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6713, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6714, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6715, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6716, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6717, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6718, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6719, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6720, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6721, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6722, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6723, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6724, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6725, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6726, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6727, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6728, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6729, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6730, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6731, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6732, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6733, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6734, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6735, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6736, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6737, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6738, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6739, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6740, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6741, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6742, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6743, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6744, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6745, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6746, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6747, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6748, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6749, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6750, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6751, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6752, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6753, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6754, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6755, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6756, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6757, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6758, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6759, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6760, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6761, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6762, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6763, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6764, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6765, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6766, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6767, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6768, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6769, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6770, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6771, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6772, + "componentType" : 5126, + "count" : 1, + "type" : "VEC4" + }, + { + "bufferView" : 6773, + "componentType" : 5126, + "count" : 1, + "type" : "VEC3" + }, + { + "bufferView" : 6774, + "componentType" : 5126, + "count" : 90, + "max" : [ + 3.75 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 6775, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6776, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6777, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6778, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6779, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6780, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6781, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6782, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6783, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6784, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6785, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6786, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6787, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6788, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6789, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6790, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6791, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6792, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6793, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6794, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6795, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6796, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6797, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6798, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6799, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6800, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6801, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6802, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6803, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6804, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6805, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6806, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6807, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6808, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6809, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6810, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6811, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6812, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6813, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6814, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6815, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6816, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6817, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6818, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6819, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6820, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6821, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6822, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6823, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6824, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6825, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6826, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6827, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6828, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6829, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6830, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6831, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6832, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6833, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6834, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6835, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6836, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6837, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6838, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6839, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6840, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6841, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6842, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6843, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6844, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6845, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6846, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6847, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6848, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6849, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6850, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6851, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6852, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6853, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6854, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6855, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6856, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6857, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6858, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6859, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6860, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6861, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6862, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6863, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6864, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6865, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6866, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6867, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6868, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6869, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6870, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6871, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6872, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6873, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6874, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6875, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6876, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6877, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6878, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6879, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6880, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6881, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6882, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6883, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6884, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6885, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6886, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6887, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6888, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6889, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6890, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6891, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6892, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6893, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6894, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6895, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6896, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6897, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6898, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6899, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6900, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6901, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6902, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6903, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6904, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6905, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6906, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6907, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6908, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6909, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6910, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6911, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6912, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6913, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6914, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6915, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6916, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6917, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6918, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6919, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6920, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6921, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6922, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6923, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6924, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6925, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6926, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6927, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6928, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6929, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6930, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6931, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6932, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6933, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6934, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6935, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6936, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6937, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6938, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6939, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6940, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6941, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6942, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6943, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6944, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6945, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6946, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6947, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6948, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6949, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6950, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6951, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6952, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6953, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6954, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6955, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6956, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6957, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6958, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6959, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6960, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6961, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6962, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6963, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6964, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6965, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6966, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6967, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6968, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6969, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6970, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6971, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6972, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6973, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6974, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6975, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6976, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6977, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6978, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6979, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6980, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6981, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6982, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6983, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6984, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6985, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6986, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6987, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6988, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6989, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6990, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6991, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6992, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6993, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6994, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6995, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6996, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6997, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 6998, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 6999, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7000, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7001, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7002, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7003, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7004, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7005, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7006, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7007, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7008, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7009, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7010, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7011, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7012, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7013, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7014, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7015, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7016, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7017, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7018, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7019, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7020, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7021, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7022, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7023, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7024, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7025, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7026, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7027, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7028, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7029, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7030, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7031, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7032, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7033, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7034, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7035, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7036, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7037, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7038, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7039, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7040, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7041, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7042, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7043, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7044, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7045, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7046, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7047, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7048, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7049, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7050, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7051, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7052, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7053, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7054, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7055, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7056, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7057, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7058, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7059, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7060, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7061, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7062, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7063, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7064, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7065, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7066, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7067, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 7068, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 7069, + "componentType" : 5126, + "count" : 20, + "max" : [ + 0.8333333333333334 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 7070, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7071, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7072, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7073, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7074, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7075, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7076, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7077, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7078, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7079, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7080, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7081, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7082, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7083, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7084, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7085, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7086, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7087, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7088, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7089, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7090, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7091, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7092, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7093, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7094, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7095, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7096, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7097, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7098, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7099, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7100, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7101, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7102, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7103, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7104, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7105, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7106, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7107, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7108, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7109, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7110, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7111, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7112, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7113, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7114, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7115, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7116, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7117, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7118, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7119, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7120, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7121, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7122, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7123, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7124, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7125, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7126, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7127, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7128, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7129, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7130, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7131, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7132, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7133, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7134, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7135, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7136, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7137, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7138, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7139, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7140, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7141, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7142, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7143, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7144, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7145, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7146, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7147, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7148, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7149, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7150, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7151, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7152, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7153, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7154, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7155, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7156, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7157, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7158, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7159, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7160, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7161, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7162, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7163, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7164, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7165, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7166, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7167, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7168, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7169, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7170, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7171, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7172, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7173, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7174, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7175, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7176, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7177, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7178, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7179, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7180, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7181, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7182, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7183, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7184, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7185, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7186, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7187, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7188, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7189, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7190, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7191, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7192, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7193, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7194, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7195, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7196, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7197, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7198, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7199, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7200, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7201, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7202, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7203, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7204, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7205, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7206, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7207, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7208, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7209, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7210, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7211, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7212, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7213, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7214, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7215, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7216, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7217, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7218, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7219, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7220, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7221, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7222, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7223, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7224, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7225, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7226, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7227, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7228, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7229, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7230, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7231, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7232, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7233, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7234, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7235, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7236, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7237, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7238, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7239, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7240, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7241, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7242, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7243, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7244, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7245, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7246, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7247, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7248, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7249, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7250, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7251, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7252, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7253, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7254, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7255, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7256, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7257, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7258, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7259, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7260, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7261, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7262, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7263, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7264, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7265, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7266, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7267, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7268, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7269, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7270, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7271, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7272, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7273, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7274, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7275, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7276, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7277, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7278, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7279, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7280, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7281, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7282, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7283, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7284, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7285, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7286, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7287, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7288, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7289, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7290, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7291, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7292, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7293, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7294, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7295, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7296, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7297, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7298, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7299, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7300, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7301, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7302, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7303, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7304, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7305, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7306, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7307, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7308, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7309, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7310, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7311, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7312, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7313, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7314, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7315, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7316, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7317, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7318, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7319, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7320, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7321, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7322, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7323, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7324, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7325, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7326, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7327, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7328, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7329, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7330, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7331, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7332, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7333, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7334, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7335, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7336, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7337, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7338, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7339, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7340, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7341, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7342, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7343, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7344, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7345, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7346, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7347, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7348, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7349, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7350, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7351, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7352, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7353, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7354, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7355, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7356, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7357, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7358, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7359, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7360, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7361, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7362, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7363, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7364, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7365, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7366, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7367, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7368, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7369, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7370, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7371, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7372, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7373, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7374, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7375, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7376, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7377, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7378, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7379, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7380, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7381, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7382, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7383, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7384, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7385, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7386, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7387, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7388, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7389, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7390, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7391, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7392, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7393, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7394, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7395, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7396, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7397, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7398, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7399, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7400, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7401, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7402, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7403, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7404, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7405, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7406, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7407, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7408, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7409, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7410, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7411, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7412, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7413, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7414, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7415, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7416, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7417, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7418, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7419, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7420, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7421, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7422, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7423, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7424, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7425, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7426, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7427, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7428, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7429, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7430, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7431, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7432, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7433, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7434, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7435, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7436, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7437, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7438, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7439, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7440, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7441, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7442, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7443, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7444, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7445, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7446, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7447, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7448, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7449, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7450, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7451, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7452, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7453, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7454, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7455, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7456, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7457, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7458, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7459, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7460, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7461, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7462, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7463, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7464, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7465, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7466, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7467, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7468, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7469, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7470, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7471, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7472, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7473, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7474, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7475, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7476, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7477, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7478, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7479, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7480, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7481, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7482, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7483, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7484, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7485, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7486, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7487, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7488, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7489, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7490, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7491, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7492, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7493, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7494, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7495, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7496, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7497, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7498, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7499, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7500, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7501, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7502, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7503, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7504, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7505, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7506, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7507, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7508, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7509, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7510, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7511, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7512, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7513, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7514, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7515, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7516, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7517, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7518, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7519, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7520, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7521, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7522, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7523, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7524, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7525, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7526, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7527, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7528, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7529, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7530, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7531, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7532, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7533, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7534, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7535, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7536, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7537, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7538, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7539, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7540, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7541, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7542, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7543, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7544, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7545, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7546, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7547, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7548, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7549, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7550, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7551, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7552, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7553, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7554, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7555, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7556, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7557, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7558, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7559, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7560, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7561, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7562, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7563, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7564, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7565, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7566, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7567, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7568, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7569, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7570, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7571, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7572, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7573, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7574, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7575, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7576, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7577, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7578, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7579, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7580, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7581, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7582, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7583, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7584, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7585, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7586, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7587, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7588, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7589, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7590, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7591, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7592, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7593, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7594, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7595, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7596, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7597, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7598, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7599, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7600, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7601, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7602, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7603, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7604, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7605, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7606, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7607, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7608, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7609, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7610, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7611, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7612, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7613, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7614, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7615, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7616, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7617, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7618, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7619, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7620, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7621, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7622, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7623, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7624, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7625, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7626, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7627, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7628, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7629, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7630, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7631, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7632, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7633, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7634, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7635, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7636, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7637, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7638, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7639, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7640, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7641, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7642, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7643, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7644, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7645, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7646, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7647, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7648, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7649, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7650, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7651, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7652, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7653, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7654, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7655, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7656, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 7657, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 7658, + "componentType" : 5126, + "count" : 251, + "max" : [ + 10.458333333333334 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 7659, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7660, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7661, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7662, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7663, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7664, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7665, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7666, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7667, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7668, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7669, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7670, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7671, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7672, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7673, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7674, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7675, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7676, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7677, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7678, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7679, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7680, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7681, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7682, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7683, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7684, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7685, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7686, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7687, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7688, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7689, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7690, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7691, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7692, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7693, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7694, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7695, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7696, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7697, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7698, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7699, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7700, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7701, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7702, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7703, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7704, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7705, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7706, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7707, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7708, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7709, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7710, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7711, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7712, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7713, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7714, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7715, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7716, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7717, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7718, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7719, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7720, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7721, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7722, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7723, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7724, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7725, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7726, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7727, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7728, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7729, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7730, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7731, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7732, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7733, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7734, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7735, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7736, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7737, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7738, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7739, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7740, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7741, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7742, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7743, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7744, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7745, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7746, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7747, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7748, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7749, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7750, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7751, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7752, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7753, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7754, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7755, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7756, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7757, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7758, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7759, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7760, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7761, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7762, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7763, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7764, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7765, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7766, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7767, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7768, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7769, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7770, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7771, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7772, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7773, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7774, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7775, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7776, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7777, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7778, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7779, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7780, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7781, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7782, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7783, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7784, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7785, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7786, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7787, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7788, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7789, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7790, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7791, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7792, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7793, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7794, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7795, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7796, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7797, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7798, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7799, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7800, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7801, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7802, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7803, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7804, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7805, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7806, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7807, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7808, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7809, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7810, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7811, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7812, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7813, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7814, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7815, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7816, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7817, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7818, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7819, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7820, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7821, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7822, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7823, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7824, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7825, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7826, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7827, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7828, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7829, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7830, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7831, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7832, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7833, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7834, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7835, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7836, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7837, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7838, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7839, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7840, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7841, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7842, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7843, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7844, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7845, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7846, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7847, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7848, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7849, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7850, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7851, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7852, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7853, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7854, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7855, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7856, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7857, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7858, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7859, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7860, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7861, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7862, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7863, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7864, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7865, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7866, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7867, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7868, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7869, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7870, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7871, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7872, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7873, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7874, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7875, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7876, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7877, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7878, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7879, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7880, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7881, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7882, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7883, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7884, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7885, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7886, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7887, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7888, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7889, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7890, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7891, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7892, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7893, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7894, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7895, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7896, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7897, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7898, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7899, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7900, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7901, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7902, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7903, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7904, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7905, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7906, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7907, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7908, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7909, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7910, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7911, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7912, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7913, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7914, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7915, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7916, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7917, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7918, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7919, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7920, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7921, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7922, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7923, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7924, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7925, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7926, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7927, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7928, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7929, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7930, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7931, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7932, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7933, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7934, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7935, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7936, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7937, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7938, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7939, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7940, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7941, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7942, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7943, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7944, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7945, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7946, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7947, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7948, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7949, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7950, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7951, + "componentType" : 5126, + "count" : 251, + "type" : "VEC4" + }, + { + "bufferView" : 7952, + "componentType" : 5126, + "count" : 251, + "type" : "VEC3" + }, + { + "bufferView" : 7953, + "componentType" : 5126, + "count" : 24, + "max" : [ + 1 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 7954, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7955, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7956, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7957, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7958, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7959, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7960, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7961, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7962, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7963, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7964, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7965, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7966, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7967, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7968, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7969, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7970, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7971, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7972, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7973, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7974, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7975, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7976, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7977, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7978, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7979, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7980, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7981, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7982, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7983, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7984, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7985, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7986, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7987, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7988, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7989, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7990, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7991, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7992, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7993, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7994, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7995, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7996, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7997, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 7998, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 7999, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8000, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8001, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8002, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8003, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8004, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8005, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8006, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8007, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8008, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8009, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8010, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8011, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8012, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8013, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8014, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8015, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8016, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8017, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8018, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8019, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8020, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8021, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8022, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8023, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8024, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8025, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8026, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8027, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8028, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8029, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8030, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8031, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8032, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8033, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8034, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8035, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8036, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8037, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8038, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8039, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8040, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8041, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8042, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8043, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8044, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8045, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8046, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8047, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8048, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8049, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8050, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8051, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8052, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8053, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8054, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8055, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8056, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8057, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8058, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8059, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8060, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8061, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8062, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8063, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8064, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8065, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8066, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8067, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8068, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8069, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8070, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8071, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8072, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8073, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8074, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8075, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8076, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8077, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8078, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8079, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8080, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8081, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8082, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8083, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8084, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8085, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8086, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8087, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8088, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8089, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8090, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8091, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8092, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8093, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8094, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8095, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8096, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8097, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8098, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8099, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8100, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8101, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8102, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8103, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8104, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8105, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8106, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8107, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8108, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8109, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8110, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8111, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8112, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8113, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8114, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8115, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8116, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8117, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8118, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8119, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8120, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8121, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8122, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8123, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8124, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8125, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8126, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8127, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8128, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8129, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8130, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8131, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8132, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8133, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8134, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8135, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8136, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8137, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8138, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8139, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8140, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8141, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8142, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8143, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8144, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8145, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8146, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8147, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8148, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8149, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8150, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8151, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8152, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8153, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8154, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8155, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8156, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8157, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8158, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8159, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8160, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8161, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8162, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8163, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8164, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8165, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8166, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8167, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8168, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8169, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8170, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8171, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8172, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8173, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8174, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8175, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8176, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8177, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8178, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8179, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8180, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8181, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8182, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8183, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8184, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8185, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8186, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8187, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8188, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8189, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8190, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8191, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8192, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8193, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8194, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8195, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8196, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8197, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8198, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8199, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8200, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8201, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8202, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8203, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8204, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8205, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8206, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8207, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8208, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8209, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8210, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8211, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8212, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8213, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8214, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8215, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8216, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8217, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8218, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8219, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8220, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8221, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8222, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8223, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8224, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8225, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8226, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8227, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8228, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8229, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8230, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8231, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8232, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8233, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8234, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8235, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8236, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8237, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8238, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8239, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8240, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8241, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8242, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8243, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8244, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8245, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8246, + "componentType" : 5126, + "count" : 24, + "type" : "VEC4" + }, + { + "bufferView" : 8247, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 8248, + "componentType" : 5126, + "count" : 32, + "max" : [ + 1.3333333333333333 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 8249, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8250, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8251, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8252, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8253, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8254, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8255, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8256, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8257, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8258, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8259, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8260, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8261, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8262, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8263, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8264, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8265, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8266, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8267, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8268, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8269, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8270, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8271, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8272, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8273, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8274, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8275, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8276, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8277, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8278, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8279, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8280, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8281, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8282, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8283, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8284, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8285, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8286, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8287, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8288, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8289, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8290, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8291, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8292, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8293, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8294, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8295, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8296, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8297, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8298, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8299, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8300, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8301, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8302, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8303, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8304, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8305, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8306, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8307, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8308, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8309, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8310, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8311, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8312, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8313, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8314, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8315, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8316, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8317, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8318, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8319, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8320, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8321, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8322, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8323, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8324, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8325, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8326, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8327, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8328, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8329, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8330, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8331, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8332, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8333, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8334, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8335, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8336, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8337, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8338, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8339, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8340, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8341, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8342, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8343, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8344, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8345, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8346, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8347, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8348, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8349, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8350, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8351, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8352, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8353, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8354, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8355, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8356, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8357, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8358, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8359, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8360, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8361, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8362, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8363, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8364, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8365, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8366, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8367, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8368, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8369, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8370, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8371, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8372, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8373, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8374, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8375, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8376, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8377, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8378, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8379, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8380, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8381, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8382, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8383, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8384, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8385, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8386, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8387, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8388, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8389, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8390, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8391, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8392, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8393, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8394, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8395, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8396, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8397, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8398, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8399, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8400, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8401, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8402, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8403, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8404, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8405, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8406, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8407, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8408, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8409, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8410, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8411, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8412, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8413, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8414, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8415, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8416, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8417, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8418, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8419, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8420, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8421, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8422, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8423, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8424, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8425, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8426, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8427, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8428, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8429, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8430, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8431, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8432, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8433, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8434, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8435, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8436, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8437, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8438, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8439, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8440, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8441, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8442, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8443, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8444, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8445, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8446, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8447, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8448, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8449, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8450, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8451, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8452, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8453, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8454, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8455, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8456, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8457, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8458, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8459, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8460, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8461, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8462, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8463, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8464, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8465, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8466, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8467, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8468, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8469, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8470, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8471, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8472, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8473, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8474, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8475, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8476, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8477, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8478, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8479, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8480, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8481, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8482, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8483, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8484, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8485, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8486, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8487, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8488, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8489, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8490, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8491, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8492, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8493, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8494, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8495, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8496, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8497, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8498, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8499, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8500, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8501, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8502, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8503, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8504, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8505, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8506, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8507, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8508, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8509, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8510, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8511, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8512, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8513, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8514, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8515, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8516, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8517, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8518, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8519, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8520, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8521, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8522, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8523, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8524, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8525, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8526, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8527, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8528, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8529, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8530, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8531, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8532, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8533, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8534, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8535, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8536, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8537, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8538, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8539, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8540, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8541, + "componentType" : 5126, + "count" : 32, + "type" : "VEC4" + }, + { + "bufferView" : 8542, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 8543, + "componentType" : 5126, + "count" : 240, + "max" : [ + 10 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 8544, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8545, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8546, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8547, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8548, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8549, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8550, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8551, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8552, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8553, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8554, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8555, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8556, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8557, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8558, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8559, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8560, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8561, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8562, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8563, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8564, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8565, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8566, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8567, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8568, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8569, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8570, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8571, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8572, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8573, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8574, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8575, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8576, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8577, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8578, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8579, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8580, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8581, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8582, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8583, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8584, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8585, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8586, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8587, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8588, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8589, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8590, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8591, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8592, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8593, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8594, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8595, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8596, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8597, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8598, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8599, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8600, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8601, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8602, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8603, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8604, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8605, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8606, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8607, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8608, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8609, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8610, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8611, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8612, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8613, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8614, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8615, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8616, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8617, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8618, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8619, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8620, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8621, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8622, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8623, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8624, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8625, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8626, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8627, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8628, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8629, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8630, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8631, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8632, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8633, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8634, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8635, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8636, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8637, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8638, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8639, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8640, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8641, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8642, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8643, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8644, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8645, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8646, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8647, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8648, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8649, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8650, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8651, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8652, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8653, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8654, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8655, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8656, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8657, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8658, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8659, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8660, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8661, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8662, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8663, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8664, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8665, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8666, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8667, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8668, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8669, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8670, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8671, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8672, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8673, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8674, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8675, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8676, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8677, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8678, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8679, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8680, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8681, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8682, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8683, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8684, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8685, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8686, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8687, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8688, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8689, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8690, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8691, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8692, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8693, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8694, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8695, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8696, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8697, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8698, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8699, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8700, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8701, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8702, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8703, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8704, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8705, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8706, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8707, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8708, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8709, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8710, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8711, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8712, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8713, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8714, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8715, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8716, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8717, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8718, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8719, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8720, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8721, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8722, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8723, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8724, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8725, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8726, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8727, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8728, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8729, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8730, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8731, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8732, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8733, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8734, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8735, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8736, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8737, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8738, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8739, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8740, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8741, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8742, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8743, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8744, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8745, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8746, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8747, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8748, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8749, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8750, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8751, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8752, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8753, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8754, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8755, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8756, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8757, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8758, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8759, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8760, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8761, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8762, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8763, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8764, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8765, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8766, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8767, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8768, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8769, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8770, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8771, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8772, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8773, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8774, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8775, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8776, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8777, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8778, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8779, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8780, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8781, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8782, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8783, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8784, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8785, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8786, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8787, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8788, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8789, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8790, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8791, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8792, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8793, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8794, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8795, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8796, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8797, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8798, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8799, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8800, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8801, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8802, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8803, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8804, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8805, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8806, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8807, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8808, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8809, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8810, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8811, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8812, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8813, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8814, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8815, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8816, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8817, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8818, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8819, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8820, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8821, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8822, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8823, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8824, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8825, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8826, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8827, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8828, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8829, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8830, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8831, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8832, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8833, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8834, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8835, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8836, + "componentType" : 5126, + "count" : 240, + "type" : "VEC4" + }, + { + "bufferView" : 8837, + "componentType" : 5126, + "count" : 240, + "type" : "VEC3" + }, + { + "bufferView" : 8838, + "componentType" : 5126, + "count" : 120, + "max" : [ + 5 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 8839, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8840, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8841, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8842, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8843, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8844, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8845, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8846, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8847, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8848, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8849, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8850, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8851, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8852, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8853, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8854, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8855, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8856, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8857, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8858, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8859, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8860, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8861, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8862, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8863, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8864, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8865, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8866, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8867, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8868, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8869, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8870, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8871, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8872, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8873, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8874, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8875, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8876, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8877, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8878, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8879, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8880, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8881, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8882, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8883, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8884, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8885, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8886, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8887, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8888, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8889, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8890, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8891, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8892, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8893, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8894, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8895, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8896, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8897, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8898, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8899, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8900, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8901, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8902, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8903, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8904, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8905, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8906, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8907, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8908, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8909, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8910, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8911, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8912, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8913, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8914, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8915, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8916, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8917, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8918, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8919, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8920, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8921, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8922, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8923, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8924, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8925, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8926, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8927, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8928, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8929, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8930, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8931, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8932, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8933, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8934, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8935, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8936, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8937, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8938, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8939, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8940, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8941, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8942, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8943, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8944, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8945, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8946, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8947, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8948, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8949, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8950, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8951, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8952, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8953, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8954, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8955, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8956, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8957, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8958, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8959, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8960, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8961, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8962, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8963, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8964, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8965, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8966, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8967, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8968, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8969, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8970, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8971, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8972, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8973, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8974, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8975, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8976, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8977, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8978, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8979, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8980, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8981, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8982, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8983, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8984, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8985, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8986, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8987, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8988, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8989, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8990, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8991, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8992, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8993, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8994, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8995, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8996, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 8997, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8998, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 8999, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9000, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9001, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9002, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9003, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9004, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9005, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9006, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9007, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9008, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9009, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9010, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9011, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9012, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9013, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9014, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9015, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9016, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9017, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9018, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9019, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9020, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9021, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9022, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9023, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9024, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9025, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9026, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9027, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9028, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9029, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9030, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9031, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9032, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9033, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9034, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9035, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9036, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9037, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9038, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9039, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9040, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9041, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9042, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9043, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9044, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9045, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9046, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9047, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9048, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9049, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9050, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9051, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9052, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9053, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9054, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9055, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9056, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9057, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9058, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9059, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9060, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9061, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9062, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9063, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9064, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9065, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9066, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9067, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9068, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9069, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9070, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9071, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9072, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9073, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9074, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9075, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9076, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9077, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9078, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9079, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9080, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9081, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9082, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9083, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9084, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9085, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9086, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9087, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9088, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9089, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9090, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9091, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9092, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9093, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9094, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9095, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9096, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9097, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9098, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9099, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9100, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9101, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9102, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9103, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9104, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9105, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9106, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9107, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9108, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9109, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9110, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9111, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9112, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9113, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9114, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9115, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9116, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9117, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9118, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9119, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9120, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9121, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9122, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9123, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9124, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9125, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9126, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9127, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9128, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9129, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9130, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9131, + "componentType" : 5126, + "count" : 120, + "type" : "VEC4" + }, + { + "bufferView" : 9132, + "componentType" : 5126, + "count" : 120, + "type" : "VEC3" + }, + { + "bufferView" : 9133, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9134, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9135, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9136, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9137, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9138, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9139, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9140, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9141, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9142, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9143, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9144, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9145, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9146, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9147, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9148, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9149, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9150, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9151, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9152, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9153, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9154, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9155, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9156, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9157, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9158, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9159, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9160, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9161, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9162, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9163, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9164, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9165, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9166, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9167, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9168, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9169, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9170, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9171, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9172, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9173, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9174, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9175, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9176, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9177, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9178, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9179, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9180, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9181, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9182, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9183, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9184, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9185, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9186, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9187, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9188, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9189, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9190, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9191, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9192, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9193, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9194, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9195, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9196, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9197, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9198, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9199, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9200, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9201, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9202, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9203, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9204, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9205, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9206, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9207, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9208, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9209, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9210, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9211, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9212, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9213, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9214, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9215, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9216, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9217, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9218, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9219, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9220, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9221, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9222, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9223, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9224, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9225, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9226, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9227, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9228, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9229, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9230, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9231, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9232, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9233, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9234, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9235, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9236, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9237, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9238, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9239, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9240, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9241, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9242, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9243, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9244, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9245, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9246, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9247, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9248, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9249, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9250, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9251, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9252, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9253, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9254, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9255, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9256, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9257, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9258, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9259, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9260, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9261, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9262, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9263, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9264, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9265, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9266, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9267, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9268, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9269, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9270, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9271, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9272, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9273, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9274, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9275, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9276, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9277, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9278, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9279, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9280, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9281, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9282, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9283, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9284, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9285, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9286, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9287, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9288, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9289, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9290, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9291, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9292, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9293, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9294, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9295, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9296, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9297, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9298, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9299, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9300, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9301, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9302, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9303, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9304, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9305, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9306, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9307, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9308, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9309, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9310, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9311, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9312, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9313, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9314, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9315, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9316, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9317, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9318, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9319, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9320, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9321, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9322, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9323, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9324, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9325, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9326, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9327, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9328, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9329, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9330, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9331, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9332, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9333, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9334, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9335, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9336, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9337, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9338, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9339, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9340, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9341, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9342, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9343, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9344, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9345, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9346, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9347, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9348, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9349, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9350, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9351, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9352, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9353, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9354, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9355, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9356, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9357, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9358, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9359, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9360, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9361, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9362, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9363, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9364, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9365, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9366, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9367, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9368, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9369, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9370, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9371, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9372, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9373, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9374, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9375, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9376, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9377, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9378, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9379, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9380, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9381, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9382, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9383, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9384, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9385, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9386, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9387, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9388, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9389, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9390, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9391, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9392, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9393, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9394, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9395, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9396, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9397, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9398, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9399, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9400, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9401, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9402, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9403, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9404, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9405, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9406, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9407, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9408, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9409, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9410, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9411, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9412, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9413, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9414, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9415, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9416, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9417, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9418, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9419, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9420, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9421, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9422, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9423, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9424, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9425, + "componentType" : 5126, + "count" : 90, + "type" : "VEC4" + }, + { + "bufferView" : 9426, + "componentType" : 5126, + "count" : 90, + "type" : "VEC3" + }, + { + "bufferView" : 9427, + "componentType" : 5126, + "count" : 30, + "max" : [ + 1.25 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 9428, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9429, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9430, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9431, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9432, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9433, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9434, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9435, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9436, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9437, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9438, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9439, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9440, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9441, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9442, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9443, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9444, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9445, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9446, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9447, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9448, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9449, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9450, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9451, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9452, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9453, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9454, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9455, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9456, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9457, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9458, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9459, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9460, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9461, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9462, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9463, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9464, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9465, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9466, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9467, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9468, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9469, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9470, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9471, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9472, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9473, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9474, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9475, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9476, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9477, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9478, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9479, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9480, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9481, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9482, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9483, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9484, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9485, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9486, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9487, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9488, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9489, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9490, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9491, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9492, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9493, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9494, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9495, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9496, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9497, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9498, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9499, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9500, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9501, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9502, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9503, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9504, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9505, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9506, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9507, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9508, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9509, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9510, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9511, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9512, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9513, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9514, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9515, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9516, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9517, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9518, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9519, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9520, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9521, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9522, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9523, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9524, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9525, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9526, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9527, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9528, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9529, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9530, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9531, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9532, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9533, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9534, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9535, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9536, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9537, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9538, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9539, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9540, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9541, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9542, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9543, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9544, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9545, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9546, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9547, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9548, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9549, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9550, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9551, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9552, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9553, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9554, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9555, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9556, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9557, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9558, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9559, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9560, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9561, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9562, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9563, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9564, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9565, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9566, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9567, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9568, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9569, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9570, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9571, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9572, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9573, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9574, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9575, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9576, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9577, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9578, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9579, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9580, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9581, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9582, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9583, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9584, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9585, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9586, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9587, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9588, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9589, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9590, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9591, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9592, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9593, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9594, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9595, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9596, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9597, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9598, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9599, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9600, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9601, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9602, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9603, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9604, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9605, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9606, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9607, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9608, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9609, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9610, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9611, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9612, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9613, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9614, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9615, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9616, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9617, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9618, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9619, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9620, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9621, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9622, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9623, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9624, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9625, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9626, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9627, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9628, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9629, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9630, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9631, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9632, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9633, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9634, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9635, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9636, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9637, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9638, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9639, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9640, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9641, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9642, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9643, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9644, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9645, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9646, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9647, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9648, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9649, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9650, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9651, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9652, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9653, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9654, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9655, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9656, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9657, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9658, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9659, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9660, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9661, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9662, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9663, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9664, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9665, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9666, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9667, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9668, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9669, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9670, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9671, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9672, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9673, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9674, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9675, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9676, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9677, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9678, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9679, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9680, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9681, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9682, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9683, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9684, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9685, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9686, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9687, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9688, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9689, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9690, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9691, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9692, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9693, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9694, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9695, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9696, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9697, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9698, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9699, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9700, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9701, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9702, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9703, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9704, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9705, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9706, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9707, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9708, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9709, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9710, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9711, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9712, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9713, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9714, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9715, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9716, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9717, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9718, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9719, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9720, + "componentType" : 5126, + "count" : 30, + "type" : "VEC4" + }, + { + "bufferView" : 9721, + "componentType" : 5126, + "count" : 30, + "type" : "VEC3" + }, + { + "bufferView" : 9722, + "componentType" : 5126, + "count" : 100, + "max" : [ + 4.166666666666667 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 9723, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9724, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9725, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9726, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9727, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9728, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9729, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9730, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9731, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9732, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9733, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9734, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9735, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9736, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9737, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9738, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9739, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9740, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9741, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9742, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9743, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9744, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9745, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9746, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9747, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9748, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9749, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9750, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9751, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9752, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9753, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9754, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9755, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9756, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9757, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9758, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9759, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9760, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9761, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9762, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9763, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9764, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9765, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9766, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9767, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9768, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9769, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9770, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9771, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9772, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9773, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9774, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9775, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9776, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9777, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9778, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9779, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9780, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9781, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9782, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9783, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9784, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9785, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9786, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9787, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9788, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9789, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9790, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9791, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9792, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9793, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9794, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9795, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9796, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9797, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9798, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9799, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9800, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9801, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9802, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9803, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9804, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9805, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9806, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9807, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9808, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9809, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9810, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9811, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9812, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9813, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9814, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9815, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9816, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9817, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9818, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9819, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9820, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9821, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9822, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9823, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9824, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9825, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9826, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9827, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9828, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9829, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9830, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9831, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9832, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9833, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9834, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9835, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9836, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9837, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9838, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9839, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9840, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9841, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9842, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9843, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9844, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9845, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9846, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9847, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9848, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9849, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9850, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9851, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9852, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9853, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9854, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9855, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9856, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9857, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9858, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9859, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9860, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9861, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9862, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9863, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9864, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9865, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9866, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9867, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9868, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9869, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9870, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9871, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9872, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9873, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9874, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9875, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9876, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9877, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9878, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9879, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9880, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9881, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9882, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9883, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9884, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9885, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9886, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9887, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9888, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9889, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9890, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9891, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9892, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9893, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9894, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9895, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9896, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9897, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9898, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9899, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9900, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9901, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9902, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9903, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9904, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9905, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9906, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9907, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9908, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9909, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9910, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9911, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9912, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9913, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9914, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9915, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9916, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9917, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9918, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9919, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9920, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9921, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9922, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9923, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9924, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9925, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9926, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9927, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9928, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9929, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9930, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9931, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9932, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9933, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9934, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9935, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9936, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9937, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9938, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9939, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9940, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9941, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9942, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9943, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9944, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9945, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9946, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9947, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9948, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9949, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9950, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9951, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9952, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9953, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9954, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9955, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9956, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9957, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9958, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9959, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9960, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9961, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9962, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9963, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9964, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9965, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9966, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9967, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9968, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9969, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9970, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9971, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9972, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9973, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9974, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9975, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9976, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9977, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9978, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9979, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9980, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9981, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9982, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9983, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9984, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9985, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9986, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9987, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9988, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9989, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9990, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9991, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9992, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9993, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9994, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9995, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9996, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9997, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 9998, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 9999, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10000, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 10001, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10002, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10003, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 10004, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10005, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10006, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 10007, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10008, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10009, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 10010, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10011, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10012, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 10013, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10014, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10015, + "componentType" : 5126, + "count" : 100, + "type" : "VEC4" + }, + { + "bufferView" : 10016, + "componentType" : 5126, + "count" : 100, + "type" : "VEC3" + }, + { + "bufferView" : 10017, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10018, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10019, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10020, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10021, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10022, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10023, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10024, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10025, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10026, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10027, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10028, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10029, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10030, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10031, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10032, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10033, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10034, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10035, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10036, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10037, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10038, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10039, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10040, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10041, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10042, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10043, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10044, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10045, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10046, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10047, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10048, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10049, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10050, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10051, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10052, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10053, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10054, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10055, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10056, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10057, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10058, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10059, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10060, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10061, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10062, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10063, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10064, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10065, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10066, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10067, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10068, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10069, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10070, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10071, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10072, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10073, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10074, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10075, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10076, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10077, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10078, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10079, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10080, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10081, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10082, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10083, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10084, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10085, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10086, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10087, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10088, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10089, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10090, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10091, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10092, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10093, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10094, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10095, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10096, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10097, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10098, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10099, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10100, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10101, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10102, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10103, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10104, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10105, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10106, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10107, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10108, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10109, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10110, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10111, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10112, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10113, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10114, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10115, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10116, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10117, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10118, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10119, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10120, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10121, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10122, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10123, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10124, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10125, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10126, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10127, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10128, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10129, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10130, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10131, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10132, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10133, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10134, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10135, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10136, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10137, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10138, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10139, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10140, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10141, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10142, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10143, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10144, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10145, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10146, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10147, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10148, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10149, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10150, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10151, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10152, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10153, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10154, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10155, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10156, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10157, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10158, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10159, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10160, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10161, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10162, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10163, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10164, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10165, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10166, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10167, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10168, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10169, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10170, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10171, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10172, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10173, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10174, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10175, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10176, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10177, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10178, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10179, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10180, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10181, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10182, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10183, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10184, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10185, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10186, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10187, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10188, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10189, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10190, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10191, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10192, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10193, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10194, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10195, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10196, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10197, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10198, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10199, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10200, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10201, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10202, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10203, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10204, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10205, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10206, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10207, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10208, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10209, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10210, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10211, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10212, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10213, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10214, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10215, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10216, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10217, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10218, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10219, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10220, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10221, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10222, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10223, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10224, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10225, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10226, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10227, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10228, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10229, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10230, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10231, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10232, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10233, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10234, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10235, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10236, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10237, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10238, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10239, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10240, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10241, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10242, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10243, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10244, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10245, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10246, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10247, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10248, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10249, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10250, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10251, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10252, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10253, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10254, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10255, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10256, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10257, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10258, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10259, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10260, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10261, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10262, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10263, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10264, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10265, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10266, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10267, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10268, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10269, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10270, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10271, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10272, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10273, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10274, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10275, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10276, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10277, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10278, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10279, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10280, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10281, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10282, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10283, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10284, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10285, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10286, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10287, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10288, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10289, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10290, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10291, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10292, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10293, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10294, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10295, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10296, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10297, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10298, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10299, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10300, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10301, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10302, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10303, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10304, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10305, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10306, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10307, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10308, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10309, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10310, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10311, + "componentType" : 5126, + "count" : 21, + "max" : [ + 0.875 + ], + "min" : [ + 0.041666666666666664 + ], + "type" : "SCALAR" + }, + { + "bufferView" : 10312, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10313, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10314, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10315, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10316, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10317, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10318, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10319, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10320, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10321, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10322, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10323, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10324, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10325, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10326, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10327, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10328, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10329, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10330, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10331, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10332, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10333, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10334, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10335, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10336, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10337, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10338, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10339, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10340, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10341, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10342, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10343, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10344, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10345, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10346, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10347, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10348, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10349, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10350, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10351, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10352, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10353, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10354, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10355, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10356, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10357, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10358, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10359, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10360, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10361, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10362, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10363, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10364, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10365, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10366, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10367, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10368, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10369, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10370, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10371, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10372, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10373, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10374, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10375, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10376, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10377, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10378, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10379, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10380, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10381, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10382, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10383, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10384, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10385, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10386, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10387, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10388, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10389, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10390, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10391, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10392, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10393, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10394, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10395, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10396, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10397, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10398, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10399, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10400, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10401, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10402, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10403, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10404, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10405, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10406, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10407, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10408, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10409, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10410, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10411, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10412, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10413, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10414, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10415, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10416, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10417, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10418, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10419, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10420, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10421, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10422, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10423, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10424, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10425, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10426, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10427, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10428, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10429, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10430, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10431, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10432, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10433, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10434, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10435, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10436, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10437, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10438, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10439, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10440, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10441, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10442, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10443, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10444, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10445, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10446, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10447, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10448, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10449, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10450, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10451, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10452, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10453, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10454, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10455, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10456, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10457, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10458, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10459, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10460, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10461, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10462, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10463, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10464, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10465, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10466, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10467, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10468, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10469, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10470, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10471, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10472, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10473, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10474, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10475, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10476, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10477, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10478, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10479, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10480, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10481, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10482, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10483, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10484, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10485, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10486, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10487, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10488, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10489, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10490, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10491, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10492, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10493, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10494, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10495, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10496, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10497, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10498, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10499, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10500, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10501, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10502, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10503, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10504, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10505, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10506, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10507, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10508, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10509, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10510, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10511, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10512, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10513, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10514, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10515, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10516, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10517, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10518, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10519, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10520, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10521, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10522, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10523, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10524, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10525, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10526, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10527, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10528, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10529, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10530, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10531, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10532, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10533, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10534, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10535, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10536, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10537, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10538, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10539, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10540, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10541, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10542, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10543, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10544, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10545, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10546, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10547, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10548, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10549, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10550, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10551, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10552, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10553, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10554, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10555, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10556, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10557, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10558, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10559, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10560, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10561, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10562, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10563, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10564, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10565, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10566, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10567, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10568, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10569, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10570, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10571, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10572, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10573, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10574, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10575, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10576, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10577, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10578, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10579, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10580, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10581, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10582, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10583, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10584, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10585, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10586, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10587, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10588, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10589, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10590, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10591, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10592, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10593, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10594, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10595, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10596, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10597, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10598, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10599, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10600, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10601, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10602, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10603, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10604, + "componentType" : 5126, + "count" : 21, + "type" : "VEC4" + }, + { + "bufferView" : 10605, + "componentType" : 5126, + "count" : 21, + "type" : "VEC3" + }, + { + "bufferView" : 10606, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10607, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10608, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10609, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10610, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10611, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10612, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10613, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10614, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10615, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10616, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10617, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10618, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10619, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10620, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10621, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10622, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10623, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10624, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10625, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10626, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10627, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10628, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10629, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10630, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10631, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10632, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10633, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10634, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10635, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10636, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10637, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10638, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10639, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10640, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10641, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10642, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10643, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10644, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10645, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10646, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10647, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10648, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10649, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10650, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10651, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10652, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10653, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10654, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10655, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10656, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10657, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10658, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10659, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10660, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10661, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10662, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10663, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10664, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10665, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10666, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10667, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10668, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10669, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10670, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10671, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10672, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10673, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10674, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10675, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10676, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10677, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10678, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10679, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10680, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10681, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10682, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10683, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10684, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10685, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10686, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10687, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10688, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10689, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10690, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10691, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10692, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10693, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10694, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10695, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10696, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10697, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10698, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10699, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10700, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10701, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10702, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10703, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10704, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10705, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10706, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10707, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10708, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10709, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10710, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10711, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10712, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10713, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10714, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10715, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10716, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10717, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10718, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10719, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10720, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10721, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10722, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10723, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10724, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10725, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10726, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10727, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10728, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10729, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10730, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10731, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10732, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10733, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10734, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10735, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10736, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10737, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10738, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10739, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10740, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10741, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10742, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10743, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10744, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10745, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10746, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10747, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10748, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10749, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10750, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10751, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10752, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10753, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10754, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10755, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10756, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10757, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10758, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10759, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10760, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10761, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10762, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10763, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10764, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10765, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10766, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10767, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10768, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10769, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10770, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10771, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10772, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10773, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10774, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10775, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10776, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10777, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10778, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10779, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10780, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10781, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10782, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10783, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10784, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10785, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10786, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10787, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10788, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10789, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10790, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10791, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10792, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10793, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10794, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10795, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10796, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10797, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10798, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10799, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10800, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10801, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10802, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10803, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10804, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10805, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10806, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10807, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10808, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10809, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10810, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10811, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10812, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10813, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10814, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10815, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10816, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10817, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10818, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10819, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10820, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10821, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10822, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10823, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10824, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10825, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10826, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10827, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10828, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10829, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10830, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10831, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10832, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10833, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10834, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10835, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10836, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10837, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10838, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10839, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10840, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10841, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10842, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10843, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10844, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10845, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10846, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10847, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10848, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10849, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10850, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10851, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10852, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10853, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10854, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10855, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10856, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10857, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10858, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10859, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10860, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10861, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10862, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10863, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10864, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10865, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10866, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10867, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10868, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10869, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10870, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10871, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10872, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10873, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10874, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10875, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10876, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10877, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10878, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10879, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10880, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10881, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10882, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10883, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10884, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10885, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10886, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10887, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10888, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10889, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10890, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10891, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10892, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10893, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10894, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10895, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10896, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10897, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10898, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10899, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10900, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10901, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10902, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10903, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10904, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10905, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10906, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10907, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10908, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10909, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10910, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10911, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10912, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10913, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10914, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10915, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10916, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10917, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10918, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10919, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10920, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10921, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10922, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10923, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10924, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10925, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10926, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10927, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10928, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10929, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10930, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10931, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10932, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10933, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10934, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10935, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10936, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10937, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10938, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10939, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10940, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10941, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10942, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10943, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10944, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10945, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10946, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10947, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10948, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10949, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10950, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10951, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10952, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10953, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10954, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10955, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10956, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10957, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10958, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10959, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10960, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10961, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10962, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10963, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10964, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10965, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10966, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10967, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10968, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10969, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10970, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10971, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10972, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10973, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10974, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10975, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10976, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10977, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10978, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10979, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10980, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10981, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10982, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10983, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10984, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10985, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10986, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10987, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10988, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10989, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10990, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10991, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10992, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10993, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10994, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10995, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10996, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10997, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 10998, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10999, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11000, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11001, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11002, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11003, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11004, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11005, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11006, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11007, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11008, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11009, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11010, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11011, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11012, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11013, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11014, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11015, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11016, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11017, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11018, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11019, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11020, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11021, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11022, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11023, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11024, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11025, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11026, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11027, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11028, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11029, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11030, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11031, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11032, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11033, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11034, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11035, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11036, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11037, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11038, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11039, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11040, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11041, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11042, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11043, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11044, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11045, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11046, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11047, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11048, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11049, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11050, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11051, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11052, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11053, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11054, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11055, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11056, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11057, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11058, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11059, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11060, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11061, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11062, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11063, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11064, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11065, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11066, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11067, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11068, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11069, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11070, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11071, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11072, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11073, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11074, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11075, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11076, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11077, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11078, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11079, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11080, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11081, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11082, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11083, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11084, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11085, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11086, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11087, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11088, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11089, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11090, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11091, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11092, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11093, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11094, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11095, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11096, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11097, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11098, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11099, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11100, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11101, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11102, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11103, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11104, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11105, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11106, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11107, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11108, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11109, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11110, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11111, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11112, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11113, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11114, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11115, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11116, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11117, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11118, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11119, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11120, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11121, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11122, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11123, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11124, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11125, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11126, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11127, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11128, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11129, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11130, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11131, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11132, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11133, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11134, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11135, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11136, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11137, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11138, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11139, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11140, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11141, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11142, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11143, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11144, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11145, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11146, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11147, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11148, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11149, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11150, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11151, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11152, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11153, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11154, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11155, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11156, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11157, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11158, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11159, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11160, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11161, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11162, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11163, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11164, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11165, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11166, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11167, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11168, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11169, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11170, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11171, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11172, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11173, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11174, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11175, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11176, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11177, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11178, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11179, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11180, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11181, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11182, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11183, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11184, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11185, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11186, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11187, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11188, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11189, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11190, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11191, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 11192, + "componentType" : 5126, + "count" : 20, + "type" : "VEC4" + }, + { + "bufferView" : 11193, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + } + ], + "bufferViews" : [ + { + "buffer" : 0, + "byteLength" : 1124, + "byteOffset" : 0 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1124 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 4496 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 8992 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 12364 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 15736 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 20232 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 23604 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 26976 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 31472 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 34844 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 38216 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 42712 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 46084 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 49456 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 53952 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 57324 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 60696 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 65192 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 68564 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 71936 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 76432 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 79804 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 83176 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 87672 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 91044 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 94416 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 98912 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 102284 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 105656 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 110152 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 113524 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 116896 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 121392 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 124764 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 128136 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 132632 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 136004 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 139376 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 143872 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 147244 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 150616 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 155112 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 158484 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 161856 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 166352 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 169724 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 173096 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 177592 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 180964 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 184336 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 188832 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 192204 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 195576 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 200072 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 203444 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 206816 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 211312 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 214684 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 218056 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 222552 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 225924 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 229296 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 233792 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 237164 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 240536 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 245032 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 248404 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 251776 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 256272 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 259644 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 263016 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 267512 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 270884 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 274256 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 278752 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 282124 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 285496 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 289992 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 293364 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 296736 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 301232 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 304604 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 307976 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 312472 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 315844 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 319216 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 323712 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 327084 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 330456 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 334952 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 338324 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 341696 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 346192 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 349564 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 352936 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 357432 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 360804 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 364176 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 368672 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 372044 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 375416 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 379912 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 383284 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 386656 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 391152 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 394524 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 397896 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 402392 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 405764 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 409136 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 413632 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 417004 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 420376 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 424872 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 428244 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 431616 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 436112 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 439484 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 442856 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 447352 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 450724 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 454096 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 458592 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 461964 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 465336 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 469832 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 473204 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 476576 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 481072 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 484444 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 487816 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 492312 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 495684 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 499056 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 503552 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 506924 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 510296 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 514792 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 518164 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 521536 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 526032 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 529404 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 532776 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 537272 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 540644 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 544016 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 548512 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 551884 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 555256 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 559752 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 563124 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 566496 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 570992 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 574364 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 577736 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 582232 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 585604 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 588976 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 593472 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 596844 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 600216 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 604712 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 608084 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 611456 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 615952 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 619324 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 622696 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 627192 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 630564 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 633936 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 638432 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 641804 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 645176 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 649672 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 653044 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 656416 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 660912 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 664284 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 667656 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 672152 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 675524 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 678896 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 683392 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 686764 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 690136 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 694632 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 698004 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 701376 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 705872 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 709244 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 712616 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 717112 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 720484 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 723856 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 728352 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 731724 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 735096 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 739592 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 742964 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 746336 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 750832 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 754204 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 757576 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 762072 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 765444 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 768816 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 773312 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 776684 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 780056 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 784552 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 787924 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 791296 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 795792 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 799164 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 802536 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 807032 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 810404 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 813776 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 818272 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 821644 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 825016 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 829512 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 832884 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 836256 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 840752 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 844124 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 847496 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 851992 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 855364 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 858736 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 863232 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 866604 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 869976 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 874472 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 877844 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 881216 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 885712 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 889084 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 892456 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 896952 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 900324 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 903696 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 908192 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 911564 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 914936 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 919432 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 922804 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 926176 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 930672 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 934044 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 937416 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 941912 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 945284 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 948656 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 953152 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 956524 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 959896 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 964392 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 967764 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 971136 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 975632 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 979004 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 982376 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 986872 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 990244 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 993616 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 998112 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1001484 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 1004856 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1009352 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1012724 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 1016096 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1020592 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1023964 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 1027336 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1031832 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1035204 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 1038576 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1043072 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1046444 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 1049816 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1054312 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1057684 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 1061056 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1065552 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1068924 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 1072296 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1076792 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1080164 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 1083536 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1088032 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1091404 + }, + { + "buffer" : 0, + "byteLength" : 4496, + "byteOffset" : 1094776 + }, + { + "buffer" : 0, + "byteLength" : 3372, + "byteOffset" : 1099272 + }, + { + "buffer" : 0, + "byteLength" : 104, + "byteOffset" : 1102644 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1102748 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1103060 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1103476 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1103788 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1104100 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1104516 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1104828 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1105140 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1105556 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1105868 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1106180 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1106596 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1106908 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1107220 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1107636 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1107948 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1108260 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1108676 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1108988 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1109300 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1109716 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1110028 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1110340 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1110756 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1111068 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1111380 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1111796 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1112108 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1112420 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1112836 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1113148 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1113460 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1113876 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1114188 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1114500 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1114916 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1115228 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1115540 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1115956 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1116268 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1116580 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1116996 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1117308 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1117620 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1118036 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1118348 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1118660 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1119076 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1119388 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1119700 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1120116 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1120428 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1120740 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1121156 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1121468 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1121780 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1122196 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1122508 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1122820 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1123236 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1123548 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1123860 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1124276 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1124588 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1124900 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1125316 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1125628 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1125940 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1126356 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1126668 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1126980 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1127396 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1127708 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1128020 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1128436 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1128748 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1129060 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1129476 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1129788 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1130100 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1130516 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1130828 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1131140 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1131556 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1131868 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1132180 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1132596 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1132908 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1133220 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1133636 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1133948 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1134260 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1134676 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1134988 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1135300 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1135716 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1136028 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1136340 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1136756 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1137068 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1137380 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1137796 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1138108 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1138420 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1138836 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1139148 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1139460 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1139876 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1140188 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1140500 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1140916 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1141228 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1141540 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1141956 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1142268 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1142580 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1142996 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1143308 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1143620 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1144036 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1144348 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1144660 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1145076 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1145388 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1145700 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1146116 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1146428 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1146740 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1147156 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1147468 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1147780 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1148196 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1148508 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1148820 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1149236 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1149548 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1149860 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1150276 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1150588 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1150900 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1151316 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1151628 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1151940 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1152356 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1152668 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1152980 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1153396 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1153708 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1154020 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1154436 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1154748 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1155060 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1155476 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1155788 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1156100 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1156516 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1156828 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1157140 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1157556 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1157868 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1158180 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1158596 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1158908 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1159220 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1159636 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1159948 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1160260 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1160676 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1160988 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1161300 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1161716 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1162028 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1162340 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1162756 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1163068 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1163380 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1163796 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1164108 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1164420 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1164836 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1165148 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1165460 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1165876 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1166188 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1166500 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1166916 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1167228 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1167540 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1167956 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1168268 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1168580 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1168996 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1169308 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1169620 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1170036 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1170348 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1170660 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1171076 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1171388 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1171700 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1172116 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1172428 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1172740 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1173156 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1173468 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1173780 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1174196 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1174508 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1174820 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1175236 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1175548 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1175860 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1176276 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1176588 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1176900 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1177316 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1177628 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1177940 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1178356 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1178668 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1178980 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1179396 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1179708 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1180020 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1180436 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1180748 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1181060 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1181476 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1181788 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1182100 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1182516 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1182828 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1183140 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1183556 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1183868 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1184180 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1184596 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1184908 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1185220 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1185636 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1185948 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1186260 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1186676 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1186988 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1187300 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1187716 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1188028 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1188340 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1188756 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1189068 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1189380 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1189796 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1190108 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1190420 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1190836 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1191148 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1191460 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1191876 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1192188 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1192500 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1192916 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1193228 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1193540 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1193956 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1194268 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1194580 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1194996 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1195308 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1195620 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1196036 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1196348 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1196660 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1197076 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1197388 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1197700 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1198116 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1198428 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1198740 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1199156 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1199468 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1199780 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1200196 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1200508 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1200820 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1201236 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1201548 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1201860 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1202276 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1202588 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1202900 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1203316 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1203628 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1203940 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1204356 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1204668 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1204980 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1205396 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1205708 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1206020 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1206436 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1206748 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1207060 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1207476 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1207788 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1208100 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1208516 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1208828 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1209140 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1209556 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1209868 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1210180 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1210596 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1210908 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1211220 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1211636 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1211948 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1212260 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1212676 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1212988 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1213300 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1213716 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1214028 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1214340 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1214756 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1215068 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1215380 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1215796 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1216108 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1216420 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1216836 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1217148 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1217460 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1217876 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1218188 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1218500 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1218916 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1219228 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1219540 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1219956 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1220268 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1220580 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1220996 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1221308 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1221620 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1222036 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1222348 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1222660 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1223076 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1223388 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1223700 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1224116 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1224428 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1224740 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1225156 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1225468 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1225780 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1226196 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1226508 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1226820 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1227236 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1227548 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1227860 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1228276 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1228588 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1228900 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1229316 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1229628 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1229940 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1230356 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1230668 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1230980 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1231396 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1231708 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1232020 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1232436 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1232748 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1233060 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1233476 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1233788 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1234100 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1234516 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1234828 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1235140 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1235556 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1235868 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1236180 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1236596 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1236908 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1237220 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1237636 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1237948 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1238260 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1238676 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1238988 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1239300 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1239716 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1240028 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1240340 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1240756 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1241068 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1241380 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1241796 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1242108 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1242420 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1242836 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1243148 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1243460 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1243876 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1244188 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1244500 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1244916 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1245228 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1245540 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1245956 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1246268 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1246580 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1246996 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1247308 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1247620 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1248036 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1248348 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1248660 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1249076 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1249388 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1249700 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1250116 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1250428 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1250740 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1251156 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1251468 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1251780 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1252196 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1252508 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1252820 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1253236 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1253548 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1253860 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1254276 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1254588 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1254900 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1255316 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1255628 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1255940 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1256356 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1256668 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1256980 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1257396 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1257708 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1258020 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1258436 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1258748 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1259060 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1259476 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1259788 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1260100 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1260516 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1260828 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1261140 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1261556 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1261868 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1262180 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1262596 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1262908 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1263220 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1263636 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1263948 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1264260 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1264676 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1264988 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1265300 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1265716 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1266028 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1266340 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1266756 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1267068 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1267380 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1267796 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1268108 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1268420 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1268836 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1269148 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1269460 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1269876 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1270188 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1270500 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1270916 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1271228 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1271540 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1271956 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1272268 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1272580 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1272996 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1273308 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1273620 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1274036 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1274348 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1274660 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1275076 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1275388 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1275700 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1276116 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1276428 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1276740 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1277156 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1277468 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1277780 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1278196 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1278508 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1278820 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1279236 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1279548 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1279860 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1280276 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1280588 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1280900 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1281316 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1281628 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1281940 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1282356 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1282668 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1282980 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1283396 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1283708 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1284020 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1284436 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1284748 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1285060 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1285476 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1285788 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1286100 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1286516 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1286828 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1287140 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1287556 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1287868 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1288180 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1288596 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1288908 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1289220 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1289636 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1289948 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1290260 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1290676 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1290988 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1291300 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1291716 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1292028 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1292340 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1292756 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1293068 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1293380 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1293796 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1294108 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1294420 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1294836 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1295148 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1295460 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1295876 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1296188 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1296500 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1296916 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1297228 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1297540 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1297956 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1298268 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1298580 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1298996 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1299308 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1299620 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1300036 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1300348 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1300660 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1301076 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1301388 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1301700 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1302116 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1302428 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1302740 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1303156 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1303468 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1303780 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1304196 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1304508 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1304820 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1305236 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1305548 + }, + { + "buffer" : 0, + "byteLength" : 416, + "byteOffset" : 1305860 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 1306276 + }, + { + "buffer" : 0, + "byteLength" : 236, + "byteOffset" : 1306588 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1306824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1307532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1308476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1309184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1309892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1310836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1311544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1312252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1313196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1313904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1314612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1315556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1316264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1316972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1317916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1318624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1319332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1320276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1320984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1321692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1322636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1323344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1324052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1324996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1325704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1326412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1327356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1328064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1328772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1329716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1330424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1331132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1332076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1332784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1333492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1334436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1335144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1335852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1336796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1337504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1338212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1339156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1339864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1340572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1341516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1342224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1342932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1343876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1344584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1345292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1346236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1346944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1347652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1348596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1349304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1350012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1350956 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1351664 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1352372 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1353316 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1354024 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1354732 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1355676 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1356384 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1357092 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1358036 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1358744 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1359452 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1360396 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1361104 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1361812 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1362756 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1363464 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1364172 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1365116 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1365824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1366532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1367476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1368184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1368892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1369836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1370544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1371252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1372196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1372904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1373612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1374556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1375264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1375972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1376916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1377624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1378332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1379276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1379984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1380692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1381636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1382344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1383052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1383996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1384704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1385412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1386356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1387064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1387772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1388716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1389424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1390132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1391076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1391784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1392492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1393436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1394144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1394852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1395796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1396504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1397212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1398156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1398864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1399572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1400516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1401224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1401932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1402876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1403584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1404292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1405236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1405944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1406652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1407596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1408304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1409012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1409956 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1410664 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1411372 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1412316 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1413024 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1413732 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1414676 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1415384 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1416092 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1417036 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1417744 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1418452 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1419396 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1420104 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1420812 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1421756 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1422464 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1423172 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1424116 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1424824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1425532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1426476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1427184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1427892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1428836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1429544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1430252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1431196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1431904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1432612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1433556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1434264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1434972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1435916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1436624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1437332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1438276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1438984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1439692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1440636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1441344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1442052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1442996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1443704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1444412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1445356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1446064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1446772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1447716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1448424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1449132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1450076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1450784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1451492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1452436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1453144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1453852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1454796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1455504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1456212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1457156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1457864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1458572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1459516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1460224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1460932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1461876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1462584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1463292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1464236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1464944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1465652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1466596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1467304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1468012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1468956 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1469664 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1470372 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1471316 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1472024 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1472732 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1473676 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1474384 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1475092 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1476036 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1476744 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1477452 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1478396 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1479104 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1479812 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1480756 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1481464 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1482172 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1483116 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1483824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1484532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1485476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1486184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1486892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1487836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1488544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1489252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1490196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1490904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1491612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1492556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1493264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1493972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1494916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1495624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1496332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1497276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1497984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1498692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1499636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1500344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1501052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1501996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1502704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1503412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1504356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1505064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1505772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1506716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1507424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1508132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1509076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1509784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1510492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1511436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1512144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1512852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1513796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1514504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1515212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1516156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1516864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1517572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1518516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1519224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1519932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1520876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1521584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1522292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1523236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1523944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1524652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1525596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1526304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1527012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1527956 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1528664 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1529372 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1530316 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1531024 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1531732 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1532676 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1533384 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1534092 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1535036 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1535744 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1536452 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1537396 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1538104 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1538812 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1539756 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1540464 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1541172 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1542116 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1542824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1543532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1544476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1545184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1545892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1546836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1547544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1548252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1549196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1549904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1550612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1551556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1552264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1552972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1553916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1554624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1555332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1556276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1556984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1557692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1558636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1559344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1560052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1560996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1561704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1562412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1563356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1564064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1564772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1565716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1566424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1567132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1568076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1568784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1569492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1570436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1571144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1571852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1572796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1573504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1574212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1575156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1575864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1576572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1577516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1578224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1578932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1579876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1580584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1581292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1582236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1582944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1583652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1584596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1585304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1586012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1586956 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1587664 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1588372 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1589316 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1590024 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1590732 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1591676 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1592384 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1593092 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1594036 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1594744 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1595452 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1596396 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1597104 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1597812 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1598756 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1599464 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1600172 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1601116 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1601824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1602532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1603476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1604184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1604892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1605836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1606544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1607252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1608196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1608904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1609612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1610556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1611264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1611972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1612916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1613624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1614332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1615276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1615984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1616692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1617636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1618344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1619052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1619996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1620704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1621412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1622356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1623064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1623772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1624716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1625424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1626132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1627076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1627784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1628492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1629436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1630144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1630852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1631796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1632504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1633212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1634156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1634864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1635572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1636516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1637224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1637932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1638876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1639584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1640292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1641236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1641944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1642652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1643596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1644304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1645012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1645956 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1646664 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1647372 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1648316 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1649024 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1649732 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1650676 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1651384 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1652092 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1653036 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1653744 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1654452 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1655396 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1656104 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1656812 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1657756 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1658464 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1659172 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1660116 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1660824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1661532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1662476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1663184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1663892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1664836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1665544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1666252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1667196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1667904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1668612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1669556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1670264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1670972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1671916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1672624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1673332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1674276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1674984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1675692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1676636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1677344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1678052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1678996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1679704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1680412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1681356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1682064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1682772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1683716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1684424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1685132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1686076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1686784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1687492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1688436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1689144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1689852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1690796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1691504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1692212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1693156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1693864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1694572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1695516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1696224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1696932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1697876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1698584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1699292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1700236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1700944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1701652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1702596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1703304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1704012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1704956 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1705664 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1706372 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1707316 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1708024 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1708732 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1709676 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1710384 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1711092 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1712036 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1712744 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1713452 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1714396 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1715104 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1715812 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1716756 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1717464 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1718172 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1719116 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1719824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1720532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1721476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1722184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1722892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1723836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1724544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1725252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1726196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1726904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1727612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1728556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1729264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1729972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1730916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1731624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1732332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1733276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1733984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1734692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1735636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1736344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1737052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1737996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1738704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1739412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1740356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1741064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1741772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1742716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1743424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1744132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1745076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1745784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1746492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1747436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1748144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1748852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1749796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1750504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1751212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1752156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1752864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1753572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1754516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1755224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1755932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1756876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1757584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1758292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1759236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1759944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1760652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1761596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1762304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1763012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1763956 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1764664 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1765372 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1766316 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1767024 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1767732 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1768676 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1769384 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1770092 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1771036 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1771744 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1772452 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1773396 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1774104 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1774812 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1775756 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1776464 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1777172 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1778116 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1778824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1779532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1780476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1781184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1781892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1782836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1783544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1784252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1785196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1785904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1786612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1787556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1788264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1788972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1789916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1790624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1791332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1792276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1792984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1793692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1794636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1795344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1796052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1796996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1797704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1798412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1799356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1800064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1800772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1801716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1802424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1803132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1804076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1804784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1805492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1806436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1807144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1807852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1808796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1809504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1810212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1811156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1811864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1812572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1813516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1814224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1814932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1815876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1816584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1817292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1818236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1818944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1819652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1820596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1821304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1822012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1822956 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1823664 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1824372 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1825316 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1826024 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1826732 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1827676 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1828384 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1829092 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1830036 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1830744 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1831452 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1832396 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1833104 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1833812 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1834756 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1835464 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1836172 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1837116 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1837824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1838532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1839476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1840184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1840892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1841836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1842544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1843252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1844196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1844904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1845612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1846556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1847264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1847972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1848916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1849624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1850332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1851276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1851984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1852692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1853636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1854344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1855052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1855996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1856704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1857412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1858356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1859064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1859772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1860716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1861424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1862132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1863076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1863784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1864492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1865436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1866144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1866852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1867796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1868504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1869212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1870156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1870864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1871572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1872516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1873224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1873932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1874876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1875584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1876292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1877236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1877944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1878652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1879596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1880304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1881012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1881956 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1882664 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1883372 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1884316 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1885024 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1885732 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1886676 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1887384 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1888092 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1889036 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1889744 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1890452 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1891396 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1892104 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1892812 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1893756 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1894464 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1895172 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1896116 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1896824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1897532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1898476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1899184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1899892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1900836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1901544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1902252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1903196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1903904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1904612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1905556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1906264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1906972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1907916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1908624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1909332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1910276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1910984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1911692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1912636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1913344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1914052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1914996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1915704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1916412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1917356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1918064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1918772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1919716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1920424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1921132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1922076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1922784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1923492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1924436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1925144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1925852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1926796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1927504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1928212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1929156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1929864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1930572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1931516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1932224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1932932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1933876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1934584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1935292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1936236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1936944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1937652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1938596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1939304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1940012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1940956 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1941664 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1942372 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1943316 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1944024 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1944732 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1945676 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1946384 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1947092 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1948036 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1948744 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1949452 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1950396 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1951104 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1951812 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1952756 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1953464 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1954172 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1955116 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1955824 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1956532 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1957476 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1958184 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1958892 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1959836 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1960544 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1961252 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1962196 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1962904 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1963612 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1964556 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1965264 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1965972 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1966916 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1967624 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1968332 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1969276 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1969984 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1970692 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1971636 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1972344 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1973052 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1973996 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1974704 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1975412 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1976356 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1977064 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1977772 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1978716 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1979424 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1980132 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1981076 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1981784 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1982492 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1983436 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1984144 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1984852 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1985796 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1986504 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1987212 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1988156 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1988864 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1989572 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1990516 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1991224 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1991932 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1992876 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1993584 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1994292 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1995236 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1995944 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1996652 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1997596 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1998304 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 1999012 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 1999956 + }, + { + "buffer" : 0, + "byteLength" : 260, + "byteOffset" : 2000664 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2000924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2001704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2002744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2003524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2004304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2005344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2006124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2006904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2007944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2008724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2009504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2010544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2011324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2012104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2013144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2013924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2014704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2015744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2016524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2017304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2018344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2019124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2019904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2020944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2021724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2022504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2023544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2024324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2025104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2026144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2026924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2027704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2028744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2029524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2030304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2031344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2032124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2032904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2033944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2034724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2035504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2036544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2037324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2038104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2039144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2039924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2040704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2041744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2042524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2043304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2044344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2045124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2045904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2046944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2047724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2048504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2049544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2050324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2051104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2052144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2052924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2053704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2054744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2055524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2056304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2057344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2058124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2058904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2059944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2060724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2061504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2062544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2063324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2064104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2065144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2065924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2066704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2067744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2068524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2069304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2070344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2071124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2071904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2072944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2073724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2074504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2075544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2076324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2077104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2078144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2078924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2079704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2080744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2081524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2082304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2083344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2084124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2084904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2085944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2086724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2087504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2088544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2089324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2090104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2091144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2091924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2092704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2093744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2094524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2095304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2096344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2097124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2097904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2098944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2099724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2100504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2101544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2102324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2103104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2104144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2104924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2105704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2106744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2107524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2108304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2109344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2110124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2110904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2111944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2112724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2113504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2114544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2115324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2116104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2117144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2117924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2118704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2119744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2120524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2121304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2122344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2123124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2123904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2124944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2125724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2126504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2127544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2128324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2129104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2130144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2130924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2131704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2132744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2133524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2134304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2135344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2136124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2136904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2137944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2138724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2139504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2140544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2141324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2142104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2143144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2143924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2144704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2145744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2146524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2147304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2148344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2149124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2149904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2150944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2151724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2152504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2153544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2154324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2155104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2156144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2156924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2157704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2158744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2159524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2160304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2161344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2162124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2162904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2163944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2164724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2165504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2166544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2167324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2168104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2169144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2169924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2170704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2171744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2172524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2173304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2174344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2175124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2175904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2176944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2177724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2178504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2179544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2180324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2181104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2182144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2182924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2183704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2184744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2185524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2186304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2187344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2188124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2188904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2189944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2190724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2191504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2192544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2193324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2194104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2195144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2195924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2196704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2197744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2198524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2199304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2200344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2201124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2201904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2202944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2203724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2204504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2205544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2206324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2207104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2208144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2208924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2209704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2210744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2211524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2212304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2213344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2214124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2214904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2215944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2216724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2217504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2218544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2219324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2220104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2221144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2221924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2222704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2223744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2224524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2225304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2226344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2227124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2227904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2228944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2229724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2230504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2231544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2232324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2233104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2234144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2234924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2235704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2236744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2237524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2238304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2239344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2240124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2240904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2241944 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2242724 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2243504 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2244544 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2245324 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2246104 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2247144 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2247924 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2248704 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2249744 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2250524 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2251304 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2252344 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2253124 + }, + { + "buffer" : 0, + "byteLength" : 1040, + "byteOffset" : 2253904 + }, + { + "buffer" : 0, + "byteLength" : 780, + "byteOffset" : 2254944 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2255724 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2256432 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2257376 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2258084 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2258792 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2259736 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2260444 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2261152 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2262096 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2262804 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2263512 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2264456 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2265164 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2265872 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2266816 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2267524 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2268232 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2269176 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2269884 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2270592 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2271536 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2272244 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2272952 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2273896 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2274604 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2275312 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2276256 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2276964 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2277672 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2278616 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2279324 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2280032 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2280976 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2281684 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2282392 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2283336 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2284044 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2284752 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2285696 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2286404 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2287112 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2288056 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2288764 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2289472 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2290416 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2291124 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2291832 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2292776 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2293484 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2294192 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2295136 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2295844 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2296552 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2297496 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2298204 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2298912 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2299856 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2300564 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2301272 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2302216 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2302924 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2303632 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2304576 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2305284 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2305992 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2306936 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2307644 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2308352 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2309296 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2310004 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2310712 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2311656 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2312364 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2313072 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2314016 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2314724 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2315432 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2316376 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2317084 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2317792 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2318736 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2319444 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2320152 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2321096 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2321804 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2322512 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2323456 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2324164 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2324872 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2325816 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2326524 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2327232 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2328176 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2328884 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2329592 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2330536 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2331244 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2331952 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2332896 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2333604 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2334312 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2335256 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2335964 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2336672 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2337616 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2338324 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2339032 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2339976 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2340684 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2341392 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2342336 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2343044 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2343752 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2344696 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2345404 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2346112 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2347056 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2347764 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2348472 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2349416 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2350124 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2350832 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2351776 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2352484 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2353192 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2354136 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2354844 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2355552 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2356496 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2357204 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2357912 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2358856 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2359564 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2360272 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2361216 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2361924 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2362632 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2363576 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2364284 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2364992 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2365936 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2366644 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2367352 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2368296 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2369004 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2369712 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2370656 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2371364 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2372072 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2373016 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2373724 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2374432 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2375376 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2376084 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2376792 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2377736 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2378444 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2379152 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2380096 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2380804 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2381512 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2382456 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2383164 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2383872 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2384816 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2385524 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2386232 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2387176 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2387884 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2388592 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2389536 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2390244 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2390952 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2391896 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2392604 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2393312 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2394256 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2394964 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2395672 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2396616 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2397324 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2398032 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2398976 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2399684 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2400392 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2401336 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2402044 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2402752 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2403696 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2404404 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2405112 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2406056 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2406764 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2407472 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2408416 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2409124 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2409832 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2410776 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2411484 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2412192 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2413136 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2413844 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2414552 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2415496 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2416204 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2416912 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2417856 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2418564 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2419272 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2420216 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2420924 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2421632 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2422576 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2423284 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2423992 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2424936 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2425644 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2426352 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2427296 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2428004 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2428712 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2429656 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2430364 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2431072 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2432016 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2432724 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2433432 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2434376 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2435084 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2435792 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2436736 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2437444 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2438152 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2439096 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2439804 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2440512 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2441456 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2442164 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2442872 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2443816 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2444524 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2445232 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2446176 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2446884 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2447592 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2448536 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2449244 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2449952 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2450896 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2451604 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2452312 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2453256 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2453964 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2454672 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2455616 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2456324 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2457032 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2457976 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2458684 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2459392 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2460336 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2461044 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2461752 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2462696 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2463404 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2464112 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2465056 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2465764 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2466472 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2467416 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2468124 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2468832 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2469776 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2470484 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2471192 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2472136 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2472844 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2473552 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2474496 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2475204 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2475912 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2476856 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2477564 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2478272 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2479216 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2479924 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2480632 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2481576 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2482284 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2482992 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2483936 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2484644 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2485352 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2486296 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2487004 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2487712 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2488656 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2489364 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2490072 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2491016 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2491724 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2492432 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2493376 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2494084 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2494792 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2495736 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2496444 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2497152 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2498096 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2498804 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2499512 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2500456 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2501164 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2501872 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2502816 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2503524 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2504232 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2505176 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2505884 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2506592 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2507536 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2508244 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2508952 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2509896 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2510604 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2511312 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2512256 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2512964 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2513672 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2514616 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2515324 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2516032 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2516976 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2517684 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2518392 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2519336 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2520044 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2520752 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2521696 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2522404 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2523112 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2524056 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2524764 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2525472 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2526416 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2527124 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2527832 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2528776 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2529484 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2530192 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2531136 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2531844 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2532552 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2533496 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2534204 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2534912 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2535856 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2536564 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2537272 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2538216 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2538924 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2539632 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2540576 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2541284 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2541992 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2542936 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2543644 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2544352 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2545296 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2546004 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2546712 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2547656 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2548364 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2549072 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2550016 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2550724 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2551432 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2552376 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2553084 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2553792 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2554736 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2555444 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2556152 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2557096 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2557804 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2558512 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2559456 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2560164 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2560872 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2561816 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2562524 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2563232 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2564176 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2564884 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2565592 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2566536 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2567244 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2567952 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2568896 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2569604 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2570312 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2571256 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2571964 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2572672 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2573616 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2574324 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2575032 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2575976 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2576684 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2577392 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2578336 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2579044 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2579752 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2580696 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2581404 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2582112 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2583056 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2583764 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2584472 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2585416 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2586124 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2586832 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2587776 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2588484 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2589192 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2590136 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2590844 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2591552 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2592496 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2593204 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2593912 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2594856 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2595564 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2596272 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2597216 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2597924 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2598632 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2599576 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2600284 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2600992 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2601936 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2602644 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2603352 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2604296 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2605004 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2605712 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2606656 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2607364 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2608072 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2609016 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2609724 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2610432 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2611376 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2612084 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2612792 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2613736 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2614444 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2615152 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2616096 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2616804 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2617512 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2618456 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2619164 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2619872 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2620816 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2621524 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2622232 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2623176 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2623884 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2624592 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2625536 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2626244 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2626952 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2627896 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2628604 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2629312 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2630256 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2630964 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2631672 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2632616 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2633324 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2634032 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2634976 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2635684 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2636392 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2637336 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2638044 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2638752 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2639696 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2640404 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2641112 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2642056 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2642764 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2643472 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2644416 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2645124 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2645832 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2646776 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2647484 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2648192 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2649136 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2649844 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2650552 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2651496 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2652204 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2652912 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2653856 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2654564 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2655272 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2656216 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2656924 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2657632 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2658576 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2659284 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2659992 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2660936 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2661644 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2662352 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2663296 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2664004 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2664712 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2665656 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2666364 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2667072 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2668016 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2668724 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2669432 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2670376 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2671084 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2671792 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2672736 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2673444 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2674152 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2675096 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2675804 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2676512 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2677456 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2678164 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2678872 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2679816 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2680524 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2681232 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2682176 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2682884 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2683592 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2684536 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2685244 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2685952 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2686896 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2687604 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2688312 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2689256 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2689964 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2690672 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2691616 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2692324 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2693032 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2693976 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2694684 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2695392 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2696336 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2697044 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2697752 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2698696 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2699404 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2700112 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2701056 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2701764 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2702472 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2703416 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2704124 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2704832 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2705776 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2706484 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2707192 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2708136 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2708844 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2709552 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2710496 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2711204 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2711912 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2712856 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2713564 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2714272 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2715216 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2715924 + }, + { + "buffer" : 0, + "byteLength" : 944, + "byteOffset" : 2716632 + }, + { + "buffer" : 0, + "byteLength" : 708, + "byteOffset" : 2717576 + }, + { + "buffer" : 0, + "byteLength" : 224, + "byteOffset" : 2718284 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2718508 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2719180 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2720076 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2720748 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2721420 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2722316 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2722988 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2723660 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2724556 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2725228 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2725900 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2726796 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2727468 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2728140 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2729036 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2729708 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2730380 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2731276 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2731948 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2732620 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2733516 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2734188 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2734860 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2735756 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2736428 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2737100 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2737996 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2738668 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2739340 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2740236 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2740908 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2741580 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2742476 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2743148 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2743820 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2744716 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2745388 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2746060 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2746956 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2747628 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2748300 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2749196 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2749868 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2750540 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2751436 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2752108 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2752780 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2753676 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2754348 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2755020 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2755916 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2756588 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2757260 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2758156 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2758828 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2759500 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2760396 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2761068 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2761740 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2762636 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2763308 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2763980 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2764876 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2765548 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2766220 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2767116 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2767788 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2768460 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2769356 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2770028 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2770700 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2771596 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2772268 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2772940 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2773836 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2774508 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2775180 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2776076 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2776748 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2777420 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2778316 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2778988 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2779660 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2780556 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2781228 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2781900 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2782796 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2783468 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2784140 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2785036 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2785708 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2786380 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2787276 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2787948 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2788620 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2789516 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2790188 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2790860 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2791756 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2792428 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2793100 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2793996 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2794668 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2795340 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2796236 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2796908 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2797580 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2798476 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2799148 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2799820 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2800716 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2801388 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2802060 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2802956 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2803628 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2804300 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2805196 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2805868 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2806540 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2807436 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2808108 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2808780 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2809676 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2810348 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2811020 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2811916 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2812588 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2813260 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2814156 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2814828 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2815500 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2816396 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2817068 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2817740 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2818636 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2819308 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2819980 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2820876 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2821548 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2822220 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2823116 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2823788 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2824460 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2825356 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2826028 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2826700 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2827596 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2828268 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2828940 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2829836 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2830508 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2831180 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2832076 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2832748 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2833420 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2834316 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2834988 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2835660 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2836556 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2837228 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2837900 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2838796 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2839468 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2840140 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2841036 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2841708 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2842380 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2843276 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2843948 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2844620 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2845516 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2846188 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2846860 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2847756 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2848428 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2849100 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2849996 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2850668 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2851340 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2852236 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2852908 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2853580 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2854476 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2855148 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2855820 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2856716 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2857388 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2858060 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2858956 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2859628 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2860300 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2861196 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2861868 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2862540 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2863436 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2864108 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2864780 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2865676 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2866348 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2867020 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2867916 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2868588 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2869260 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2870156 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2870828 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2871500 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2872396 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2873068 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2873740 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2874636 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2875308 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2875980 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2876876 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2877548 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2878220 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2879116 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2879788 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2880460 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2881356 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2882028 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2882700 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2883596 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2884268 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2884940 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2885836 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2886508 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2887180 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2888076 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2888748 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2889420 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2890316 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2890988 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2891660 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2892556 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2893228 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2893900 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2894796 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2895468 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2896140 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2897036 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2897708 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2898380 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2899276 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2899948 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2900620 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2901516 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2902188 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2902860 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2903756 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2904428 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2905100 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2905996 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2906668 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2907340 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2908236 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2908908 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2909580 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2910476 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2911148 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2911820 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2912716 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2913388 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2914060 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2914956 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2915628 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2916300 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2917196 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2917868 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2918540 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2919436 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2920108 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2920780 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2921676 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2922348 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2923020 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2923916 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2924588 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2925260 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2926156 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2926828 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2927500 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2928396 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2929068 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2929740 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2930636 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2931308 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2931980 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2932876 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2933548 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2934220 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2935116 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2935788 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2936460 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2937356 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2938028 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2938700 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2939596 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2940268 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2940940 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2941836 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2942508 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2943180 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2944076 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2944748 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2945420 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2946316 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2946988 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2947660 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2948556 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2949228 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2949900 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2950796 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2951468 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2952140 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2953036 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2953708 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2954380 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2955276 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2955948 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2956620 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2957516 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2958188 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2958860 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2959756 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2960428 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2961100 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2961996 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2962668 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2963340 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2964236 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2964908 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2965580 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2966476 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2967148 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2967820 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2968716 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2969388 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2970060 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2970956 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2971628 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2972300 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2973196 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2973868 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2974540 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2975436 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2976108 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2976780 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2977676 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2978348 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2979020 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2979916 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2980588 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2981260 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2982156 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2982828 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2983500 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2984396 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2985068 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2985740 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2986636 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2987308 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2987980 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2988876 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2989548 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2990220 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2991116 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2991788 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2992460 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2993356 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2994028 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2994700 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2995596 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2996268 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2996940 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2997836 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2998508 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 2999180 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3000076 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3000748 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3001420 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3002316 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3002988 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3003660 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3004556 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3005228 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3005900 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3006796 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3007468 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3008140 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3009036 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3009708 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3010380 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3011276 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3011948 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3012620 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3013516 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3014188 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3014860 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3015756 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3016428 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3017100 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3017996 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3018668 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3019340 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3020236 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3020908 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3021580 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3022476 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3023148 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3023820 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3024716 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3025388 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3026060 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3026956 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3027628 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3028300 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3029196 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3029868 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3030540 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3031436 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3032108 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3032780 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3033676 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3034348 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3035020 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3035916 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3036588 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3037260 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3038156 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3038828 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3039500 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3040396 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3041068 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3041740 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3042636 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3043308 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3043980 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3044876 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3045548 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3046220 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3047116 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3047788 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3048460 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3049356 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3050028 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3050700 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3051596 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3052268 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3052940 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3053836 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3054508 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3055180 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3056076 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3056748 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3057420 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3058316 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3058988 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3059660 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3060556 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3061228 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3061900 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3062796 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3063468 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3064140 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3065036 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3065708 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3066380 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3067276 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3067948 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3068620 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3069516 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3070188 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3070860 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3071756 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3072428 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3073100 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3073996 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3074668 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3075340 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3076236 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3076908 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3077580 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3078476 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3079148 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3079820 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3080716 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3081388 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3082060 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3082956 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3083628 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3084300 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3085196 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3085868 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3086540 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3087436 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3088108 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3088780 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3089676 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3090348 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3091020 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3091916 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3092588 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3093260 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3094156 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3094828 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3095500 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3096396 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3097068 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3097740 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3098636 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3099308 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3099980 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3100876 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3101548 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3102220 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3103116 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3103788 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3104460 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3105356 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3106028 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3106700 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3107596 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3108268 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3108940 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3109836 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3110508 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3111180 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3112076 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3112748 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3113420 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3114316 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3114988 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3115660 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3116556 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3117228 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3117900 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3118796 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3119468 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3120140 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3121036 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3121708 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3122380 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3123276 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3123948 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3124620 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3125516 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3126188 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3126860 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3127756 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3128428 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3129100 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3129996 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3130668 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3131340 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3132236 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3132908 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3133580 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3134476 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3135148 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3135820 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3136716 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3137388 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3138060 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3138956 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3139628 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3140300 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3141196 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3141868 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3142540 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3143436 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3144108 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3144780 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3145676 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3146348 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3147020 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3147916 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3148588 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3149260 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3150156 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3150828 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3151500 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3152396 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3153068 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3153740 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3154636 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3155308 + }, + { + "buffer" : 0, + "byteLength" : 896, + "byteOffset" : 3155980 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 3156876 + }, + { + "buffer" : 0, + "byteLength" : 4, + "byteOffset" : 3157548 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3157564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3157604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3157644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3157684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3157724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3157764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3157804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3157844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3157884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3157924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3157964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3157992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158300 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158312 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158340 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158352 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158380 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158392 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158420 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158432 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158460 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158472 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158500 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158512 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158540 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3158964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3158992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159300 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159312 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159340 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159352 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159380 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159392 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159420 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159432 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159460 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159472 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159500 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159512 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159540 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3159964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3159992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160300 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160312 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160340 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160352 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160380 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160392 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160420 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160432 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160460 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160472 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160500 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160512 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160540 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3160964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3160992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161300 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161312 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161340 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161352 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161380 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161392 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161420 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161432 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161460 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161472 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161500 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161512 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161540 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3161964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3161992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162300 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162312 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162340 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162352 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162380 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162392 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162420 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162432 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162460 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162472 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162500 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162512 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162540 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3162964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3162992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163300 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163312 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163340 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163352 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163380 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163392 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163420 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163432 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163460 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163472 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163500 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163512 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163540 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3163964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3163992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164300 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164312 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164340 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164352 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164380 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164392 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164420 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164432 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164460 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164472 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164500 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164512 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164540 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3164964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3164992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165300 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165312 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165340 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165352 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165380 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165392 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165420 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165432 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165460 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165472 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165500 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165512 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165540 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3165964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3165992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166300 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166312 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166340 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166352 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166380 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166392 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166420 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166432 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166460 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166472 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166500 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166512 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166540 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3166964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3166992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167300 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167312 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167340 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167352 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167380 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167392 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167420 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167432 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167460 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167472 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167500 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167512 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167540 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3167964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3167992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168300 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168312 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168340 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168352 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168380 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168392 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168420 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168432 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168460 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168472 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168500 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168512 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168540 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168552 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168580 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168592 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168620 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168632 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168660 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168672 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168700 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168712 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168740 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168752 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168780 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168792 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168820 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168832 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168860 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168872 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168900 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168912 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168940 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168952 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3168964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168980 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3168992 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3169004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169020 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169032 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3169044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169060 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169072 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3169084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169100 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169112 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3169124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169140 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169152 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3169164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169180 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169192 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3169204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169220 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169232 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3169244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169260 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169272 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 3169284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 3169300 + }, + { + "buffer" : 0, + "byteLength" : 172, + "byteOffset" : 3169312 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3169484 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3170000 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3170688 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3171204 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3171720 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3172408 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3172924 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3173440 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3174128 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3174644 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3175160 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3175848 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3176364 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3176880 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3177568 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3178084 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3178600 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3179288 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3179804 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3180320 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3181008 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3181524 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3182040 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3182728 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3183244 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3183760 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3184448 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3184964 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3185480 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3186168 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3186684 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3187200 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3187888 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3188404 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3188920 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3189608 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3190124 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3190640 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3191328 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3191844 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3192360 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3193048 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3193564 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3194080 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3194768 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3195284 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3195800 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3196488 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3197004 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3197520 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3198208 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3198724 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3199240 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3199928 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3200444 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3200960 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3201648 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3202164 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3202680 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3203368 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3203884 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3204400 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3205088 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3205604 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3206120 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3206808 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3207324 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3207840 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3208528 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3209044 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3209560 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3210248 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3210764 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3211280 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3211968 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3212484 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3213000 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3213688 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3214204 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3214720 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3215408 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3215924 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3216440 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3217128 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3217644 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3218160 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3218848 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3219364 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3219880 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3220568 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3221084 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3221600 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3222288 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3222804 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3223320 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3224008 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3224524 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3225040 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3225728 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3226244 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3226760 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3227448 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3227964 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3228480 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3229168 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3229684 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3230200 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3230888 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3231404 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3231920 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3232608 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3233124 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3233640 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3234328 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3234844 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3235360 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3236048 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3236564 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3237080 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3237768 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3238284 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3238800 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3239488 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3240004 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3240520 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3241208 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3241724 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3242240 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3242928 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3243444 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3243960 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3244648 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3245164 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3245680 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3246368 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3246884 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3247400 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3248088 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3248604 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3249120 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3249808 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3250324 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3250840 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3251528 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3252044 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3252560 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3253248 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3253764 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3254280 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3254968 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3255484 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3256000 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3256688 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3257204 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3257720 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3258408 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3258924 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3259440 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3260128 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3260644 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3261160 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3261848 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3262364 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3262880 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3263568 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3264084 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3264600 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3265288 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3265804 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3266320 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3267008 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3267524 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3268040 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3268728 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3269244 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3269760 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3270448 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3270964 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3271480 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3272168 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3272684 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3273200 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3273888 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3274404 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3274920 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3275608 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3276124 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3276640 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3277328 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3277844 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3278360 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3279048 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3279564 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3280080 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3280768 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3281284 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3281800 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3282488 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3283004 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3283520 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3284208 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3284724 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3285240 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3285928 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3286444 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3286960 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3287648 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3288164 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3288680 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3289368 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3289884 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3290400 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3291088 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3291604 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3292120 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3292808 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3293324 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3293840 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3294528 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3295044 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3295560 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3296248 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3296764 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3297280 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3297968 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3298484 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3299000 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3299688 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3300204 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3300720 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3301408 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3301924 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3302440 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3303128 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3303644 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3304160 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3304848 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3305364 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3305880 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3306568 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3307084 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3307600 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3308288 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3308804 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3309320 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3310008 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3310524 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3311040 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3311728 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3312244 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3312760 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3313448 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3313964 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3314480 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3315168 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3315684 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3316200 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3316888 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3317404 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3317920 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3318608 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3319124 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3319640 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3320328 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3320844 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3321360 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3322048 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3322564 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3323080 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3323768 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3324284 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3324800 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3325488 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3326004 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3326520 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3327208 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3327724 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3328240 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3328928 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3329444 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3329960 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3330648 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3331164 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3331680 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3332368 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3332884 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3333400 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3334088 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3334604 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3335120 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3335808 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3336324 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3336840 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3337528 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3338044 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3338560 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3339248 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3339764 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3340280 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3340968 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3341484 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3342000 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3342688 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3343204 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3343720 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3344408 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3344924 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3345440 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3346128 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3346644 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3347160 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3347848 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3348364 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3348880 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3349568 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3350084 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3350600 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3351288 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3351804 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3352320 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3353008 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3353524 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3354040 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3354728 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3355244 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3355760 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3356448 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3356964 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3357480 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3358168 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3358684 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3359200 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3359888 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3360404 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3360920 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3361608 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3362124 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3362640 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3363328 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3363844 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3364360 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3365048 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3365564 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3366080 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3366768 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3367284 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3367800 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3368488 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3369004 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3369520 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3370208 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3370724 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3371240 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3371928 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3372444 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3372960 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3373648 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3374164 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3374680 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3375368 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3375884 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3376400 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3377088 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3377604 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3378120 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3378808 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3379324 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3379840 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3380528 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3381044 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3381560 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3382248 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3382764 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3383280 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3383968 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3384484 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3385000 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3385688 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3386204 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3386720 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3387408 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3387924 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3388440 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3389128 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3389644 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3390160 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3390848 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3391364 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3391880 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3392568 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3393084 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3393600 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3394288 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3394804 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3395320 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3396008 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3396524 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3397040 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3397728 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3398244 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3398760 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3399448 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3399964 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3400480 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3401168 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3401684 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3402200 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3402888 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3403404 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3403920 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3404608 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3405124 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3405640 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3406328 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3406844 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3407360 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3408048 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3408564 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3409080 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3409768 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3410284 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3410800 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3411488 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3412004 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3412520 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3413208 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3413724 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3414240 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3414928 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3415444 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3415960 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3416648 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3417164 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3417680 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3418368 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3418884 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3419400 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3420088 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3420604 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3421120 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3421808 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3422324 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3422840 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3423528 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3424044 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3424560 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3425248 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3425764 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3426280 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3426968 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3427484 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3428000 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3428688 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3429204 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3429720 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3430408 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3430924 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3431440 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3432128 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3432644 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3433160 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3433848 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3434364 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3434880 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3435568 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3436084 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3436600 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3437288 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3437804 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3438320 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3439008 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3439524 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3440040 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3440728 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3441244 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3441760 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3442448 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3442964 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3443480 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3444168 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3444684 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3445200 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3445888 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3446404 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3446920 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3447608 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3448124 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3448640 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3449328 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3449844 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3450360 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3451048 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3451564 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3452080 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3452768 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3453284 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3453800 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3454488 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3455004 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3455520 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3456208 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3456724 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3457240 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3457928 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3458444 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3458960 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3459648 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3460164 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3460680 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3461368 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3461884 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3462400 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3463088 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3463604 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3464120 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3464808 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3465324 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3465840 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3466528 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3467044 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3467560 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3468248 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3468764 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3469280 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3469968 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3470484 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3471000 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3471688 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3472204 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3472720 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3473408 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3473924 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3474440 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3475128 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3475644 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3476160 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3476848 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3477364 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3477880 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3478568 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3479084 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3479600 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3480288 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3480804 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3481320 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3482008 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3482524 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3483040 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3483728 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3484244 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3484760 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3485448 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3485964 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3486480 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3487168 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3487684 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3488200 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3488888 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3489404 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3489920 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3490608 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3491124 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3491640 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3492328 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3492844 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3493360 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3494048 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3494564 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3495080 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3495768 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3496284 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3496800 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3497488 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3498004 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3498520 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3499208 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3499724 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3500240 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3500928 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3501444 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3501960 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3502648 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3503164 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3503680 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3504368 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3504884 + }, + { + "buffer" : 0, + "byteLength" : 688, + "byteOffset" : 3505400 + }, + { + "buffer" : 0, + "byteLength" : 516, + "byteOffset" : 3506088 + }, + { + "buffer" : 0, + "byteLength" : 348, + "byteOffset" : 3506604 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3506952 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3507996 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3509388 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3510432 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3511476 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3512868 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3513912 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3514956 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3516348 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3517392 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3518436 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3519828 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3520872 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3521916 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3523308 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3524352 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3525396 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3526788 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3527832 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3528876 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3530268 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3531312 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3532356 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3533748 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3534792 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3535836 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3537228 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3538272 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3539316 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3540708 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3541752 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3542796 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3544188 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3545232 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3546276 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3547668 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3548712 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3549756 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3551148 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3552192 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3553236 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3554628 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3555672 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3556716 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3558108 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3559152 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3560196 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3561588 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3562632 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3563676 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3565068 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3566112 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3567156 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3568548 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3569592 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3570636 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3572028 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3573072 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3574116 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3575508 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3576552 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3577596 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3578988 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3580032 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3581076 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3582468 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3583512 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3584556 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3585948 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3586992 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3588036 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3589428 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3590472 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3591516 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3592908 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3593952 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3594996 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3596388 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3597432 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3598476 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3599868 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3600912 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3601956 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3603348 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3604392 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3605436 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3606828 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3607872 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3608916 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3610308 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3611352 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3612396 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3613788 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3614832 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3615876 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3617268 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3618312 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3619356 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3620748 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3621792 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3622836 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3624228 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3625272 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3626316 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3627708 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3628752 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3629796 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3631188 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3632232 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3633276 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3634668 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3635712 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3636756 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3638148 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3639192 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3640236 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3641628 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3642672 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3643716 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3645108 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3646152 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3647196 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3648588 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3649632 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3650676 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3652068 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3653112 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3654156 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3655548 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3656592 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3657636 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3659028 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3660072 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3661116 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3662508 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3663552 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3664596 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3665988 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3667032 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3668076 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3669468 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3670512 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3671556 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3672948 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3673992 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3675036 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3676428 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3677472 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3678516 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3679908 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3680952 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3681996 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3683388 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3684432 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3685476 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3686868 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3687912 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3688956 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3690348 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3691392 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3692436 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3693828 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3694872 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3695916 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3697308 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3698352 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3699396 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3700788 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3701832 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3702876 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3704268 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3705312 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3706356 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3707748 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3708792 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3709836 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3711228 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3712272 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3713316 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3714708 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3715752 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3716796 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3718188 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3719232 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3720276 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3721668 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3722712 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3723756 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3725148 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3726192 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3727236 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3728628 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3729672 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3730716 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3732108 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3733152 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3734196 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3735588 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3736632 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3737676 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3739068 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3740112 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3741156 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3742548 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3743592 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3744636 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3746028 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3747072 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3748116 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3749508 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3750552 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3751596 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3752988 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3754032 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3755076 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3756468 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3757512 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3758556 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3759948 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3760992 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3762036 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3763428 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3764472 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3765516 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3766908 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3767952 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3768996 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3770388 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3771432 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3772476 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3773868 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3774912 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3775956 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3777348 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3778392 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3779436 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3780828 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3781872 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3782916 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3784308 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3785352 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3786396 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3787788 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3788832 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3789876 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3791268 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3792312 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3793356 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3794748 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3795792 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3796836 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3798228 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3799272 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3800316 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3801708 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3802752 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3803796 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3805188 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3806232 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3807276 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3808668 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3809712 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3810756 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3812148 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3813192 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3814236 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3815628 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3816672 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3817716 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3819108 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3820152 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3821196 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3822588 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3823632 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3824676 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3826068 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3827112 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3828156 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3829548 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3830592 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3831636 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3833028 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3834072 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3835116 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3836508 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3837552 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3838596 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3839988 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3841032 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3842076 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3843468 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3844512 + }, + { + "buffer" : 0, + "byteLength" : 1392, + "byteOffset" : 3845556 + }, + { + "buffer" : 0, + "byteLength" : 1044, + "byteOffset" : 3846948 + }, + { + "buffer" : 0, + "byteLength" : 136, + "byteOffset" : 3847992 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3848128 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3848536 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3849080 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3849488 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3849896 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3850440 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3850848 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3851256 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3851800 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3852208 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3852616 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3853160 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3853568 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3853976 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3854520 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3854928 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3855336 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3855880 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3856288 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3856696 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3857240 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3857648 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3858056 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3858600 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3859008 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3859416 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3859960 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3860368 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3860776 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3861320 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3861728 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3862136 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3862680 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3863088 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3863496 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3864040 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3864448 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3864856 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3865400 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3865808 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3866216 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3866760 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3867168 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3867576 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3868120 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3868528 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3868936 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3869480 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3869888 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3870296 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3870840 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3871248 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3871656 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3872200 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3872608 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3873016 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3873560 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3873968 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3874376 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3874920 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3875328 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3875736 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3876280 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3876688 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3877096 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3877640 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3878048 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3878456 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3879000 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3879408 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3879816 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3880360 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3880768 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3881176 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3881720 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3882128 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3882536 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3883080 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3883488 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3883896 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3884440 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3884848 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3885256 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3885800 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3886208 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3886616 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3887160 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3887568 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3887976 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3888520 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3888928 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3889336 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3889880 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3890288 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3890696 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3891240 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3891648 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3892056 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3892600 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3893008 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3893416 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3893960 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3894368 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3894776 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3895320 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3895728 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3896136 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3896680 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3897088 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3897496 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3898040 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3898448 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3898856 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3899400 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3899808 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3900216 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3900760 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3901168 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3901576 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3902120 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3902528 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3902936 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3903480 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3903888 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3904296 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3904840 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3905248 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3905656 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3906200 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3906608 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3907016 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3907560 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3907968 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3908376 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3908920 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3909328 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3909736 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3910280 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3910688 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3911096 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3911640 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3912048 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3912456 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3913000 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3913408 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3913816 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3914360 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3914768 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3915176 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3915720 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3916128 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3916536 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3917080 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3917488 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3917896 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3918440 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3918848 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3919256 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3919800 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3920208 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3920616 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3921160 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3921568 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3921976 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3922520 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3922928 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3923336 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3923880 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3924288 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3924696 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3925240 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3925648 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3926056 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3926600 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3927008 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3927416 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3927960 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3928368 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3928776 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3929320 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3929728 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3930136 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3930680 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3931088 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3931496 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3932040 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3932448 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3932856 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3933400 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3933808 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3934216 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3934760 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3935168 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3935576 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3936120 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3936528 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3936936 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3937480 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3937888 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3938296 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3938840 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3939248 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3939656 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3940200 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3940608 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3941016 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3941560 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3941968 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3942376 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3942920 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3943328 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3943736 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3944280 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3944688 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3945096 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3945640 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3946048 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3946456 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3947000 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3947408 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3947816 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3948360 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3948768 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3949176 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3949720 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3950128 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3950536 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3951080 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3951488 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3951896 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3952440 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3952848 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3953256 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3953800 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3954208 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3954616 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3955160 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3955568 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3955976 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3956520 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3956928 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3957336 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3957880 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3958288 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3958696 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3959240 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3959648 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3960056 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3960600 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3961008 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3961416 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3961960 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3962368 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3962776 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3963320 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3963728 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3964136 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3964680 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3965088 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3965496 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3966040 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3966448 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3966856 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3967400 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3967808 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3968216 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3968760 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3969168 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3969576 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3970120 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3970528 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3970936 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3971480 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3971888 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3972296 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3972840 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3973248 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3973656 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3974200 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3974608 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3975016 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3975560 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3975968 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3976376 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3976920 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3977328 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3977736 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3978280 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3978688 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3979096 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3979640 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3980048 + }, + { + "buffer" : 0, + "byteLength" : 544, + "byteOffset" : 3980456 + }, + { + "buffer" : 0, + "byteLength" : 408, + "byteOffset" : 3981000 + }, + { + "buffer" : 0, + "byteLength" : 40, + "byteOffset" : 3981408 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3981448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3981568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3981728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3981848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3981968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3982128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3982248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3982368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3982528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3982648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3982768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3982928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3983048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3983168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3983328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3983448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3983568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3983728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3983848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3983968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3984128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3984248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3984368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3984528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3984648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3984768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3984928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3985048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3985168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3985328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3985448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3985568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3985728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3985848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3985968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3986128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3986248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3986368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3986528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3986648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3986768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3986928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3987048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3987168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3987328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3987448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3987568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3987728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3987848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3987968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3988128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3988248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3988368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3988528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3988648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3988768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3988928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3989048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3989168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3989328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3989448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3989568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3989728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3989848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3989968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3990128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3990248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3990368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3990528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3990648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3990768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3990928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3991048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3991168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3991328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3991448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3991568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3991728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3991848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3991968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3992128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3992248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3992368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3992528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3992648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3992768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3992928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3993048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3993168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3993328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3993448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3993568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3993728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3993848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3993968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3994128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3994248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3994368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3994528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3994648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3994768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3994928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3995048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3995168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3995328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3995448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3995568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3995728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3995848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3995968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3996128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3996248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3996368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3996528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3996648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3996768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3996928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3997048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3997168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3997328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3997448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3997568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3997728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3997848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3997968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3998128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3998248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3998368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3998528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3998648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3998768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3998928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3999048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3999168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3999328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3999448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3999568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3999728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 3999848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 3999968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4000128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4000248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4000368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4000528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4000648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4000768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4000928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4001048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4001168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4001328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4001448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4001568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4001728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4001848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4001968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4002128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4002248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4002368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4002528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4002648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4002768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4002928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4003048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4003168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4003328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4003448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4003568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4003728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4003848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4003968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4004128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4004248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4004368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4004528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4004648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4004768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4004928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4005048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4005168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4005328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4005448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4005568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4005728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4005848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4005968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4006128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4006248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4006368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4006528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4006648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4006768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4006928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4007048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4007168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4007328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4007448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4007568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4007728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4007848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4007968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4008128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4008248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4008368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4008528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4008648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4008768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4008928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4009048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4009168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4009328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4009448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4009568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4009728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4009848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4009968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4010128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4010248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4010368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4010528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4010648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4010768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4010928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4011048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4011168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4011328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4011448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4011568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4011728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4011848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4011968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4012128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4012248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4012368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4012528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4012648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4012768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4012928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4013048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4013168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4013328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4013448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4013568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4013728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4013848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4013968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4014128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4014248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4014368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4014528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4014648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4014768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4014928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4015048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4015168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4015328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4015448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4015568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4015728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4015848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4015968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4016128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4016248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4016368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4016528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4016648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4016768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4016928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4017048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4017168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4017328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4017448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4017568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4017728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4017848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4017968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4018128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4018248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4018368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4018528 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4018648 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4018768 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4018928 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4019048 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4019168 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4019328 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4019448 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4019568 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4019728 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4019848 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4019968 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4020128 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4020248 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4020368 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 4020528 + }, + { + "buffer" : 0, + "byteLength" : 8, + "byteOffset" : 4020648 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4020656 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4020680 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4020712 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4020736 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4020760 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4020792 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4020816 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4020840 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4020872 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4020896 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4020920 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4020952 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4020976 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021000 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021032 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021056 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021080 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021112 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021136 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021160 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021192 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021216 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021240 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021272 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021296 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021320 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021352 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021376 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021400 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021432 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021456 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021480 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021512 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021536 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021560 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021592 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021616 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021640 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021672 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021696 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021720 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021752 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021776 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021800 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021832 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021856 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021880 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021912 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021936 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4021960 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4021992 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022016 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022040 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022072 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022096 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022120 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022152 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022176 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022200 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022232 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022256 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022280 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022312 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022336 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022360 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022392 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022416 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022440 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022472 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022496 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022520 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022552 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022576 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022600 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022632 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022656 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022680 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022712 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022736 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022760 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022792 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022816 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022840 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022872 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022896 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4022920 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022952 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4022976 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023000 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023032 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023056 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023080 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023112 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023136 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023160 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023192 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023216 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023240 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023272 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023296 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023320 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023352 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023376 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023400 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023432 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023456 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023480 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023512 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023536 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023560 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023592 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023616 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023640 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023672 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023696 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023720 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023752 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023776 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023800 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023832 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023856 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023880 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023912 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023936 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4023960 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4023992 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024016 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024040 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024072 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024096 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024120 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024152 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024176 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024200 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024232 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024256 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024280 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024312 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024336 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024360 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024392 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024416 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024440 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024472 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024496 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024520 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024552 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024576 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024600 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024632 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024656 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024680 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024712 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024736 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024760 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024792 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024816 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024840 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024872 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024896 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4024920 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024952 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4024976 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025000 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025032 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025056 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025080 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025112 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025136 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025160 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025192 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025216 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025240 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025272 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025296 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025320 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025352 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025376 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025400 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025432 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025456 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025480 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025512 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025536 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025560 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025592 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025616 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025640 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025672 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025696 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025720 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025752 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025776 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025800 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025832 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025856 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025880 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025912 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025936 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4025960 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4025992 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026016 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026040 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026072 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026096 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026120 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026152 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026176 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026200 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026232 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026256 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026280 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026312 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026336 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026360 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026392 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026416 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026440 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026472 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026496 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026520 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026552 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026576 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026600 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026632 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026656 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026680 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026712 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026736 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026760 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026792 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026816 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026840 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026872 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026896 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4026920 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026952 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4026976 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027000 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027032 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027056 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027080 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027112 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027136 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027160 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027192 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027216 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027240 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027272 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027296 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027320 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027352 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027376 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027400 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027432 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027456 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027480 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027512 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027536 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027560 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027592 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027616 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027640 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027672 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027696 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027720 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027752 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027776 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027800 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027832 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027856 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027880 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027912 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027936 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4027960 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4027992 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028016 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4028040 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028072 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028096 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4028120 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028152 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028176 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4028200 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028232 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028256 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4028280 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028312 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028336 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4028360 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028392 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028416 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 4028440 + }, + { + "buffer" : 0, + "byteLength" : 24, + "byteOffset" : 4028472 + }, + { + "buffer" : 0, + "byteLength" : 280, + "byteOffset" : 4028496 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4028776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4029616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4030736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4031576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4032416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4033536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4034376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4035216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4036336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4037176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4038016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4039136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4039976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4040816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4041936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4042776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4043616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4044736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4045576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4046416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4047536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4048376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4049216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4050336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4051176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4052016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4053136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4053976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4054816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4055936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4056776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4057616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4058736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4059576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4060416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4061536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4062376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4063216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4064336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4065176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4066016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4067136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4067976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4068816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4069936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4070776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4071616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4072736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4073576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4074416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4075536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4076376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4077216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4078336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4079176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4080016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4081136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4081976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4082816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4083936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4084776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4085616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4086736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4087576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4088416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4089536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4090376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4091216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4092336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4093176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4094016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4095136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4095976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4096816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4097936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4098776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4099616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4100736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4101576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4102416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4103536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4104376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4105216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4106336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4107176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4108016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4109136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4109976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4110816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4111936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4112776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4113616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4114736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4115576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4116416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4117536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4118376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4119216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4120336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4121176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4122016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4123136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4123976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4124816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4125936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4126776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4127616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4128736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4129576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4130416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4131536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4132376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4133216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4134336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4135176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4136016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4137136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4137976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4138816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4139936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4140776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4141616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4142736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4143576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4144416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4145536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4146376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4147216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4148336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4149176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4150016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4151136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4151976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4152816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4153936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4154776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4155616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4156736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4157576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4158416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4159536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4160376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4161216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4162336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4163176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4164016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4165136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4165976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4166816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4167936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4168776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4169616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4170736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4171576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4172416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4173536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4174376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4175216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4176336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4177176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4178016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4179136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4179976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4180816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4181936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4182776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4183616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4184736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4185576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4186416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4187536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4188376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4189216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4190336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4191176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4192016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4193136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4193976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4194816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4195936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4196776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4197616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4198736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4199576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4200416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4201536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4202376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4203216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4204336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4205176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4206016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4207136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4207976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4208816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4209936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4210776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4211616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4212736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4213576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4214416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4215536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4216376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4217216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4218336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4219176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4220016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4221136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4221976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4222816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4223936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4224776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4225616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4226736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4227576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4228416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4229536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4230376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4231216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4232336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4233176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4234016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4235136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4235976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4236816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4237936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4238776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4239616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4240736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4241576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4242416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4243536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4244376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4245216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4246336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4247176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4248016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4249136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4249976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4250816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4251936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4252776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4253616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4254736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4255576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4256416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4257536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4258376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4259216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4260336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4261176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4262016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4263136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4263976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4264816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4265936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4266776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4267616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4268736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4269576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4270416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4271536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4272376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4273216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4274336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4275176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4276016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4277136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4277976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4278816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4279936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4280776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4281616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4282736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4283576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4284416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4285536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4286376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4287216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4288336 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4289176 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4290016 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4291136 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4291976 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4292816 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4293936 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4294776 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4295616 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4296736 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4297576 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4298416 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4299536 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4300376 + }, + { + "buffer" : 0, + "byteLength" : 1120, + "byteOffset" : 4301216 + }, + { + "buffer" : 0, + "byteLength" : 840, + "byteOffset" : 4302336 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303176 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303188 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303216 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303228 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303256 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303268 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303296 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303308 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303336 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303348 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303376 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303388 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303416 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303428 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303456 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303468 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303496 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303508 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303536 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303548 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303576 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303588 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303616 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303628 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303656 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303668 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303696 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303708 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303736 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303748 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303776 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303788 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303816 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303828 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303856 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303868 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303896 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303908 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303936 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303948 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4303976 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4303988 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304016 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304028 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304056 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304068 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304096 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304108 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304136 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304148 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304176 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304188 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304216 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304228 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304256 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304268 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304296 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304308 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304336 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304348 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304376 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304388 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304416 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304428 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304456 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304468 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304496 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304508 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304536 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304548 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304576 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304588 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304616 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304628 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304656 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304668 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304696 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304708 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304736 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304748 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304776 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304788 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304816 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304828 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304856 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304868 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304896 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304908 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304936 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304948 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4304976 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4304988 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305016 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305028 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305056 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305068 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305096 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305108 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305136 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305148 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305176 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305188 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305216 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305228 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305256 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305268 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305296 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305308 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305336 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305348 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305376 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305388 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305416 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305428 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305456 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305468 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305496 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305508 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305536 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305548 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305576 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305588 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305616 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305628 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305656 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305668 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305696 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305708 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305736 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305748 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305776 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305788 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305816 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305828 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305856 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305868 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305896 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305908 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305936 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305948 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4305976 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4305988 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306016 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306028 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306056 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306068 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306096 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306108 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306136 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306148 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306176 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306188 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306216 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306228 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306256 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306268 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306296 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306308 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306336 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306348 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306376 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306388 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306416 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306428 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306456 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306468 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306496 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306508 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306536 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306548 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306576 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306588 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306616 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306628 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306656 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306668 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306696 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306708 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306736 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306748 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306776 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306788 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306816 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306828 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306856 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306868 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306896 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306908 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306936 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306948 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4306976 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4306988 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307016 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307028 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307056 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307068 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307096 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307108 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307136 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307148 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307176 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307188 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307216 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307228 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307256 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307268 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307296 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307308 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307336 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307348 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307376 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307388 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307416 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307428 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307456 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307468 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307496 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307508 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307536 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307548 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307576 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307588 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307616 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307628 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307656 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307668 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307696 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307708 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307736 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307748 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307776 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307788 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307816 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307828 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307856 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307868 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307896 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307908 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307936 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307948 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4307976 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4307988 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308016 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308028 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308056 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308068 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308096 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308108 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308136 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308148 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308176 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308188 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308216 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308228 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308256 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308268 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308296 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308308 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308336 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308348 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308376 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308388 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308416 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308428 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308456 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308468 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308496 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308508 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308536 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308548 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308576 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308588 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308616 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308628 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308656 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308668 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308696 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308708 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308736 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308748 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308776 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308788 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308816 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308828 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308856 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308868 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308896 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308908 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308936 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308948 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4308976 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4308988 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309016 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309028 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309056 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309068 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309096 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309108 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309136 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309148 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309176 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309188 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309216 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309228 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309256 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309268 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309296 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309308 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309336 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309348 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309376 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309388 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309416 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309428 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309456 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309468 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309496 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309508 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309536 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309548 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309576 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309588 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309616 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309628 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309656 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309668 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309696 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309708 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309736 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309748 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309776 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309788 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309816 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309828 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309856 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309868 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309896 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309908 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309936 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309948 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4309976 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4309988 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310004 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310016 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310028 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310044 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310056 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310068 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310084 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310096 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310108 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310124 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310136 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310148 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310164 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310176 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310188 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310204 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310216 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310228 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310244 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310256 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310268 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310284 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310296 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310308 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310324 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310336 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310348 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310364 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310376 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310388 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310404 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310416 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310428 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310444 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310456 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310468 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310484 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310496 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310508 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310524 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310536 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310548 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310564 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310576 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310588 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310604 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310616 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310628 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310644 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310656 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310668 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310684 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310696 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310708 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310724 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310736 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310748 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310764 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310776 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310788 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310804 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310816 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310828 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310844 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310856 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310868 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310884 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310896 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310908 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310924 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310936 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310948 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310964 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4310976 + }, + { + "buffer" : 0, + "byteLength" : 16, + "byteOffset" : 4310988 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 4311004 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 4311016 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4311376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4312456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4313896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4314976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4316056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4317496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4318576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4319656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4321096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4322176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4323256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4324696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4325776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4326856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4328296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4329376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4330456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4331896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4332976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4334056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4335496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4336576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4337656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4339096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4340176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4341256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4342696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4343776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4344856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4346296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4347376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4348456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4349896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4350976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4352056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4353496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4354576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4355656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4357096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4358176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4359256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4360696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4361776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4362856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4364296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4365376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4366456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4367896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4368976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4370056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4371496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4372576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4373656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4375096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4376176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4377256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4378696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4379776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4380856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4382296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4383376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4384456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4385896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4386976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4388056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4389496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4390576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4391656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4393096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4394176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4395256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4396696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4397776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4398856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4400296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4401376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4402456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4403896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4404976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4406056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4407496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4408576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4409656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4411096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4412176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4413256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4414696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4415776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4416856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4418296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4419376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4420456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4421896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4422976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4424056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4425496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4426576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4427656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4429096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4430176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4431256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4432696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4433776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4434856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4436296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4437376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4438456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4439896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4440976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4442056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4443496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4444576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4445656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4447096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4448176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4449256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4450696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4451776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4452856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4454296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4455376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4456456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4457896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4458976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4460056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4461496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4462576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4463656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4465096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4466176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4467256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4468696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4469776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4470856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4472296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4473376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4474456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4475896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4476976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4478056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4479496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4480576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4481656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4483096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4484176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4485256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4486696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4487776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4488856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4490296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4491376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4492456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4493896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4494976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4496056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4497496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4498576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4499656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4501096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4502176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4503256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4504696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4505776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4506856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4508296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4509376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4510456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4511896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4512976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4514056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4515496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4516576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4517656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4519096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4520176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4521256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4522696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4523776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4524856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4526296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4527376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4528456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4529896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4530976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4532056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4533496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4534576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4535656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4537096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4538176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4539256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4540696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4541776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4542856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4544296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4545376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4546456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4547896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4548976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4550056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4551496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4552576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4553656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4555096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4556176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4557256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4558696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4559776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4560856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4562296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4563376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4564456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4565896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4566976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4568056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4569496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4570576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4571656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4573096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4574176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4575256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4576696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4577776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4578856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4580296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4581376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4582456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4583896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4584976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4586056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4587496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4588576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4589656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4591096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4592176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4593256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4594696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4595776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4596856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4598296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4599376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4600456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4601896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4602976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4604056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4605496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4606576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4607656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4609096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4610176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4611256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4612696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4613776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4614856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4616296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4617376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4618456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4619896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4620976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4622056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4623496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4624576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4625656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4627096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4628176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4629256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4630696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4631776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4632856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4634296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4635376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4636456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4637896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4638976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4640056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4641496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4642576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4643656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4645096 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4646176 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4647256 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4648696 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4649776 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4650856 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4652296 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4653376 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4654456 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4655896 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4656976 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4658056 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4659496 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4660576 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 4661656 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 4663096 + }, + { + "buffer" : 0, + "byteLength" : 80, + "byteOffset" : 4664176 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4664256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4664496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4664816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4665056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4665296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4665616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4665856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4666096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4666416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4666656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4666896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4667216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4667456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4667696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4668016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4668256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4668496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4668816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4669056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4669296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4669616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4669856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4670096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4670416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4670656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4670896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4671216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4671456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4671696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4672016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4672256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4672496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4672816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4673056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4673296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4673616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4673856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4674096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4674416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4674656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4674896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4675216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4675456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4675696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4676016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4676256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4676496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4676816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4677056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4677296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4677616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4677856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4678096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4678416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4678656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4678896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4679216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4679456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4679696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4680016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4680256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4680496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4680816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4681056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4681296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4681616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4681856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4682096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4682416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4682656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4682896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4683216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4683456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4683696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4684016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4684256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4684496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4684816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4685056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4685296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4685616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4685856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4686096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4686416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4686656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4686896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4687216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4687456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4687696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4688016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4688256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4688496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4688816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4689056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4689296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4689616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4689856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4690096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4690416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4690656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4690896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4691216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4691456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4691696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4692016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4692256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4692496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4692816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4693056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4693296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4693616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4693856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4694096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4694416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4694656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4694896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4695216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4695456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4695696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4696016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4696256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4696496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4696816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4697056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4697296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4697616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4697856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4698096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4698416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4698656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4698896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4699216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4699456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4699696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4700016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4700256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4700496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4700816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4701056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4701296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4701616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4701856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4702096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4702416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4702656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4702896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4703216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4703456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4703696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4704016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4704256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4704496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4704816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4705056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4705296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4705616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4705856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4706096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4706416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4706656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4706896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4707216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4707456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4707696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4708016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4708256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4708496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4708816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4709056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4709296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4709616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4709856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4710096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4710416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4710656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4710896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4711216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4711456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4711696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4712016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4712256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4712496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4712816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4713056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4713296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4713616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4713856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4714096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4714416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4714656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4714896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4715216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4715456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4715696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4716016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4716256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4716496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4716816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4717056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4717296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4717616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4717856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4718096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4718416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4718656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4718896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4719216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4719456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4719696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4720016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4720256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4720496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4720816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4721056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4721296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4721616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4721856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4722096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4722416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4722656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4722896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4723216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4723456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4723696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4724016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4724256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4724496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4724816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4725056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4725296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4725616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4725856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4726096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4726416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4726656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4726896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4727216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4727456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4727696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4728016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4728256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4728496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4728816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4729056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4729296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4729616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4729856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4730096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4730416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4730656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4730896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4731216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4731456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4731696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4732016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4732256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4732496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4732816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4733056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4733296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4733616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4733856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4734096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4734416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4734656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4734896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4735216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4735456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4735696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4736016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4736256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4736496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4736816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4737056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4737296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4737616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4737856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4738096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4738416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4738656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4738896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4739216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4739456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4739696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4740016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4740256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4740496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4740816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4741056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4741296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4741616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4741856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4742096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4742416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4742656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4742896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4743216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4743456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4743696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4744016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4744256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4744496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4744816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4745056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4745296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4745616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4745856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4746096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4746416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4746656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4746896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4747216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4747456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4747696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4748016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4748256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4748496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4748816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4749056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4749296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4749616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4749856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4750096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4750416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4750656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4750896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4751216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4751456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4751696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4752016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4752256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4752496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4752816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4753056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4753296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4753616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4753856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4754096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4754416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4754656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4754896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4755216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4755456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4755696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4756016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4756256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4756496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4756816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4757056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4757296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4757616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4757856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4758096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4758416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4758656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4758896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4759216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4759456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4759696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4760016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4760256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4760496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4760816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4761056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4761296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4761616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4761856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4762096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4762416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4762656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4762896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4763216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4763456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4763696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4764016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4764256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4764496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4764816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4765056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4765296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4765616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4765856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4766096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4766416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4766656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4766896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4767216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4767456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4767696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4768016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4768256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4768496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4768816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4769056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4769296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4769616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4769856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4770096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4770416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4770656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4770896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4771216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4771456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4771696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4772016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4772256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4772496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4772816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4773056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4773296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4773616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4773856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4774096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4774416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4774656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4774896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4775216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4775456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4775696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4776016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4776256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4776496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4776816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4777056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4777296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4777616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4777856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4778096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4778416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4778656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4778896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4779216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4779456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4779696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4780016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4780256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4780496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4780816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4781056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4781296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4781616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4781856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4782096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4782416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4782656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4782896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4783216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4783456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4783696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4784016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4784256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4784496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4784816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4785056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4785296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4785616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4785856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4786096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4786416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4786656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4786896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4787216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4787456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4787696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4788016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4788256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4788496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4788816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4789056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4789296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4789616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4789856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4790096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4790416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4790656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4790896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4791216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4791456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4791696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4792016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4792256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4792496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4792816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4793056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4793296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4793616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4793856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4794096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4794416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4794656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4794896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4795216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4795456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4795696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4796016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4796256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4796496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4796816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4797056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4797296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4797616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4797856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4798096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4798416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4798656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4798896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4799216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4799456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4799696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4800016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4800256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4800496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4800816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4801056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4801296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4801616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4801856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4802096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4802416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4802656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4802896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4803216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4803456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4803696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4804016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4804256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4804496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4804816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4805056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4805296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4805616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4805856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4806096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4806416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4806656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4806896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4807216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4807456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4807696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4808016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4808256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4808496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4808816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4809056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4809296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4809616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4809856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4810096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4810416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4810656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4810896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4811216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4811456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4811696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4812016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4812256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4812496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4812816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4813056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4813296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4813616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4813856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4814096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4814416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4814656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4814896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4815216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4815456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4815696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4816016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4816256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4816496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4816816 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4817056 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4817296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4817616 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4817856 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4818096 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4818416 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4818656 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4818896 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4819216 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4819456 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4819696 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4820016 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4820256 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 4820496 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4820816 + }, + { + "buffer" : 0, + "byteLength" : 1004, + "byteOffset" : 4821056 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4822060 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4825072 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4829088 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4832100 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4835112 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4839128 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4842140 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4845152 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4849168 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4852180 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4855192 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4859208 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4862220 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4865232 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4869248 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4872260 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4875272 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4879288 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4882300 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4885312 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4889328 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4892340 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4895352 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4899368 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4902380 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4905392 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4909408 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4912420 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4915432 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4919448 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4922460 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4925472 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4929488 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4932500 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4935512 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4939528 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4942540 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4945552 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4949568 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4952580 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4955592 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4959608 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4962620 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4965632 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4969648 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4972660 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4975672 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4979688 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4982700 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4985712 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4989728 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4992740 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 4995752 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 4999768 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5002780 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5005792 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5009808 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5012820 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5015832 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5019848 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5022860 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5025872 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5029888 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5032900 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5035912 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5039928 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5042940 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5045952 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5049968 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5052980 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5055992 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5060008 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5063020 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5066032 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5070048 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5073060 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5076072 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5080088 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5083100 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5086112 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5090128 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5093140 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5096152 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5100168 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5103180 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5106192 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5110208 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5113220 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5116232 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5120248 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5123260 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5126272 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5130288 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5133300 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5136312 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5140328 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5143340 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5146352 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5150368 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5153380 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5156392 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5160408 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5163420 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5166432 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5170448 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5173460 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5176472 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5180488 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5183500 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5186512 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5190528 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5193540 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5196552 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5200568 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5203580 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5206592 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5210608 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5213620 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5216632 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5220648 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5223660 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5226672 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5230688 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5233700 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5236712 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5240728 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5243740 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5246752 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5250768 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5253780 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5256792 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5260808 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5263820 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5266832 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5270848 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5273860 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5276872 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5280888 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5283900 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5286912 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5290928 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5293940 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5296952 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5300968 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5303980 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5306992 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5311008 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5314020 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5317032 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5321048 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5324060 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5327072 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5331088 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5334100 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5337112 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5341128 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5344140 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5347152 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5351168 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5354180 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5357192 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5361208 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5364220 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5367232 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5371248 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5374260 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5377272 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5381288 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5384300 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5387312 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5391328 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5394340 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5397352 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5401368 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5404380 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5407392 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5411408 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5414420 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5417432 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5421448 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5424460 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5427472 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5431488 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5434500 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5437512 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5441528 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5444540 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5447552 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5451568 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5454580 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5457592 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5461608 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5464620 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5467632 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5471648 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5474660 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5477672 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5481688 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5484700 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5487712 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5491728 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5494740 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5497752 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5501768 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5504780 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5507792 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5511808 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5514820 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5517832 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5521848 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5524860 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5527872 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5531888 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5534900 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5537912 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5541928 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5544940 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5547952 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5551968 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5554980 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5557992 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5562008 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5565020 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5568032 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5572048 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5575060 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5578072 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5582088 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5585100 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5588112 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5592128 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5595140 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5598152 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5602168 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5605180 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5608192 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5612208 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5615220 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5618232 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5622248 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5625260 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5628272 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5632288 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5635300 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5638312 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5642328 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5645340 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5648352 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5652368 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5655380 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5658392 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5662408 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5665420 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5668432 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5672448 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5675460 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5678472 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5682488 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5685500 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5688512 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5692528 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5695540 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5698552 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5702568 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5705580 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5708592 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5712608 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5715620 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5718632 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5722648 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5725660 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5728672 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5732688 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5735700 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5738712 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5742728 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5745740 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5748752 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5752768 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5755780 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5758792 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5762808 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5765820 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5768832 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5772848 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5775860 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5778872 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5782888 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5785900 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5788912 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5792928 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5795940 + }, + { + "buffer" : 0, + "byteLength" : 4016, + "byteOffset" : 5798952 + }, + { + "buffer" : 0, + "byteLength" : 3012, + "byteOffset" : 5802968 + }, + { + "buffer" : 0, + "byteLength" : 96, + "byteOffset" : 5805980 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5806076 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5806364 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5806748 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5807036 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5807324 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5807708 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5807996 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5808284 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5808668 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5808956 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5809244 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5809628 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5809916 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5810204 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5810588 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5810876 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5811164 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5811548 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5811836 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5812124 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5812508 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5812796 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5813084 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5813468 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5813756 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5814044 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5814428 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5814716 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5815004 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5815388 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5815676 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5815964 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5816348 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5816636 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5816924 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5817308 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5817596 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5817884 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5818268 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5818556 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5818844 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5819228 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5819516 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5819804 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5820188 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5820476 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5820764 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5821148 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5821436 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5821724 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5822108 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5822396 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5822684 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5823068 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5823356 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5823644 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5824028 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5824316 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5824604 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5824988 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5825276 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5825564 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5825948 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5826236 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5826524 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5826908 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5827196 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5827484 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5827868 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5828156 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5828444 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5828828 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5829116 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5829404 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5829788 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5830076 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5830364 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5830748 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5831036 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5831324 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5831708 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5831996 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5832284 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5832668 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5832956 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5833244 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5833628 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5833916 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5834204 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5834588 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5834876 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5835164 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5835548 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5835836 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5836124 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5836508 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5836796 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5837084 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5837468 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5837756 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5838044 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5838428 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5838716 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5839004 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5839388 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5839676 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5839964 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5840348 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5840636 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5840924 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5841308 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5841596 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5841884 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5842268 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5842556 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5842844 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5843228 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5843516 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5843804 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5844188 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5844476 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5844764 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5845148 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5845436 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5845724 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5846108 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5846396 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5846684 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5847068 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5847356 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5847644 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5848028 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5848316 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5848604 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5848988 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5849276 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5849564 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5849948 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5850236 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5850524 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5850908 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5851196 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5851484 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5851868 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5852156 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5852444 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5852828 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5853116 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5853404 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5853788 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5854076 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5854364 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5854748 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5855036 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5855324 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5855708 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5855996 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5856284 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5856668 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5856956 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5857244 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5857628 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5857916 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5858204 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5858588 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5858876 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5859164 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5859548 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5859836 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5860124 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5860508 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5860796 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5861084 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5861468 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5861756 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5862044 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5862428 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5862716 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5863004 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5863388 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5863676 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5863964 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5864348 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5864636 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5864924 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5865308 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5865596 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5865884 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5866268 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5866556 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5866844 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5867228 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5867516 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5867804 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5868188 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5868476 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5868764 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5869148 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5869436 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5869724 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5870108 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5870396 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5870684 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5871068 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5871356 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5871644 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5872028 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5872316 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5872604 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5872988 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5873276 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5873564 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5873948 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5874236 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5874524 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5874908 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5875196 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5875484 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5875868 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5876156 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5876444 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5876828 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5877116 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5877404 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5877788 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5878076 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5878364 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5878748 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5879036 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5879324 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5879708 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5879996 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5880284 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5880668 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5880956 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5881244 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5881628 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5881916 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5882204 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5882588 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5882876 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5883164 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5883548 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5883836 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5884124 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5884508 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5884796 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5885084 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5885468 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5885756 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5886044 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5886428 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5886716 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5887004 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5887388 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5887676 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5887964 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5888348 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5888636 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5888924 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5889308 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5889596 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5889884 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5890268 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5890556 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5890844 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5891228 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5891516 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5891804 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5892188 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5892476 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5892764 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5893148 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5893436 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5893724 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5894108 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5894396 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5894684 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5895068 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5895356 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5895644 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5896028 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5896316 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5896604 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5896988 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5897276 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5897564 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5897948 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5898236 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5898524 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5898908 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5899196 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5899484 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 5899868 + }, + { + "buffer" : 0, + "byteLength" : 128, + "byteOffset" : 5900156 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5900284 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5900668 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5901180 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5901564 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5901948 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5902460 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5902844 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5903228 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5903740 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5904124 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5904508 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5905020 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5905404 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5905788 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5906300 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5906684 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5907068 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5907580 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5907964 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5908348 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5908860 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5909244 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5909628 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5910140 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5910524 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5910908 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5911420 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5911804 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5912188 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5912700 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5913084 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5913468 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5913980 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5914364 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5914748 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5915260 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5915644 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5916028 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5916540 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5916924 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5917308 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5917820 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5918204 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5918588 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5919100 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5919484 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5919868 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5920380 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5920764 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5921148 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5921660 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5922044 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5922428 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5922940 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5923324 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5923708 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5924220 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5924604 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5924988 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5925500 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5925884 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5926268 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5926780 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5927164 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5927548 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5928060 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5928444 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5928828 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5929340 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5929724 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5930108 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5930620 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5931004 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5931388 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5931900 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5932284 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5932668 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5933180 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5933564 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5933948 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5934460 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5934844 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5935228 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5935740 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5936124 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5936508 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5937020 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5937404 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5937788 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5938300 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5938684 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5939068 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5939580 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5939964 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5940348 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5940860 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5941244 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5941628 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5942140 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5942524 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5942908 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5943420 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5943804 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5944188 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5944700 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5945084 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5945468 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5945980 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5946364 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5946748 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5947260 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5947644 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5948028 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5948540 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5948924 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5949308 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5949820 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5950204 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5950588 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5951100 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5951484 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5951868 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5952380 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5952764 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5953148 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5953660 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5954044 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5954428 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5954940 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5955324 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5955708 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5956220 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5956604 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5956988 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5957500 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5957884 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5958268 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5958780 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5959164 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5959548 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5960060 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5960444 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5960828 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5961340 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5961724 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5962108 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5962620 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5963004 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5963388 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5963900 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5964284 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5964668 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5965180 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5965564 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5965948 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5966460 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5966844 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5967228 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5967740 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5968124 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5968508 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5969020 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5969404 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5969788 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5970300 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5970684 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5971068 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5971580 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5971964 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5972348 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5972860 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5973244 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5973628 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5974140 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5974524 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5974908 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5975420 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5975804 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5976188 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5976700 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5977084 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5977468 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5977980 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5978364 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5978748 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5979260 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5979644 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5980028 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5980540 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5980924 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5981308 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5981820 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5982204 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5982588 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5983100 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5983484 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5983868 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5984380 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5984764 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5985148 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5985660 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5986044 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5986428 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5986940 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5987324 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5987708 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5988220 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5988604 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5988988 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5989500 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5989884 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5990268 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5990780 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5991164 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5991548 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5992060 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5992444 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5992828 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5993340 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5993724 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5994108 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5994620 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5995004 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5995388 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5995900 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5996284 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5996668 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5997180 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5997564 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5997948 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5998460 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5998844 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 5999228 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 5999740 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6000124 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6000508 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6001020 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6001404 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6001788 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6002300 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6002684 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6003068 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6003580 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6003964 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6004348 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6004860 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6005244 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6005628 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6006140 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6006524 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6006908 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6007420 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6007804 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6008188 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6008700 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6009084 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6009468 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6009980 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6010364 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6010748 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6011260 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6011644 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6012028 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6012540 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6012924 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6013308 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6013820 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6014204 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6014588 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6015100 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6015484 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6015868 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6016380 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6016764 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6017148 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6017660 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6018044 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6018428 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6018940 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6019324 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6019708 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6020220 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6020604 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6020988 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6021500 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6021884 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6022268 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6022780 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6023164 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6023548 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6024060 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6024444 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 6024828 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 6025340 + }, + { + "buffer" : 0, + "byteLength" : 960, + "byteOffset" : 6025724 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6026684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6029564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6033404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6036284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6039164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6043004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6045884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6048764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6052604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6055484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6058364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6062204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6065084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6067964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6071804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6074684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6077564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6081404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6084284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6087164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6091004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6093884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6096764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6100604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6103484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6106364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6110204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6113084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6115964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6119804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6122684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6125564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6129404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6132284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6135164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6139004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6141884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6144764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6148604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6151484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6154364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6158204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6161084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6163964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6167804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6170684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6173564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6177404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6180284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6183164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6187004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6189884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6192764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6196604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6199484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6202364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6206204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6209084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6211964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6215804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6218684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6221564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6225404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6228284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6231164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6235004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6237884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6240764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6244604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6247484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6250364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6254204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6257084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6259964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6263804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6266684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6269564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6273404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6276284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6279164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6283004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6285884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6288764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6292604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6295484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6298364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6302204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6305084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6307964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6311804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6314684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6317564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6321404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6324284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6327164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6331004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6333884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6336764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6340604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6343484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6346364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6350204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6353084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6355964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6359804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6362684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6365564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6369404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6372284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6375164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6379004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6381884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6384764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6388604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6391484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6394364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6398204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6401084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6403964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6407804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6410684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6413564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6417404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6420284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6423164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6427004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6429884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6432764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6436604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6439484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6442364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6446204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6449084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6451964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6455804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6458684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6461564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6465404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6468284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6471164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6475004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6477884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6480764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6484604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6487484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6490364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6494204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6497084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6499964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6503804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6506684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6509564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6513404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6516284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6519164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6523004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6525884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6528764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6532604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6535484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6538364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6542204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6545084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6547964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6551804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6554684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6557564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6561404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6564284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6567164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6571004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6573884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6576764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6580604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6583484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6586364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6590204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6593084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6595964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6599804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6602684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6605564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6609404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6612284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6615164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6619004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6621884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6624764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6628604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6631484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6634364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6638204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6641084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6643964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6647804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6650684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6653564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6657404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6660284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6663164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6667004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6669884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6672764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6676604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6679484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6682364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6686204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6689084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6691964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6695804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6698684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6701564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6705404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6708284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6711164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6715004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6717884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6720764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6724604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6727484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6730364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6734204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6737084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6739964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6743804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6746684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6749564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6753404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6756284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6759164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6763004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6765884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6768764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6772604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6775484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6778364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6782204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6785084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6787964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6791804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6794684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6797564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6801404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6804284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6807164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6811004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6813884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6816764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6820604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6823484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6826364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6830204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6833084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6835964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6839804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6842684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6845564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6849404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6852284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6855164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6859004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6861884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6864764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6868604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6871484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6874364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6878204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6881084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6883964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6887804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6890684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6893564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6897404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6900284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6903164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6907004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6909884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6912764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6916604 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6919484 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6922364 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6926204 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6929084 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6931964 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6935804 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6938684 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6941564 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6945404 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6948284 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6951164 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6955004 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6957884 + }, + { + "buffer" : 0, + "byteLength" : 3840, + "byteOffset" : 6960764 + }, + { + "buffer" : 0, + "byteLength" : 2880, + "byteOffset" : 6964604 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 6967484 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6967964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 6969404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6971324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6972764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 6974204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6976124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6977564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 6979004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6980924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6982364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 6983804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6985724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6987164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 6988604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6990524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6991964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 6993404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6995324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 6996764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 6998204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7000124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7001564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7003004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7004924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7006364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7007804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7009724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7011164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7012604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7014524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7015964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7017404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7019324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7020764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7022204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7024124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7025564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7027004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7028924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7030364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7031804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7033724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7035164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7036604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7038524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7039964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7041404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7043324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7044764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7046204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7048124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7049564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7051004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7052924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7054364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7055804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7057724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7059164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7060604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7062524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7063964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7065404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7067324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7068764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7070204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7072124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7073564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7075004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7076924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7078364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7079804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7081724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7083164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7084604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7086524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7087964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7089404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7091324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7092764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7094204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7096124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7097564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7099004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7100924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7102364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7103804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7105724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7107164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7108604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7110524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7111964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7113404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7115324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7116764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7118204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7120124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7121564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7123004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7124924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7126364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7127804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7129724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7131164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7132604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7134524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7135964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7137404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7139324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7140764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7142204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7144124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7145564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7147004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7148924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7150364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7151804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7153724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7155164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7156604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7158524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7159964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7161404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7163324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7164764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7166204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7168124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7169564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7171004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7172924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7174364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7175804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7177724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7179164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7180604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7182524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7183964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7185404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7187324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7188764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7190204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7192124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7193564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7195004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7196924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7198364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7199804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7201724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7203164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7204604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7206524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7207964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7209404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7211324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7212764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7214204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7216124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7217564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7219004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7220924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7222364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7223804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7225724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7227164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7228604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7230524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7231964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7233404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7235324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7236764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7238204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7240124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7241564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7243004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7244924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7246364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7247804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7249724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7251164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7252604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7254524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7255964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7257404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7259324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7260764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7262204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7264124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7265564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7267004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7268924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7270364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7271804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7273724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7275164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7276604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7278524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7279964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7281404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7283324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7284764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7286204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7288124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7289564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7291004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7292924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7294364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7295804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7297724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7299164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7300604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7302524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7303964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7305404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7307324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7308764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7310204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7312124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7313564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7315004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7316924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7318364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7319804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7321724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7323164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7324604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7326524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7327964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7329404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7331324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7332764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7334204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7336124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7337564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7339004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7340924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7342364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7343804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7345724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7347164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7348604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7350524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7351964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7353404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7355324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7356764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7358204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7360124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7361564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7363004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7364924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7366364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7367804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7369724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7371164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7372604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7374524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7375964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7377404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7379324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7380764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7382204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7384124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7385564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7387004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7388924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7390364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7391804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7393724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7395164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7396604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7398524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7399964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7401404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7403324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7404764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7406204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7408124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7409564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7411004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7412924 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7414364 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7415804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7417724 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7419164 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7420604 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7422524 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7423964 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7425404 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7427324 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7428764 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7430204 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7432124 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7433564 + }, + { + "buffer" : 0, + "byteLength" : 1920, + "byteOffset" : 7435004 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7436924 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7438364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7439444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7440884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7441964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7443044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7444484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7445564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7446644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7448084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7449164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7450244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7451684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7452764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7453844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7455284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7456364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7457444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7458884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7459964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7461044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7462484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7463564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7464644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7466084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7467164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7468244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7469684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7470764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7471844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7473284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7474364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7475444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7476884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7477964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7479044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7480484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7481564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7482644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7484084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7485164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7486244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7487684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7488764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7489844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7491284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7492364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7493444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7494884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7495964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7497044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7498484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7499564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7500644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7502084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7503164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7504244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7505684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7506764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7507844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7509284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7510364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7511444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7512884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7513964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7515044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7516484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7517564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7518644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7520084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7521164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7522244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7523684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7524764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7525844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7527284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7528364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7529444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7530884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7531964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7533044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7534484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7535564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7536644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7538084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7539164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7540244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7541684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7542764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7543844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7545284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7546364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7547444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7548884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7549964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7551044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7552484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7553564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7554644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7556084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7557164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7558244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7559684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7560764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7561844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7563284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7564364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7565444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7566884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7567964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7569044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7570484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7571564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7572644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7574084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7575164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7576244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7577684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7578764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7579844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7581284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7582364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7583444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7584884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7585964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7587044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7588484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7589564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7590644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7592084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7593164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7594244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7595684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7596764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7597844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7599284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7600364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7601444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7602884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7603964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7605044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7606484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7607564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7608644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7610084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7611164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7612244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7613684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7614764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7615844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7617284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7618364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7619444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7620884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7621964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7623044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7624484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7625564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7626644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7628084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7629164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7630244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7631684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7632764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7633844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7635284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7636364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7637444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7638884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7639964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7641044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7642484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7643564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7644644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7646084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7647164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7648244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7649684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7650764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7651844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7653284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7654364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7655444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7656884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7657964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7659044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7660484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7661564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7662644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7664084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7665164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7666244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7667684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7668764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7669844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7671284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7672364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7673444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7674884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7675964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7677044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7678484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7679564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7680644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7682084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7683164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7684244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7685684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7686764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7687844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7689284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7690364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7691444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7692884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7693964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7695044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7696484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7697564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7698644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7700084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7701164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7702244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7703684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7704764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7705844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7707284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7708364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7709444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7710884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7711964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7713044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7714484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7715564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7716644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7718084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7719164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7720244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7721684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7722764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7723844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7725284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7726364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7727444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7728884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7729964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7731044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7732484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7733564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7734644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7736084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7737164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7738244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7739684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7740764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7741844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7743284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7744364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7745444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7746884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7747964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7749044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7750484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7751564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7752644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7754084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7755164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7756244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7757684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7758764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7759844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7761284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7762364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7763444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7764884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7765964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7767044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7768484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7769564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7770644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7772084 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7773164 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7774244 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7775684 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7776764 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7777844 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7779284 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7780364 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7781444 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7782884 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7783964 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7785044 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7786484 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7787564 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 7788644 + }, + { + "buffer" : 0, + "byteLength" : 1080, + "byteOffset" : 7790084 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 7791164 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7791284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7791644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7792124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7792484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7792844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7793324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7793684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7794044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7794524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7794884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7795244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7795724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7796084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7796444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7796924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7797284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7797644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7798124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7798484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7798844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7799324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7799684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7800044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7800524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7800884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7801244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7801724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7802084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7802444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7802924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7803284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7803644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7804124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7804484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7804844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7805324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7805684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7806044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7806524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7806884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7807244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7807724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7808084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7808444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7808924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7809284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7809644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7810124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7810484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7810844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7811324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7811684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7812044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7812524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7812884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7813244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7813724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7814084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7814444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7814924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7815284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7815644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7816124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7816484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7816844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7817324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7817684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7818044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7818524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7818884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7819244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7819724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7820084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7820444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7820924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7821284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7821644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7822124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7822484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7822844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7823324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7823684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7824044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7824524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7824884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7825244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7825724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7826084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7826444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7826924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7827284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7827644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7828124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7828484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7828844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7829324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7829684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7830044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7830524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7830884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7831244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7831724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7832084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7832444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7832924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7833284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7833644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7834124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7834484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7834844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7835324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7835684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7836044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7836524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7836884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7837244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7837724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7838084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7838444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7838924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7839284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7839644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7840124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7840484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7840844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7841324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7841684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7842044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7842524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7842884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7843244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7843724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7844084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7844444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7844924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7845284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7845644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7846124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7846484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7846844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7847324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7847684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7848044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7848524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7848884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7849244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7849724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7850084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7850444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7850924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7851284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7851644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7852124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7852484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7852844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7853324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7853684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7854044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7854524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7854884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7855244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7855724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7856084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7856444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7856924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7857284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7857644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7858124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7858484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7858844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7859324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7859684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7860044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7860524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7860884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7861244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7861724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7862084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7862444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7862924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7863284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7863644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7864124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7864484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7864844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7865324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7865684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7866044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7866524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7866884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7867244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7867724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7868084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7868444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7868924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7869284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7869644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7870124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7870484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7870844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7871324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7871684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7872044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7872524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7872884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7873244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7873724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7874084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7874444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7874924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7875284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7875644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7876124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7876484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7876844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7877324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7877684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7878044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7878524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7878884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7879244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7879724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7880084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7880444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7880924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7881284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7881644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7882124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7882484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7882844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7883324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7883684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7884044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7884524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7884884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7885244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7885724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7886084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7886444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7886924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7887284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7887644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7888124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7888484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7888844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7889324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7889684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7890044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7890524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7890884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7891244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7891724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7892084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7892444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7892924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7893284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7893644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7894124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7894484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7894844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7895324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7895684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7896044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7896524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7896884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7897244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7897724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7898084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7898444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7898924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7899284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7899644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7900124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7900484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7900844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7901324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7901684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7902044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7902524 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7902884 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7903244 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7903724 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7904084 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7904444 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7904924 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7905284 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7905644 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7906124 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7906484 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7906844 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7907324 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7907684 + }, + { + "buffer" : 0, + "byteLength" : 480, + "byteOffset" : 7908044 + }, + { + "buffer" : 0, + "byteLength" : 360, + "byteOffset" : 7908524 + }, + { + "buffer" : 0, + "byteLength" : 400, + "byteOffset" : 7908884 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7909284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7910484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7912084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7913284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7914484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7916084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7917284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7918484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7920084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7921284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7922484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7924084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7925284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7926484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7928084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7929284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7930484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7932084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7933284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7934484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7936084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7937284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7938484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7940084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7941284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7942484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7944084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7945284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7946484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7948084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7949284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7950484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7952084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7953284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7954484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7956084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7957284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7958484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7960084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7961284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7962484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7964084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7965284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7966484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7968084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7969284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7970484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7972084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7973284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7974484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7976084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7977284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7978484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7980084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7981284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7982484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7984084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7985284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7986484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7988084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7989284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7990484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7992084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7993284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7994484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7996084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 7997284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 7998484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8000084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8001284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8002484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8004084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8005284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8006484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8008084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8009284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8010484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8012084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8013284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8014484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8016084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8017284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8018484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8020084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8021284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8022484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8024084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8025284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8026484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8028084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8029284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8030484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8032084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8033284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8034484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8036084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8037284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8038484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8040084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8041284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8042484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8044084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8045284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8046484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8048084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8049284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8050484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8052084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8053284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8054484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8056084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8057284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8058484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8060084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8061284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8062484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8064084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8065284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8066484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8068084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8069284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8070484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8072084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8073284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8074484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8076084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8077284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8078484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8080084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8081284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8082484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8084084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8085284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8086484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8088084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8089284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8090484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8092084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8093284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8094484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8096084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8097284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8098484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8100084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8101284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8102484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8104084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8105284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8106484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8108084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8109284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8110484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8112084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8113284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8114484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8116084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8117284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8118484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8120084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8121284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8122484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8124084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8125284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8126484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8128084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8129284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8130484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8132084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8133284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8134484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8136084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8137284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8138484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8140084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8141284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8142484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8144084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8145284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8146484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8148084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8149284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8150484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8152084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8153284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8154484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8156084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8157284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8158484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8160084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8161284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8162484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8164084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8165284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8166484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8168084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8169284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8170484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8172084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8173284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8174484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8176084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8177284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8178484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8180084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8181284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8182484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8184084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8185284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8186484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8188084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8189284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8190484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8192084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8193284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8194484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8196084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8197284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8198484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8200084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8201284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8202484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8204084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8205284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8206484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8208084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8209284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8210484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8212084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8213284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8214484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8216084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8217284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8218484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8220084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8221284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8222484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8224084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8225284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8226484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8228084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8229284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8230484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8232084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8233284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8234484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8236084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8237284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8238484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8240084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8241284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8242484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8244084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8245284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8246484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8248084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8249284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8250484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8252084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8253284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8254484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8256084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8257284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8258484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8260084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8261284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8262484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8264084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8265284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8266484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8268084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8269284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8270484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8272084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8273284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8274484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8276084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8277284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8278484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8280084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8281284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8282484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8284084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8285284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8286484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8288084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8289284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8290484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8292084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8293284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8294484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8296084 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8297284 + }, + { + "buffer" : 0, + "byteLength" : 1600, + "byteOffset" : 8298484 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 8300084 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8301284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8301524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8301844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8302084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8302324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8302644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8302884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8303124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8303444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8303684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8303924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8304244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8304484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8304724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8305044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8305284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8305524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8305844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8306084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8306324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8306644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8306884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8307124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8307444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8307684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8307924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8308244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8308484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8308724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8309044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8309284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8309524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8309844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8310084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8310324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8310644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8310884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8311124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8311444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8311684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8311924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8312244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8312484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8312724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8313044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8313284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8313524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8313844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8314084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8314324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8314644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8314884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8315124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8315444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8315684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8315924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8316244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8316484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8316724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8317044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8317284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8317524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8317844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8318084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8318324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8318644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8318884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8319124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8319444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8319684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8319924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8320244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8320484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8320724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8321044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8321284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8321524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8321844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8322084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8322324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8322644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8322884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8323124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8323444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8323684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8323924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8324244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8324484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8324724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8325044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8325284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8325524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8325844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8326084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8326324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8326644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8326884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8327124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8327444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8327684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8327924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8328244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8328484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8328724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8329044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8329284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8329524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8329844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8330084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8330324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8330644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8330884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8331124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8331444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8331684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8331924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8332244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8332484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8332724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8333044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8333284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8333524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8333844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8334084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8334324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8334644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8334884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8335124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8335444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8335684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8335924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8336244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8336484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8336724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8337044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8337284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8337524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8337844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8338084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8338324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8338644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8338884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8339124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8339444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8339684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8339924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8340244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8340484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8340724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8341044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8341284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8341524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8341844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8342084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8342324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8342644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8342884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8343124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8343444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8343684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8343924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8344244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8344484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8344724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8345044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8345284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8345524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8345844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8346084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8346324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8346644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8346884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8347124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8347444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8347684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8347924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8348244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8348484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8348724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8349044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8349284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8349524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8349844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8350084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8350324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8350644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8350884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8351124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8351444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8351684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8351924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8352244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8352484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8352724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8353044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8353284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8353524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8353844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8354084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8354324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8354644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8354884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8355124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8355444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8355684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8355924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8356244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8356484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8356724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8357044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8357284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8357524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8357844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8358084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8358324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8358644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8358884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8359124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8359444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8359684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8359924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8360244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8360484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8360724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8361044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8361284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8361524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8361844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8362084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8362324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8362644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8362884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8363124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8363444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8363684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8363924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8364244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8364484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8364724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8365044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8365284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8365524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8365844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8366084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8366324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8366644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8366884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8367124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8367444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8367684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8367924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8368244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8368484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8368724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8369044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8369284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8369524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8369844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8370084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8370324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8370644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8370884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8371124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8371444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8371684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8371924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8372244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8372484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8372724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8373044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8373284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8373524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8373844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8374084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8374324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8374644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8374884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8375124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8375444 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8375684 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8375924 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8376244 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8376484 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8376724 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8377044 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8377284 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8377524 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8377844 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8378084 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8378324 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8378644 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8378884 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8379124 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8379444 + }, + { + "buffer" : 0, + "byteLength" : 84, + "byteOffset" : 8379684 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8379768 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8380020 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8380356 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8380608 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8380860 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8381196 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8381448 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8381700 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8382036 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8382288 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8382540 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8382876 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8383128 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8383380 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8383716 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8383968 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8384220 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8384556 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8384808 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8385060 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8385396 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8385648 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8385900 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8386236 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8386488 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8386740 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8387076 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8387328 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8387580 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8387916 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8388168 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8388420 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8388756 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8389008 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8389260 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8389596 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8389848 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8390100 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8390436 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8390688 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8390940 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8391276 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8391528 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8391780 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8392116 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8392368 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8392620 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8392956 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8393208 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8393460 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8393796 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8394048 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8394300 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8394636 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8394888 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8395140 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8395476 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8395728 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8395980 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8396316 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8396568 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8396820 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8397156 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8397408 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8397660 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8397996 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8398248 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8398500 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8398836 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8399088 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8399340 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8399676 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8399928 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8400180 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8400516 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8400768 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8401020 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8401356 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8401608 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8401860 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8402196 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8402448 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8402700 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8403036 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8403288 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8403540 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8403876 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8404128 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8404380 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8404716 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8404968 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8405220 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8405556 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8405808 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8406060 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8406396 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8406648 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8406900 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8407236 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8407488 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8407740 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8408076 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8408328 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8408580 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8408916 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8409168 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8409420 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8409756 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8410008 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8410260 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8410596 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8410848 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8411100 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8411436 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8411688 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8411940 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8412276 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8412528 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8412780 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8413116 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8413368 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8413620 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8413956 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8414208 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8414460 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8414796 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8415048 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8415300 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8415636 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8415888 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8416140 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8416476 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8416728 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8416980 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8417316 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8417568 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8417820 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8418156 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8418408 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8418660 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8418996 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8419248 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8419500 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8419836 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8420088 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8420340 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8420676 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8420928 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8421180 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8421516 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8421768 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8422020 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8422356 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8422608 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8422860 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8423196 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8423448 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8423700 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8424036 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8424288 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8424540 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8424876 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8425128 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8425380 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8425716 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8425968 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8426220 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8426556 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8426808 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8427060 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8427396 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8427648 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8427900 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8428236 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8428488 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8428740 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8429076 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8429328 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8429580 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8429916 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8430168 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8430420 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8430756 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8431008 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8431260 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8431596 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8431848 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8432100 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8432436 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8432688 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8432940 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8433276 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8433528 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8433780 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8434116 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8434368 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8434620 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8434956 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8435208 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8435460 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8435796 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8436048 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8436300 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8436636 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8436888 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8437140 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8437476 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8437728 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8437980 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8438316 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8438568 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8438820 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8439156 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8439408 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8439660 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8439996 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8440248 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8440500 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8440836 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8441088 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8441340 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8441676 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8441928 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8442180 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8442516 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8442768 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8443020 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8443356 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8443608 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8443860 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8444196 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8444448 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8444700 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8445036 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8445288 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8445540 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8445876 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8446128 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8446380 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8446716 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8446968 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8447220 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8447556 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8447808 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8448060 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8448396 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8448648 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8448900 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8449236 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8449488 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8449740 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8450076 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8450328 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8450580 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8450916 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8451168 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8451420 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8451756 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8452008 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8452260 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8452596 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8452848 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8453100 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8453436 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8453688 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8453940 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8454276 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8454528 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8454780 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8455116 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8455368 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8455620 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8455956 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8456208 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8456460 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8456796 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8457048 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8457300 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8457636 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8457888 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8458140 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8458476 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8458728 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8458980 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8459316 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8459568 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8459820 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8460156 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8460408 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8460660 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8460996 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8461248 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 8461500 + }, + { + "buffer" : 0, + "byteLength" : 252, + "byteOffset" : 8461836 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8462088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8462328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8462648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8462888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8463128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8463448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8463688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8463928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8464248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8464488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8464728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8465048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8465288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8465528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8465848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8466088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8466328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8466648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8466888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8467128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8467448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8467688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8467928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8468248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8468488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8468728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8469048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8469288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8469528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8469848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8470088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8470328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8470648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8470888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8471128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8471448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8471688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8471928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8472248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8472488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8472728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8473048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8473288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8473528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8473848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8474088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8474328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8474648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8474888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8475128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8475448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8475688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8475928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8476248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8476488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8476728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8477048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8477288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8477528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8477848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8478088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8478328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8478648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8478888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8479128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8479448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8479688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8479928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8480248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8480488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8480728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8481048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8481288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8481528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8481848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8482088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8482328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8482648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8482888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8483128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8483448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8483688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8483928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8484248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8484488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8484728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8485048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8485288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8485528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8485848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8486088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8486328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8486648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8486888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8487128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8487448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8487688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8487928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8488248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8488488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8488728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8489048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8489288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8489528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8489848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8490088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8490328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8490648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8490888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8491128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8491448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8491688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8491928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8492248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8492488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8492728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8493048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8493288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8493528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8493848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8494088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8494328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8494648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8494888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8495128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8495448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8495688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8495928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8496248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8496488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8496728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8497048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8497288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8497528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8497848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8498088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8498328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8498648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8498888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8499128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8499448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8499688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8499928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8500248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8500488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8500728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8501048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8501288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8501528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8501848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8502088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8502328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8502648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8502888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8503128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8503448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8503688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8503928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8504248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8504488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8504728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8505048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8505288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8505528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8505848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8506088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8506328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8506648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8506888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8507128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8507448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8507688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8507928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8508248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8508488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8508728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8509048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8509288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8509528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8509848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8510088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8510328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8510648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8510888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8511128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8511448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8511688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8511928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8512248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8512488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8512728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8513048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8513288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8513528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8513848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8514088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8514328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8514648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8514888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8515128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8515448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8515688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8515928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8516248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8516488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8516728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8517048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8517288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8517528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8517848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8518088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8518328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8518648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8518888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8519128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8519448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8519688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8519928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8520248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8520488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8520728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8521048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8521288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8521528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8521848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8522088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8522328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8522648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8522888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8523128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8523448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8523688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8523928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8524248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8524488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8524728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8525048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8525288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8525528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8525848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8526088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8526328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8526648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8526888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8527128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8527448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8527688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8527928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8528248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8528488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8528728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8529048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8529288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8529528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8529848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8530088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8530328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8530648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8530888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8531128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8531448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8531688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8531928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8532248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8532488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8532728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8533048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8533288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8533528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8533848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8534088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8534328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8534648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8534888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8535128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8535448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8535688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8535928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8536248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8536488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8536728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8537048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8537288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8537528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8537848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8538088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8538328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8538648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8538888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8539128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8539448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8539688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8539928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8540248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8540488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8540728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8541048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8541288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8541528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8541848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8542088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8542328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8542648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8542888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8543128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8543448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8543688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8543928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8544248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8544488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8544728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8545048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8545288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8545528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8545848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8546088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8546328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8546648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8546888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8547128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8547448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8547688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8547928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8548248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8548488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8548728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8549048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8549288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8549528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8549848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8550088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8550328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8550648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8550888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8551128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8551448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8551688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8551928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8552248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8552488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8552728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8553048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8553288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8553528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8553848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8554088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8554328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8554648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8554888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8555128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8555448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8555688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8555928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8556248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8556488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8556728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8557048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8557288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8557528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8557848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8558088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8558328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8558648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8558888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8559128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8559448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8559688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8559928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8560248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8560488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8560728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8561048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8561288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8561528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8561848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8562088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8562328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8562648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8562888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8563128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8563448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8563688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8563928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8564248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8564488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8564728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8565048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8565288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8565528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8565848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8566088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8566328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8566648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8566888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8567128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8567448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8567688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8567928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8568248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8568488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8568728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8569048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8569288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8569528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8569848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8570088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8570328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8570648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8570888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8571128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8571448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8571688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8571928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8572248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8572488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8572728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8573048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8573288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8573528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8573848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8574088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8574328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8574648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8574888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8575128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8575448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8575688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8575928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8576248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8576488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8576728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8577048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8577288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8577528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8577848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8578088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8578328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8578648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8578888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8579128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8579448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8579688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8579928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8580248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8580488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8580728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8581048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8581288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8581528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8581848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8582088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8582328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8582648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8582888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8583128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8583448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8583688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8583928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8584248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8584488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8584728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8585048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8585288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8585528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8585848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8586088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8586328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8586648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8586888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8587128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8587448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8587688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8587928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8588248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8588488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8588728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8589048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8589288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8589528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8589848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8590088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8590328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8590648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8590888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8591128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8591448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8591688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8591928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8592248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8592488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8592728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8593048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8593288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8593528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8593848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8594088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8594328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8594648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8594888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8595128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8595448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8595688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8595928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8596248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8596488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8596728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8597048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8597288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8597528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8597848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8598088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8598328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8598648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8598888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8599128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8599448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8599688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8599928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8600248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8600488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8600728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8601048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8601288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8601528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8601848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8602088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8602328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8602648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8602888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8603128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8603448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8603688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8603928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8604248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8604488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8604728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8605048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8605288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8605528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8605848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8606088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8606328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8606648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8606888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8607128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8607448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8607688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8607928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8608248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8608488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8608728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8609048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8609288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8609528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8609848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8610088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8610328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8610648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8610888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8611128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8611448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8611688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8611928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8612248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8612488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8612728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8613048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8613288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8613528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8613848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8614088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8614328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8614648 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8614888 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8615128 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8615448 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8615688 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8615928 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8616248 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8616488 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8616728 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8617048 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8617288 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8617528 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8617848 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8618088 + }, + { + "buffer" : 0, + "byteLength" : 320, + "byteOffset" : 8618328 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 8618648 + } + ], + "buffers" : [ + { + "byteLength" : 8618888, + "uri" : "vroid1-man-animate.bin" + } + ] +} diff --git a/characters/vroid1-man-animate.gltf.import b/characters/vroid1-man-animate.gltf.import new file mode 100644 index 0000000..d9ebe08 --- /dev/null +++ b/characters/vroid1-man-animate.gltf.import @@ -0,0 +1,1064 @@ +[remap] + +importer="scene" +type="PackedScene" +path="res://.import/vroid1-man-animate.gltf-b58dd05f3dd46f7cb8ff28f705603ee5.scn" + +[deps] + +source_file="res://characters/vroid1-man-animate.gltf" +dest_files=[ "res://.import/vroid1-man-animate.gltf-b58dd05f3dd46f7cb8ff28f705603ee5.scn" ] + +[params] + +nodes/root_type="Spatial" +nodes/root_name="Scene Root" +nodes/root_scale=1.0 +nodes/custom_script="" +nodes/storage=0 +nodes/use_legacy_names=false +materials/location=1 +materials/storage=1 +materials/keep_on_reimport=true +meshes/compress=true +meshes/ensure_tangents=true +meshes/storage=0 +meshes/light_baking=0 +meshes/lightmap_texel_size=0.1 +skins/use_named_skins=true +external_files/store_in_subdir=false +animation/import=true +animation/fps=15 +animation/filter_script="" +animation/storage=false +animation/keep_custom_tracks=false +animation/optimizer/enabled=true +animation/optimizer/max_linear_error=0.05 +animation/optimizer/max_angular_error=0.01 +animation/optimizer/max_angle=22 +animation/optimizer/remove_unused_tracks=true +animation/clips/amount=0 +animation/clip_1/name="" +animation/clip_1/start_frame=0 +animation/clip_1/end_frame=0 +animation/clip_1/loops=false +animation/clip_2/name="" +animation/clip_2/start_frame=0 +animation/clip_2/end_frame=0 +animation/clip_2/loops=false +animation/clip_3/name="" +animation/clip_3/start_frame=0 +animation/clip_3/end_frame=0 +animation/clip_3/loops=false +animation/clip_4/name="" +animation/clip_4/start_frame=0 +animation/clip_4/end_frame=0 +animation/clip_4/loops=false +animation/clip_5/name="" +animation/clip_5/start_frame=0 +animation/clip_5/end_frame=0 +animation/clip_5/loops=false +animation/clip_6/name="" +animation/clip_6/start_frame=0 +animation/clip_6/end_frame=0 +animation/clip_6/loops=false +animation/clip_7/name="" +animation/clip_7/start_frame=0 +animation/clip_7/end_frame=0 +animation/clip_7/loops=false +animation/clip_8/name="" +animation/clip_8/start_frame=0 +animation/clip_8/end_frame=0 +animation/clip_8/loops=false +animation/clip_9/name="" +animation/clip_9/start_frame=0 +animation/clip_9/end_frame=0 +animation/clip_9/loops=false +animation/clip_10/name="" +animation/clip_10/start_frame=0 +animation/clip_10/end_frame=0 +animation/clip_10/loops=false +animation/clip_11/name="" +animation/clip_11/start_frame=0 +animation/clip_11/end_frame=0 +animation/clip_11/loops=false +animation/clip_12/name="" +animation/clip_12/start_frame=0 +animation/clip_12/end_frame=0 +animation/clip_12/loops=false +animation/clip_13/name="" +animation/clip_13/start_frame=0 +animation/clip_13/end_frame=0 +animation/clip_13/loops=false +animation/clip_14/name="" +animation/clip_14/start_frame=0 +animation/clip_14/end_frame=0 +animation/clip_14/loops=false +animation/clip_15/name="" +animation/clip_15/start_frame=0 +animation/clip_15/end_frame=0 +animation/clip_15/loops=false +animation/clip_16/name="" +animation/clip_16/start_frame=0 +animation/clip_16/end_frame=0 +animation/clip_16/loops=false +animation/clip_17/name="" +animation/clip_17/start_frame=0 +animation/clip_17/end_frame=0 +animation/clip_17/loops=false +animation/clip_18/name="" +animation/clip_18/start_frame=0 +animation/clip_18/end_frame=0 +animation/clip_18/loops=false +animation/clip_19/name="" +animation/clip_19/start_frame=0 +animation/clip_19/end_frame=0 +animation/clip_19/loops=false +animation/clip_20/name="" +animation/clip_20/start_frame=0 +animation/clip_20/end_frame=0 +animation/clip_20/loops=false +animation/clip_21/name="" +animation/clip_21/start_frame=0 +animation/clip_21/end_frame=0 +animation/clip_21/loops=false +animation/clip_22/name="" +animation/clip_22/start_frame=0 +animation/clip_22/end_frame=0 +animation/clip_22/loops=false +animation/clip_23/name="" +animation/clip_23/start_frame=0 +animation/clip_23/end_frame=0 +animation/clip_23/loops=false +animation/clip_24/name="" +animation/clip_24/start_frame=0 +animation/clip_24/end_frame=0 +animation/clip_24/loops=false +animation/clip_25/name="" +animation/clip_25/start_frame=0 +animation/clip_25/end_frame=0 +animation/clip_25/loops=false +animation/clip_26/name="" +animation/clip_26/start_frame=0 +animation/clip_26/end_frame=0 +animation/clip_26/loops=false +animation/clip_27/name="" +animation/clip_27/start_frame=0 +animation/clip_27/end_frame=0 +animation/clip_27/loops=false +animation/clip_28/name="" +animation/clip_28/start_frame=0 +animation/clip_28/end_frame=0 +animation/clip_28/loops=false +animation/clip_29/name="" +animation/clip_29/start_frame=0 +animation/clip_29/end_frame=0 +animation/clip_29/loops=false +animation/clip_30/name="" +animation/clip_30/start_frame=0 +animation/clip_30/end_frame=0 +animation/clip_30/loops=false +animation/clip_31/name="" +animation/clip_31/start_frame=0 +animation/clip_31/end_frame=0 +animation/clip_31/loops=false +animation/clip_32/name="" +animation/clip_32/start_frame=0 +animation/clip_32/end_frame=0 +animation/clip_32/loops=false +animation/clip_33/name="" +animation/clip_33/start_frame=0 +animation/clip_33/end_frame=0 +animation/clip_33/loops=false +animation/clip_34/name="" +animation/clip_34/start_frame=0 +animation/clip_34/end_frame=0 +animation/clip_34/loops=false +animation/clip_35/name="" +animation/clip_35/start_frame=0 +animation/clip_35/end_frame=0 +animation/clip_35/loops=false +animation/clip_36/name="" +animation/clip_36/start_frame=0 +animation/clip_36/end_frame=0 +animation/clip_36/loops=false +animation/clip_37/name="" +animation/clip_37/start_frame=0 +animation/clip_37/end_frame=0 +animation/clip_37/loops=false +animation/clip_38/name="" +animation/clip_38/start_frame=0 +animation/clip_38/end_frame=0 +animation/clip_38/loops=false +animation/clip_39/name="" +animation/clip_39/start_frame=0 +animation/clip_39/end_frame=0 +animation/clip_39/loops=false +animation/clip_40/name="" +animation/clip_40/start_frame=0 +animation/clip_40/end_frame=0 +animation/clip_40/loops=false +animation/clip_41/name="" +animation/clip_41/start_frame=0 +animation/clip_41/end_frame=0 +animation/clip_41/loops=false +animation/clip_42/name="" +animation/clip_42/start_frame=0 +animation/clip_42/end_frame=0 +animation/clip_42/loops=false +animation/clip_43/name="" +animation/clip_43/start_frame=0 +animation/clip_43/end_frame=0 +animation/clip_43/loops=false +animation/clip_44/name="" +animation/clip_44/start_frame=0 +animation/clip_44/end_frame=0 +animation/clip_44/loops=false +animation/clip_45/name="" +animation/clip_45/start_frame=0 +animation/clip_45/end_frame=0 +animation/clip_45/loops=false +animation/clip_46/name="" +animation/clip_46/start_frame=0 +animation/clip_46/end_frame=0 +animation/clip_46/loops=false +animation/clip_47/name="" +animation/clip_47/start_frame=0 +animation/clip_47/end_frame=0 +animation/clip_47/loops=false +animation/clip_48/name="" +animation/clip_48/start_frame=0 +animation/clip_48/end_frame=0 +animation/clip_48/loops=false +animation/clip_49/name="" +animation/clip_49/start_frame=0 +animation/clip_49/end_frame=0 +animation/clip_49/loops=false +animation/clip_50/name="" +animation/clip_50/start_frame=0 +animation/clip_50/end_frame=0 +animation/clip_50/loops=false +animation/clip_51/name="" +animation/clip_51/start_frame=0 +animation/clip_51/end_frame=0 +animation/clip_51/loops=false +animation/clip_52/name="" +animation/clip_52/start_frame=0 +animation/clip_52/end_frame=0 +animation/clip_52/loops=false +animation/clip_53/name="" +animation/clip_53/start_frame=0 +animation/clip_53/end_frame=0 +animation/clip_53/loops=false +animation/clip_54/name="" +animation/clip_54/start_frame=0 +animation/clip_54/end_frame=0 +animation/clip_54/loops=false +animation/clip_55/name="" +animation/clip_55/start_frame=0 +animation/clip_55/end_frame=0 +animation/clip_55/loops=false +animation/clip_56/name="" +animation/clip_56/start_frame=0 +animation/clip_56/end_frame=0 +animation/clip_56/loops=false +animation/clip_57/name="" +animation/clip_57/start_frame=0 +animation/clip_57/end_frame=0 +animation/clip_57/loops=false +animation/clip_58/name="" +animation/clip_58/start_frame=0 +animation/clip_58/end_frame=0 +animation/clip_58/loops=false +animation/clip_59/name="" +animation/clip_59/start_frame=0 +animation/clip_59/end_frame=0 +animation/clip_59/loops=false +animation/clip_60/name="" +animation/clip_60/start_frame=0 +animation/clip_60/end_frame=0 +animation/clip_60/loops=false +animation/clip_61/name="" +animation/clip_61/start_frame=0 +animation/clip_61/end_frame=0 +animation/clip_61/loops=false +animation/clip_62/name="" +animation/clip_62/start_frame=0 +animation/clip_62/end_frame=0 +animation/clip_62/loops=false +animation/clip_63/name="" +animation/clip_63/start_frame=0 +animation/clip_63/end_frame=0 +animation/clip_63/loops=false +animation/clip_64/name="" +animation/clip_64/start_frame=0 +animation/clip_64/end_frame=0 +animation/clip_64/loops=false +animation/clip_65/name="" +animation/clip_65/start_frame=0 +animation/clip_65/end_frame=0 +animation/clip_65/loops=false +animation/clip_66/name="" +animation/clip_66/start_frame=0 +animation/clip_66/end_frame=0 +animation/clip_66/loops=false +animation/clip_67/name="" +animation/clip_67/start_frame=0 +animation/clip_67/end_frame=0 +animation/clip_67/loops=false +animation/clip_68/name="" +animation/clip_68/start_frame=0 +animation/clip_68/end_frame=0 +animation/clip_68/loops=false +animation/clip_69/name="" +animation/clip_69/start_frame=0 +animation/clip_69/end_frame=0 +animation/clip_69/loops=false +animation/clip_70/name="" +animation/clip_70/start_frame=0 +animation/clip_70/end_frame=0 +animation/clip_70/loops=false +animation/clip_71/name="" +animation/clip_71/start_frame=0 +animation/clip_71/end_frame=0 +animation/clip_71/loops=false +animation/clip_72/name="" +animation/clip_72/start_frame=0 +animation/clip_72/end_frame=0 +animation/clip_72/loops=false +animation/clip_73/name="" +animation/clip_73/start_frame=0 +animation/clip_73/end_frame=0 +animation/clip_73/loops=false +animation/clip_74/name="" +animation/clip_74/start_frame=0 +animation/clip_74/end_frame=0 +animation/clip_74/loops=false +animation/clip_75/name="" +animation/clip_75/start_frame=0 +animation/clip_75/end_frame=0 +animation/clip_75/loops=false +animation/clip_76/name="" +animation/clip_76/start_frame=0 +animation/clip_76/end_frame=0 +animation/clip_76/loops=false +animation/clip_77/name="" +animation/clip_77/start_frame=0 +animation/clip_77/end_frame=0 +animation/clip_77/loops=false +animation/clip_78/name="" +animation/clip_78/start_frame=0 +animation/clip_78/end_frame=0 +animation/clip_78/loops=false +animation/clip_79/name="" +animation/clip_79/start_frame=0 +animation/clip_79/end_frame=0 +animation/clip_79/loops=false +animation/clip_80/name="" +animation/clip_80/start_frame=0 +animation/clip_80/end_frame=0 +animation/clip_80/loops=false +animation/clip_81/name="" +animation/clip_81/start_frame=0 +animation/clip_81/end_frame=0 +animation/clip_81/loops=false +animation/clip_82/name="" +animation/clip_82/start_frame=0 +animation/clip_82/end_frame=0 +animation/clip_82/loops=false +animation/clip_83/name="" +animation/clip_83/start_frame=0 +animation/clip_83/end_frame=0 +animation/clip_83/loops=false +animation/clip_84/name="" +animation/clip_84/start_frame=0 +animation/clip_84/end_frame=0 +animation/clip_84/loops=false +animation/clip_85/name="" +animation/clip_85/start_frame=0 +animation/clip_85/end_frame=0 +animation/clip_85/loops=false +animation/clip_86/name="" +animation/clip_86/start_frame=0 +animation/clip_86/end_frame=0 +animation/clip_86/loops=false +animation/clip_87/name="" +animation/clip_87/start_frame=0 +animation/clip_87/end_frame=0 +animation/clip_87/loops=false +animation/clip_88/name="" +animation/clip_88/start_frame=0 +animation/clip_88/end_frame=0 +animation/clip_88/loops=false +animation/clip_89/name="" +animation/clip_89/start_frame=0 +animation/clip_89/end_frame=0 +animation/clip_89/loops=false +animation/clip_90/name="" +animation/clip_90/start_frame=0 +animation/clip_90/end_frame=0 +animation/clip_90/loops=false +animation/clip_91/name="" +animation/clip_91/start_frame=0 +animation/clip_91/end_frame=0 +animation/clip_91/loops=false +animation/clip_92/name="" +animation/clip_92/start_frame=0 +animation/clip_92/end_frame=0 +animation/clip_92/loops=false +animation/clip_93/name="" +animation/clip_93/start_frame=0 +animation/clip_93/end_frame=0 +animation/clip_93/loops=false +animation/clip_94/name="" +animation/clip_94/start_frame=0 +animation/clip_94/end_frame=0 +animation/clip_94/loops=false +animation/clip_95/name="" +animation/clip_95/start_frame=0 +animation/clip_95/end_frame=0 +animation/clip_95/loops=false +animation/clip_96/name="" +animation/clip_96/start_frame=0 +animation/clip_96/end_frame=0 +animation/clip_96/loops=false +animation/clip_97/name="" +animation/clip_97/start_frame=0 +animation/clip_97/end_frame=0 +animation/clip_97/loops=false +animation/clip_98/name="" +animation/clip_98/start_frame=0 +animation/clip_98/end_frame=0 +animation/clip_98/loops=false +animation/clip_99/name="" +animation/clip_99/start_frame=0 +animation/clip_99/end_frame=0 +animation/clip_99/loops=false +animation/clip_100/name="" +animation/clip_100/start_frame=0 +animation/clip_100/end_frame=0 +animation/clip_100/loops=false +animation/clip_101/name="" +animation/clip_101/start_frame=0 +animation/clip_101/end_frame=0 +animation/clip_101/loops=false +animation/clip_102/name="" +animation/clip_102/start_frame=0 +animation/clip_102/end_frame=0 +animation/clip_102/loops=false +animation/clip_103/name="" +animation/clip_103/start_frame=0 +animation/clip_103/end_frame=0 +animation/clip_103/loops=false +animation/clip_104/name="" +animation/clip_104/start_frame=0 +animation/clip_104/end_frame=0 +animation/clip_104/loops=false +animation/clip_105/name="" +animation/clip_105/start_frame=0 +animation/clip_105/end_frame=0 +animation/clip_105/loops=false +animation/clip_106/name="" +animation/clip_106/start_frame=0 +animation/clip_106/end_frame=0 +animation/clip_106/loops=false +animation/clip_107/name="" +animation/clip_107/start_frame=0 +animation/clip_107/end_frame=0 +animation/clip_107/loops=false +animation/clip_108/name="" +animation/clip_108/start_frame=0 +animation/clip_108/end_frame=0 +animation/clip_108/loops=false +animation/clip_109/name="" +animation/clip_109/start_frame=0 +animation/clip_109/end_frame=0 +animation/clip_109/loops=false +animation/clip_110/name="" +animation/clip_110/start_frame=0 +animation/clip_110/end_frame=0 +animation/clip_110/loops=false +animation/clip_111/name="" +animation/clip_111/start_frame=0 +animation/clip_111/end_frame=0 +animation/clip_111/loops=false +animation/clip_112/name="" +animation/clip_112/start_frame=0 +animation/clip_112/end_frame=0 +animation/clip_112/loops=false +animation/clip_113/name="" +animation/clip_113/start_frame=0 +animation/clip_113/end_frame=0 +animation/clip_113/loops=false +animation/clip_114/name="" +animation/clip_114/start_frame=0 +animation/clip_114/end_frame=0 +animation/clip_114/loops=false +animation/clip_115/name="" +animation/clip_115/start_frame=0 +animation/clip_115/end_frame=0 +animation/clip_115/loops=false +animation/clip_116/name="" +animation/clip_116/start_frame=0 +animation/clip_116/end_frame=0 +animation/clip_116/loops=false +animation/clip_117/name="" +animation/clip_117/start_frame=0 +animation/clip_117/end_frame=0 +animation/clip_117/loops=false +animation/clip_118/name="" +animation/clip_118/start_frame=0 +animation/clip_118/end_frame=0 +animation/clip_118/loops=false +animation/clip_119/name="" +animation/clip_119/start_frame=0 +animation/clip_119/end_frame=0 +animation/clip_119/loops=false +animation/clip_120/name="" +animation/clip_120/start_frame=0 +animation/clip_120/end_frame=0 +animation/clip_120/loops=false +animation/clip_121/name="" +animation/clip_121/start_frame=0 +animation/clip_121/end_frame=0 +animation/clip_121/loops=false +animation/clip_122/name="" +animation/clip_122/start_frame=0 +animation/clip_122/end_frame=0 +animation/clip_122/loops=false +animation/clip_123/name="" +animation/clip_123/start_frame=0 +animation/clip_123/end_frame=0 +animation/clip_123/loops=false +animation/clip_124/name="" +animation/clip_124/start_frame=0 +animation/clip_124/end_frame=0 +animation/clip_124/loops=false +animation/clip_125/name="" +animation/clip_125/start_frame=0 +animation/clip_125/end_frame=0 +animation/clip_125/loops=false +animation/clip_126/name="" +animation/clip_126/start_frame=0 +animation/clip_126/end_frame=0 +animation/clip_126/loops=false +animation/clip_127/name="" +animation/clip_127/start_frame=0 +animation/clip_127/end_frame=0 +animation/clip_127/loops=false +animation/clip_128/name="" +animation/clip_128/start_frame=0 +animation/clip_128/end_frame=0 +animation/clip_128/loops=false +animation/clip_129/name="" +animation/clip_129/start_frame=0 +animation/clip_129/end_frame=0 +animation/clip_129/loops=false +animation/clip_130/name="" +animation/clip_130/start_frame=0 +animation/clip_130/end_frame=0 +animation/clip_130/loops=false +animation/clip_131/name="" +animation/clip_131/start_frame=0 +animation/clip_131/end_frame=0 +animation/clip_131/loops=false +animation/clip_132/name="" +animation/clip_132/start_frame=0 +animation/clip_132/end_frame=0 +animation/clip_132/loops=false +animation/clip_133/name="" +animation/clip_133/start_frame=0 +animation/clip_133/end_frame=0 +animation/clip_133/loops=false +animation/clip_134/name="" +animation/clip_134/start_frame=0 +animation/clip_134/end_frame=0 +animation/clip_134/loops=false +animation/clip_135/name="" +animation/clip_135/start_frame=0 +animation/clip_135/end_frame=0 +animation/clip_135/loops=false +animation/clip_136/name="" +animation/clip_136/start_frame=0 +animation/clip_136/end_frame=0 +animation/clip_136/loops=false +animation/clip_137/name="" +animation/clip_137/start_frame=0 +animation/clip_137/end_frame=0 +animation/clip_137/loops=false +animation/clip_138/name="" +animation/clip_138/start_frame=0 +animation/clip_138/end_frame=0 +animation/clip_138/loops=false +animation/clip_139/name="" +animation/clip_139/start_frame=0 +animation/clip_139/end_frame=0 +animation/clip_139/loops=false +animation/clip_140/name="" +animation/clip_140/start_frame=0 +animation/clip_140/end_frame=0 +animation/clip_140/loops=false +animation/clip_141/name="" +animation/clip_141/start_frame=0 +animation/clip_141/end_frame=0 +animation/clip_141/loops=false +animation/clip_142/name="" +animation/clip_142/start_frame=0 +animation/clip_142/end_frame=0 +animation/clip_142/loops=false +animation/clip_143/name="" +animation/clip_143/start_frame=0 +animation/clip_143/end_frame=0 +animation/clip_143/loops=false +animation/clip_144/name="" +animation/clip_144/start_frame=0 +animation/clip_144/end_frame=0 +animation/clip_144/loops=false +animation/clip_145/name="" +animation/clip_145/start_frame=0 +animation/clip_145/end_frame=0 +animation/clip_145/loops=false +animation/clip_146/name="" +animation/clip_146/start_frame=0 +animation/clip_146/end_frame=0 +animation/clip_146/loops=false +animation/clip_147/name="" +animation/clip_147/start_frame=0 +animation/clip_147/end_frame=0 +animation/clip_147/loops=false +animation/clip_148/name="" +animation/clip_148/start_frame=0 +animation/clip_148/end_frame=0 +animation/clip_148/loops=false +animation/clip_149/name="" +animation/clip_149/start_frame=0 +animation/clip_149/end_frame=0 +animation/clip_149/loops=false +animation/clip_150/name="" +animation/clip_150/start_frame=0 +animation/clip_150/end_frame=0 +animation/clip_150/loops=false +animation/clip_151/name="" +animation/clip_151/start_frame=0 +animation/clip_151/end_frame=0 +animation/clip_151/loops=false +animation/clip_152/name="" +animation/clip_152/start_frame=0 +animation/clip_152/end_frame=0 +animation/clip_152/loops=false +animation/clip_153/name="" +animation/clip_153/start_frame=0 +animation/clip_153/end_frame=0 +animation/clip_153/loops=false +animation/clip_154/name="" +animation/clip_154/start_frame=0 +animation/clip_154/end_frame=0 +animation/clip_154/loops=false +animation/clip_155/name="" +animation/clip_155/start_frame=0 +animation/clip_155/end_frame=0 +animation/clip_155/loops=false +animation/clip_156/name="" +animation/clip_156/start_frame=0 +animation/clip_156/end_frame=0 +animation/clip_156/loops=false +animation/clip_157/name="" +animation/clip_157/start_frame=0 +animation/clip_157/end_frame=0 +animation/clip_157/loops=false +animation/clip_158/name="" +animation/clip_158/start_frame=0 +animation/clip_158/end_frame=0 +animation/clip_158/loops=false +animation/clip_159/name="" +animation/clip_159/start_frame=0 +animation/clip_159/end_frame=0 +animation/clip_159/loops=false +animation/clip_160/name="" +animation/clip_160/start_frame=0 +animation/clip_160/end_frame=0 +animation/clip_160/loops=false +animation/clip_161/name="" +animation/clip_161/start_frame=0 +animation/clip_161/end_frame=0 +animation/clip_161/loops=false +animation/clip_162/name="" +animation/clip_162/start_frame=0 +animation/clip_162/end_frame=0 +animation/clip_162/loops=false +animation/clip_163/name="" +animation/clip_163/start_frame=0 +animation/clip_163/end_frame=0 +animation/clip_163/loops=false +animation/clip_164/name="" +animation/clip_164/start_frame=0 +animation/clip_164/end_frame=0 +animation/clip_164/loops=false +animation/clip_165/name="" +animation/clip_165/start_frame=0 +animation/clip_165/end_frame=0 +animation/clip_165/loops=false +animation/clip_166/name="" +animation/clip_166/start_frame=0 +animation/clip_166/end_frame=0 +animation/clip_166/loops=false +animation/clip_167/name="" +animation/clip_167/start_frame=0 +animation/clip_167/end_frame=0 +animation/clip_167/loops=false +animation/clip_168/name="" +animation/clip_168/start_frame=0 +animation/clip_168/end_frame=0 +animation/clip_168/loops=false +animation/clip_169/name="" +animation/clip_169/start_frame=0 +animation/clip_169/end_frame=0 +animation/clip_169/loops=false +animation/clip_170/name="" +animation/clip_170/start_frame=0 +animation/clip_170/end_frame=0 +animation/clip_170/loops=false +animation/clip_171/name="" +animation/clip_171/start_frame=0 +animation/clip_171/end_frame=0 +animation/clip_171/loops=false +animation/clip_172/name="" +animation/clip_172/start_frame=0 +animation/clip_172/end_frame=0 +animation/clip_172/loops=false +animation/clip_173/name="" +animation/clip_173/start_frame=0 +animation/clip_173/end_frame=0 +animation/clip_173/loops=false +animation/clip_174/name="" +animation/clip_174/start_frame=0 +animation/clip_174/end_frame=0 +animation/clip_174/loops=false +animation/clip_175/name="" +animation/clip_175/start_frame=0 +animation/clip_175/end_frame=0 +animation/clip_175/loops=false +animation/clip_176/name="" +animation/clip_176/start_frame=0 +animation/clip_176/end_frame=0 +animation/clip_176/loops=false +animation/clip_177/name="" +animation/clip_177/start_frame=0 +animation/clip_177/end_frame=0 +animation/clip_177/loops=false +animation/clip_178/name="" +animation/clip_178/start_frame=0 +animation/clip_178/end_frame=0 +animation/clip_178/loops=false +animation/clip_179/name="" +animation/clip_179/start_frame=0 +animation/clip_179/end_frame=0 +animation/clip_179/loops=false +animation/clip_180/name="" +animation/clip_180/start_frame=0 +animation/clip_180/end_frame=0 +animation/clip_180/loops=false +animation/clip_181/name="" +animation/clip_181/start_frame=0 +animation/clip_181/end_frame=0 +animation/clip_181/loops=false +animation/clip_182/name="" +animation/clip_182/start_frame=0 +animation/clip_182/end_frame=0 +animation/clip_182/loops=false +animation/clip_183/name="" +animation/clip_183/start_frame=0 +animation/clip_183/end_frame=0 +animation/clip_183/loops=false +animation/clip_184/name="" +animation/clip_184/start_frame=0 +animation/clip_184/end_frame=0 +animation/clip_184/loops=false +animation/clip_185/name="" +animation/clip_185/start_frame=0 +animation/clip_185/end_frame=0 +animation/clip_185/loops=false +animation/clip_186/name="" +animation/clip_186/start_frame=0 +animation/clip_186/end_frame=0 +animation/clip_186/loops=false +animation/clip_187/name="" +animation/clip_187/start_frame=0 +animation/clip_187/end_frame=0 +animation/clip_187/loops=false +animation/clip_188/name="" +animation/clip_188/start_frame=0 +animation/clip_188/end_frame=0 +animation/clip_188/loops=false +animation/clip_189/name="" +animation/clip_189/start_frame=0 +animation/clip_189/end_frame=0 +animation/clip_189/loops=false +animation/clip_190/name="" +animation/clip_190/start_frame=0 +animation/clip_190/end_frame=0 +animation/clip_190/loops=false +animation/clip_191/name="" +animation/clip_191/start_frame=0 +animation/clip_191/end_frame=0 +animation/clip_191/loops=false +animation/clip_192/name="" +animation/clip_192/start_frame=0 +animation/clip_192/end_frame=0 +animation/clip_192/loops=false +animation/clip_193/name="" +animation/clip_193/start_frame=0 +animation/clip_193/end_frame=0 +animation/clip_193/loops=false +animation/clip_194/name="" +animation/clip_194/start_frame=0 +animation/clip_194/end_frame=0 +animation/clip_194/loops=false +animation/clip_195/name="" +animation/clip_195/start_frame=0 +animation/clip_195/end_frame=0 +animation/clip_195/loops=false +animation/clip_196/name="" +animation/clip_196/start_frame=0 +animation/clip_196/end_frame=0 +animation/clip_196/loops=false +animation/clip_197/name="" +animation/clip_197/start_frame=0 +animation/clip_197/end_frame=0 +animation/clip_197/loops=false +animation/clip_198/name="" +animation/clip_198/start_frame=0 +animation/clip_198/end_frame=0 +animation/clip_198/loops=false +animation/clip_199/name="" +animation/clip_199/start_frame=0 +animation/clip_199/end_frame=0 +animation/clip_199/loops=false +animation/clip_200/name="" +animation/clip_200/start_frame=0 +animation/clip_200/end_frame=0 +animation/clip_200/loops=false +animation/clip_201/name="" +animation/clip_201/start_frame=0 +animation/clip_201/end_frame=0 +animation/clip_201/loops=false +animation/clip_202/name="" +animation/clip_202/start_frame=0 +animation/clip_202/end_frame=0 +animation/clip_202/loops=false +animation/clip_203/name="" +animation/clip_203/start_frame=0 +animation/clip_203/end_frame=0 +animation/clip_203/loops=false +animation/clip_204/name="" +animation/clip_204/start_frame=0 +animation/clip_204/end_frame=0 +animation/clip_204/loops=false +animation/clip_205/name="" +animation/clip_205/start_frame=0 +animation/clip_205/end_frame=0 +animation/clip_205/loops=false +animation/clip_206/name="" +animation/clip_206/start_frame=0 +animation/clip_206/end_frame=0 +animation/clip_206/loops=false +animation/clip_207/name="" +animation/clip_207/start_frame=0 +animation/clip_207/end_frame=0 +animation/clip_207/loops=false +animation/clip_208/name="" +animation/clip_208/start_frame=0 +animation/clip_208/end_frame=0 +animation/clip_208/loops=false +animation/clip_209/name="" +animation/clip_209/start_frame=0 +animation/clip_209/end_frame=0 +animation/clip_209/loops=false +animation/clip_210/name="" +animation/clip_210/start_frame=0 +animation/clip_210/end_frame=0 +animation/clip_210/loops=false +animation/clip_211/name="" +animation/clip_211/start_frame=0 +animation/clip_211/end_frame=0 +animation/clip_211/loops=false +animation/clip_212/name="" +animation/clip_212/start_frame=0 +animation/clip_212/end_frame=0 +animation/clip_212/loops=false +animation/clip_213/name="" +animation/clip_213/start_frame=0 +animation/clip_213/end_frame=0 +animation/clip_213/loops=false +animation/clip_214/name="" +animation/clip_214/start_frame=0 +animation/clip_214/end_frame=0 +animation/clip_214/loops=false +animation/clip_215/name="" +animation/clip_215/start_frame=0 +animation/clip_215/end_frame=0 +animation/clip_215/loops=false +animation/clip_216/name="" +animation/clip_216/start_frame=0 +animation/clip_216/end_frame=0 +animation/clip_216/loops=false +animation/clip_217/name="" +animation/clip_217/start_frame=0 +animation/clip_217/end_frame=0 +animation/clip_217/loops=false +animation/clip_218/name="" +animation/clip_218/start_frame=0 +animation/clip_218/end_frame=0 +animation/clip_218/loops=false +animation/clip_219/name="" +animation/clip_219/start_frame=0 +animation/clip_219/end_frame=0 +animation/clip_219/loops=false +animation/clip_220/name="" +animation/clip_220/start_frame=0 +animation/clip_220/end_frame=0 +animation/clip_220/loops=false +animation/clip_221/name="" +animation/clip_221/start_frame=0 +animation/clip_221/end_frame=0 +animation/clip_221/loops=false +animation/clip_222/name="" +animation/clip_222/start_frame=0 +animation/clip_222/end_frame=0 +animation/clip_222/loops=false +animation/clip_223/name="" +animation/clip_223/start_frame=0 +animation/clip_223/end_frame=0 +animation/clip_223/loops=false +animation/clip_224/name="" +animation/clip_224/start_frame=0 +animation/clip_224/end_frame=0 +animation/clip_224/loops=false +animation/clip_225/name="" +animation/clip_225/start_frame=0 +animation/clip_225/end_frame=0 +animation/clip_225/loops=false +animation/clip_226/name="" +animation/clip_226/start_frame=0 +animation/clip_226/end_frame=0 +animation/clip_226/loops=false +animation/clip_227/name="" +animation/clip_227/start_frame=0 +animation/clip_227/end_frame=0 +animation/clip_227/loops=false +animation/clip_228/name="" +animation/clip_228/start_frame=0 +animation/clip_228/end_frame=0 +animation/clip_228/loops=false +animation/clip_229/name="" +animation/clip_229/start_frame=0 +animation/clip_229/end_frame=0 +animation/clip_229/loops=false +animation/clip_230/name="" +animation/clip_230/start_frame=0 +animation/clip_230/end_frame=0 +animation/clip_230/loops=false +animation/clip_231/name="" +animation/clip_231/start_frame=0 +animation/clip_231/end_frame=0 +animation/clip_231/loops=false +animation/clip_232/name="" +animation/clip_232/start_frame=0 +animation/clip_232/end_frame=0 +animation/clip_232/loops=false +animation/clip_233/name="" +animation/clip_233/start_frame=0 +animation/clip_233/end_frame=0 +animation/clip_233/loops=false +animation/clip_234/name="" +animation/clip_234/start_frame=0 +animation/clip_234/end_frame=0 +animation/clip_234/loops=false +animation/clip_235/name="" +animation/clip_235/start_frame=0 +animation/clip_235/end_frame=0 +animation/clip_235/loops=false +animation/clip_236/name="" +animation/clip_236/start_frame=0 +animation/clip_236/end_frame=0 +animation/clip_236/loops=false +animation/clip_237/name="" +animation/clip_237/start_frame=0 +animation/clip_237/end_frame=0 +animation/clip_237/loops=false +animation/clip_238/name="" +animation/clip_238/start_frame=0 +animation/clip_238/end_frame=0 +animation/clip_238/loops=false +animation/clip_239/name="" +animation/clip_239/start_frame=0 +animation/clip_239/end_frame=0 +animation/clip_239/loops=false +animation/clip_240/name="" +animation/clip_240/start_frame=0 +animation/clip_240/end_frame=0 +animation/clip_240/loops=false +animation/clip_241/name="" +animation/clip_241/start_frame=0 +animation/clip_241/end_frame=0 +animation/clip_241/loops=false +animation/clip_242/name="" +animation/clip_242/start_frame=0 +animation/clip_242/end_frame=0 +animation/clip_242/loops=false +animation/clip_243/name="" +animation/clip_243/start_frame=0 +animation/clip_243/end_frame=0 +animation/clip_243/loops=false +animation/clip_244/name="" +animation/clip_244/start_frame=0 +animation/clip_244/end_frame=0 +animation/clip_244/loops=false +animation/clip_245/name="" +animation/clip_245/start_frame=0 +animation/clip_245/end_frame=0 +animation/clip_245/loops=false +animation/clip_246/name="" +animation/clip_246/start_frame=0 +animation/clip_246/end_frame=0 +animation/clip_246/loops=false +animation/clip_247/name="" +animation/clip_247/start_frame=0 +animation/clip_247/end_frame=0 +animation/clip_247/loops=false +animation/clip_248/name="" +animation/clip_248/start_frame=0 +animation/clip_248/end_frame=0 +animation/clip_248/loops=false +animation/clip_249/name="" +animation/clip_249/start_frame=0 +animation/clip_249/end_frame=0 +animation/clip_249/loops=false +animation/clip_250/name="" +animation/clip_250/start_frame=0 +animation/clip_250/end_frame=0 +animation/clip_250/loops=false +animation/clip_251/name="" +animation/clip_251/start_frame=0 +animation/clip_251/end_frame=0 +animation/clip_251/loops=false +animation/clip_252/name="" +animation/clip_252/start_frame=0 +animation/clip_252/end_frame=0 +animation/clip_252/loops=false +animation/clip_253/name="" +animation/clip_253/start_frame=0 +animation/clip_253/end_frame=0 +animation/clip_253/loops=false +animation/clip_254/name="" +animation/clip_254/start_frame=0 +animation/clip_254/end_frame=0 +animation/clip_254/loops=false +animation/clip_255/name="" +animation/clip_255/start_frame=0 +animation/clip_255/end_frame=0 +animation/clip_255/loops=false +animation/clip_256/name="" +animation/clip_256/start_frame=0 +animation/clip_256/end_frame=0 +animation/clip_256/loops=false diff --git a/characters/vroid1-man-at.tres b/characters/vroid1-man-at.tres new file mode 100644 index 0000000..0dd553a --- /dev/null +++ b/characters/vroid1-man-at.tres @@ -0,0 +1,3 @@ +[gd_resource type="AnimationNodeStateMachinePlayback" format=2] + +[resource] diff --git a/characters/vroid1-man-xat.tres b/characters/vroid1-man-xat.tres new file mode 100644 index 0000000..95a5ed5 --- /dev/null +++ b/characters/vroid1-man-xat.tres @@ -0,0 +1,210 @@ +[gd_resource type="AnimationNodeBlendTree" load_steps=44 format=2] + +[sub_resource type="AnimationNodeAnimation" id=1] +animation = "blend-blade-right" + +[sub_resource type="AnimationNodeAnimation" id=2] +animation = "blend-blade-left" + +[sub_resource type="AnimationNodeBlend2" id=3] +filter_enabled = true +filters = [ "Skeleton:j_bip_l_hand", "Skeleton:j_bip_l_index_1", "Skeleton:j_bip_l_index_2", "Skeleton:j_bip_l_index_3", "Skeleton:j_bip_l_little_1", "Skeleton:j_bip_l_little_2", "Skeleton:j_bip_l_little_3", "Skeleton:j_bip_l_middle_1", "Skeleton:j_bip_l_middle_2", "Skeleton:j_bip_l_middle_3", "Skeleton:j_bip_l_ring_1", "Skeleton:j_bip_l_ring_2", "Skeleton:j_bip_l_ring_3", "Skeleton:j_bip_l_thumb_1", "Skeleton:j_bip_l_thumb_2", "Skeleton:j_bip_l_thumb_3" ] + +[sub_resource type="AnimationNodeBlend2" id=4] +filter_enabled = true +filters = [ "Skeleton:j_bip_r_hand", "Skeleton:j_bip_r_index_1", "Skeleton:j_bip_r_index_2", "Skeleton:j_bip_r_index_3", "Skeleton:j_bip_r_little_1", "Skeleton:j_bip_r_little_2", "Skeleton:j_bip_r_little_3", "Skeleton:j_bip_r_middle_1", "Skeleton:j_bip_r_middle_2", "Skeleton:j_bip_r_middle_3", "Skeleton:j_bip_r_ring_1", "Skeleton:j_bip_r_ring_2", "Skeleton:j_bip_r_ring_3", "Skeleton:j_bip_r_thumb_1", "Skeleton:j_bip_r_thumb_2", "Skeleton:j_bip_r_thumb_3" ] + +[sub_resource type="AnimationNodeAnimation" id=5] +animation = "drive-loop" + +[sub_resource type="AnimationNodeTimeScale" id=6] + +[sub_resource type="AnimationNodeBlendTree" id=7] +nodes/Animation/node = SubResource( 5 ) +nodes/Animation/position = Vector2( 276, 122 ) +nodes/TimeScale/node = SubResource( 6 ) +nodes/TimeScale/position = Vector2( 520, 120 ) +nodes/output/position = Vector2( 740, 140 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=8] +animation = "stand1-loop" + +[sub_resource type="AnimationNodeTimeScale" id=9] + +[sub_resource type="AnimationNodeBlendTree" id=10] +nodes/Animation/node = SubResource( 8 ) +nodes/Animation/position = Vector2( 320, 140 ) +nodes/TimeScale/node = SubResource( 9 ) +nodes/TimeScale/position = Vector2( 580, 140 ) +nodes/output/position = Vector2( 780, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeTimeScale" id=11] + +[sub_resource type="AnimationNodeAnimation" id=12] +animation = "08_01-walk-p1" + +[sub_resource type="AnimationNodeAnimation" id=13] +animation = "08_01-walk-p2" + +[sub_resource type="AnimationNodeAnimation" id=14] +animation = "08_01-walk-p3" + +[sub_resource type="AnimationNodeAnimation" id=15] +animation = "08_01-walk-p4" + +[sub_resource type="AnimationNodeStateMachineTransition" id=16] +switch_mode = 2 +auto_advance = true +xfade_time = 0.01 + +[sub_resource type="AnimationNodeStateMachineTransition" id=17] +switch_mode = 2 +auto_advance = true +xfade_time = 0.01 + +[sub_resource type="AnimationNodeStateMachineTransition" id=18] +switch_mode = 2 +auto_advance = true +xfade_time = 0.01 + +[sub_resource type="AnimationNodeStateMachineTransition" id=19] +switch_mode = 2 +auto_advance = true +xfade_time = 0.01 + +[sub_resource type="AnimationNodeStateMachine" id=20] +states/08_01-walk-p1/node = SubResource( 12 ) +states/08_01-walk-p1/position = Vector2( 249, 186 ) +states/08_01-walk-p2/node = SubResource( 13 ) +states/08_01-walk-p2/position = Vector2( 536, 75 ) +states/08_01-walk-p3/node = SubResource( 14 ) +states/08_01-walk-p3/position = Vector2( 824, 75 ) +states/08_01-walk-p4/node = SubResource( 15 ) +states/08_01-walk-p4/position = Vector2( 1084, 186 ) +transitions = [ "08_01-walk-p1", "08_01-walk-p2", SubResource( 16 ), "08_01-walk-p2", "08_01-walk-p3", SubResource( 17 ), "08_01-walk-p3", "08_01-walk-p4", SubResource( 18 ), "08_01-walk-p4", "08_01-walk-p1", SubResource( 19 ) ] +start_node = "08_01-walk-p1" +end_node = "08_01-walk-p4" + +[sub_resource type="AnimationNodeBlendTree" id=21] +nodes/TimeScale/node = SubResource( 11 ) +nodes/TimeScale/position = Vector2( 520, 140 ) +nodes/output/position = Vector2( 780, 160 ) +nodes/walk/node = SubResource( 20 ) +nodes/walk/position = Vector2( 220, 140 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "walk" ] + +[sub_resource type="AnimationNodeAnimation" id=22] +animation = "strafe-right-loop" + +[sub_resource type="AnimationNodeTimeScale" id=23] + +[sub_resource type="AnimationNodeBlendTree" id=24] +nodes/Animation/node = SubResource( 22 ) +nodes/Animation/position = Vector2( 340, 140 ) +nodes/TimeScale/node = SubResource( 23 ) +nodes/TimeScale/position = Vector2( 580, 140 ) +nodes/output/position = Vector2( 780, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=25] +animation = "strafe-left-loop" + +[sub_resource type="AnimationNodeTimeScale" id=26] + +[sub_resource type="AnimationNodeBlendTree" id=27] +nodes/Animation/node = SubResource( 25 ) +nodes/Animation/position = Vector2( 200, 140 ) +nodes/TimeScale/node = SubResource( 26 ) +nodes/TimeScale/position = Vector2( 580, 140 ) +nodes/output/position = Vector2( 920, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeBlendSpace2D" id=28] +blend_point_0/node = SubResource( 10 ) +blend_point_0/pos = Vector2( 0, 0 ) +blend_point_1/node = SubResource( 21 ) +blend_point_1/pos = Vector2( 0.1, 0 ) +blend_point_2/node = SubResource( 24 ) +blend_point_2/pos = Vector2( 0, 1 ) +blend_point_3/node = SubResource( 27 ) +blend_point_3/pos = Vector2( 0, -1 ) + +[sub_resource type="AnimationNodeBlendTree" id=29] +graph_offset = Vector2( -453, -150 ) +nodes/loc/node = SubResource( 28 ) +nodes/loc/position = Vector2( 180, -20 ) +nodes/output/position = Vector2( 580, 120 ) +node_connections = [ "output", 0, "loc" ] + +[sub_resource type="AnimationNodeAnimation" id=30] +animation = "car-passenger-loop" + +[sub_resource type="AnimationNodeTimeScale" id=31] + +[sub_resource type="AnimationNodeBlendTree" id=32] +nodes/Animation/node = SubResource( 30 ) +nodes/Animation/position = Vector2( 300, 80 ) +nodes/TimeScale/node = SubResource( 31 ) +nodes/TimeScale/position = Vector2( 560, 80 ) +nodes/output/position = Vector2( 800, 80 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=33] +animation = "dagger-sacrifice-counter-a" + +[sub_resource type="AnimationNodeTimeScale" id=34] + +[sub_resource type="AnimationNodeTimeSeek" id=35] + +[sub_resource type="AnimationNodeBlendTree" id=36] +graph_offset = Vector2( 0, -262 ) +nodes/Animation/node = SubResource( 33 ) +nodes/Animation/position = Vector2( 520, 180 ) +nodes/TimeScale/node = SubResource( 34 ) +nodes/TimeScale/position = Vector2( 980, 200 ) +nodes/output/position = Vector2( 1480, 180 ) +nodes/seek/node = SubResource( 35 ) +nodes/seek/position = Vector2( 920, -20 ) +node_connections = [ "seek", 0, "Animation", "output", 0, "TimeScale", "TimeScale", 0, "seek" ] + +[sub_resource type="AnimationNodeStateMachineTransition" id=37] + +[sub_resource type="AnimationNodeStateMachineTransition" id=38] + +[sub_resource type="AnimationNodeStateMachineTransition" id=39] + +[sub_resource type="AnimationNodeStateMachineTransition" id=40] + +[sub_resource type="AnimationNodeStateMachineTransition" id=41] + +[sub_resource type="AnimationNodeStateMachineTransition" id=42] + +[sub_resource type="AnimationNodeStateMachine" id=43] +states/drive/node = SubResource( 7 ) +states/drive/position = Vector2( 231, 282 ) +states/locomotion/node = SubResource( 29 ) +states/locomotion/position = Vector2( 231, 174 ) +states/passenger/node = SubResource( 32 ) +states/passenger/position = Vector2( 452.444, 220 ) +states/sacrificed-a/node = SubResource( 36 ) +states/sacrificed-a/position = Vector2( 628.444, 464 ) +transitions = [ "locomotion", "drive", SubResource( 37 ), "drive", "locomotion", SubResource( 38 ), "locomotion", "passenger", SubResource( 39 ), "passenger", "locomotion", SubResource( 40 ), "drive", "passenger", SubResource( 41 ), "passenger", "drive", SubResource( 42 ) ] +start_node = "locomotion" +graph_offset = Vector2( -471.556, 74 ) + +[resource] +graph_offset = Vector2( -631.583, -146.25 ) +nodes/Animation/node = SubResource( 2 ) +nodes/Animation/position = Vector2( -200, 260 ) +"nodes/Animation 2/node" = SubResource( 1 ) +"nodes/Animation 2/position" = Vector2( -280, 400 ) +nodes/blade_left/node = SubResource( 3 ) +nodes/blade_left/position = Vector2( 220, 180 ) +nodes/blade_right/node = SubResource( 4 ) +nodes/blade_right/position = Vector2( 680, 320 ) +nodes/output/position = Vector2( 1040, 120 ) +nodes/state/node = SubResource( 43 ) +nodes/state/position = Vector2( -179, 86 ) +node_connections = [ "output", 0, "blade_right", "blade_left", 0, "state", "blade_left", 1, "Animation", "blade_right", 0, "blade_left", "blade_right", 1, "Animation 2" ] diff --git a/characters/vroid1-man.tscn b/characters/vroid1-man.tscn new file mode 100644 index 0000000..9273983 --- /dev/null +++ b/characters/vroid1-man.tscn @@ -0,0 +1,531 @@ +[gd_scene load_steps=95 format=2] + +[ext_resource path="res://scenes/characters/vroid1-man.gltf" type="PackedScene" id=1] +[ext_resource path="res://scenes/hair/male-hair1.tscn" type="PackedScene" id=2] +[ext_resource path="res://scenes/face/male-face.tscn" type="PackedScene" id=3] + +[sub_resource type="AnimationNodeAnimation" id=1] +animation = "blend-blade-right" + +[sub_resource type="AnimationNodeAnimation" id=2] +animation = "blend-blade-left" + +[sub_resource type="AnimationNodeBlend2" id=3] +filter_enabled = true +filters = [ "Skeleton:j_bip_l_hand", "Skeleton:j_bip_l_index_1", "Skeleton:j_bip_l_index_2", "Skeleton:j_bip_l_index_3", "Skeleton:j_bip_l_little_1", "Skeleton:j_bip_l_little_2", "Skeleton:j_bip_l_little_3", "Skeleton:j_bip_l_middle_1", "Skeleton:j_bip_l_middle_2", "Skeleton:j_bip_l_middle_3", "Skeleton:j_bip_l_ring_1", "Skeleton:j_bip_l_ring_2", "Skeleton:j_bip_l_ring_3", "Skeleton:j_bip_l_thumb_1", "Skeleton:j_bip_l_thumb_2", "Skeleton:j_bip_l_thumb_3" ] + +[sub_resource type="AnimationNodeBlend2" id=4] +filter_enabled = true +filters = [ "Skeleton:j_bip_r_hand", "Skeleton:j_bip_r_index_1", "Skeleton:j_bip_r_index_2", "Skeleton:j_bip_r_index_3", "Skeleton:j_bip_r_little_1", "Skeleton:j_bip_r_little_2", "Skeleton:j_bip_r_little_3", "Skeleton:j_bip_r_middle_1", "Skeleton:j_bip_r_middle_2", "Skeleton:j_bip_r_middle_3", "Skeleton:j_bip_r_ring_1", "Skeleton:j_bip_r_ring_2", "Skeleton:j_bip_r_ring_3", "Skeleton:j_bip_r_thumb_1", "Skeleton:j_bip_r_thumb_2", "Skeleton:j_bip_r_thumb_3" ] + +[sub_resource type="AnimationNodeAnimation" id=5] +animation = "cliimb1" + +[sub_resource type="AnimationNodeTimeScale" id=6] + +[sub_resource type="AnimationNodeBlendTree" id=7] +nodes/Animation/node = SubResource( 5 ) +nodes/Animation/position = Vector2( 480, 260 ) +nodes/TimeScale/node = SubResource( 6 ) +nodes/TimeScale/position = Vector2( 800, 260 ) +nodes/output/position = Vector2( 1140, 180 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=8] +animation = "cliimb1a" + +[sub_resource type="AnimationNodeTimeScale" id=9] + +[sub_resource type="AnimationNodeBlendTree" id=10] +nodes/Animation/node = SubResource( 8 ) +nodes/Animation/position = Vector2( 470, 267 ) +nodes/TimeScale/node = SubResource( 9 ) +nodes/TimeScale/position = Vector2( 812, 292 ) +nodes/output/position = Vector2( 1120, 220 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=11] +animation = "drive-loop" + +[sub_resource type="AnimationNodeTimeScale" id=12] + +[sub_resource type="AnimationNodeBlendTree" id=13] +nodes/Animation/node = SubResource( 11 ) +nodes/Animation/position = Vector2( 276, 122 ) +nodes/TimeScale/node = SubResource( 12 ) +nodes/TimeScale/position = Vector2( 520, 120 ) +nodes/output/position = Vector2( 740, 140 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=14] +animation = "start-grab" + +[sub_resource type="AnimationNodeTimeScale" id=15] + +[sub_resource type="AnimationNodeBlendTree" id=16] +nodes/Animation/node = SubResource( 14 ) +nodes/Animation/position = Vector2( 573, 137 ) +nodes/TimeScale/node = SubResource( 15 ) +nodes/TimeScale/position = Vector2( 820, 100 ) +nodes/output/position = Vector2( 1160, 140 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=17] +animation = "stand1-loop" + +[sub_resource type="AnimationNodeTimeScale" id=18] + +[sub_resource type="AnimationNodeBlendTree" id=19] +nodes/Animation/node = SubResource( 17 ) +nodes/Animation/position = Vector2( 320, 140 ) +nodes/TimeScale/node = SubResource( 18 ) +nodes/TimeScale/position = Vector2( 580, 140 ) +nodes/output/position = Vector2( 780, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=141] +animation = "male-mx-run-loop" + +[sub_resource type="AnimationNodeTimeScale" id=20] + +[sub_resource type="AnimationNodeBlendTree" id=30] +graph_offset = Vector2( 0, 116 ) +nodes/Animation/node = SubResource( 141 ) +nodes/Animation/position = Vector2( 287, 281 ) +nodes/TimeScale/node = SubResource( 20 ) +nodes/TimeScale/position = Vector2( 520, 140 ) +nodes/output/position = Vector2( 780, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=31] +animation = "strafe-right-loop" + +[sub_resource type="AnimationNodeTimeScale" id=32] + +[sub_resource type="AnimationNodeBlendTree" id=33] +nodes/Animation/node = SubResource( 31 ) +nodes/Animation/position = Vector2( 340, 140 ) +nodes/TimeScale/node = SubResource( 32 ) +nodes/TimeScale/position = Vector2( 580, 140 ) +nodes/output/position = Vector2( 780, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=34] +animation = "strafe-left-loop" + +[sub_resource type="AnimationNodeTimeScale" id=35] + +[sub_resource type="AnimationNodeBlendTree" id=36] +nodes/Animation/node = SubResource( 34 ) +nodes/Animation/position = Vector2( 200, 140 ) +nodes/TimeScale/node = SubResource( 35 ) +nodes/TimeScale/position = Vector2( 580, 140 ) +nodes/output/position = Vector2( 920, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=140] +animation = "male-mx-walk-loop" + +[sub_resource type="AnimationNodeTimeScale" id=37] + +[sub_resource type="AnimationNodeBlendTree" id=39] +nodes/Animation/node = SubResource( 140 ) +nodes/Animation/position = Vector2( 513, 239 ) +nodes/TimeScale/node = SubResource( 37 ) +nodes/TimeScale/position = Vector2( 940, 220 ) +nodes/output/position = Vector2( 1220, 120 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeBlendSpace2D" id=40] +blend_point_0/node = SubResource( 19 ) +blend_point_0/pos = Vector2( 0, 0 ) +blend_point_1/node = SubResource( 30 ) +blend_point_1/pos = Vector2( 0.9, 0 ) +blend_point_2/node = SubResource( 33 ) +blend_point_2/pos = Vector2( 0, 1 ) +blend_point_3/node = SubResource( 36 ) +blend_point_3/pos = Vector2( 0, -1 ) +blend_point_4/node = SubResource( 39 ) +blend_point_4/pos = Vector2( 0.1, 0 ) +blend_mode = 1 + +[sub_resource type="AnimationNodeBlendTree" id=41] +graph_offset = Vector2( -453, -230.5 ) +nodes/loc/node = SubResource( 40 ) +nodes/loc/position = Vector2( 180, -20 ) +nodes/output/position = Vector2( 580, 120 ) +node_connections = [ "output", 0, "loc" ] + +[sub_resource type="AnimationNodeAnimation" id=42] +animation = "car-passenger-loop" + +[sub_resource type="AnimationNodeTimeScale" id=43] + +[sub_resource type="AnimationNodeBlendTree" id=44] +nodes/Animation/node = SubResource( 42 ) +nodes/Animation/position = Vector2( 300, 80 ) +nodes/TimeScale/node = SubResource( 43 ) +nodes/TimeScale/position = Vector2( 560, 80 ) +nodes/output/position = Vector2( 800, 80 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=45] +animation = "dagger-sacrifice-counter-a" + +[sub_resource type="AnimationNodeTimeScale" id=46] + +[sub_resource type="AnimationNodeTimeSeek" id=47] + +[sub_resource type="AnimationNodeBlendTree" id=48] +graph_offset = Vector2( 0, -262 ) +nodes/Animation/node = SubResource( 45 ) +nodes/Animation/position = Vector2( 520, 180 ) +nodes/TimeScale/node = SubResource( 46 ) +nodes/TimeScale/position = Vector2( 980, 200 ) +nodes/output/position = Vector2( 1480, 180 ) +nodes/seek/node = SubResource( 47 ) +nodes/seek/position = Vector2( 920, -20 ) +node_connections = [ "seek", 0, "Animation", "output", 0, "TimeScale", "TimeScale", 0, "seek" ] + +[sub_resource type="AnimationNodeAnimation" id=49] +animation = "sleeping1-loop" + +[sub_resource type="AnimationNodeTimeScale" id=50] + +[sub_resource type="AnimationNodeBlendTree" id=51] +nodes/Animation/node = SubResource( 49 ) +nodes/Animation/position = Vector2( 220, 320 ) +nodes/TimeScale/node = SubResource( 50 ) +nodes/TimeScale/position = Vector2( 623, 370 ) +nodes/output/position = Vector2( 920, 180 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=107] +animation = "start-walking" + +[sub_resource type="AnimationNodeTimeScale" id=108] + +[sub_resource type="AnimationNodeBlendTree" id=102] +nodes/Animation/node = SubResource( 107 ) +nodes/Animation/position = Vector2( 320, 260 ) +nodes/TimeScale/node = SubResource( 108 ) +nodes/TimeScale/position = Vector2( 580, 260 ) +nodes/output/position = Vector2( 920, 280 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=105] +animation = "stop-walking" + +[sub_resource type="AnimationNodeTimeScale" id=106] + +[sub_resource type="AnimationNodeBlendTree" id=99] +nodes/Animation/node = SubResource( 105 ) +nodes/Animation/position = Vector2( 240, 140 ) +nodes/TimeScale/node = SubResource( 106 ) +nodes/TimeScale/position = Vector2( 500, 140 ) +nodes/output/position = Vector2( 800, 160 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Animation" ] + +[sub_resource type="AnimationNodeAnimation" id=117] +animation = "turn-left" + +[sub_resource type="AnimationNodeAnimation" id=115] +animation = "turn-left" + +[sub_resource type="AnimationNodeTimeScale" id=121] + +[sub_resource type="AnimationNodeTransition" id=118] +input_count = 2 +xfade_time = 0.3 +input_0/name = "state 0" +input_0/auto_advance = true +input_1/name = "state 1" +input_1/auto_advance = true + +[sub_resource type="AnimationNodeBlendTree" id=109] +nodes/Animation/node = SubResource( 115 ) +nodes/Animation/position = Vector2( 160, 260 ) +"nodes/Animation 2/node" = SubResource( 117 ) +"nodes/Animation 2/position" = Vector2( 160, 400 ) +nodes/TimeScale/node = SubResource( 121 ) +nodes/TimeScale/position = Vector2( 780, 260 ) +nodes/Transition/node = SubResource( 118 ) +nodes/Transition/position = Vector2( 500, 280 ) +nodes/output/position = Vector2( 1000, 260 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Transition", "Transition", 0, "Animation", "Transition", 1, "Animation 2" ] + +[sub_resource type="AnimationNodeAnimation" id=119] +animation = "turn-right" + +[sub_resource type="AnimationNodeAnimation" id=116] +animation = "turn-right" + +[sub_resource type="AnimationNodeTimeScale" id=122] + +[sub_resource type="AnimationNodeTransition" id=120] +input_count = 2 +xfade_time = 0.3 +input_0/name = "state 0" +input_0/auto_advance = true +input_1/name = "state 1" +input_1/auto_advance = true + +[sub_resource type="AnimationNodeBlendTree" id=110] +nodes/Animation/node = SubResource( 116 ) +nodes/Animation/position = Vector2( 238, 295 ) +"nodes/Animation 2/node" = SubResource( 119 ) +"nodes/Animation 2/position" = Vector2( 220, 440 ) +nodes/TimeScale/node = SubResource( 122 ) +nodes/TimeScale/position = Vector2( 840, 260 ) +nodes/Transition/node = SubResource( 120 ) +nodes/Transition/position = Vector2( 560, 260 ) +nodes/output/position = Vector2( 1060, 260 ) +node_connections = [ "output", 0, "TimeScale", "TimeScale", 0, "Transition", "Transition", 0, "Animation", "Transition", 1, "Animation 2" ] + +[sub_resource type="AnimationNodeAnimation" id=123] +animation = "dagger-sacrifice-counter-a" + +[sub_resource type="AnimationNodeAnimation" id=52] +animation = "dagger-sacrifice-counter-a" + +[sub_resource type="AnimationNodeTimeScale" id=124] + +[sub_resource type="AnimationNodeTimeScale" id=53] + +[sub_resource type="AnimationNodeTransition" id=125] +input_count = 2 +xfade_time = 0.1 +input_0/name = "state 0" +input_0/auto_advance = true +input_1/name = "state 1" +input_1/auto_advance = true + +[sub_resource type="AnimationNodeBlendTree" id=54] +nodes/Animation/node = SubResource( 52 ) +nodes/Animation/position = Vector2( 196, 150 ) +"nodes/Animation 2/node" = SubResource( 123 ) +"nodes/Animation 2/position" = Vector2( 240, 320 ) +nodes/TimeScale/node = SubResource( 53 ) +nodes/TimeScale/position = Vector2( 700, 140 ) +"nodes/TimeScale 2/node" = SubResource( 124 ) +"nodes/TimeScale 2/position" = Vector2( 680, 300 ) +nodes/Transition/node = SubResource( 125 ) +nodes/Transition/position = Vector2( 940, 140 ) +nodes/output/position = Vector2( 1240, 140 ) +node_connections = [ "output", 0, "Transition", "TimeScale", 0, "Animation", "Transition", 0, "TimeScale", "Transition", 1, "TimeScale 2", "TimeScale 2", 0, "Animation 2" ] + +[sub_resource type="AnimationNodeStateMachineTransition" id=55] + +[sub_resource type="AnimationNodeStateMachineTransition" id=56] + +[sub_resource type="AnimationNodeStateMachineTransition" id=57] + +[sub_resource type="AnimationNodeStateMachineTransition" id=58] + +[sub_resource type="AnimationNodeStateMachineTransition" id=59] + +[sub_resource type="AnimationNodeStateMachineTransition" id=60] + +[sub_resource type="AnimationNodeStateMachineTransition" id=61] + +[sub_resource type="AnimationNodeStateMachineTransition" id=62] + +[sub_resource type="AnimationNodeStateMachineTransition" id=63] + +[sub_resource type="AnimationNodeStateMachineTransition" id=64] + +[sub_resource type="AnimationNodeStateMachineTransition" id=65] +switch_mode = 2 +auto_advance = true + +[sub_resource type="AnimationNodeStateMachineTransition" id=66] + +[sub_resource type="AnimationNodeStateMachineTransition" id=67] +switch_mode = 2 +auto_advance = true + +[sub_resource type="AnimationNodeStateMachineTransition" id=68] + +[sub_resource type="AnimationNodeStateMachineTransition" id=69] +switch_mode = 2 + +[sub_resource type="AnimationNodeStateMachineTransition" id=100] +xfade_time = 0.1 + +[sub_resource type="AnimationNodeStateMachineTransition" id=101] +switch_mode = 2 +auto_advance = true + +[sub_resource type="AnimationNodeStateMachineTransition" id=103] +xfade_time = 0.2 + +[sub_resource type="AnimationNodeStateMachineTransition" id=104] +switch_mode = 2 +auto_advance = true + +[sub_resource type="AnimationNodeStateMachineTransition" id=111] + +[sub_resource type="AnimationNodeStateMachineTransition" id=112] +switch_mode = 2 +xfade_time = 0.5 + +[sub_resource type="AnimationNodeStateMachineTransition" id=113] + +[sub_resource type="AnimationNodeStateMachineTransition" id=114] +switch_mode = 2 +xfade_time = 0.5 + +[sub_resource type="AnimationNodeStateMachine" id=70] +states/climb1/node = SubResource( 7 ) +states/climb1/position = Vector2( 359.444, 656 ) +states/climb1a/node = SubResource( 10 ) +states/climb1a/position = Vector2( 659.444, 154 ) +states/drive/node = SubResource( 13 ) +states/drive/position = Vector2( 289, 430 ) +states/grab/node = SubResource( 16 ) +states/grab/position = Vector2( 739.444, 243 ) +states/locomotion/node = SubResource( 41 ) +states/locomotion/position = Vector2( 231, 174 ) +states/passenger/node = SubResource( 44 ) +states/passenger/position = Vector2( 555.444, 339 ) +states/sacrificed-a/node = SubResource( 48 ) +states/sacrificed-a/position = Vector2( 628.444, 464 ) +states/sleeping/node = SubResource( 51 ) +states/sleeping/position = Vector2( -112.556, 339 ) +states/start_walking/node = SubResource( 102 ) +states/start_walking/position = Vector2( -75.556, 574 ) +states/stop_walking/node = SubResource( 99 ) +states/stop_walking/position = Vector2( -131.556, 455 ) +states/turn_left/node = SubResource( 109 ) +states/turn_left/position = Vector2( -37.556, 676 ) +states/turn_right/node = SubResource( 110 ) +states/turn_right/position = Vector2( 177.444, 671 ) +states/use_tap/node = SubResource( 54 ) +states/use_tap/position = Vector2( -138.556, 174 ) +transitions = [ "locomotion", "drive", SubResource( 55 ), "drive", "locomotion", SubResource( 56 ), "locomotion", "passenger", SubResource( 57 ), "passenger", "locomotion", SubResource( 58 ), "drive", "passenger", SubResource( 59 ), "passenger", "drive", SubResource( 60 ), "sleeping", "locomotion", SubResource( 61 ), "locomotion", "grab", SubResource( 62 ), "grab", "locomotion", SubResource( 63 ), "locomotion", "climb1", SubResource( 64 ), "climb1", "locomotion", SubResource( 65 ), "locomotion", "climb1a", SubResource( 66 ), "climb1a", "locomotion", SubResource( 67 ), "locomotion", "use_tap", SubResource( 68 ), "use_tap", "locomotion", SubResource( 69 ), "locomotion", "stop_walking", SubResource( 100 ), "stop_walking", "locomotion", SubResource( 101 ), "locomotion", "start_walking", SubResource( 103 ), "start_walking", "locomotion", SubResource( 104 ), "locomotion", "turn_left", SubResource( 111 ), "turn_left", "locomotion", SubResource( 112 ), "locomotion", "turn_right", SubResource( 113 ), "turn_right", "locomotion", SubResource( 114 ) ] +start_node = "locomotion" +graph_offset = Vector2( -470.556, -68 ) + +[sub_resource type="AnimationNodeBlendTree" id=71] +graph_offset = Vector2( -499.98, 0 ) +nodes/Animation/node = SubResource( 2 ) +nodes/Animation/position = Vector2( -200, 260 ) +"nodes/Animation 2/node" = SubResource( 1 ) +"nodes/Animation 2/position" = Vector2( -280, 400 ) +nodes/blade_left/node = SubResource( 3 ) +nodes/blade_left/position = Vector2( 220, 180 ) +nodes/blade_right/node = SubResource( 4 ) +nodes/blade_right/position = Vector2( 680, 320 ) +nodes/output/position = Vector2( 1040, 120 ) +nodes/state/node = SubResource( 70 ) +nodes/state/position = Vector2( -179, 86 ) +node_connections = [ "output", 0, "blade_right", "blade_left", 0, "state", "blade_left", 1, "Animation", "blade_right", 0, "blade_left", "blade_right", 1, "Animation 2" ] + +[sub_resource type="AnimationNodeStateMachinePlayback" id=72] + +[node name="vroid1-man" instance=ExtResource( 1 )] + +[node name="Skeleton" parent="." index="0"] +bones/1/bound_children = [ NodePath("hips") ] +bones/75/bound_children = [ NodePath("neck") ] +bones/76/bound_children = [ NodePath("head") ] +bones/80/bound_children = [ NodePath("penis_2") ] +bones/94/bound_children = [ NodePath("wrist_r") ] +bones/96/bound_children = [ NodePath("wrist_l") ] + +[node name="wrist_r" type="BoneAttachment" parent="Skeleton" index="2"] +transform = Transform( 0.0279129, 0.998729, 0.041974, 0.083992, -0.0441852, 0.995486, 0.996075, -0.0242614, -0.0851186, 0.24008, 1.0159, -0.0583036 ) +bone_name = "wrist_ik_r" + +[node name="marker_wrist_r_grab" type="Position3D" parent="Skeleton/wrist_r" index="0"] +transform = Transform( 1, 2.23517e-08, 3.72529e-08, -2.6077e-08, 1, 1.13389e-07, -2.23517e-08, -1.32015e-07, 1, -0.0240285, 0.0591205, -0.0170733 ) +visible = false + +[node name="weapon_right" type="Spatial" parent="Skeleton/wrist_r" index="1"] +transform = Transform( -1.62921e-07, -1, 0, -1.62921e-07, 2.65431e-14, 1, -1, 1.62921e-07, -1.62921e-07, -0.0452205, -0.00161505, -0.0947611 ) + +[node name="wrist_l" type="BoneAttachment" parent="Skeleton" index="3"] +transform = Transform( 0.531637, -0.84656, 0.0264325, -0.0845947, -0.0220212, 0.996172, -0.842737, -0.531838, -0.0833217, -0.202819, 1.0271, -0.0530299 ) +bone_name = "wrist_ik_l" + +[node name="marker_wrist_l_grab" type="Position3D" parent="Skeleton/wrist_l" index="0"] +transform = Transform( 1, -5.96046e-08, 1.19209e-07, -2.98023e-08, 1, 7.45058e-09, -9.68575e-08, 1.00583e-07, 1, -0.0303702, 0.0625808, -0.0433671 ) +visible = false + +[node name="weapon_left" type="Spatial" parent="Skeleton/wrist_l" index="1"] +transform = Transform( -1.62921e-07, 1, 0, 1.62921e-07, 2.65431e-14, -1, -1, -1.62921e-07, -1.62921e-07, 0.04, -0.01, -0.089 ) + +[node name="head" type="BoneAttachment" parent="Skeleton" index="4"] +transform = Transform( 0.998061, -0.0095934, -0.0614997, 0.0314598, 0.930306, 0.365432, 0.0537078, -0.366659, 0.928804, -0.0330975, 1.69764, -0.00609486 ) +bone_name = "J_Bip_C_Head" + +[node name="marker_talk" type="Position3D" parent="Skeleton/head" index="0"] +transform = Transform( 0.991494, 0.0477842, -0.121069, -0.0472599, 0.998856, 0.0071997, 0.121275, -0.00141716, 0.992618, 0.00322284, 0.224896, -0.137154 ) +visible = false + +[node name="hair" type="Spatial" parent="Skeleton/head" index="1"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0.011 ) + +[node name="male-hair1" parent="Skeleton/head/hair" index="0" instance=ExtResource( 2 )] + +[node name="face" type="Spatial" parent="Skeleton/head" index="2"] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0.011 ) + +[node name="male-face" parent="Skeleton/head/face" index="0" instance=ExtResource( 3 )] + +[node name="hips" type="BoneAttachment" parent="Skeleton" index="5"] +transform = Transform( 0.988538, -0.146769, 0.0353867, 0.150102, 0.98061, -0.125986, -0.0162097, 0.129854, 0.991401, 0.000514592, 1.10104, -0.0117666 ) +bone_name = "J_Bip_C_Hips" + +[node name="marker_hips_action" type="Position3D" parent="Skeleton/hips" index="0"] +transform = Transform( 0.999999, 0.000161137, 0.00126248, -0.000160797, 1, -0.000193566, -0.00126263, 0.000193223, 0.999999, 0.0136906, -0.0795597, 0.214268 ) +visible = false + +[node name="neck" type="BoneAttachment" parent="Skeleton" index="6"] +transform = Transform( 0.999522, -0.0284599, 0.0120657, 0.0262095, 0.987195, 0.157347, -0.0163893, -0.156956, 0.987469, -0.0303023, 1.60068, 0.00932036 ) +bone_name = "J_Bip_C_Neck" + +[node name="marker_neck_grab" type="Position3D" parent="Skeleton/neck" index="0"] +transform = Transform( 0.998758, -0.00781338, 0.0492147, 0.00787775, 0.999969, -0.001113, -0.0492044, 0.0014993, 0.998788, -0.00122673, 0.0275304, -0.0923626 ) +visible = false + +[node name="penis_2" type="BoneAttachment" parent="Skeleton" index="7"] +transform = Transform( 0.988538, 0.119852, -0.0918097, 0.150102, -0.845508, 0.51243, -0.0162103, -0.520337, -0.853807, 0.0156493, 0.991264, -0.105296 ) +bone_name = "penis2" + +[node name="marker_penis_action" type="Position3D" parent="Skeleton/penis_2" index="0"] +transform = Transform( 0.998824, -0.0252848, -0.0413812, 0.0249792, 0.999657, -0.00788352, 0.0415664, 0.00684074, 0.999113, -0.0100176, 0.0641036, 0.0307807 ) +visible = false + +[node name="AnimationTree" type="AnimationTree" parent="." index="2"] +tree_root = SubResource( 71 ) +anim_player = NodePath("../AnimationPlayer") +active = true +process_mode = 0 +root_motion_track = NodePath("Skeleton:Root") +parameters/blade_left/blend_amount = 0.0 +parameters/blade_right/blend_amount = 0.0 +parameters/state/playback = SubResource( 72 ) +parameters/state/climb1/TimeScale/scale = 2.0 +parameters/state/climb1a/TimeScale/scale = 2.0 +parameters/state/drive/TimeScale/scale = 1.0 +parameters/state/grab/TimeScale/scale = 1.0 +parameters/state/locomotion/loc/blend_position = Vector2( -0.00293946, -0.0151844 ) +parameters/state/locomotion/loc/0/TimeScale/scale = 1.0 +parameters/state/locomotion/loc/1/TimeScale/scale = 2.0 +parameters/state/locomotion/loc/2/TimeScale/scale = 2.0 +parameters/state/locomotion/loc/3/TimeScale/scale = 1.0 +parameters/state/locomotion/loc/4/TimeScale/scale = 1.0 +parameters/state/passenger/TimeScale/scale = 1.0 +parameters/state/sacrificed-a/TimeScale/scale = 1.0 +parameters/state/sacrificed-a/seek/seek_position = 1.0 +parameters/state/sleeping/TimeScale/scale = 1.0 +parameters/state/start_walking/TimeScale/scale = 2.0 +parameters/state/stop_walking/TimeScale/scale = 2.0 +parameters/state/turn_left/TimeScale/scale = 2.0 +parameters/state/turn_left/Transition/current = 0 +parameters/state/turn_right/TimeScale/scale = 1.0 +parameters/state/turn_right/Transition/current = 0 +parameters/state/use_tap/TimeScale/scale = 1.0 +"parameters/state/use_tap/TimeScale 2/scale" = 1.0 +parameters/state/use_tap/Transition/current = 1 diff --git a/cleanup.sh b/cleanup.sh new file mode 100644 index 0000000..6035165 --- /dev/null +++ b/cleanup.sh @@ -0,0 +1,4 @@ +#!/bin/sh +rm -Rf .import +find . -type f -name '*.mesh' -exec rm '{}' ';' + diff --git a/export_presets.cfg b/export_presets.cfg new file mode 100644 index 0000000..3d1d244 --- /dev/null +++ b/export_presets.cfg @@ -0,0 +1,24 @@ +[preset.0] + +name="linux" +platform="Linux/X11" +runnable=true +custom_features="" +export_filter="all_resources" +include_filter="*.json,*.txt" +exclude_filter="" +export_path="export/ac2.x86_64" +script_export_mode=1 +script_encryption_key="" + +[preset.0.options] + +custom_template/debug="/home/slapin/godot-projects/small-game/src/godot/bin/godot.x11.opt.tools.64" +custom_template/release="/home/slapin/godot-projects/small-game/src/godot/bin/godot.x11.opt.64" +binary_format/64_bits=true +binary_format/embed_pck=true +texture_format/bptc=true +texture_format/s3tc=true +texture_format/etc=true +texture_format/etc2=true +texture_format/no_bptc_fallbacks=true diff --git a/objects/Material.material b/objects/Material.material new file mode 100644 index 0000000..83fe7c7 Binary files /dev/null and b/objects/Material.material differ diff --git a/objects/foundation.tscn b/objects/foundation.tscn new file mode 100644 index 0000000..15dbef9 --- /dev/null +++ b/objects/foundation.tscn @@ -0,0 +1,21 @@ +[gd_scene load_steps=4 format=2] + +[sub_resource type="SpatialMaterial" id=2] + +[sub_resource type="CubeMesh" id=1] +material = SubResource( 2 ) + +[sub_resource type="ConcavePolygonShape" id=3] +data = PoolVector3Array( -1, 1, 1, 1, 1, 1, -1, -1, 1, 1, 1, 1, 1, -1, 1, -1, -1, 1, 1, 1, -1, -1, 1, -1, 1, -1, -1, -1, 1, -1, -1, -1, -1, 1, -1, -1, 1, 1, 1, 1, 1, -1, 1, -1, 1, 1, 1, -1, 1, -1, -1, 1, -1, 1, -1, 1, -1, -1, 1, 1, -1, -1, -1, -1, 1, 1, -1, -1, 1, -1, -1, -1, 1, 1, 1, -1, 1, 1, 1, 1, -1, -1, 1, 1, -1, 1, -1, 1, 1, -1, -1, -1, 1, 1, -1, 1, -1, -1, -1, 1, -1, 1, 1, -1, -1, -1, -1, -1 ) + +[node name="foundation" type="Spatial"] + +[node name="MeshInstance" type="MeshInstance" parent="."] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0 ) +mesh = SubResource( 1 ) +material/0 = null + +[node name="StaticBody" type="StaticBody" parent="MeshInstance"] + +[node name="CollisionShape" type="CollisionShape" parent="MeshInstance/StaticBody"] +shape = SubResource( 3 ) diff --git a/objects/house.gd b/objects/house.gd new file mode 100644 index 0000000..03031c8 --- /dev/null +++ b/objects/house.gd @@ -0,0 +1,15 @@ +extends Spatial + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + for g in get_children(): + if g.name.begins_with("spawn"): + g.add_to_group("spawn") + $spawn_npc1.add_to_group("keep") + diff --git a/objects/palace.bin b/objects/palace.bin new file mode 100644 index 0000000..c653aff Binary files /dev/null and b/objects/palace.bin differ diff --git a/objects/palace.gd b/objects/palace.gd new file mode 100644 index 0000000..972bab0 --- /dev/null +++ b/objects/palace.gd @@ -0,0 +1,123 @@ +extends Spatial + +var courtyard_tile: PackedScene = load("res://objects/courtyard-tile.scn") +var foundation_tile: PackedScene = load("res://objects/foundation.scn") +var room_tile: PackedScene = load("res://objects/block-room-corridoor.scn") +var tower_walls_tile: PackedScene = load("res://objects/tower-walls.scn") +var tower_floor_tile: PackedScene = load("res://objects/tower_floor.scn") +var stairs_tile: PackedScene = load("res://objects/stairs.scn") +var gate_bottom_tile: PackedScene = load("res://objects/gate_bottom.scn") +var gate_top_tile: PackedScene = load("res://objects/gate-top.scn") +var entry_tile: PackedScene = load("res://objects/block-room-entry.scn") +var roof_tile: PackedScene = load("res://objects/roof.scn") +var tower_roof_tile: PackedScene = load("res://objects/tower-roof.scn") + +const tile_size = 8 +const palace_size = 8 +const layers = 4 + + +func _ready(): + var voffset = 0.0 + for layer in range(layers): + match layer: + 0: + voffset += 0.0 + 1: + voffset += 1 + 2: + voffset += 4 + _: + voffset += 4 + for i in range(palace_size): + for j in range(palace_size): + var x = i * tile_size - palace_size * tile_size / 2 + var z = j * tile_size - palace_size * tile_size / 2 + if layer == 0: + var ct = courtyard_tile.instance() + var xform = Transform(Basis(), Vector3(x, voffset, z)) + if i > 0 && i < palace_size - 1: + if j > 0 && j < palace_size - 1: + call_deferred("place", ct, xform) + if i in [0, palace_size - 1] || j in [0, palace_size - 1]: + call_deferred("place", ct, xform) + else: + var ct = room_tile.instance() + var tower_angles = { + 0: + { + 0: -PI / 2.0, + palace_size - 1: 0 + }, + palace_size - 1: + { + 0: PI, + palace_size - 1: PI / 2.0 + } + } + var xform = Transform(Basis(), Vector3(x, voffset, z)) + if i == 0 && !j in [0, palace_size - 1]: + xform.basis = Basis().rotated(Vector3.UP, -PI / 2.0) + spawn_wall(layer, i, j, xform) + elif i == palace_size - 1 && !j in [0, palace_size - 1]: + xform.basis = Basis().rotated(Vector3.UP, PI / 2.0) + spawn_wall(layer, i, j, xform) + elif !i in [0, palace_size - 1] && j == 0: + xform.basis = Basis().rotated(Vector3.UP, PI) + spawn_wall(layer, i, j, xform) + elif !i in [0, palace_size - 1] && j == palace_size - 1: + xform.basis = Basis() + spawn_wall(layer, i, j, xform) + elif tower_angles.has(i) && tower_angles[i].has(j): + xform.basis = Basis().rotated(Vector3.UP, tower_angles[i][j]) + if layer == layers - 1: + var twr = tower_roof_tile.instance() + call_deferred("place", twr, xform) + else: + var tw = tower_walls_tile.instance() + call_deferred("place", tw, xform) + var st = stairs_tile.instance() + call_deferred("place", st, xform) + if layer == 1: + var tfl = tower_floor_tile.instance() + call_deferred("place", tfl, xform) + var car = Spatial.new() + car.add_to_group("spawn") + car.add_to_group("keep") + car.add_to_group("car") + add_child(car) + for e in range(5): + var major_f = Spatial.new() + major_f.add_to_group("spawn") + if e == 0: + major_f.add_to_group("male") + else: + major_f.add_to_group("female") + major_f.add_to_group("keep") + add_child(major_f) + major_f.global_transform = Transform(Basis(), Vector3(cos(PI / 3 * e) * 2.0, 0, sin(PI / 3 * e) * 2.0) + Vector3(10.0, 0, 0)) + print("PALACE done") +func place(obj, where): + add_child(obj) + obj.transform = where + print("placed at ", where.origin) + +func spawn_wall(layer:int, i: int, j: int, xform: Transform): + if layer == layers - 1: + var rt = roof_tile.instance() + call_deferred("place", rt, xform) + elif (j != palace_size / 2.0 && i != palace_size / 2.0)|| layer > 2: + var ct = room_tile.instance() + call_deferred("place", ct, xform) + elif (j == palace_size / 2.0 && i != palace_size / 2.0) && layer == 1: + var ent = entry_tile.instance() + call_deferred("place", ent, xform) + elif (j != palace_size / 2.0 && i == palace_size / 2.0) && layer == 1: + var gw = gate_bottom_tile.instance() + call_deferred("place", gw, xform) + elif (j != palace_size / 2.0 && i == palace_size / 2.0) && layer == 2: + var gw = gate_top_tile.instance() + call_deferred("place", gw, xform) + elif (j == palace_size / 2.0 && i != palace_size / 2.0) && layer == 2: + var ct = room_tile.instance() + call_deferred("place", ct, xform) diff --git a/objects/palace.gltf b/objects/palace.gltf new file mode 100644 index 0000000..8068194 --- /dev/null +++ b/objects/palace.gltf @@ -0,0 +1,889 @@ +{ + "asset" : { + "generator" : "Khronos glTF Blender I/O v1.6.16", + "version" : "2.0" + }, + "scene" : 0, + "scenes" : [ + { + "name" : "Scene", + "nodes" : [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ] + } + ], + "nodes" : [ + { + "mesh" : 0, + "name" : "courtyard-tile-col", + "translation" : [ + 94, + 0, + 0 + ] + }, + { + "mesh" : 1, + "name" : "block-room-corridoor-col", + "translation" : [ + 83, + 0, + 0 + ] + }, + { + "mesh" : 2, + "name" : "foundation-col", + "translation" : [ + 104, + 0, + 0 + ] + }, + { + "mesh" : 3, + "name" : "tower-walls-col", + "translation" : [ + 56, + 0, + 0 + ] + }, + { + "mesh" : 4, + "name" : "stairs-col", + "translation" : [ + 73, + 0, + 0 + ] + }, + { + "mesh" : 5, + "name" : "gate_bottom-col", + "translation" : [ + 115, + 0, + 0 + ] + }, + { + "mesh" : 6, + "name" : "gate-top-col", + "translation" : [ + 115, + 4, + 0 + ] + }, + { + "mesh" : 7, + "name" : "tower_floor-col", + "translation" : [ + 66, + 0, + 0 + ] + }, + { + "mesh" : 8, + "name" : "block-room-entry-col", + "translation" : [ + 46, + 0, + 0 + ] + }, + { + "mesh" : 9, + "name" : "roof-col", + "translation" : [ + 36, + 0, + 0 + ] + }, + { + "mesh" : 10, + "name" : "tower-roof-col", + "translation" : [ + 26, + 0, + 0 + ] + } + ], + "materials" : [ + { + "name" : "palace", + "pbrMetallicRoughness" : { + "baseColorFactor" : [ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor" : 0, + "roughnessFactor" : 0.5 + } + } + ], + "meshes" : [ + { + "name" : "Cube", + "primitives" : [ + { + "attributes" : { + "POSITION" : 0, + "NORMAL" : 1, + "TEXCOORD_0" : 2 + }, + "indices" : 3, + "material" : 0 + } + ] + }, + { + "name" : "Cube.351", + "primitives" : [ + { + "attributes" : { + "POSITION" : 4, + "NORMAL" : 5, + "TEXCOORD_0" : 6 + }, + "indices" : 7, + "material" : 0 + } + ] + }, + { + "name" : "Cube.001", + "primitives" : [ + { + "attributes" : { + "POSITION" : 8, + "NORMAL" : 9, + "TEXCOORD_0" : 10 + }, + "indices" : 3, + "material" : 0 + } + ] + }, + { + "name" : "Cube.003", + "primitives" : [ + { + "attributes" : { + "POSITION" : 11, + "NORMAL" : 12, + "TEXCOORD_0" : 13 + }, + "indices" : 14, + "material" : 0 + } + ] + }, + { + "name" : "Cube.005", + "primitives" : [ + { + "attributes" : { + "POSITION" : 15, + "NORMAL" : 16, + "TEXCOORD_0" : 17 + }, + "indices" : 18, + "material" : 0 + } + ] + }, + { + "name" : "Cube.007", + "primitives" : [ + { + "attributes" : { + "POSITION" : 19, + "NORMAL" : 20, + "TEXCOORD_0" : 21 + }, + "indices" : 22, + "material" : 0 + } + ] + }, + { + "name" : "Cube.008", + "primitives" : [ + { + "attributes" : { + "POSITION" : 23, + "NORMAL" : 24, + "TEXCOORD_0" : 25 + }, + "indices" : 26, + "material" : 0 + } + ] + }, + { + "name" : "Cube.009", + "primitives" : [ + { + "attributes" : { + "POSITION" : 27, + "NORMAL" : 28, + "TEXCOORD_0" : 29 + }, + "indices" : 30, + "material" : 0 + } + ] + }, + { + "name" : "Cube.010", + "primitives" : [ + { + "attributes" : { + "POSITION" : 31, + "NORMAL" : 32, + "TEXCOORD_0" : 33 + }, + "indices" : 34, + "material" : 0 + } + ] + }, + { + "name" : "Cube.011", + "primitives" : [ + { + "attributes" : { + "POSITION" : 35, + "NORMAL" : 36, + "TEXCOORD_0" : 37 + }, + "indices" : 38, + "material" : 0 + } + ] + }, + { + "name" : "Cube.017", + "primitives" : [ + { + "attributes" : { + "POSITION" : 39, + "NORMAL" : 40, + "TEXCOORD_0" : 41 + }, + "indices" : 42 + } + ] + } + ], + "accessors" : [ + { + "bufferView" : 0, + "componentType" : 5126, + "count" : 24, + "max" : [ + 4, + 0, + 4 + ], + "min" : [ + -4, + -1, + -4 + ], + "type" : "VEC3" + }, + { + "bufferView" : 1, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 2, + "componentType" : 5126, + "count" : 24, + "type" : "VEC2" + }, + { + "bufferView" : 3, + "componentType" : 5123, + "count" : 36, + "type" : "SCALAR" + }, + { + "bufferView" : 4, + "componentType" : 5126, + "count" : 1057, + "max" : [ + 4, + 3.799999952316284, + 4 + ], + "min" : [ + -4.000003337860107, + -0.20000004768371582, + -4.099991321563721 + ], + "type" : "VEC3" + }, + { + "bufferView" : 5, + "componentType" : 5126, + "count" : 1057, + "type" : "VEC3" + }, + { + "bufferView" : 6, + "componentType" : 5126, + "count" : 1057, + "type" : "VEC2" + }, + { + "bufferView" : 7, + "componentType" : 5123, + "count" : 2604, + "type" : "SCALAR" + }, + { + "bufferView" : 8, + "componentType" : 5126, + "count" : 24, + "max" : [ + 4, + 0.800000011920929, + 4 + ], + "min" : [ + -4, + -1, + -4 + ], + "type" : "VEC3" + }, + { + "bufferView" : 9, + "componentType" : 5126, + "count" : 24, + "type" : "VEC3" + }, + { + "bufferView" : 10, + "componentType" : 5126, + "count" : 24, + "type" : "VEC2" + }, + { + "bufferView" : 11, + "componentType" : 5126, + "count" : 849, + "max" : [ + 4, + 3.799999952316284, + 4 + ], + "min" : [ + -4, + -0.20000000298023224, + -4 + ], + "type" : "VEC3" + }, + { + "bufferView" : 12, + "componentType" : 5126, + "count" : 849, + "type" : "VEC3" + }, + { + "bufferView" : 13, + "componentType" : 5126, + "count" : 849, + "type" : "VEC2" + }, + { + "bufferView" : 14, + "componentType" : 5123, + "count" : 2178, + "type" : "SCALAR" + }, + { + "bufferView" : 15, + "componentType" : 5126, + "count" : 905, + "max" : [ + 4, + 5, + 3.9000000953674316 + ], + "min" : [ + -3.8999996185302734, + 0, + -4 + ], + "type" : "VEC3" + }, + { + "bufferView" : 16, + "componentType" : 5126, + "count" : 905, + "type" : "VEC3" + }, + { + "bufferView" : 17, + "componentType" : 5126, + "count" : 905, + "type" : "VEC2" + }, + { + "bufferView" : 18, + "componentType" : 5123, + "count" : 1596, + "type" : "SCALAR" + }, + { + "bufferView" : 19, + "componentType" : 5126, + "count" : 80, + "max" : [ + 4, + 3.799999952316284, + 4.5 + ], + "min" : [ + -4, + -0.19999992847442627, + -4.5 + ], + "type" : "VEC3" + }, + { + "bufferView" : 20, + "componentType" : 5126, + "count" : 80, + "type" : "VEC3" + }, + { + "bufferView" : 21, + "componentType" : 5126, + "count" : 80, + "type" : "VEC2" + }, + { + "bufferView" : 22, + "componentType" : 5123, + "count" : 156, + "type" : "SCALAR" + }, + { + "bufferView" : 23, + "componentType" : 5126, + "count" : 504, + "max" : [ + 4, + 4, + 4.5 + ], + "min" : [ + -4, + -0.19999992847442627, + -4.5 + ], + "type" : "VEC3" + }, + { + "bufferView" : 24, + "componentType" : 5126, + "count" : 504, + "type" : "VEC3" + }, + { + "bufferView" : 25, + "componentType" : 5126, + "count" : 504, + "type" : "VEC2" + }, + { + "bufferView" : 26, + "componentType" : 5123, + "count" : 1332, + "type" : "SCALAR" + }, + { + "bufferView" : 27, + "componentType" : 5126, + "count" : 4, + "max" : [ + 1.5, + 0, + 4 + ], + "min" : [ + -3.9000000953674316, + 0, + -3.9000000953674316 + ], + "type" : "VEC3" + }, + { + "bufferView" : 28, + "componentType" : 5126, + "count" : 4, + "type" : "VEC3" + }, + { + "bufferView" : 29, + "componentType" : 5126, + "count" : 4, + "type" : "VEC2" + }, + { + "bufferView" : 30, + "componentType" : 5123, + "count" : 6, + "type" : "SCALAR" + }, + { + "bufferView" : 31, + "componentType" : 5126, + "count" : 1143, + "max" : [ + 4, + 3.799999952316284, + 4 + ], + "min" : [ + -4, + -0.9818469285964966, + -5.357455253601074 + ], + "type" : "VEC3" + }, + { + "bufferView" : 32, + "componentType" : 5126, + "count" : 1143, + "type" : "VEC3" + }, + { + "bufferView" : 33, + "componentType" : 5126, + "count" : 1143, + "type" : "VEC2" + }, + { + "bufferView" : 34, + "componentType" : 5123, + "count" : 3180, + "type" : "SCALAR" + }, + { + "bufferView" : 35, + "componentType" : 5126, + "count" : 36, + "max" : [ + 4, + 5, + 4 + ], + "min" : [ + -4, + -0.20000000298023224, + -4 + ], + "type" : "VEC3" + }, + { + "bufferView" : 36, + "componentType" : 5126, + "count" : 36, + "type" : "VEC3" + }, + { + "bufferView" : 37, + "componentType" : 5126, + "count" : 36, + "type" : "VEC2" + }, + { + "bufferView" : 38, + "componentType" : 5123, + "count" : 60, + "type" : "SCALAR" + }, + { + "bufferView" : 39, + "componentType" : 5126, + "count" : 1832, + "max" : [ + 4, + 14, + 4 + ], + "min" : [ + -4, + -0.30000001192092896, + -4 + ], + "type" : "VEC3" + }, + { + "bufferView" : 40, + "componentType" : 5126, + "count" : 1832, + "type" : "VEC3" + }, + { + "bufferView" : 41, + "componentType" : 5126, + "count" : 1832, + "type" : "VEC2" + }, + { + "bufferView" : 42, + "componentType" : 5123, + "count" : 2964, + "type" : "SCALAR" + } + ], + "bufferViews" : [ + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 0 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 288 + }, + { + "buffer" : 0, + "byteLength" : 192, + "byteOffset" : 576 + }, + { + "buffer" : 0, + "byteLength" : 72, + "byteOffset" : 768 + }, + { + "buffer" : 0, + "byteLength" : 12684, + "byteOffset" : 840 + }, + { + "buffer" : 0, + "byteLength" : 12684, + "byteOffset" : 13524 + }, + { + "buffer" : 0, + "byteLength" : 8456, + "byteOffset" : 26208 + }, + { + "buffer" : 0, + "byteLength" : 5208, + "byteOffset" : 34664 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 39872 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 40160 + }, + { + "buffer" : 0, + "byteLength" : 192, + "byteOffset" : 40448 + }, + { + "buffer" : 0, + "byteLength" : 10188, + "byteOffset" : 40640 + }, + { + "buffer" : 0, + "byteLength" : 10188, + "byteOffset" : 50828 + }, + { + "buffer" : 0, + "byteLength" : 6792, + "byteOffset" : 61016 + }, + { + "buffer" : 0, + "byteLength" : 4356, + "byteOffset" : 67808 + }, + { + "buffer" : 0, + "byteLength" : 10860, + "byteOffset" : 72164 + }, + { + "buffer" : 0, + "byteLength" : 10860, + "byteOffset" : 83024 + }, + { + "buffer" : 0, + "byteLength" : 7240, + "byteOffset" : 93884 + }, + { + "buffer" : 0, + "byteLength" : 3192, + "byteOffset" : 101124 + }, + { + "buffer" : 0, + "byteLength" : 960, + "byteOffset" : 104316 + }, + { + "buffer" : 0, + "byteLength" : 960, + "byteOffset" : 105276 + }, + { + "buffer" : 0, + "byteLength" : 640, + "byteOffset" : 106236 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 106876 + }, + { + "buffer" : 0, + "byteLength" : 6048, + "byteOffset" : 107188 + }, + { + "buffer" : 0, + "byteLength" : 6048, + "byteOffset" : 113236 + }, + { + "buffer" : 0, + "byteLength" : 4032, + "byteOffset" : 119284 + }, + { + "buffer" : 0, + "byteLength" : 2664, + "byteOffset" : 123316 + }, + { + "buffer" : 0, + "byteLength" : 48, + "byteOffset" : 125980 + }, + { + "buffer" : 0, + "byteLength" : 48, + "byteOffset" : 126028 + }, + { + "buffer" : 0, + "byteLength" : 32, + "byteOffset" : 126076 + }, + { + "buffer" : 0, + "byteLength" : 12, + "byteOffset" : 126108 + }, + { + "buffer" : 0, + "byteLength" : 13716, + "byteOffset" : 126120 + }, + { + "buffer" : 0, + "byteLength" : 13716, + "byteOffset" : 139836 + }, + { + "buffer" : 0, + "byteLength" : 9144, + "byteOffset" : 153552 + }, + { + "buffer" : 0, + "byteLength" : 6360, + "byteOffset" : 162696 + }, + { + "buffer" : 0, + "byteLength" : 432, + "byteOffset" : 169056 + }, + { + "buffer" : 0, + "byteLength" : 432, + "byteOffset" : 169488 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 169920 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 170208 + }, + { + "buffer" : 0, + "byteLength" : 21984, + "byteOffset" : 170328 + }, + { + "buffer" : 0, + "byteLength" : 21984, + "byteOffset" : 192312 + }, + { + "buffer" : 0, + "byteLength" : 14656, + "byteOffset" : 214296 + }, + { + "buffer" : 0, + "byteLength" : 5928, + "byteOffset" : 228952 + } + ], + "buffers" : [ + { + "byteLength" : 234880, + "uri" : "palace.bin" + } + ] +} diff --git a/objects/palace.gltf.import b/objects/palace.gltf.import new file mode 100644 index 0000000..b779d77 --- /dev/null +++ b/objects/palace.gltf.import @@ -0,0 +1,1064 @@ +[remap] + +importer="scene" +type="PackedScene" +path="res://.import/palace.gltf-3ea6c80d878741bed09f8f3cdc9100d2.scn" + +[deps] + +source_file="res://objects/palace.gltf" +dest_files=[ "res://.import/palace.gltf-3ea6c80d878741bed09f8f3cdc9100d2.scn" ] + +[params] + +nodes/root_type="Spatial" +nodes/root_name="Scene Root" +nodes/root_scale=1.0 +nodes/custom_script="" +nodes/storage=1 +nodes/use_legacy_names=false +materials/location=1 +materials/storage=1 +materials/keep_on_reimport=true +meshes/compress=true +meshes/ensure_tangents=true +meshes/storage=0 +meshes/light_baking=0 +meshes/lightmap_texel_size=0.1 +skins/use_named_skins=true +external_files/store_in_subdir=false +animation/import=true +animation/fps=15 +animation/filter_script="" +animation/storage=false +animation/keep_custom_tracks=false +animation/optimizer/enabled=true +animation/optimizer/max_linear_error=0.05 +animation/optimizer/max_angular_error=0.01 +animation/optimizer/max_angle=22 +animation/optimizer/remove_unused_tracks=true +animation/clips/amount=0 +animation/clip_1/name="" +animation/clip_1/start_frame=0 +animation/clip_1/end_frame=0 +animation/clip_1/loops=false +animation/clip_2/name="" +animation/clip_2/start_frame=0 +animation/clip_2/end_frame=0 +animation/clip_2/loops=false +animation/clip_3/name="" +animation/clip_3/start_frame=0 +animation/clip_3/end_frame=0 +animation/clip_3/loops=false +animation/clip_4/name="" +animation/clip_4/start_frame=0 +animation/clip_4/end_frame=0 +animation/clip_4/loops=false +animation/clip_5/name="" +animation/clip_5/start_frame=0 +animation/clip_5/end_frame=0 +animation/clip_5/loops=false +animation/clip_6/name="" +animation/clip_6/start_frame=0 +animation/clip_6/end_frame=0 +animation/clip_6/loops=false +animation/clip_7/name="" +animation/clip_7/start_frame=0 +animation/clip_7/end_frame=0 +animation/clip_7/loops=false +animation/clip_8/name="" +animation/clip_8/start_frame=0 +animation/clip_8/end_frame=0 +animation/clip_8/loops=false +animation/clip_9/name="" +animation/clip_9/start_frame=0 +animation/clip_9/end_frame=0 +animation/clip_9/loops=false +animation/clip_10/name="" +animation/clip_10/start_frame=0 +animation/clip_10/end_frame=0 +animation/clip_10/loops=false +animation/clip_11/name="" +animation/clip_11/start_frame=0 +animation/clip_11/end_frame=0 +animation/clip_11/loops=false +animation/clip_12/name="" +animation/clip_12/start_frame=0 +animation/clip_12/end_frame=0 +animation/clip_12/loops=false +animation/clip_13/name="" +animation/clip_13/start_frame=0 +animation/clip_13/end_frame=0 +animation/clip_13/loops=false +animation/clip_14/name="" +animation/clip_14/start_frame=0 +animation/clip_14/end_frame=0 +animation/clip_14/loops=false +animation/clip_15/name="" +animation/clip_15/start_frame=0 +animation/clip_15/end_frame=0 +animation/clip_15/loops=false +animation/clip_16/name="" +animation/clip_16/start_frame=0 +animation/clip_16/end_frame=0 +animation/clip_16/loops=false +animation/clip_17/name="" +animation/clip_17/start_frame=0 +animation/clip_17/end_frame=0 +animation/clip_17/loops=false +animation/clip_18/name="" +animation/clip_18/start_frame=0 +animation/clip_18/end_frame=0 +animation/clip_18/loops=false +animation/clip_19/name="" +animation/clip_19/start_frame=0 +animation/clip_19/end_frame=0 +animation/clip_19/loops=false +animation/clip_20/name="" +animation/clip_20/start_frame=0 +animation/clip_20/end_frame=0 +animation/clip_20/loops=false +animation/clip_21/name="" +animation/clip_21/start_frame=0 +animation/clip_21/end_frame=0 +animation/clip_21/loops=false +animation/clip_22/name="" +animation/clip_22/start_frame=0 +animation/clip_22/end_frame=0 +animation/clip_22/loops=false +animation/clip_23/name="" +animation/clip_23/start_frame=0 +animation/clip_23/end_frame=0 +animation/clip_23/loops=false +animation/clip_24/name="" +animation/clip_24/start_frame=0 +animation/clip_24/end_frame=0 +animation/clip_24/loops=false +animation/clip_25/name="" +animation/clip_25/start_frame=0 +animation/clip_25/end_frame=0 +animation/clip_25/loops=false +animation/clip_26/name="" +animation/clip_26/start_frame=0 +animation/clip_26/end_frame=0 +animation/clip_26/loops=false +animation/clip_27/name="" +animation/clip_27/start_frame=0 +animation/clip_27/end_frame=0 +animation/clip_27/loops=false +animation/clip_28/name="" +animation/clip_28/start_frame=0 +animation/clip_28/end_frame=0 +animation/clip_28/loops=false +animation/clip_29/name="" +animation/clip_29/start_frame=0 +animation/clip_29/end_frame=0 +animation/clip_29/loops=false +animation/clip_30/name="" +animation/clip_30/start_frame=0 +animation/clip_30/end_frame=0 +animation/clip_30/loops=false +animation/clip_31/name="" +animation/clip_31/start_frame=0 +animation/clip_31/end_frame=0 +animation/clip_31/loops=false +animation/clip_32/name="" +animation/clip_32/start_frame=0 +animation/clip_32/end_frame=0 +animation/clip_32/loops=false +animation/clip_33/name="" +animation/clip_33/start_frame=0 +animation/clip_33/end_frame=0 +animation/clip_33/loops=false +animation/clip_34/name="" +animation/clip_34/start_frame=0 +animation/clip_34/end_frame=0 +animation/clip_34/loops=false +animation/clip_35/name="" +animation/clip_35/start_frame=0 +animation/clip_35/end_frame=0 +animation/clip_35/loops=false +animation/clip_36/name="" +animation/clip_36/start_frame=0 +animation/clip_36/end_frame=0 +animation/clip_36/loops=false +animation/clip_37/name="" +animation/clip_37/start_frame=0 +animation/clip_37/end_frame=0 +animation/clip_37/loops=false +animation/clip_38/name="" +animation/clip_38/start_frame=0 +animation/clip_38/end_frame=0 +animation/clip_38/loops=false +animation/clip_39/name="" +animation/clip_39/start_frame=0 +animation/clip_39/end_frame=0 +animation/clip_39/loops=false +animation/clip_40/name="" +animation/clip_40/start_frame=0 +animation/clip_40/end_frame=0 +animation/clip_40/loops=false +animation/clip_41/name="" +animation/clip_41/start_frame=0 +animation/clip_41/end_frame=0 +animation/clip_41/loops=false +animation/clip_42/name="" +animation/clip_42/start_frame=0 +animation/clip_42/end_frame=0 +animation/clip_42/loops=false +animation/clip_43/name="" +animation/clip_43/start_frame=0 +animation/clip_43/end_frame=0 +animation/clip_43/loops=false +animation/clip_44/name="" +animation/clip_44/start_frame=0 +animation/clip_44/end_frame=0 +animation/clip_44/loops=false +animation/clip_45/name="" +animation/clip_45/start_frame=0 +animation/clip_45/end_frame=0 +animation/clip_45/loops=false +animation/clip_46/name="" +animation/clip_46/start_frame=0 +animation/clip_46/end_frame=0 +animation/clip_46/loops=false +animation/clip_47/name="" +animation/clip_47/start_frame=0 +animation/clip_47/end_frame=0 +animation/clip_47/loops=false +animation/clip_48/name="" +animation/clip_48/start_frame=0 +animation/clip_48/end_frame=0 +animation/clip_48/loops=false +animation/clip_49/name="" +animation/clip_49/start_frame=0 +animation/clip_49/end_frame=0 +animation/clip_49/loops=false +animation/clip_50/name="" +animation/clip_50/start_frame=0 +animation/clip_50/end_frame=0 +animation/clip_50/loops=false +animation/clip_51/name="" +animation/clip_51/start_frame=0 +animation/clip_51/end_frame=0 +animation/clip_51/loops=false +animation/clip_52/name="" +animation/clip_52/start_frame=0 +animation/clip_52/end_frame=0 +animation/clip_52/loops=false +animation/clip_53/name="" +animation/clip_53/start_frame=0 +animation/clip_53/end_frame=0 +animation/clip_53/loops=false +animation/clip_54/name="" +animation/clip_54/start_frame=0 +animation/clip_54/end_frame=0 +animation/clip_54/loops=false +animation/clip_55/name="" +animation/clip_55/start_frame=0 +animation/clip_55/end_frame=0 +animation/clip_55/loops=false +animation/clip_56/name="" +animation/clip_56/start_frame=0 +animation/clip_56/end_frame=0 +animation/clip_56/loops=false +animation/clip_57/name="" +animation/clip_57/start_frame=0 +animation/clip_57/end_frame=0 +animation/clip_57/loops=false +animation/clip_58/name="" +animation/clip_58/start_frame=0 +animation/clip_58/end_frame=0 +animation/clip_58/loops=false +animation/clip_59/name="" +animation/clip_59/start_frame=0 +animation/clip_59/end_frame=0 +animation/clip_59/loops=false +animation/clip_60/name="" +animation/clip_60/start_frame=0 +animation/clip_60/end_frame=0 +animation/clip_60/loops=false +animation/clip_61/name="" +animation/clip_61/start_frame=0 +animation/clip_61/end_frame=0 +animation/clip_61/loops=false +animation/clip_62/name="" +animation/clip_62/start_frame=0 +animation/clip_62/end_frame=0 +animation/clip_62/loops=false +animation/clip_63/name="" +animation/clip_63/start_frame=0 +animation/clip_63/end_frame=0 +animation/clip_63/loops=false +animation/clip_64/name="" +animation/clip_64/start_frame=0 +animation/clip_64/end_frame=0 +animation/clip_64/loops=false +animation/clip_65/name="" +animation/clip_65/start_frame=0 +animation/clip_65/end_frame=0 +animation/clip_65/loops=false +animation/clip_66/name="" +animation/clip_66/start_frame=0 +animation/clip_66/end_frame=0 +animation/clip_66/loops=false +animation/clip_67/name="" +animation/clip_67/start_frame=0 +animation/clip_67/end_frame=0 +animation/clip_67/loops=false +animation/clip_68/name="" +animation/clip_68/start_frame=0 +animation/clip_68/end_frame=0 +animation/clip_68/loops=false +animation/clip_69/name="" +animation/clip_69/start_frame=0 +animation/clip_69/end_frame=0 +animation/clip_69/loops=false +animation/clip_70/name="" +animation/clip_70/start_frame=0 +animation/clip_70/end_frame=0 +animation/clip_70/loops=false +animation/clip_71/name="" +animation/clip_71/start_frame=0 +animation/clip_71/end_frame=0 +animation/clip_71/loops=false +animation/clip_72/name="" +animation/clip_72/start_frame=0 +animation/clip_72/end_frame=0 +animation/clip_72/loops=false +animation/clip_73/name="" +animation/clip_73/start_frame=0 +animation/clip_73/end_frame=0 +animation/clip_73/loops=false +animation/clip_74/name="" +animation/clip_74/start_frame=0 +animation/clip_74/end_frame=0 +animation/clip_74/loops=false +animation/clip_75/name="" +animation/clip_75/start_frame=0 +animation/clip_75/end_frame=0 +animation/clip_75/loops=false +animation/clip_76/name="" +animation/clip_76/start_frame=0 +animation/clip_76/end_frame=0 +animation/clip_76/loops=false +animation/clip_77/name="" +animation/clip_77/start_frame=0 +animation/clip_77/end_frame=0 +animation/clip_77/loops=false +animation/clip_78/name="" +animation/clip_78/start_frame=0 +animation/clip_78/end_frame=0 +animation/clip_78/loops=false +animation/clip_79/name="" +animation/clip_79/start_frame=0 +animation/clip_79/end_frame=0 +animation/clip_79/loops=false +animation/clip_80/name="" +animation/clip_80/start_frame=0 +animation/clip_80/end_frame=0 +animation/clip_80/loops=false +animation/clip_81/name="" +animation/clip_81/start_frame=0 +animation/clip_81/end_frame=0 +animation/clip_81/loops=false +animation/clip_82/name="" +animation/clip_82/start_frame=0 +animation/clip_82/end_frame=0 +animation/clip_82/loops=false +animation/clip_83/name="" +animation/clip_83/start_frame=0 +animation/clip_83/end_frame=0 +animation/clip_83/loops=false +animation/clip_84/name="" +animation/clip_84/start_frame=0 +animation/clip_84/end_frame=0 +animation/clip_84/loops=false +animation/clip_85/name="" +animation/clip_85/start_frame=0 +animation/clip_85/end_frame=0 +animation/clip_85/loops=false +animation/clip_86/name="" +animation/clip_86/start_frame=0 +animation/clip_86/end_frame=0 +animation/clip_86/loops=false +animation/clip_87/name="" +animation/clip_87/start_frame=0 +animation/clip_87/end_frame=0 +animation/clip_87/loops=false +animation/clip_88/name="" +animation/clip_88/start_frame=0 +animation/clip_88/end_frame=0 +animation/clip_88/loops=false +animation/clip_89/name="" +animation/clip_89/start_frame=0 +animation/clip_89/end_frame=0 +animation/clip_89/loops=false +animation/clip_90/name="" +animation/clip_90/start_frame=0 +animation/clip_90/end_frame=0 +animation/clip_90/loops=false +animation/clip_91/name="" +animation/clip_91/start_frame=0 +animation/clip_91/end_frame=0 +animation/clip_91/loops=false +animation/clip_92/name="" +animation/clip_92/start_frame=0 +animation/clip_92/end_frame=0 +animation/clip_92/loops=false +animation/clip_93/name="" +animation/clip_93/start_frame=0 +animation/clip_93/end_frame=0 +animation/clip_93/loops=false +animation/clip_94/name="" +animation/clip_94/start_frame=0 +animation/clip_94/end_frame=0 +animation/clip_94/loops=false +animation/clip_95/name="" +animation/clip_95/start_frame=0 +animation/clip_95/end_frame=0 +animation/clip_95/loops=false +animation/clip_96/name="" +animation/clip_96/start_frame=0 +animation/clip_96/end_frame=0 +animation/clip_96/loops=false +animation/clip_97/name="" +animation/clip_97/start_frame=0 +animation/clip_97/end_frame=0 +animation/clip_97/loops=false +animation/clip_98/name="" +animation/clip_98/start_frame=0 +animation/clip_98/end_frame=0 +animation/clip_98/loops=false +animation/clip_99/name="" +animation/clip_99/start_frame=0 +animation/clip_99/end_frame=0 +animation/clip_99/loops=false +animation/clip_100/name="" +animation/clip_100/start_frame=0 +animation/clip_100/end_frame=0 +animation/clip_100/loops=false +animation/clip_101/name="" +animation/clip_101/start_frame=0 +animation/clip_101/end_frame=0 +animation/clip_101/loops=false +animation/clip_102/name="" +animation/clip_102/start_frame=0 +animation/clip_102/end_frame=0 +animation/clip_102/loops=false +animation/clip_103/name="" +animation/clip_103/start_frame=0 +animation/clip_103/end_frame=0 +animation/clip_103/loops=false +animation/clip_104/name="" +animation/clip_104/start_frame=0 +animation/clip_104/end_frame=0 +animation/clip_104/loops=false +animation/clip_105/name="" +animation/clip_105/start_frame=0 +animation/clip_105/end_frame=0 +animation/clip_105/loops=false +animation/clip_106/name="" +animation/clip_106/start_frame=0 +animation/clip_106/end_frame=0 +animation/clip_106/loops=false +animation/clip_107/name="" +animation/clip_107/start_frame=0 +animation/clip_107/end_frame=0 +animation/clip_107/loops=false +animation/clip_108/name="" +animation/clip_108/start_frame=0 +animation/clip_108/end_frame=0 +animation/clip_108/loops=false +animation/clip_109/name="" +animation/clip_109/start_frame=0 +animation/clip_109/end_frame=0 +animation/clip_109/loops=false +animation/clip_110/name="" +animation/clip_110/start_frame=0 +animation/clip_110/end_frame=0 +animation/clip_110/loops=false +animation/clip_111/name="" +animation/clip_111/start_frame=0 +animation/clip_111/end_frame=0 +animation/clip_111/loops=false +animation/clip_112/name="" +animation/clip_112/start_frame=0 +animation/clip_112/end_frame=0 +animation/clip_112/loops=false +animation/clip_113/name="" +animation/clip_113/start_frame=0 +animation/clip_113/end_frame=0 +animation/clip_113/loops=false +animation/clip_114/name="" +animation/clip_114/start_frame=0 +animation/clip_114/end_frame=0 +animation/clip_114/loops=false +animation/clip_115/name="" +animation/clip_115/start_frame=0 +animation/clip_115/end_frame=0 +animation/clip_115/loops=false +animation/clip_116/name="" +animation/clip_116/start_frame=0 +animation/clip_116/end_frame=0 +animation/clip_116/loops=false +animation/clip_117/name="" +animation/clip_117/start_frame=0 +animation/clip_117/end_frame=0 +animation/clip_117/loops=false +animation/clip_118/name="" +animation/clip_118/start_frame=0 +animation/clip_118/end_frame=0 +animation/clip_118/loops=false +animation/clip_119/name="" +animation/clip_119/start_frame=0 +animation/clip_119/end_frame=0 +animation/clip_119/loops=false +animation/clip_120/name="" +animation/clip_120/start_frame=0 +animation/clip_120/end_frame=0 +animation/clip_120/loops=false +animation/clip_121/name="" +animation/clip_121/start_frame=0 +animation/clip_121/end_frame=0 +animation/clip_121/loops=false +animation/clip_122/name="" +animation/clip_122/start_frame=0 +animation/clip_122/end_frame=0 +animation/clip_122/loops=false +animation/clip_123/name="" +animation/clip_123/start_frame=0 +animation/clip_123/end_frame=0 +animation/clip_123/loops=false +animation/clip_124/name="" +animation/clip_124/start_frame=0 +animation/clip_124/end_frame=0 +animation/clip_124/loops=false +animation/clip_125/name="" +animation/clip_125/start_frame=0 +animation/clip_125/end_frame=0 +animation/clip_125/loops=false +animation/clip_126/name="" +animation/clip_126/start_frame=0 +animation/clip_126/end_frame=0 +animation/clip_126/loops=false +animation/clip_127/name="" +animation/clip_127/start_frame=0 +animation/clip_127/end_frame=0 +animation/clip_127/loops=false +animation/clip_128/name="" +animation/clip_128/start_frame=0 +animation/clip_128/end_frame=0 +animation/clip_128/loops=false +animation/clip_129/name="" +animation/clip_129/start_frame=0 +animation/clip_129/end_frame=0 +animation/clip_129/loops=false +animation/clip_130/name="" +animation/clip_130/start_frame=0 +animation/clip_130/end_frame=0 +animation/clip_130/loops=false +animation/clip_131/name="" +animation/clip_131/start_frame=0 +animation/clip_131/end_frame=0 +animation/clip_131/loops=false +animation/clip_132/name="" +animation/clip_132/start_frame=0 +animation/clip_132/end_frame=0 +animation/clip_132/loops=false +animation/clip_133/name="" +animation/clip_133/start_frame=0 +animation/clip_133/end_frame=0 +animation/clip_133/loops=false +animation/clip_134/name="" +animation/clip_134/start_frame=0 +animation/clip_134/end_frame=0 +animation/clip_134/loops=false +animation/clip_135/name="" +animation/clip_135/start_frame=0 +animation/clip_135/end_frame=0 +animation/clip_135/loops=false +animation/clip_136/name="" +animation/clip_136/start_frame=0 +animation/clip_136/end_frame=0 +animation/clip_136/loops=false +animation/clip_137/name="" +animation/clip_137/start_frame=0 +animation/clip_137/end_frame=0 +animation/clip_137/loops=false +animation/clip_138/name="" +animation/clip_138/start_frame=0 +animation/clip_138/end_frame=0 +animation/clip_138/loops=false +animation/clip_139/name="" +animation/clip_139/start_frame=0 +animation/clip_139/end_frame=0 +animation/clip_139/loops=false +animation/clip_140/name="" +animation/clip_140/start_frame=0 +animation/clip_140/end_frame=0 +animation/clip_140/loops=false +animation/clip_141/name="" +animation/clip_141/start_frame=0 +animation/clip_141/end_frame=0 +animation/clip_141/loops=false +animation/clip_142/name="" +animation/clip_142/start_frame=0 +animation/clip_142/end_frame=0 +animation/clip_142/loops=false +animation/clip_143/name="" +animation/clip_143/start_frame=0 +animation/clip_143/end_frame=0 +animation/clip_143/loops=false +animation/clip_144/name="" +animation/clip_144/start_frame=0 +animation/clip_144/end_frame=0 +animation/clip_144/loops=false +animation/clip_145/name="" +animation/clip_145/start_frame=0 +animation/clip_145/end_frame=0 +animation/clip_145/loops=false +animation/clip_146/name="" +animation/clip_146/start_frame=0 +animation/clip_146/end_frame=0 +animation/clip_146/loops=false +animation/clip_147/name="" +animation/clip_147/start_frame=0 +animation/clip_147/end_frame=0 +animation/clip_147/loops=false +animation/clip_148/name="" +animation/clip_148/start_frame=0 +animation/clip_148/end_frame=0 +animation/clip_148/loops=false +animation/clip_149/name="" +animation/clip_149/start_frame=0 +animation/clip_149/end_frame=0 +animation/clip_149/loops=false +animation/clip_150/name="" +animation/clip_150/start_frame=0 +animation/clip_150/end_frame=0 +animation/clip_150/loops=false +animation/clip_151/name="" +animation/clip_151/start_frame=0 +animation/clip_151/end_frame=0 +animation/clip_151/loops=false +animation/clip_152/name="" +animation/clip_152/start_frame=0 +animation/clip_152/end_frame=0 +animation/clip_152/loops=false +animation/clip_153/name="" +animation/clip_153/start_frame=0 +animation/clip_153/end_frame=0 +animation/clip_153/loops=false +animation/clip_154/name="" +animation/clip_154/start_frame=0 +animation/clip_154/end_frame=0 +animation/clip_154/loops=false +animation/clip_155/name="" +animation/clip_155/start_frame=0 +animation/clip_155/end_frame=0 +animation/clip_155/loops=false +animation/clip_156/name="" +animation/clip_156/start_frame=0 +animation/clip_156/end_frame=0 +animation/clip_156/loops=false +animation/clip_157/name="" +animation/clip_157/start_frame=0 +animation/clip_157/end_frame=0 +animation/clip_157/loops=false +animation/clip_158/name="" +animation/clip_158/start_frame=0 +animation/clip_158/end_frame=0 +animation/clip_158/loops=false +animation/clip_159/name="" +animation/clip_159/start_frame=0 +animation/clip_159/end_frame=0 +animation/clip_159/loops=false +animation/clip_160/name="" +animation/clip_160/start_frame=0 +animation/clip_160/end_frame=0 +animation/clip_160/loops=false +animation/clip_161/name="" +animation/clip_161/start_frame=0 +animation/clip_161/end_frame=0 +animation/clip_161/loops=false +animation/clip_162/name="" +animation/clip_162/start_frame=0 +animation/clip_162/end_frame=0 +animation/clip_162/loops=false +animation/clip_163/name="" +animation/clip_163/start_frame=0 +animation/clip_163/end_frame=0 +animation/clip_163/loops=false +animation/clip_164/name="" +animation/clip_164/start_frame=0 +animation/clip_164/end_frame=0 +animation/clip_164/loops=false +animation/clip_165/name="" +animation/clip_165/start_frame=0 +animation/clip_165/end_frame=0 +animation/clip_165/loops=false +animation/clip_166/name="" +animation/clip_166/start_frame=0 +animation/clip_166/end_frame=0 +animation/clip_166/loops=false +animation/clip_167/name="" +animation/clip_167/start_frame=0 +animation/clip_167/end_frame=0 +animation/clip_167/loops=false +animation/clip_168/name="" +animation/clip_168/start_frame=0 +animation/clip_168/end_frame=0 +animation/clip_168/loops=false +animation/clip_169/name="" +animation/clip_169/start_frame=0 +animation/clip_169/end_frame=0 +animation/clip_169/loops=false +animation/clip_170/name="" +animation/clip_170/start_frame=0 +animation/clip_170/end_frame=0 +animation/clip_170/loops=false +animation/clip_171/name="" +animation/clip_171/start_frame=0 +animation/clip_171/end_frame=0 +animation/clip_171/loops=false +animation/clip_172/name="" +animation/clip_172/start_frame=0 +animation/clip_172/end_frame=0 +animation/clip_172/loops=false +animation/clip_173/name="" +animation/clip_173/start_frame=0 +animation/clip_173/end_frame=0 +animation/clip_173/loops=false +animation/clip_174/name="" +animation/clip_174/start_frame=0 +animation/clip_174/end_frame=0 +animation/clip_174/loops=false +animation/clip_175/name="" +animation/clip_175/start_frame=0 +animation/clip_175/end_frame=0 +animation/clip_175/loops=false +animation/clip_176/name="" +animation/clip_176/start_frame=0 +animation/clip_176/end_frame=0 +animation/clip_176/loops=false +animation/clip_177/name="" +animation/clip_177/start_frame=0 +animation/clip_177/end_frame=0 +animation/clip_177/loops=false +animation/clip_178/name="" +animation/clip_178/start_frame=0 +animation/clip_178/end_frame=0 +animation/clip_178/loops=false +animation/clip_179/name="" +animation/clip_179/start_frame=0 +animation/clip_179/end_frame=0 +animation/clip_179/loops=false +animation/clip_180/name="" +animation/clip_180/start_frame=0 +animation/clip_180/end_frame=0 +animation/clip_180/loops=false +animation/clip_181/name="" +animation/clip_181/start_frame=0 +animation/clip_181/end_frame=0 +animation/clip_181/loops=false +animation/clip_182/name="" +animation/clip_182/start_frame=0 +animation/clip_182/end_frame=0 +animation/clip_182/loops=false +animation/clip_183/name="" +animation/clip_183/start_frame=0 +animation/clip_183/end_frame=0 +animation/clip_183/loops=false +animation/clip_184/name="" +animation/clip_184/start_frame=0 +animation/clip_184/end_frame=0 +animation/clip_184/loops=false +animation/clip_185/name="" +animation/clip_185/start_frame=0 +animation/clip_185/end_frame=0 +animation/clip_185/loops=false +animation/clip_186/name="" +animation/clip_186/start_frame=0 +animation/clip_186/end_frame=0 +animation/clip_186/loops=false +animation/clip_187/name="" +animation/clip_187/start_frame=0 +animation/clip_187/end_frame=0 +animation/clip_187/loops=false +animation/clip_188/name="" +animation/clip_188/start_frame=0 +animation/clip_188/end_frame=0 +animation/clip_188/loops=false +animation/clip_189/name="" +animation/clip_189/start_frame=0 +animation/clip_189/end_frame=0 +animation/clip_189/loops=false +animation/clip_190/name="" +animation/clip_190/start_frame=0 +animation/clip_190/end_frame=0 +animation/clip_190/loops=false +animation/clip_191/name="" +animation/clip_191/start_frame=0 +animation/clip_191/end_frame=0 +animation/clip_191/loops=false +animation/clip_192/name="" +animation/clip_192/start_frame=0 +animation/clip_192/end_frame=0 +animation/clip_192/loops=false +animation/clip_193/name="" +animation/clip_193/start_frame=0 +animation/clip_193/end_frame=0 +animation/clip_193/loops=false +animation/clip_194/name="" +animation/clip_194/start_frame=0 +animation/clip_194/end_frame=0 +animation/clip_194/loops=false +animation/clip_195/name="" +animation/clip_195/start_frame=0 +animation/clip_195/end_frame=0 +animation/clip_195/loops=false +animation/clip_196/name="" +animation/clip_196/start_frame=0 +animation/clip_196/end_frame=0 +animation/clip_196/loops=false +animation/clip_197/name="" +animation/clip_197/start_frame=0 +animation/clip_197/end_frame=0 +animation/clip_197/loops=false +animation/clip_198/name="" +animation/clip_198/start_frame=0 +animation/clip_198/end_frame=0 +animation/clip_198/loops=false +animation/clip_199/name="" +animation/clip_199/start_frame=0 +animation/clip_199/end_frame=0 +animation/clip_199/loops=false +animation/clip_200/name="" +animation/clip_200/start_frame=0 +animation/clip_200/end_frame=0 +animation/clip_200/loops=false +animation/clip_201/name="" +animation/clip_201/start_frame=0 +animation/clip_201/end_frame=0 +animation/clip_201/loops=false +animation/clip_202/name="" +animation/clip_202/start_frame=0 +animation/clip_202/end_frame=0 +animation/clip_202/loops=false +animation/clip_203/name="" +animation/clip_203/start_frame=0 +animation/clip_203/end_frame=0 +animation/clip_203/loops=false +animation/clip_204/name="" +animation/clip_204/start_frame=0 +animation/clip_204/end_frame=0 +animation/clip_204/loops=false +animation/clip_205/name="" +animation/clip_205/start_frame=0 +animation/clip_205/end_frame=0 +animation/clip_205/loops=false +animation/clip_206/name="" +animation/clip_206/start_frame=0 +animation/clip_206/end_frame=0 +animation/clip_206/loops=false +animation/clip_207/name="" +animation/clip_207/start_frame=0 +animation/clip_207/end_frame=0 +animation/clip_207/loops=false +animation/clip_208/name="" +animation/clip_208/start_frame=0 +animation/clip_208/end_frame=0 +animation/clip_208/loops=false +animation/clip_209/name="" +animation/clip_209/start_frame=0 +animation/clip_209/end_frame=0 +animation/clip_209/loops=false +animation/clip_210/name="" +animation/clip_210/start_frame=0 +animation/clip_210/end_frame=0 +animation/clip_210/loops=false +animation/clip_211/name="" +animation/clip_211/start_frame=0 +animation/clip_211/end_frame=0 +animation/clip_211/loops=false +animation/clip_212/name="" +animation/clip_212/start_frame=0 +animation/clip_212/end_frame=0 +animation/clip_212/loops=false +animation/clip_213/name="" +animation/clip_213/start_frame=0 +animation/clip_213/end_frame=0 +animation/clip_213/loops=false +animation/clip_214/name="" +animation/clip_214/start_frame=0 +animation/clip_214/end_frame=0 +animation/clip_214/loops=false +animation/clip_215/name="" +animation/clip_215/start_frame=0 +animation/clip_215/end_frame=0 +animation/clip_215/loops=false +animation/clip_216/name="" +animation/clip_216/start_frame=0 +animation/clip_216/end_frame=0 +animation/clip_216/loops=false +animation/clip_217/name="" +animation/clip_217/start_frame=0 +animation/clip_217/end_frame=0 +animation/clip_217/loops=false +animation/clip_218/name="" +animation/clip_218/start_frame=0 +animation/clip_218/end_frame=0 +animation/clip_218/loops=false +animation/clip_219/name="" +animation/clip_219/start_frame=0 +animation/clip_219/end_frame=0 +animation/clip_219/loops=false +animation/clip_220/name="" +animation/clip_220/start_frame=0 +animation/clip_220/end_frame=0 +animation/clip_220/loops=false +animation/clip_221/name="" +animation/clip_221/start_frame=0 +animation/clip_221/end_frame=0 +animation/clip_221/loops=false +animation/clip_222/name="" +animation/clip_222/start_frame=0 +animation/clip_222/end_frame=0 +animation/clip_222/loops=false +animation/clip_223/name="" +animation/clip_223/start_frame=0 +animation/clip_223/end_frame=0 +animation/clip_223/loops=false +animation/clip_224/name="" +animation/clip_224/start_frame=0 +animation/clip_224/end_frame=0 +animation/clip_224/loops=false +animation/clip_225/name="" +animation/clip_225/start_frame=0 +animation/clip_225/end_frame=0 +animation/clip_225/loops=false +animation/clip_226/name="" +animation/clip_226/start_frame=0 +animation/clip_226/end_frame=0 +animation/clip_226/loops=false +animation/clip_227/name="" +animation/clip_227/start_frame=0 +animation/clip_227/end_frame=0 +animation/clip_227/loops=false +animation/clip_228/name="" +animation/clip_228/start_frame=0 +animation/clip_228/end_frame=0 +animation/clip_228/loops=false +animation/clip_229/name="" +animation/clip_229/start_frame=0 +animation/clip_229/end_frame=0 +animation/clip_229/loops=false +animation/clip_230/name="" +animation/clip_230/start_frame=0 +animation/clip_230/end_frame=0 +animation/clip_230/loops=false +animation/clip_231/name="" +animation/clip_231/start_frame=0 +animation/clip_231/end_frame=0 +animation/clip_231/loops=false +animation/clip_232/name="" +animation/clip_232/start_frame=0 +animation/clip_232/end_frame=0 +animation/clip_232/loops=false +animation/clip_233/name="" +animation/clip_233/start_frame=0 +animation/clip_233/end_frame=0 +animation/clip_233/loops=false +animation/clip_234/name="" +animation/clip_234/start_frame=0 +animation/clip_234/end_frame=0 +animation/clip_234/loops=false +animation/clip_235/name="" +animation/clip_235/start_frame=0 +animation/clip_235/end_frame=0 +animation/clip_235/loops=false +animation/clip_236/name="" +animation/clip_236/start_frame=0 +animation/clip_236/end_frame=0 +animation/clip_236/loops=false +animation/clip_237/name="" +animation/clip_237/start_frame=0 +animation/clip_237/end_frame=0 +animation/clip_237/loops=false +animation/clip_238/name="" +animation/clip_238/start_frame=0 +animation/clip_238/end_frame=0 +animation/clip_238/loops=false +animation/clip_239/name="" +animation/clip_239/start_frame=0 +animation/clip_239/end_frame=0 +animation/clip_239/loops=false +animation/clip_240/name="" +animation/clip_240/start_frame=0 +animation/clip_240/end_frame=0 +animation/clip_240/loops=false +animation/clip_241/name="" +animation/clip_241/start_frame=0 +animation/clip_241/end_frame=0 +animation/clip_241/loops=false +animation/clip_242/name="" +animation/clip_242/start_frame=0 +animation/clip_242/end_frame=0 +animation/clip_242/loops=false +animation/clip_243/name="" +animation/clip_243/start_frame=0 +animation/clip_243/end_frame=0 +animation/clip_243/loops=false +animation/clip_244/name="" +animation/clip_244/start_frame=0 +animation/clip_244/end_frame=0 +animation/clip_244/loops=false +animation/clip_245/name="" +animation/clip_245/start_frame=0 +animation/clip_245/end_frame=0 +animation/clip_245/loops=false +animation/clip_246/name="" +animation/clip_246/start_frame=0 +animation/clip_246/end_frame=0 +animation/clip_246/loops=false +animation/clip_247/name="" +animation/clip_247/start_frame=0 +animation/clip_247/end_frame=0 +animation/clip_247/loops=false +animation/clip_248/name="" +animation/clip_248/start_frame=0 +animation/clip_248/end_frame=0 +animation/clip_248/loops=false +animation/clip_249/name="" +animation/clip_249/start_frame=0 +animation/clip_249/end_frame=0 +animation/clip_249/loops=false +animation/clip_250/name="" +animation/clip_250/start_frame=0 +animation/clip_250/end_frame=0 +animation/clip_250/loops=false +animation/clip_251/name="" +animation/clip_251/start_frame=0 +animation/clip_251/end_frame=0 +animation/clip_251/loops=false +animation/clip_252/name="" +animation/clip_252/start_frame=0 +animation/clip_252/end_frame=0 +animation/clip_252/loops=false +animation/clip_253/name="" +animation/clip_253/start_frame=0 +animation/clip_253/end_frame=0 +animation/clip_253/loops=false +animation/clip_254/name="" +animation/clip_254/start_frame=0 +animation/clip_254/end_frame=0 +animation/clip_254/loops=false +animation/clip_255/name="" +animation/clip_255/start_frame=0 +animation/clip_255/end_frame=0 +animation/clip_255/loops=false +animation/clip_256/name="" +animation/clip_256/start_frame=0 +animation/clip_256/end_frame=0 +animation/clip_256/loops=false diff --git a/objects/palace.material b/objects/palace.material new file mode 100644 index 0000000..846a8a3 Binary files /dev/null and b/objects/palace.material differ diff --git a/objects/palace.tscn b/objects/palace.tscn new file mode 100644 index 0000000..f44ebc1 --- /dev/null +++ b/objects/palace.tscn @@ -0,0 +1,6 @@ +[gd_scene load_steps=2 format=2] + +[ext_resource path="res://objects/palace.gd" type="Script" id=2] + +[node name="palace" type="Spatial"] +script = ExtResource( 2 ) diff --git a/objects/palace_001.material b/objects/palace_001.material new file mode 100644 index 0000000..0b8ddb6 Binary files /dev/null and b/objects/palace_001.material differ diff --git a/objects/trailer-house.bin b/objects/trailer-house.bin new file mode 100644 index 0000000..bfe1d46 Binary files /dev/null and b/objects/trailer-house.bin differ diff --git a/objects/trailer-house.gd b/objects/trailer-house.gd new file mode 100644 index 0000000..70051e0 --- /dev/null +++ b/objects/trailer-house.gd @@ -0,0 +1,151 @@ +extends Spatial + +var side_wall: PackedScene = preload("res://objects/wall-side.scn") +var bottom_side: PackedScene = preload("res://objects/bottom-side.scn") +var bottom: PackedScene = preload("res://objects/bottom.scn") +var bottom_wheels: PackedScene = preload("res://objects/bottom-wheels.scn") +var entry: PackedScene = preload("res://objects/entry.scn") +var roof_floor: PackedScene = preload("res://objects/roof-floor.scn") +var roof_floor_range: PackedScene = preload("res://objects/roof-floor-range.scn") +var wall_internal: PackedScene = preload("res://objects/wall-internal.scn") +var window_narrow: PackedScene = preload("res://objects/window-narrow.scn") +var window_wide: PackedScene = preload("res://objects/window-wide.scn") +var wall_solid: PackedScene = preload("res://objects/wall-solid.scn") +onready var rnd = RandomNumberGenerator.new() + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +var thread: Thread +func _ready(): + thread = Thread.new() +# var parts = { +# "side_wall": side_wall, +# "bottom_side": bottom_side, +# "bottom": bottom, +# "bottom_wheels": bottom_wheels, +# "entry": entry, +# "roof_floor": roof_floor, +# "roof_floor_range": roof_floor_range, +# "wall_internal": wall_internal, +# "window_narrow": window_narrow, +# "window_wide": window_wide, +# "wall_solid": wall_solid +# } +# for k in parts.keys(): +# Spawner.add_scene(k, parts[k]) +func _exit_tree(): + if thread.is_active(): + thread.wait_to_finish() +func spawn_child(n, xform): + add_child(n) + n.transform = xform +func build_house(userdata): + var s = int(global_transform.origin.x + 100 * global_transform.origin.z * 2) % 0x1ffffff + rnd.seed = s + print(global_transform.origin, " seed = ", s) + var l = 6 + 2 * rnd.randi() % 7 - 1 + var h = l - 1 + var d = 3 + rnd.randi() % (l - 5 + 1) + var range_used = false + for k in range(l + 1): + var pos = Vector3(0, 0, k * 2) + if k > 0: + if k != d && rnd.randf() > 0.5 && !range_used: + var r = roof_floor_range.instance() + var xform = Transform(Basis(), pos) + call_deferred("spawn_child", r, xform) + range_used = true + else: + var r = roof_floor.instance() + var xform = Transform(Basis(), pos) + call_deferred("spawn_child", r, xform) + var what + var xt = [Transform(Basis(), pos), Transform(Basis().rotated(Vector3.UP, PI), pos - Vector3(0, 0, 2))] + for x in range(xt.size()): + if x == 0 && k == d: + continue + if rnd.randf() > 0.5: + what = wall_solid.instance() + elif rnd.randf() > 0.5: + what = window_narrow.instance() + else: + what = window_wide.instance() + call_deferred("spawn_child", what, xt[x]) + + if k > 1 && k < l && rnd.randf() > 0.6: + var r = wall_internal.instance() + var xform = Transform(Basis(), pos) + call_deferred("spawn_child", r, xform) + match k: + 0: + var b = side_wall.instance() + var c = bottom_side.instance() + var xform = Transform(Basis(), pos) + call_deferred("spawn_child", b, xform) + call_deferred("spawn_child", c, xform) + 1: + var b = bottom.instance() + var xform = Transform(Basis(), pos) + call_deferred("spawn_child", b, xform) + 2: + var b = bottom_wheels.instance() + var xform = Transform(Basis(), pos) + call_deferred("spawn_child", b, xform) + d: + var b = entry.instance() + var c = bottom.instance() + var xform = Transform(Basis(), pos) + call_deferred("spawn_child", b, xform) + call_deferred("spawn_child", c, xform) + h: + var b = bottom_wheels.instance() + var xform = Transform(Basis(), pos) + call_deferred("spawn_child", b, xform) + l: + var b = side_wall.instance() + var c = bottom_side.instance() + var a = bottom.instance() + var xform = Transform(Basis().rotated(Vector3(0, 1, 0), PI), pos) + var xform2 = Transform(Basis(), pos) + call_deferred("spawn_child", b, xform) + call_deferred("spawn_child", c, xform) + call_deferred("spawn_child", a, xform2) + _: + var b = bottom.instance() + var xform = Transform(Basis(), pos) + call_deferred("spawn_child", b, xform) +# Called every frame. 'delta' is the elapsed time since the previous frame. +var state = 0 +func _process(delta): + match state: + 0: + state = 1 + 1: + build_house(self) + state = 2 + +var prev = 3000000 +func _physics_process(delta): + var cam = get_viewport().get_camera() + var dst = cam.global_transform.origin.distance_to(global_transform.origin) + match state: + 2: + if abs(prev - dst) > 20: + var space_state = get_viewport().get_world().direct_space_state + var where = get_global_transform().origin + var from = where + var to = where + from.y -= 8.0 + to.y += 8.0 + var result = space_state.intersect_ray(from, to) + if result.empty() || !result.has("collider"): + return + else: + global_transform.origin = result.position + prev = dst + diff --git a/objects/trailer-house.gltf b/objects/trailer-house.gltf new file mode 100644 index 0000000..338bf17 --- /dev/null +++ b/objects/trailer-house.gltf @@ -0,0 +1,901 @@ +{ + "asset" : { + "generator" : "Khronos glTF Blender I/O v1.5.17", + "version" : "2.0" + }, + "scene" : 0, + "scenes" : [ + { + "name" : "Scene", + "nodes" : [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ] + } + ], + "nodes" : [ + { + "mesh" : 0, + "name" : "wall-side-col", + "translation" : [ + 0, + 0, + 23 + ] + }, + { + "mesh" : 1, + "name" : "roof-floor-col", + "translation" : [ + 0, + 0, + 22.700000762939453 + ] + }, + { + "mesh" : 2, + "name" : "wall-solid-col", + "translation" : [ + 0, + 0, + 22.700000762939453 + ] + }, + { + "mesh" : 3, + "name" : "window-wide-col", + "translation" : [ + 0, + 0, + 17 + ] + }, + { + "mesh" : 4, + "name" : "window-narrow-col", + "translation" : [ + 0, + 0, + 14 + ] + }, + { + "mesh" : 5, + "name" : "entry-col", + "translation" : [ + 0, + 0, + 11 + ] + }, + { + "mesh" : 6, + "name" : "bottom-side-col", + "translation" : [ + 0, + 0, + 23 + ] + }, + { + "mesh" : 7, + "name" : "bottom-col", + "translation" : [ + 0, + 0, + 22.700000762939453 + ] + }, + { + "mesh" : 8, + "name" : "bottom-wheels-col", + "translation" : [ + 0, + 0, + 17 + ] + }, + { + "mesh" : 9, + "name" : "wall-internal-col", + "translation" : [ + 0, + 0, + 17.299999237060547 + ] + }, + { + "mesh" : 10, + "name" : "roof-floor-range-col", + "translation" : [ + 0, + 0, + 19.700000762939453 + ] + } + ], + "materials" : [ + { + "name" : "Material", + "pbrMetallicRoughness" : { + "baseColorFactor" : [ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor" : 0, + "roughnessFactor" : 0.4000000059604645 + } + } + ], + "meshes" : [ + { + "name" : "Cube", + "primitives" : [ + { + "attributes" : { + "POSITION" : 0, + "NORMAL" : 1, + "TEXCOORD_0" : 2 + }, + "indices" : 3, + "material" : 0 + } + ] + }, + { + "name" : "Cube.003", + "primitives" : [ + { + "attributes" : { + "POSITION" : 4, + "NORMAL" : 5, + "TEXCOORD_0" : 6 + }, + "indices" : 7, + "material" : 0 + } + ] + }, + { + "name" : "Cube.004", + "primitives" : [ + { + "attributes" : { + "POSITION" : 8, + "NORMAL" : 9, + "TEXCOORD_0" : 10 + }, + "indices" : 11, + "material" : 0 + } + ] + }, + { + "name" : "Cube.006", + "primitives" : [ + { + "attributes" : { + "POSITION" : 12, + "NORMAL" : 13, + "TEXCOORD_0" : 14 + }, + "indices" : 15, + "material" : 0 + } + ] + }, + { + "name" : "Cube.007", + "primitives" : [ + { + "attributes" : { + "POSITION" : 16, + "NORMAL" : 17, + "TEXCOORD_0" : 18 + }, + "indices" : 19, + "material" : 0 + } + ] + }, + { + "name" : "Cube.008", + "primitives" : [ + { + "attributes" : { + "POSITION" : 20, + "NORMAL" : 21, + "TEXCOORD_0" : 22 + }, + "indices" : 23, + "material" : 0 + } + ] + }, + { + "name" : "Cube.009", + "primitives" : [ + { + "attributes" : { + "POSITION" : 24, + "NORMAL" : 25, + "TEXCOORD_0" : 26 + }, + "indices" : 27, + "material" : 0 + } + ] + }, + { + "name" : "Cube.010", + "primitives" : [ + { + "attributes" : { + "POSITION" : 28, + "NORMAL" : 29, + "TEXCOORD_0" : 30 + }, + "indices" : 31, + "material" : 0 + } + ] + }, + { + "name" : "Cube.011", + "primitives" : [ + { + "attributes" : { + "POSITION" : 32, + "NORMAL" : 33, + "TEXCOORD_0" : 34 + }, + "indices" : 35, + "material" : 0 + } + ] + }, + { + "name" : "Cube.012", + "primitives" : [ + { + "attributes" : { + "POSITION" : 36, + "NORMAL" : 37, + "TEXCOORD_0" : 38 + }, + "indices" : 39, + "material" : 0 + } + ] + }, + { + "name" : "Cube.013", + "primitives" : [ + { + "attributes" : { + "POSITION" : 40, + "NORMAL" : 41, + "TEXCOORD_0" : 42 + }, + "indices" : 43, + "material" : 0 + } + ] + } + ], + "accessors" : [ + { + "bufferView" : 0, + "componentType" : 5126, + "count" : 64, + "max" : [ + 1.7999999523162842, + 4.5, + 0.09999996423721313 + ], + "min" : [ + -1.8000000715255737, + 0.800000011920929, + 5.960464477539063e-08 + ], + "type" : "VEC3" + }, + { + "bufferView" : 1, + "componentType" : 5126, + "count" : 64, + "type" : "VEC3" + }, + { + "bufferView" : 2, + "componentType" : 5126, + "count" : 64, + "type" : "VEC2" + }, + { + "bufferView" : 3, + "componentType" : 5123, + "count" : 108, + "type" : "SCALAR" + }, + { + "bufferView" : 4, + "componentType" : 5126, + "count" : 56, + "max" : [ + 1.8000000715255737, + 4.5, + 0 + ], + "min" : [ + -1.8000000715255737, + 0.800000011920929, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 5, + "componentType" : 5126, + "count" : 56, + "type" : "VEC3" + }, + { + "bufferView" : 6, + "componentType" : 5126, + "count" : 56, + "type" : "VEC2" + }, + { + "bufferView" : 7, + "componentType" : 5123, + "count" : 84, + "type" : "SCALAR" + }, + { + "bufferView" : 8, + "componentType" : 5126, + "count" : 20, + "max" : [ + 1.8000000715255737, + 3.6000001430511475, + 0 + ], + "min" : [ + 1.7000000476837158, + 0.800000011920929, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 9, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10, + "componentType" : 5126, + "count" : 20, + "type" : "VEC2" + }, + { + "bufferView" : 11, + "componentType" : 5123, + "count" : 36, + "type" : "SCALAR" + }, + { + "bufferView" : 12, + "componentType" : 5126, + "count" : 84, + "max" : [ + 1.8000000715255737, + 3.6000001430511475, + 0 + ], + "min" : [ + 1.7000000476837158, + 0.800000011920929, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 13, + "componentType" : 5126, + "count" : 84, + "type" : "VEC3" + }, + { + "bufferView" : 14, + "componentType" : 5126, + "count" : 84, + "type" : "VEC2" + }, + { + "bufferView" : 15, + "componentType" : 5123, + "count" : 192, + "type" : "SCALAR" + }, + { + "bufferView" : 16, + "componentType" : 5126, + "count" : 76, + "max" : [ + 1.8000000715255737, + 3.6000001430511475, + 0 + ], + "min" : [ + 1.7000000476837158, + 0.800000011920929, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 17, + "componentType" : 5126, + "count" : 76, + "type" : "VEC3" + }, + { + "bufferView" : 18, + "componentType" : 5126, + "count" : 76, + "type" : "VEC2" + }, + { + "bufferView" : 19, + "componentType" : 5123, + "count" : 192, + "type" : "SCALAR" + }, + { + "bufferView" : 20, + "componentType" : 5126, + "count" : 609, + "max" : [ + 5.500000476837158, + 3.6000001430511475, + 0 + ], + "min" : [ + 1.7000000476837158, + -0.20000000298023224, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 21, + "componentType" : 5126, + "count" : 609, + "type" : "VEC3" + }, + { + "bufferView" : 22, + "componentType" : 5126, + "count" : 609, + "type" : "VEC2" + }, + { + "bufferView" : 23, + "componentType" : 5123, + "count" : 1650, + "type" : "SCALAR" + }, + { + "bufferView" : 24, + "componentType" : 5126, + "count" : 20, + "max" : [ + 1.7999999523162842, + 0.800000011920929, + 0.10000001639127731 + ], + "min" : [ + -1.7999999523162842, + 0, + -2.2351741790771484e-08 + ], + "type" : "VEC3" + }, + { + "bufferView" : 25, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 26, + "componentType" : 5126, + "count" : 20, + "type" : "VEC2" + }, + { + "bufferView" : 27, + "componentType" : 5123, + "count" : 30, + "type" : "SCALAR" + }, + { + "bufferView" : 28, + "componentType" : 5126, + "count" : 12, + "max" : [ + 1.7999999523162842, + 0.800000011920929, + 1.4901161193847656e-08 + ], + "min" : [ + -1.7999999523162842, + 0, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 29, + "componentType" : 5126, + "count" : 12, + "type" : "VEC3" + }, + { + "bufferView" : 30, + "componentType" : 5126, + "count" : 12, + "type" : "VEC2" + }, + { + "bufferView" : 31, + "componentType" : 5123, + "count" : 18, + "type" : "SCALAR" + }, + { + "bufferView" : 32, + "componentType" : 5126, + "count" : 20928, + "max" : [ + 1.8000000715255737, + 0.800000011920929, + 1.1473894119262695e-06 + ], + "min" : [ + -1.8000000715255737, + -0.058527711778879166, + -2.000000238418579 + ], + "type" : "VEC3" + }, + { + "bufferView" : 33, + "componentType" : 5126, + "count" : 20928, + "type" : "VEC3" + }, + { + "bufferView" : 34, + "componentType" : 5126, + "count" : 20928, + "type" : "VEC2" + }, + { + "bufferView" : 35, + "componentType" : 5123, + "count" : 31008, + "type" : "SCALAR" + }, + { + "bufferView" : 36, + "componentType" : 5126, + "count" : 114, + "max" : [ + 1.7000000476837158, + 4.300000190734863, + 0.10000038146972656 + ], + "min" : [ + -1.7000000476837158, + 0.9000000357627869, + 0 + ], + "type" : "VEC3" + }, + { + "bufferView" : 37, + "componentType" : 5126, + "count" : 114, + "type" : "VEC3" + }, + { + "bufferView" : 38, + "componentType" : 5126, + "count" : 114, + "type" : "VEC2" + }, + { + "bufferView" : 39, + "componentType" : 5123, + "count" : 276, + "type" : "SCALAR" + }, + { + "bufferView" : 40, + "componentType" : 5126, + "count" : 180, + "max" : [ + 1.8000000715255737, + 4.800000190734863, + 0 + ], + "min" : [ + -1.8000000715255737, + 0.800000011920929, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 41, + "componentType" : 5126, + "count" : 180, + "type" : "VEC3" + }, + { + "bufferView" : 42, + "componentType" : 5126, + "count" : 180, + "type" : "VEC2" + }, + { + "bufferView" : 43, + "componentType" : 5123, + "count" : 312, + "type" : "SCALAR" + } + ], + "bufferViews" : [ + { + "buffer" : 0, + "byteLength" : 768, + "byteOffset" : 0 + }, + { + "buffer" : 0, + "byteLength" : 768, + "byteOffset" : 768 + }, + { + "buffer" : 0, + "byteLength" : 512, + "byteOffset" : 1536 + }, + { + "buffer" : 0, + "byteLength" : 216, + "byteOffset" : 2048 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2264 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 2936 + }, + { + "buffer" : 0, + "byteLength" : 448, + "byteOffset" : 3608 + }, + { + "buffer" : 0, + "byteLength" : 168, + "byteOffset" : 4056 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4224 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 4464 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 4704 + }, + { + "buffer" : 0, + "byteLength" : 72, + "byteOffset" : 4864 + }, + { + "buffer" : 0, + "byteLength" : 1008, + "byteOffset" : 4936 + }, + { + "buffer" : 0, + "byteLength" : 1008, + "byteOffset" : 5944 + }, + { + "buffer" : 0, + "byteLength" : 672, + "byteOffset" : 6952 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 7624 + }, + { + "buffer" : 0, + "byteLength" : 912, + "byteOffset" : 8008 + }, + { + "buffer" : 0, + "byteLength" : 912, + "byteOffset" : 8920 + }, + { + "buffer" : 0, + "byteLength" : 608, + "byteOffset" : 9832 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 10440 + }, + { + "buffer" : 0, + "byteLength" : 7308, + "byteOffset" : 10824 + }, + { + "buffer" : 0, + "byteLength" : 7308, + "byteOffset" : 18132 + }, + { + "buffer" : 0, + "byteLength" : 4872, + "byteOffset" : 25440 + }, + { + "buffer" : 0, + "byteLength" : 3300, + "byteOffset" : 30312 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 33612 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 33852 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 34092 + }, + { + "buffer" : 0, + "byteLength" : 60, + "byteOffset" : 34252 + }, + { + "buffer" : 0, + "byteLength" : 144, + "byteOffset" : 34312 + }, + { + "buffer" : 0, + "byteLength" : 144, + "byteOffset" : 34456 + }, + { + "buffer" : 0, + "byteLength" : 96, + "byteOffset" : 34600 + }, + { + "buffer" : 0, + "byteLength" : 36, + "byteOffset" : 34696 + }, + { + "buffer" : 0, + "byteLength" : 251136, + "byteOffset" : 34732 + }, + { + "buffer" : 0, + "byteLength" : 251136, + "byteOffset" : 285868 + }, + { + "buffer" : 0, + "byteLength" : 167424, + "byteOffset" : 537004 + }, + { + "buffer" : 0, + "byteLength" : 62016, + "byteOffset" : 704428 + }, + { + "buffer" : 0, + "byteLength" : 1368, + "byteOffset" : 766444 + }, + { + "buffer" : 0, + "byteLength" : 1368, + "byteOffset" : 767812 + }, + { + "buffer" : 0, + "byteLength" : 912, + "byteOffset" : 769180 + }, + { + "buffer" : 0, + "byteLength" : 552, + "byteOffset" : 770092 + }, + { + "buffer" : 0, + "byteLength" : 2160, + "byteOffset" : 770644 + }, + { + "buffer" : 0, + "byteLength" : 2160, + "byteOffset" : 772804 + }, + { + "buffer" : 0, + "byteLength" : 1440, + "byteOffset" : 774964 + }, + { + "buffer" : 0, + "byteLength" : 624, + "byteOffset" : 776404 + } + ], + "buffers" : [ + { + "byteLength" : 777028, + "uri" : "trailer-house.bin" + } + ] +} diff --git a/objects/trailer-house.gltf.import b/objects/trailer-house.gltf.import new file mode 100644 index 0000000..5d22ac0 --- /dev/null +++ b/objects/trailer-house.gltf.import @@ -0,0 +1,1064 @@ +[remap] + +importer="scene" +type="PackedScene" +path="res://.import/trailer-house.gltf-d68a33f7be9c91639d7965e405f712b8.scn" + +[deps] + +source_file="res://objects/trailer-house.gltf" +dest_files=[ "res://.import/trailer-house.gltf-d68a33f7be9c91639d7965e405f712b8.scn" ] + +[params] + +nodes/root_type="Spatial" +nodes/root_name="Scene Root" +nodes/root_scale=1.0 +nodes/custom_script="" +nodes/storage=1 +nodes/use_legacy_names=false +materials/location=1 +materials/storage=1 +materials/keep_on_reimport=true +meshes/compress=true +meshes/ensure_tangents=true +meshes/storage=0 +meshes/light_baking=0 +meshes/lightmap_texel_size=0.1 +skins/use_named_skins=true +external_files/store_in_subdir=false +animation/import=true +animation/fps=15 +animation/filter_script="" +animation/storage=false +animation/keep_custom_tracks=false +animation/optimizer/enabled=true +animation/optimizer/max_linear_error=0.05 +animation/optimizer/max_angular_error=0.01 +animation/optimizer/max_angle=22 +animation/optimizer/remove_unused_tracks=true +animation/clips/amount=0 +animation/clip_1/name="" +animation/clip_1/start_frame=0 +animation/clip_1/end_frame=0 +animation/clip_1/loops=false +animation/clip_2/name="" +animation/clip_2/start_frame=0 +animation/clip_2/end_frame=0 +animation/clip_2/loops=false +animation/clip_3/name="" +animation/clip_3/start_frame=0 +animation/clip_3/end_frame=0 +animation/clip_3/loops=false +animation/clip_4/name="" +animation/clip_4/start_frame=0 +animation/clip_4/end_frame=0 +animation/clip_4/loops=false +animation/clip_5/name="" +animation/clip_5/start_frame=0 +animation/clip_5/end_frame=0 +animation/clip_5/loops=false +animation/clip_6/name="" +animation/clip_6/start_frame=0 +animation/clip_6/end_frame=0 +animation/clip_6/loops=false +animation/clip_7/name="" +animation/clip_7/start_frame=0 +animation/clip_7/end_frame=0 +animation/clip_7/loops=false +animation/clip_8/name="" +animation/clip_8/start_frame=0 +animation/clip_8/end_frame=0 +animation/clip_8/loops=false +animation/clip_9/name="" +animation/clip_9/start_frame=0 +animation/clip_9/end_frame=0 +animation/clip_9/loops=false +animation/clip_10/name="" +animation/clip_10/start_frame=0 +animation/clip_10/end_frame=0 +animation/clip_10/loops=false +animation/clip_11/name="" +animation/clip_11/start_frame=0 +animation/clip_11/end_frame=0 +animation/clip_11/loops=false +animation/clip_12/name="" +animation/clip_12/start_frame=0 +animation/clip_12/end_frame=0 +animation/clip_12/loops=false +animation/clip_13/name="" +animation/clip_13/start_frame=0 +animation/clip_13/end_frame=0 +animation/clip_13/loops=false +animation/clip_14/name="" +animation/clip_14/start_frame=0 +animation/clip_14/end_frame=0 +animation/clip_14/loops=false +animation/clip_15/name="" +animation/clip_15/start_frame=0 +animation/clip_15/end_frame=0 +animation/clip_15/loops=false +animation/clip_16/name="" +animation/clip_16/start_frame=0 +animation/clip_16/end_frame=0 +animation/clip_16/loops=false +animation/clip_17/name="" +animation/clip_17/start_frame=0 +animation/clip_17/end_frame=0 +animation/clip_17/loops=false +animation/clip_18/name="" +animation/clip_18/start_frame=0 +animation/clip_18/end_frame=0 +animation/clip_18/loops=false +animation/clip_19/name="" +animation/clip_19/start_frame=0 +animation/clip_19/end_frame=0 +animation/clip_19/loops=false +animation/clip_20/name="" +animation/clip_20/start_frame=0 +animation/clip_20/end_frame=0 +animation/clip_20/loops=false +animation/clip_21/name="" +animation/clip_21/start_frame=0 +animation/clip_21/end_frame=0 +animation/clip_21/loops=false +animation/clip_22/name="" +animation/clip_22/start_frame=0 +animation/clip_22/end_frame=0 +animation/clip_22/loops=false +animation/clip_23/name="" +animation/clip_23/start_frame=0 +animation/clip_23/end_frame=0 +animation/clip_23/loops=false +animation/clip_24/name="" +animation/clip_24/start_frame=0 +animation/clip_24/end_frame=0 +animation/clip_24/loops=false +animation/clip_25/name="" +animation/clip_25/start_frame=0 +animation/clip_25/end_frame=0 +animation/clip_25/loops=false +animation/clip_26/name="" +animation/clip_26/start_frame=0 +animation/clip_26/end_frame=0 +animation/clip_26/loops=false +animation/clip_27/name="" +animation/clip_27/start_frame=0 +animation/clip_27/end_frame=0 +animation/clip_27/loops=false +animation/clip_28/name="" +animation/clip_28/start_frame=0 +animation/clip_28/end_frame=0 +animation/clip_28/loops=false +animation/clip_29/name="" +animation/clip_29/start_frame=0 +animation/clip_29/end_frame=0 +animation/clip_29/loops=false +animation/clip_30/name="" +animation/clip_30/start_frame=0 +animation/clip_30/end_frame=0 +animation/clip_30/loops=false +animation/clip_31/name="" +animation/clip_31/start_frame=0 +animation/clip_31/end_frame=0 +animation/clip_31/loops=false +animation/clip_32/name="" +animation/clip_32/start_frame=0 +animation/clip_32/end_frame=0 +animation/clip_32/loops=false +animation/clip_33/name="" +animation/clip_33/start_frame=0 +animation/clip_33/end_frame=0 +animation/clip_33/loops=false +animation/clip_34/name="" +animation/clip_34/start_frame=0 +animation/clip_34/end_frame=0 +animation/clip_34/loops=false +animation/clip_35/name="" +animation/clip_35/start_frame=0 +animation/clip_35/end_frame=0 +animation/clip_35/loops=false +animation/clip_36/name="" +animation/clip_36/start_frame=0 +animation/clip_36/end_frame=0 +animation/clip_36/loops=false +animation/clip_37/name="" +animation/clip_37/start_frame=0 +animation/clip_37/end_frame=0 +animation/clip_37/loops=false +animation/clip_38/name="" +animation/clip_38/start_frame=0 +animation/clip_38/end_frame=0 +animation/clip_38/loops=false +animation/clip_39/name="" +animation/clip_39/start_frame=0 +animation/clip_39/end_frame=0 +animation/clip_39/loops=false +animation/clip_40/name="" +animation/clip_40/start_frame=0 +animation/clip_40/end_frame=0 +animation/clip_40/loops=false +animation/clip_41/name="" +animation/clip_41/start_frame=0 +animation/clip_41/end_frame=0 +animation/clip_41/loops=false +animation/clip_42/name="" +animation/clip_42/start_frame=0 +animation/clip_42/end_frame=0 +animation/clip_42/loops=false +animation/clip_43/name="" +animation/clip_43/start_frame=0 +animation/clip_43/end_frame=0 +animation/clip_43/loops=false +animation/clip_44/name="" +animation/clip_44/start_frame=0 +animation/clip_44/end_frame=0 +animation/clip_44/loops=false +animation/clip_45/name="" +animation/clip_45/start_frame=0 +animation/clip_45/end_frame=0 +animation/clip_45/loops=false +animation/clip_46/name="" +animation/clip_46/start_frame=0 +animation/clip_46/end_frame=0 +animation/clip_46/loops=false +animation/clip_47/name="" +animation/clip_47/start_frame=0 +animation/clip_47/end_frame=0 +animation/clip_47/loops=false +animation/clip_48/name="" +animation/clip_48/start_frame=0 +animation/clip_48/end_frame=0 +animation/clip_48/loops=false +animation/clip_49/name="" +animation/clip_49/start_frame=0 +animation/clip_49/end_frame=0 +animation/clip_49/loops=false +animation/clip_50/name="" +animation/clip_50/start_frame=0 +animation/clip_50/end_frame=0 +animation/clip_50/loops=false +animation/clip_51/name="" +animation/clip_51/start_frame=0 +animation/clip_51/end_frame=0 +animation/clip_51/loops=false +animation/clip_52/name="" +animation/clip_52/start_frame=0 +animation/clip_52/end_frame=0 +animation/clip_52/loops=false +animation/clip_53/name="" +animation/clip_53/start_frame=0 +animation/clip_53/end_frame=0 +animation/clip_53/loops=false +animation/clip_54/name="" +animation/clip_54/start_frame=0 +animation/clip_54/end_frame=0 +animation/clip_54/loops=false +animation/clip_55/name="" +animation/clip_55/start_frame=0 +animation/clip_55/end_frame=0 +animation/clip_55/loops=false +animation/clip_56/name="" +animation/clip_56/start_frame=0 +animation/clip_56/end_frame=0 +animation/clip_56/loops=false +animation/clip_57/name="" +animation/clip_57/start_frame=0 +animation/clip_57/end_frame=0 +animation/clip_57/loops=false +animation/clip_58/name="" +animation/clip_58/start_frame=0 +animation/clip_58/end_frame=0 +animation/clip_58/loops=false +animation/clip_59/name="" +animation/clip_59/start_frame=0 +animation/clip_59/end_frame=0 +animation/clip_59/loops=false +animation/clip_60/name="" +animation/clip_60/start_frame=0 +animation/clip_60/end_frame=0 +animation/clip_60/loops=false +animation/clip_61/name="" +animation/clip_61/start_frame=0 +animation/clip_61/end_frame=0 +animation/clip_61/loops=false +animation/clip_62/name="" +animation/clip_62/start_frame=0 +animation/clip_62/end_frame=0 +animation/clip_62/loops=false +animation/clip_63/name="" +animation/clip_63/start_frame=0 +animation/clip_63/end_frame=0 +animation/clip_63/loops=false +animation/clip_64/name="" +animation/clip_64/start_frame=0 +animation/clip_64/end_frame=0 +animation/clip_64/loops=false +animation/clip_65/name="" +animation/clip_65/start_frame=0 +animation/clip_65/end_frame=0 +animation/clip_65/loops=false +animation/clip_66/name="" +animation/clip_66/start_frame=0 +animation/clip_66/end_frame=0 +animation/clip_66/loops=false +animation/clip_67/name="" +animation/clip_67/start_frame=0 +animation/clip_67/end_frame=0 +animation/clip_67/loops=false +animation/clip_68/name="" +animation/clip_68/start_frame=0 +animation/clip_68/end_frame=0 +animation/clip_68/loops=false +animation/clip_69/name="" +animation/clip_69/start_frame=0 +animation/clip_69/end_frame=0 +animation/clip_69/loops=false +animation/clip_70/name="" +animation/clip_70/start_frame=0 +animation/clip_70/end_frame=0 +animation/clip_70/loops=false +animation/clip_71/name="" +animation/clip_71/start_frame=0 +animation/clip_71/end_frame=0 +animation/clip_71/loops=false +animation/clip_72/name="" +animation/clip_72/start_frame=0 +animation/clip_72/end_frame=0 +animation/clip_72/loops=false +animation/clip_73/name="" +animation/clip_73/start_frame=0 +animation/clip_73/end_frame=0 +animation/clip_73/loops=false +animation/clip_74/name="" +animation/clip_74/start_frame=0 +animation/clip_74/end_frame=0 +animation/clip_74/loops=false +animation/clip_75/name="" +animation/clip_75/start_frame=0 +animation/clip_75/end_frame=0 +animation/clip_75/loops=false +animation/clip_76/name="" +animation/clip_76/start_frame=0 +animation/clip_76/end_frame=0 +animation/clip_76/loops=false +animation/clip_77/name="" +animation/clip_77/start_frame=0 +animation/clip_77/end_frame=0 +animation/clip_77/loops=false +animation/clip_78/name="" +animation/clip_78/start_frame=0 +animation/clip_78/end_frame=0 +animation/clip_78/loops=false +animation/clip_79/name="" +animation/clip_79/start_frame=0 +animation/clip_79/end_frame=0 +animation/clip_79/loops=false +animation/clip_80/name="" +animation/clip_80/start_frame=0 +animation/clip_80/end_frame=0 +animation/clip_80/loops=false +animation/clip_81/name="" +animation/clip_81/start_frame=0 +animation/clip_81/end_frame=0 +animation/clip_81/loops=false +animation/clip_82/name="" +animation/clip_82/start_frame=0 +animation/clip_82/end_frame=0 +animation/clip_82/loops=false +animation/clip_83/name="" +animation/clip_83/start_frame=0 +animation/clip_83/end_frame=0 +animation/clip_83/loops=false +animation/clip_84/name="" +animation/clip_84/start_frame=0 +animation/clip_84/end_frame=0 +animation/clip_84/loops=false +animation/clip_85/name="" +animation/clip_85/start_frame=0 +animation/clip_85/end_frame=0 +animation/clip_85/loops=false +animation/clip_86/name="" +animation/clip_86/start_frame=0 +animation/clip_86/end_frame=0 +animation/clip_86/loops=false +animation/clip_87/name="" +animation/clip_87/start_frame=0 +animation/clip_87/end_frame=0 +animation/clip_87/loops=false +animation/clip_88/name="" +animation/clip_88/start_frame=0 +animation/clip_88/end_frame=0 +animation/clip_88/loops=false +animation/clip_89/name="" +animation/clip_89/start_frame=0 +animation/clip_89/end_frame=0 +animation/clip_89/loops=false +animation/clip_90/name="" +animation/clip_90/start_frame=0 +animation/clip_90/end_frame=0 +animation/clip_90/loops=false +animation/clip_91/name="" +animation/clip_91/start_frame=0 +animation/clip_91/end_frame=0 +animation/clip_91/loops=false +animation/clip_92/name="" +animation/clip_92/start_frame=0 +animation/clip_92/end_frame=0 +animation/clip_92/loops=false +animation/clip_93/name="" +animation/clip_93/start_frame=0 +animation/clip_93/end_frame=0 +animation/clip_93/loops=false +animation/clip_94/name="" +animation/clip_94/start_frame=0 +animation/clip_94/end_frame=0 +animation/clip_94/loops=false +animation/clip_95/name="" +animation/clip_95/start_frame=0 +animation/clip_95/end_frame=0 +animation/clip_95/loops=false +animation/clip_96/name="" +animation/clip_96/start_frame=0 +animation/clip_96/end_frame=0 +animation/clip_96/loops=false +animation/clip_97/name="" +animation/clip_97/start_frame=0 +animation/clip_97/end_frame=0 +animation/clip_97/loops=false +animation/clip_98/name="" +animation/clip_98/start_frame=0 +animation/clip_98/end_frame=0 +animation/clip_98/loops=false +animation/clip_99/name="" +animation/clip_99/start_frame=0 +animation/clip_99/end_frame=0 +animation/clip_99/loops=false +animation/clip_100/name="" +animation/clip_100/start_frame=0 +animation/clip_100/end_frame=0 +animation/clip_100/loops=false +animation/clip_101/name="" +animation/clip_101/start_frame=0 +animation/clip_101/end_frame=0 +animation/clip_101/loops=false +animation/clip_102/name="" +animation/clip_102/start_frame=0 +animation/clip_102/end_frame=0 +animation/clip_102/loops=false +animation/clip_103/name="" +animation/clip_103/start_frame=0 +animation/clip_103/end_frame=0 +animation/clip_103/loops=false +animation/clip_104/name="" +animation/clip_104/start_frame=0 +animation/clip_104/end_frame=0 +animation/clip_104/loops=false +animation/clip_105/name="" +animation/clip_105/start_frame=0 +animation/clip_105/end_frame=0 +animation/clip_105/loops=false +animation/clip_106/name="" +animation/clip_106/start_frame=0 +animation/clip_106/end_frame=0 +animation/clip_106/loops=false +animation/clip_107/name="" +animation/clip_107/start_frame=0 +animation/clip_107/end_frame=0 +animation/clip_107/loops=false +animation/clip_108/name="" +animation/clip_108/start_frame=0 +animation/clip_108/end_frame=0 +animation/clip_108/loops=false +animation/clip_109/name="" +animation/clip_109/start_frame=0 +animation/clip_109/end_frame=0 +animation/clip_109/loops=false +animation/clip_110/name="" +animation/clip_110/start_frame=0 +animation/clip_110/end_frame=0 +animation/clip_110/loops=false +animation/clip_111/name="" +animation/clip_111/start_frame=0 +animation/clip_111/end_frame=0 +animation/clip_111/loops=false +animation/clip_112/name="" +animation/clip_112/start_frame=0 +animation/clip_112/end_frame=0 +animation/clip_112/loops=false +animation/clip_113/name="" +animation/clip_113/start_frame=0 +animation/clip_113/end_frame=0 +animation/clip_113/loops=false +animation/clip_114/name="" +animation/clip_114/start_frame=0 +animation/clip_114/end_frame=0 +animation/clip_114/loops=false +animation/clip_115/name="" +animation/clip_115/start_frame=0 +animation/clip_115/end_frame=0 +animation/clip_115/loops=false +animation/clip_116/name="" +animation/clip_116/start_frame=0 +animation/clip_116/end_frame=0 +animation/clip_116/loops=false +animation/clip_117/name="" +animation/clip_117/start_frame=0 +animation/clip_117/end_frame=0 +animation/clip_117/loops=false +animation/clip_118/name="" +animation/clip_118/start_frame=0 +animation/clip_118/end_frame=0 +animation/clip_118/loops=false +animation/clip_119/name="" +animation/clip_119/start_frame=0 +animation/clip_119/end_frame=0 +animation/clip_119/loops=false +animation/clip_120/name="" +animation/clip_120/start_frame=0 +animation/clip_120/end_frame=0 +animation/clip_120/loops=false +animation/clip_121/name="" +animation/clip_121/start_frame=0 +animation/clip_121/end_frame=0 +animation/clip_121/loops=false +animation/clip_122/name="" +animation/clip_122/start_frame=0 +animation/clip_122/end_frame=0 +animation/clip_122/loops=false +animation/clip_123/name="" +animation/clip_123/start_frame=0 +animation/clip_123/end_frame=0 +animation/clip_123/loops=false +animation/clip_124/name="" +animation/clip_124/start_frame=0 +animation/clip_124/end_frame=0 +animation/clip_124/loops=false +animation/clip_125/name="" +animation/clip_125/start_frame=0 +animation/clip_125/end_frame=0 +animation/clip_125/loops=false +animation/clip_126/name="" +animation/clip_126/start_frame=0 +animation/clip_126/end_frame=0 +animation/clip_126/loops=false +animation/clip_127/name="" +animation/clip_127/start_frame=0 +animation/clip_127/end_frame=0 +animation/clip_127/loops=false +animation/clip_128/name="" +animation/clip_128/start_frame=0 +animation/clip_128/end_frame=0 +animation/clip_128/loops=false +animation/clip_129/name="" +animation/clip_129/start_frame=0 +animation/clip_129/end_frame=0 +animation/clip_129/loops=false +animation/clip_130/name="" +animation/clip_130/start_frame=0 +animation/clip_130/end_frame=0 +animation/clip_130/loops=false +animation/clip_131/name="" +animation/clip_131/start_frame=0 +animation/clip_131/end_frame=0 +animation/clip_131/loops=false +animation/clip_132/name="" +animation/clip_132/start_frame=0 +animation/clip_132/end_frame=0 +animation/clip_132/loops=false +animation/clip_133/name="" +animation/clip_133/start_frame=0 +animation/clip_133/end_frame=0 +animation/clip_133/loops=false +animation/clip_134/name="" +animation/clip_134/start_frame=0 +animation/clip_134/end_frame=0 +animation/clip_134/loops=false +animation/clip_135/name="" +animation/clip_135/start_frame=0 +animation/clip_135/end_frame=0 +animation/clip_135/loops=false +animation/clip_136/name="" +animation/clip_136/start_frame=0 +animation/clip_136/end_frame=0 +animation/clip_136/loops=false +animation/clip_137/name="" +animation/clip_137/start_frame=0 +animation/clip_137/end_frame=0 +animation/clip_137/loops=false +animation/clip_138/name="" +animation/clip_138/start_frame=0 +animation/clip_138/end_frame=0 +animation/clip_138/loops=false +animation/clip_139/name="" +animation/clip_139/start_frame=0 +animation/clip_139/end_frame=0 +animation/clip_139/loops=false +animation/clip_140/name="" +animation/clip_140/start_frame=0 +animation/clip_140/end_frame=0 +animation/clip_140/loops=false +animation/clip_141/name="" +animation/clip_141/start_frame=0 +animation/clip_141/end_frame=0 +animation/clip_141/loops=false +animation/clip_142/name="" +animation/clip_142/start_frame=0 +animation/clip_142/end_frame=0 +animation/clip_142/loops=false +animation/clip_143/name="" +animation/clip_143/start_frame=0 +animation/clip_143/end_frame=0 +animation/clip_143/loops=false +animation/clip_144/name="" +animation/clip_144/start_frame=0 +animation/clip_144/end_frame=0 +animation/clip_144/loops=false +animation/clip_145/name="" +animation/clip_145/start_frame=0 +animation/clip_145/end_frame=0 +animation/clip_145/loops=false +animation/clip_146/name="" +animation/clip_146/start_frame=0 +animation/clip_146/end_frame=0 +animation/clip_146/loops=false +animation/clip_147/name="" +animation/clip_147/start_frame=0 +animation/clip_147/end_frame=0 +animation/clip_147/loops=false +animation/clip_148/name="" +animation/clip_148/start_frame=0 +animation/clip_148/end_frame=0 +animation/clip_148/loops=false +animation/clip_149/name="" +animation/clip_149/start_frame=0 +animation/clip_149/end_frame=0 +animation/clip_149/loops=false +animation/clip_150/name="" +animation/clip_150/start_frame=0 +animation/clip_150/end_frame=0 +animation/clip_150/loops=false +animation/clip_151/name="" +animation/clip_151/start_frame=0 +animation/clip_151/end_frame=0 +animation/clip_151/loops=false +animation/clip_152/name="" +animation/clip_152/start_frame=0 +animation/clip_152/end_frame=0 +animation/clip_152/loops=false +animation/clip_153/name="" +animation/clip_153/start_frame=0 +animation/clip_153/end_frame=0 +animation/clip_153/loops=false +animation/clip_154/name="" +animation/clip_154/start_frame=0 +animation/clip_154/end_frame=0 +animation/clip_154/loops=false +animation/clip_155/name="" +animation/clip_155/start_frame=0 +animation/clip_155/end_frame=0 +animation/clip_155/loops=false +animation/clip_156/name="" +animation/clip_156/start_frame=0 +animation/clip_156/end_frame=0 +animation/clip_156/loops=false +animation/clip_157/name="" +animation/clip_157/start_frame=0 +animation/clip_157/end_frame=0 +animation/clip_157/loops=false +animation/clip_158/name="" +animation/clip_158/start_frame=0 +animation/clip_158/end_frame=0 +animation/clip_158/loops=false +animation/clip_159/name="" +animation/clip_159/start_frame=0 +animation/clip_159/end_frame=0 +animation/clip_159/loops=false +animation/clip_160/name="" +animation/clip_160/start_frame=0 +animation/clip_160/end_frame=0 +animation/clip_160/loops=false +animation/clip_161/name="" +animation/clip_161/start_frame=0 +animation/clip_161/end_frame=0 +animation/clip_161/loops=false +animation/clip_162/name="" +animation/clip_162/start_frame=0 +animation/clip_162/end_frame=0 +animation/clip_162/loops=false +animation/clip_163/name="" +animation/clip_163/start_frame=0 +animation/clip_163/end_frame=0 +animation/clip_163/loops=false +animation/clip_164/name="" +animation/clip_164/start_frame=0 +animation/clip_164/end_frame=0 +animation/clip_164/loops=false +animation/clip_165/name="" +animation/clip_165/start_frame=0 +animation/clip_165/end_frame=0 +animation/clip_165/loops=false +animation/clip_166/name="" +animation/clip_166/start_frame=0 +animation/clip_166/end_frame=0 +animation/clip_166/loops=false +animation/clip_167/name="" +animation/clip_167/start_frame=0 +animation/clip_167/end_frame=0 +animation/clip_167/loops=false +animation/clip_168/name="" +animation/clip_168/start_frame=0 +animation/clip_168/end_frame=0 +animation/clip_168/loops=false +animation/clip_169/name="" +animation/clip_169/start_frame=0 +animation/clip_169/end_frame=0 +animation/clip_169/loops=false +animation/clip_170/name="" +animation/clip_170/start_frame=0 +animation/clip_170/end_frame=0 +animation/clip_170/loops=false +animation/clip_171/name="" +animation/clip_171/start_frame=0 +animation/clip_171/end_frame=0 +animation/clip_171/loops=false +animation/clip_172/name="" +animation/clip_172/start_frame=0 +animation/clip_172/end_frame=0 +animation/clip_172/loops=false +animation/clip_173/name="" +animation/clip_173/start_frame=0 +animation/clip_173/end_frame=0 +animation/clip_173/loops=false +animation/clip_174/name="" +animation/clip_174/start_frame=0 +animation/clip_174/end_frame=0 +animation/clip_174/loops=false +animation/clip_175/name="" +animation/clip_175/start_frame=0 +animation/clip_175/end_frame=0 +animation/clip_175/loops=false +animation/clip_176/name="" +animation/clip_176/start_frame=0 +animation/clip_176/end_frame=0 +animation/clip_176/loops=false +animation/clip_177/name="" +animation/clip_177/start_frame=0 +animation/clip_177/end_frame=0 +animation/clip_177/loops=false +animation/clip_178/name="" +animation/clip_178/start_frame=0 +animation/clip_178/end_frame=0 +animation/clip_178/loops=false +animation/clip_179/name="" +animation/clip_179/start_frame=0 +animation/clip_179/end_frame=0 +animation/clip_179/loops=false +animation/clip_180/name="" +animation/clip_180/start_frame=0 +animation/clip_180/end_frame=0 +animation/clip_180/loops=false +animation/clip_181/name="" +animation/clip_181/start_frame=0 +animation/clip_181/end_frame=0 +animation/clip_181/loops=false +animation/clip_182/name="" +animation/clip_182/start_frame=0 +animation/clip_182/end_frame=0 +animation/clip_182/loops=false +animation/clip_183/name="" +animation/clip_183/start_frame=0 +animation/clip_183/end_frame=0 +animation/clip_183/loops=false +animation/clip_184/name="" +animation/clip_184/start_frame=0 +animation/clip_184/end_frame=0 +animation/clip_184/loops=false +animation/clip_185/name="" +animation/clip_185/start_frame=0 +animation/clip_185/end_frame=0 +animation/clip_185/loops=false +animation/clip_186/name="" +animation/clip_186/start_frame=0 +animation/clip_186/end_frame=0 +animation/clip_186/loops=false +animation/clip_187/name="" +animation/clip_187/start_frame=0 +animation/clip_187/end_frame=0 +animation/clip_187/loops=false +animation/clip_188/name="" +animation/clip_188/start_frame=0 +animation/clip_188/end_frame=0 +animation/clip_188/loops=false +animation/clip_189/name="" +animation/clip_189/start_frame=0 +animation/clip_189/end_frame=0 +animation/clip_189/loops=false +animation/clip_190/name="" +animation/clip_190/start_frame=0 +animation/clip_190/end_frame=0 +animation/clip_190/loops=false +animation/clip_191/name="" +animation/clip_191/start_frame=0 +animation/clip_191/end_frame=0 +animation/clip_191/loops=false +animation/clip_192/name="" +animation/clip_192/start_frame=0 +animation/clip_192/end_frame=0 +animation/clip_192/loops=false +animation/clip_193/name="" +animation/clip_193/start_frame=0 +animation/clip_193/end_frame=0 +animation/clip_193/loops=false +animation/clip_194/name="" +animation/clip_194/start_frame=0 +animation/clip_194/end_frame=0 +animation/clip_194/loops=false +animation/clip_195/name="" +animation/clip_195/start_frame=0 +animation/clip_195/end_frame=0 +animation/clip_195/loops=false +animation/clip_196/name="" +animation/clip_196/start_frame=0 +animation/clip_196/end_frame=0 +animation/clip_196/loops=false +animation/clip_197/name="" +animation/clip_197/start_frame=0 +animation/clip_197/end_frame=0 +animation/clip_197/loops=false +animation/clip_198/name="" +animation/clip_198/start_frame=0 +animation/clip_198/end_frame=0 +animation/clip_198/loops=false +animation/clip_199/name="" +animation/clip_199/start_frame=0 +animation/clip_199/end_frame=0 +animation/clip_199/loops=false +animation/clip_200/name="" +animation/clip_200/start_frame=0 +animation/clip_200/end_frame=0 +animation/clip_200/loops=false +animation/clip_201/name="" +animation/clip_201/start_frame=0 +animation/clip_201/end_frame=0 +animation/clip_201/loops=false +animation/clip_202/name="" +animation/clip_202/start_frame=0 +animation/clip_202/end_frame=0 +animation/clip_202/loops=false +animation/clip_203/name="" +animation/clip_203/start_frame=0 +animation/clip_203/end_frame=0 +animation/clip_203/loops=false +animation/clip_204/name="" +animation/clip_204/start_frame=0 +animation/clip_204/end_frame=0 +animation/clip_204/loops=false +animation/clip_205/name="" +animation/clip_205/start_frame=0 +animation/clip_205/end_frame=0 +animation/clip_205/loops=false +animation/clip_206/name="" +animation/clip_206/start_frame=0 +animation/clip_206/end_frame=0 +animation/clip_206/loops=false +animation/clip_207/name="" +animation/clip_207/start_frame=0 +animation/clip_207/end_frame=0 +animation/clip_207/loops=false +animation/clip_208/name="" +animation/clip_208/start_frame=0 +animation/clip_208/end_frame=0 +animation/clip_208/loops=false +animation/clip_209/name="" +animation/clip_209/start_frame=0 +animation/clip_209/end_frame=0 +animation/clip_209/loops=false +animation/clip_210/name="" +animation/clip_210/start_frame=0 +animation/clip_210/end_frame=0 +animation/clip_210/loops=false +animation/clip_211/name="" +animation/clip_211/start_frame=0 +animation/clip_211/end_frame=0 +animation/clip_211/loops=false +animation/clip_212/name="" +animation/clip_212/start_frame=0 +animation/clip_212/end_frame=0 +animation/clip_212/loops=false +animation/clip_213/name="" +animation/clip_213/start_frame=0 +animation/clip_213/end_frame=0 +animation/clip_213/loops=false +animation/clip_214/name="" +animation/clip_214/start_frame=0 +animation/clip_214/end_frame=0 +animation/clip_214/loops=false +animation/clip_215/name="" +animation/clip_215/start_frame=0 +animation/clip_215/end_frame=0 +animation/clip_215/loops=false +animation/clip_216/name="" +animation/clip_216/start_frame=0 +animation/clip_216/end_frame=0 +animation/clip_216/loops=false +animation/clip_217/name="" +animation/clip_217/start_frame=0 +animation/clip_217/end_frame=0 +animation/clip_217/loops=false +animation/clip_218/name="" +animation/clip_218/start_frame=0 +animation/clip_218/end_frame=0 +animation/clip_218/loops=false +animation/clip_219/name="" +animation/clip_219/start_frame=0 +animation/clip_219/end_frame=0 +animation/clip_219/loops=false +animation/clip_220/name="" +animation/clip_220/start_frame=0 +animation/clip_220/end_frame=0 +animation/clip_220/loops=false +animation/clip_221/name="" +animation/clip_221/start_frame=0 +animation/clip_221/end_frame=0 +animation/clip_221/loops=false +animation/clip_222/name="" +animation/clip_222/start_frame=0 +animation/clip_222/end_frame=0 +animation/clip_222/loops=false +animation/clip_223/name="" +animation/clip_223/start_frame=0 +animation/clip_223/end_frame=0 +animation/clip_223/loops=false +animation/clip_224/name="" +animation/clip_224/start_frame=0 +animation/clip_224/end_frame=0 +animation/clip_224/loops=false +animation/clip_225/name="" +animation/clip_225/start_frame=0 +animation/clip_225/end_frame=0 +animation/clip_225/loops=false +animation/clip_226/name="" +animation/clip_226/start_frame=0 +animation/clip_226/end_frame=0 +animation/clip_226/loops=false +animation/clip_227/name="" +animation/clip_227/start_frame=0 +animation/clip_227/end_frame=0 +animation/clip_227/loops=false +animation/clip_228/name="" +animation/clip_228/start_frame=0 +animation/clip_228/end_frame=0 +animation/clip_228/loops=false +animation/clip_229/name="" +animation/clip_229/start_frame=0 +animation/clip_229/end_frame=0 +animation/clip_229/loops=false +animation/clip_230/name="" +animation/clip_230/start_frame=0 +animation/clip_230/end_frame=0 +animation/clip_230/loops=false +animation/clip_231/name="" +animation/clip_231/start_frame=0 +animation/clip_231/end_frame=0 +animation/clip_231/loops=false +animation/clip_232/name="" +animation/clip_232/start_frame=0 +animation/clip_232/end_frame=0 +animation/clip_232/loops=false +animation/clip_233/name="" +animation/clip_233/start_frame=0 +animation/clip_233/end_frame=0 +animation/clip_233/loops=false +animation/clip_234/name="" +animation/clip_234/start_frame=0 +animation/clip_234/end_frame=0 +animation/clip_234/loops=false +animation/clip_235/name="" +animation/clip_235/start_frame=0 +animation/clip_235/end_frame=0 +animation/clip_235/loops=false +animation/clip_236/name="" +animation/clip_236/start_frame=0 +animation/clip_236/end_frame=0 +animation/clip_236/loops=false +animation/clip_237/name="" +animation/clip_237/start_frame=0 +animation/clip_237/end_frame=0 +animation/clip_237/loops=false +animation/clip_238/name="" +animation/clip_238/start_frame=0 +animation/clip_238/end_frame=0 +animation/clip_238/loops=false +animation/clip_239/name="" +animation/clip_239/start_frame=0 +animation/clip_239/end_frame=0 +animation/clip_239/loops=false +animation/clip_240/name="" +animation/clip_240/start_frame=0 +animation/clip_240/end_frame=0 +animation/clip_240/loops=false +animation/clip_241/name="" +animation/clip_241/start_frame=0 +animation/clip_241/end_frame=0 +animation/clip_241/loops=false +animation/clip_242/name="" +animation/clip_242/start_frame=0 +animation/clip_242/end_frame=0 +animation/clip_242/loops=false +animation/clip_243/name="" +animation/clip_243/start_frame=0 +animation/clip_243/end_frame=0 +animation/clip_243/loops=false +animation/clip_244/name="" +animation/clip_244/start_frame=0 +animation/clip_244/end_frame=0 +animation/clip_244/loops=false +animation/clip_245/name="" +animation/clip_245/start_frame=0 +animation/clip_245/end_frame=0 +animation/clip_245/loops=false +animation/clip_246/name="" +animation/clip_246/start_frame=0 +animation/clip_246/end_frame=0 +animation/clip_246/loops=false +animation/clip_247/name="" +animation/clip_247/start_frame=0 +animation/clip_247/end_frame=0 +animation/clip_247/loops=false +animation/clip_248/name="" +animation/clip_248/start_frame=0 +animation/clip_248/end_frame=0 +animation/clip_248/loops=false +animation/clip_249/name="" +animation/clip_249/start_frame=0 +animation/clip_249/end_frame=0 +animation/clip_249/loops=false +animation/clip_250/name="" +animation/clip_250/start_frame=0 +animation/clip_250/end_frame=0 +animation/clip_250/loops=false +animation/clip_251/name="" +animation/clip_251/start_frame=0 +animation/clip_251/end_frame=0 +animation/clip_251/loops=false +animation/clip_252/name="" +animation/clip_252/start_frame=0 +animation/clip_252/end_frame=0 +animation/clip_252/loops=false +animation/clip_253/name="" +animation/clip_253/start_frame=0 +animation/clip_253/end_frame=0 +animation/clip_253/loops=false +animation/clip_254/name="" +animation/clip_254/start_frame=0 +animation/clip_254/end_frame=0 +animation/clip_254/loops=false +animation/clip_255/name="" +animation/clip_255/start_frame=0 +animation/clip_255/end_frame=0 +animation/clip_255/loops=false +animation/clip_256/name="" +animation/clip_256/start_frame=0 +animation/clip_256/end_frame=0 +animation/clip_256/loops=false diff --git a/objects/trailer-house.tscn b/objects/trailer-house.tscn new file mode 100644 index 0000000..1495468 --- /dev/null +++ b/objects/trailer-house.tscn @@ -0,0 +1,6 @@ +[gd_scene load_steps=2 format=2] + +[ext_resource path="res://objects/trailer-house.gd" type="Script" id=1] + +[node name="trailer-house" type="Spatial"] +script = ExtResource( 1 ) diff --git a/road/road.material b/road/road.material new file mode 100644 index 0000000..a5b55bb Binary files /dev/null and b/road/road.material differ diff --git a/road/road.png b/road/road.png new file mode 100644 index 0000000..b1dcd4b Binary files /dev/null and b/road/road.png differ diff --git a/road/road.png.import b/road/road.png.import new file mode 100644 index 0000000..5df2da5 --- /dev/null +++ b/road/road.png.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="StreamTexture" +path.s3tc="res://.import/road.png-e38b879061cdfd560f1fe665b2e0de1f.s3tc.stex" +path.etc2="res://.import/road.png-e38b879061cdfd560f1fe665b2e0de1f.etc2.stex" +metadata={ +"imported_formats": [ "s3tc", "etc2" ], +"vram_texture": true +} + +[deps] + +source_file="res://road/road.png" +dest_files=[ "res://.import/road.png-e38b879061cdfd560f1fe665b2e0de1f.s3tc.stex", "res://.import/road.png-e38b879061cdfd560f1fe665b2e0de1f.etc2.stex" ] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=true +flags/filter=true +flags/mipmaps=true +flags/anisotropic=false +flags/srgb=1 +process/fix_alpha_border=true +process/premult_alpha=false +process/HDR_as_SRGB=false +process/invert_color=false +process/normal_map_invert_y=false +stream=false +size_limit=0 +detect_3d=false +svg/scale=1.0 diff --git a/road/road_elements.bin b/road/road_elements.bin new file mode 100644 index 0000000..15dfef2 Binary files /dev/null and b/road/road_elements.bin differ diff --git a/road/road_elements.gltf b/road/road_elements.gltf new file mode 100644 index 0000000..0fc2968 --- /dev/null +++ b/road/road_elements.gltf @@ -0,0 +1,600 @@ +{ + "asset" : { + "generator" : "Khronos glTF Blender I/O v1.5.17", + "version" : "2.0" + }, + "scene" : 0, + "scenes" : [ + { + "name" : "Scene", + "nodes" : [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ] + } + ], + "nodes" : [ + { + "mesh" : 0, + "name" : "road_main" + }, + { + "mesh" : 1, + "name" : "sidewalk_start", + "translation" : [ + 3, + 0, + 0 + ] + }, + { + "mesh" : 2, + "name" : "sidewalk", + "translation" : [ + 4, + 0, + 0 + ] + }, + { + "mesh" : 3, + "name" : "sidewalk_end2", + "translation" : [ + 7.100000381469727, + 0, + 0 + ] + }, + { + "mesh" : 4, + "name" : "sidewalk_end", + "translation" : [ + 7.600000381469727, + 0, + 0 + ] + }, + { + "mesh" : 5, + "name" : "road_main.001", + "translation" : [ + 9.899999618530273, + 0, + 0 + ] + }, + { + "mesh" : 6, + "name" : "wall", + "translation" : [ + 13, + 0, + 0 + ] + } + ], + "materials" : [ + { + "doubleSided" : true, + "name" : "road", + "pbrMetallicRoughness" : { + "baseColorTexture" : { + "index" : 0 + }, + "metallicFactor" : 0.03030303120613098 + } + } + ], + "meshes" : [ + { + "name" : "Cube", + "primitives" : [ + { + "attributes" : { + "POSITION" : 0, + "NORMAL" : 1, + "TEXCOORD_0" : 2 + }, + "indices" : 3, + "material" : 0 + } + ] + }, + { + "name" : "Cube.001", + "primitives" : [ + { + "attributes" : { + "POSITION" : 4, + "NORMAL" : 5, + "TEXCOORD_0" : 6 + }, + "indices" : 7, + "material" : 0 + } + ] + }, + { + "name" : "Cube.002", + "primitives" : [ + { + "attributes" : { + "POSITION" : 8, + "NORMAL" : 9, + "TEXCOORD_0" : 10 + }, + "indices" : 11, + "material" : 0 + } + ] + }, + { + "name" : "Cube.004", + "primitives" : [ + { + "attributes" : { + "POSITION" : 12, + "NORMAL" : 13, + "TEXCOORD_0" : 14 + }, + "indices" : 15, + "material" : 0 + } + ] + }, + { + "name" : "Cube.005", + "primitives" : [ + { + "attributes" : { + "POSITION" : 16, + "NORMAL" : 17, + "TEXCOORD_0" : 18 + }, + "indices" : 19, + "material" : 0 + } + ] + }, + { + "name" : "Cube.003", + "primitives" : [ + { + "attributes" : { + "POSITION" : 20, + "NORMAL" : 21, + "TEXCOORD_0" : 22 + }, + "indices" : 23, + "material" : 0 + } + ] + }, + { + "name" : "Cube.006", + "primitives" : [ + { + "attributes" : { + "POSITION" : 24, + "NORMAL" : 25, + "TEXCOORD_0" : 26 + }, + "indices" : 27, + "material" : 0 + } + ] + } + ], + "textures" : [ + { + "sampler" : 0, + "source" : 0 + } + ], + "images" : [ + { + "mimeType" : "image/png", + "name" : "road", + "uri" : "road.png" + } + ], + "accessors" : [ + { + "bufferView" : 0, + "componentType" : 5126, + "count" : 36, + "max" : [ + 3, + 0.025044016540050507, + 0 + ], + "min" : [ + 0, + -1, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 1, + "componentType" : 5126, + "count" : 36, + "type" : "VEC3" + }, + { + "bufferView" : 2, + "componentType" : 5126, + "count" : 36, + "type" : "VEC2" + }, + { + "bufferView" : 3, + "componentType" : 5123, + "count" : 60, + "type" : "SCALAR" + }, + { + "bufferView" : 4, + "componentType" : 5126, + "count" : 32, + "max" : [ + 0.40047407150268555, + 0.20047391951084137, + 0 + ], + "min" : [ + 0, + -1, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 5, + "componentType" : 5126, + "count" : 32, + "type" : "VEC3" + }, + { + "bufferView" : 6, + "componentType" : 5126, + "count" : 32, + "type" : "VEC2" + }, + { + "bufferView" : 7, + "componentType" : 5123, + "count" : 48, + "type" : "SCALAR" + }, + { + "bufferView" : 8, + "componentType" : 5126, + "count" : 20, + "max" : [ + 2, + 0.21363025903701782, + 0 + ], + "min" : [ + 0, + -1, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 9, + "componentType" : 5126, + "count" : 20, + "type" : "VEC3" + }, + { + "bufferView" : 10, + "componentType" : 5126, + "count" : 20, + "type" : "VEC2" + }, + { + "bufferView" : 11, + "componentType" : 5123, + "count" : 30, + "type" : "SCALAR" + }, + { + "bufferView" : 12, + "componentType" : 5126, + "count" : 42, + "max" : [ + 0.405000776052475, + 0.20000000298023224, + 0 + ], + "min" : [ + -2.477318048477173e-07, + -1, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 13, + "componentType" : 5126, + "count" : 42, + "type" : "VEC3" + }, + { + "bufferView" : 14, + "componentType" : 5126, + "count" : 42, + "type" : "VEC2" + }, + { + "bufferView" : 15, + "componentType" : 5123, + "count" : 66, + "type" : "SCALAR" + }, + { + "bufferView" : 16, + "componentType" : 5126, + "count" : 46, + "max" : [ + 2.205000877380371, + 0.19999998807907104, + 0 + ], + "min" : [ + -2.477318048477173e-07, + -1, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 17, + "componentType" : 5126, + "count" : 46, + "type" : "VEC3" + }, + { + "bufferView" : 18, + "componentType" : 5126, + "count" : 46, + "type" : "VEC2" + }, + { + "bufferView" : 19, + "componentType" : 5123, + "count" : 72, + "type" : "SCALAR" + }, + { + "bufferView" : 20, + "componentType" : 5126, + "count" : 26, + "max" : [ + 3, + 0.025044016540050507, + 0 + ], + "min" : [ + 0, + -1, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 21, + "componentType" : 5126, + "count" : 26, + "type" : "VEC3" + }, + { + "bufferView" : 22, + "componentType" : 5126, + "count" : 26, + "type" : "VEC2" + }, + { + "bufferView" : 23, + "componentType" : 5123, + "count" : 42, + "type" : "SCALAR" + }, + { + "bufferView" : 24, + "componentType" : 5126, + "count" : 326, + "max" : [ + 1.4000005722045898, + 3, + 0 + ], + "min" : [ + 0, + -1, + -2 + ], + "type" : "VEC3" + }, + { + "bufferView" : 25, + "componentType" : 5126, + "count" : 326, + "type" : "VEC3" + }, + { + "bufferView" : 26, + "componentType" : 5126, + "count" : 326, + "type" : "VEC2" + }, + { + "bufferView" : 27, + "componentType" : 5123, + "count" : 600, + "type" : "SCALAR" + } + ], + "bufferViews" : [ + { + "buffer" : 0, + "byteLength" : 432, + "byteOffset" : 0 + }, + { + "buffer" : 0, + "byteLength" : 432, + "byteOffset" : 432 + }, + { + "buffer" : 0, + "byteLength" : 288, + "byteOffset" : 864 + }, + { + "buffer" : 0, + "byteLength" : 120, + "byteOffset" : 1152 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 1272 + }, + { + "buffer" : 0, + "byteLength" : 384, + "byteOffset" : 1656 + }, + { + "buffer" : 0, + "byteLength" : 256, + "byteOffset" : 2040 + }, + { + "buffer" : 0, + "byteLength" : 96, + "byteOffset" : 2296 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 2392 + }, + { + "buffer" : 0, + "byteLength" : 240, + "byteOffset" : 2632 + }, + { + "buffer" : 0, + "byteLength" : 160, + "byteOffset" : 2872 + }, + { + "buffer" : 0, + "byteLength" : 60, + "byteOffset" : 3032 + }, + { + "buffer" : 0, + "byteLength" : 504, + "byteOffset" : 3092 + }, + { + "buffer" : 0, + "byteLength" : 504, + "byteOffset" : 3596 + }, + { + "buffer" : 0, + "byteLength" : 336, + "byteOffset" : 4100 + }, + { + "buffer" : 0, + "byteLength" : 132, + "byteOffset" : 4436 + }, + { + "buffer" : 0, + "byteLength" : 552, + "byteOffset" : 4568 + }, + { + "buffer" : 0, + "byteLength" : 552, + "byteOffset" : 5120 + }, + { + "buffer" : 0, + "byteLength" : 368, + "byteOffset" : 5672 + }, + { + "buffer" : 0, + "byteLength" : 144, + "byteOffset" : 6040 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 6184 + }, + { + "buffer" : 0, + "byteLength" : 312, + "byteOffset" : 6496 + }, + { + "buffer" : 0, + "byteLength" : 208, + "byteOffset" : 6808 + }, + { + "buffer" : 0, + "byteLength" : 84, + "byteOffset" : 7016 + }, + { + "buffer" : 0, + "byteLength" : 3912, + "byteOffset" : 7100 + }, + { + "buffer" : 0, + "byteLength" : 3912, + "byteOffset" : 11012 + }, + { + "buffer" : 0, + "byteLength" : 2608, + "byteOffset" : 14924 + }, + { + "buffer" : 0, + "byteLength" : 1200, + "byteOffset" : 17532 + } + ], + "samplers" : [ + { + "magFilter" : 9729, + "minFilter" : 9987 + } + ], + "buffers" : [ + { + "byteLength" : 18732, + "uri" : "road_elements.bin" + } + ] +} diff --git a/road/road_elements.gltf.import b/road/road_elements.gltf.import new file mode 100644 index 0000000..bedaa86 --- /dev/null +++ b/road/road_elements.gltf.import @@ -0,0 +1,1064 @@ +[remap] + +importer="scene" +type="PackedScene" +path="res://.import/road_elements.gltf-f9378c8b7c365db06d41a00eb66066fc.scn" + +[deps] + +source_file="res://road/road_elements.gltf" +dest_files=[ "res://.import/road_elements.gltf-f9378c8b7c365db06d41a00eb66066fc.scn" ] + +[params] + +nodes/root_type="Spatial" +nodes/root_name="Scene Root" +nodes/root_scale=1.0 +nodes/custom_script="" +nodes/storage=0 +nodes/use_legacy_names=false +materials/location=1 +materials/storage=1 +materials/keep_on_reimport=true +meshes/compress=true +meshes/ensure_tangents=true +meshes/storage=0 +meshes/light_baking=0 +meshes/lightmap_texel_size=0.1 +skins/use_named_skins=true +external_files/store_in_subdir=false +animation/import=true +animation/fps=15 +animation/filter_script="" +animation/storage=false +animation/keep_custom_tracks=false +animation/optimizer/enabled=true +animation/optimizer/max_linear_error=0.05 +animation/optimizer/max_angular_error=0.01 +animation/optimizer/max_angle=22 +animation/optimizer/remove_unused_tracks=true +animation/clips/amount=0 +animation/clip_1/name="" +animation/clip_1/start_frame=0 +animation/clip_1/end_frame=0 +animation/clip_1/loops=false +animation/clip_2/name="" +animation/clip_2/start_frame=0 +animation/clip_2/end_frame=0 +animation/clip_2/loops=false +animation/clip_3/name="" +animation/clip_3/start_frame=0 +animation/clip_3/end_frame=0 +animation/clip_3/loops=false +animation/clip_4/name="" +animation/clip_4/start_frame=0 +animation/clip_4/end_frame=0 +animation/clip_4/loops=false +animation/clip_5/name="" +animation/clip_5/start_frame=0 +animation/clip_5/end_frame=0 +animation/clip_5/loops=false +animation/clip_6/name="" +animation/clip_6/start_frame=0 +animation/clip_6/end_frame=0 +animation/clip_6/loops=false +animation/clip_7/name="" +animation/clip_7/start_frame=0 +animation/clip_7/end_frame=0 +animation/clip_7/loops=false +animation/clip_8/name="" +animation/clip_8/start_frame=0 +animation/clip_8/end_frame=0 +animation/clip_8/loops=false +animation/clip_9/name="" +animation/clip_9/start_frame=0 +animation/clip_9/end_frame=0 +animation/clip_9/loops=false +animation/clip_10/name="" +animation/clip_10/start_frame=0 +animation/clip_10/end_frame=0 +animation/clip_10/loops=false +animation/clip_11/name="" +animation/clip_11/start_frame=0 +animation/clip_11/end_frame=0 +animation/clip_11/loops=false +animation/clip_12/name="" +animation/clip_12/start_frame=0 +animation/clip_12/end_frame=0 +animation/clip_12/loops=false +animation/clip_13/name="" +animation/clip_13/start_frame=0 +animation/clip_13/end_frame=0 +animation/clip_13/loops=false +animation/clip_14/name="" +animation/clip_14/start_frame=0 +animation/clip_14/end_frame=0 +animation/clip_14/loops=false +animation/clip_15/name="" +animation/clip_15/start_frame=0 +animation/clip_15/end_frame=0 +animation/clip_15/loops=false +animation/clip_16/name="" +animation/clip_16/start_frame=0 +animation/clip_16/end_frame=0 +animation/clip_16/loops=false +animation/clip_17/name="" +animation/clip_17/start_frame=0 +animation/clip_17/end_frame=0 +animation/clip_17/loops=false +animation/clip_18/name="" +animation/clip_18/start_frame=0 +animation/clip_18/end_frame=0 +animation/clip_18/loops=false +animation/clip_19/name="" +animation/clip_19/start_frame=0 +animation/clip_19/end_frame=0 +animation/clip_19/loops=false +animation/clip_20/name="" +animation/clip_20/start_frame=0 +animation/clip_20/end_frame=0 +animation/clip_20/loops=false +animation/clip_21/name="" +animation/clip_21/start_frame=0 +animation/clip_21/end_frame=0 +animation/clip_21/loops=false +animation/clip_22/name="" +animation/clip_22/start_frame=0 +animation/clip_22/end_frame=0 +animation/clip_22/loops=false +animation/clip_23/name="" +animation/clip_23/start_frame=0 +animation/clip_23/end_frame=0 +animation/clip_23/loops=false +animation/clip_24/name="" +animation/clip_24/start_frame=0 +animation/clip_24/end_frame=0 +animation/clip_24/loops=false +animation/clip_25/name="" +animation/clip_25/start_frame=0 +animation/clip_25/end_frame=0 +animation/clip_25/loops=false +animation/clip_26/name="" +animation/clip_26/start_frame=0 +animation/clip_26/end_frame=0 +animation/clip_26/loops=false +animation/clip_27/name="" +animation/clip_27/start_frame=0 +animation/clip_27/end_frame=0 +animation/clip_27/loops=false +animation/clip_28/name="" +animation/clip_28/start_frame=0 +animation/clip_28/end_frame=0 +animation/clip_28/loops=false +animation/clip_29/name="" +animation/clip_29/start_frame=0 +animation/clip_29/end_frame=0 +animation/clip_29/loops=false +animation/clip_30/name="" +animation/clip_30/start_frame=0 +animation/clip_30/end_frame=0 +animation/clip_30/loops=false +animation/clip_31/name="" +animation/clip_31/start_frame=0 +animation/clip_31/end_frame=0 +animation/clip_31/loops=false +animation/clip_32/name="" +animation/clip_32/start_frame=0 +animation/clip_32/end_frame=0 +animation/clip_32/loops=false +animation/clip_33/name="" +animation/clip_33/start_frame=0 +animation/clip_33/end_frame=0 +animation/clip_33/loops=false +animation/clip_34/name="" +animation/clip_34/start_frame=0 +animation/clip_34/end_frame=0 +animation/clip_34/loops=false +animation/clip_35/name="" +animation/clip_35/start_frame=0 +animation/clip_35/end_frame=0 +animation/clip_35/loops=false +animation/clip_36/name="" +animation/clip_36/start_frame=0 +animation/clip_36/end_frame=0 +animation/clip_36/loops=false +animation/clip_37/name="" +animation/clip_37/start_frame=0 +animation/clip_37/end_frame=0 +animation/clip_37/loops=false +animation/clip_38/name="" +animation/clip_38/start_frame=0 +animation/clip_38/end_frame=0 +animation/clip_38/loops=false +animation/clip_39/name="" +animation/clip_39/start_frame=0 +animation/clip_39/end_frame=0 +animation/clip_39/loops=false +animation/clip_40/name="" +animation/clip_40/start_frame=0 +animation/clip_40/end_frame=0 +animation/clip_40/loops=false +animation/clip_41/name="" +animation/clip_41/start_frame=0 +animation/clip_41/end_frame=0 +animation/clip_41/loops=false +animation/clip_42/name="" +animation/clip_42/start_frame=0 +animation/clip_42/end_frame=0 +animation/clip_42/loops=false +animation/clip_43/name="" +animation/clip_43/start_frame=0 +animation/clip_43/end_frame=0 +animation/clip_43/loops=false +animation/clip_44/name="" +animation/clip_44/start_frame=0 +animation/clip_44/end_frame=0 +animation/clip_44/loops=false +animation/clip_45/name="" +animation/clip_45/start_frame=0 +animation/clip_45/end_frame=0 +animation/clip_45/loops=false +animation/clip_46/name="" +animation/clip_46/start_frame=0 +animation/clip_46/end_frame=0 +animation/clip_46/loops=false +animation/clip_47/name="" +animation/clip_47/start_frame=0 +animation/clip_47/end_frame=0 +animation/clip_47/loops=false +animation/clip_48/name="" +animation/clip_48/start_frame=0 +animation/clip_48/end_frame=0 +animation/clip_48/loops=false +animation/clip_49/name="" +animation/clip_49/start_frame=0 +animation/clip_49/end_frame=0 +animation/clip_49/loops=false +animation/clip_50/name="" +animation/clip_50/start_frame=0 +animation/clip_50/end_frame=0 +animation/clip_50/loops=false +animation/clip_51/name="" +animation/clip_51/start_frame=0 +animation/clip_51/end_frame=0 +animation/clip_51/loops=false +animation/clip_52/name="" +animation/clip_52/start_frame=0 +animation/clip_52/end_frame=0 +animation/clip_52/loops=false +animation/clip_53/name="" +animation/clip_53/start_frame=0 +animation/clip_53/end_frame=0 +animation/clip_53/loops=false +animation/clip_54/name="" +animation/clip_54/start_frame=0 +animation/clip_54/end_frame=0 +animation/clip_54/loops=false +animation/clip_55/name="" +animation/clip_55/start_frame=0 +animation/clip_55/end_frame=0 +animation/clip_55/loops=false +animation/clip_56/name="" +animation/clip_56/start_frame=0 +animation/clip_56/end_frame=0 +animation/clip_56/loops=false +animation/clip_57/name="" +animation/clip_57/start_frame=0 +animation/clip_57/end_frame=0 +animation/clip_57/loops=false +animation/clip_58/name="" +animation/clip_58/start_frame=0 +animation/clip_58/end_frame=0 +animation/clip_58/loops=false +animation/clip_59/name="" +animation/clip_59/start_frame=0 +animation/clip_59/end_frame=0 +animation/clip_59/loops=false +animation/clip_60/name="" +animation/clip_60/start_frame=0 +animation/clip_60/end_frame=0 +animation/clip_60/loops=false +animation/clip_61/name="" +animation/clip_61/start_frame=0 +animation/clip_61/end_frame=0 +animation/clip_61/loops=false +animation/clip_62/name="" +animation/clip_62/start_frame=0 +animation/clip_62/end_frame=0 +animation/clip_62/loops=false +animation/clip_63/name="" +animation/clip_63/start_frame=0 +animation/clip_63/end_frame=0 +animation/clip_63/loops=false +animation/clip_64/name="" +animation/clip_64/start_frame=0 +animation/clip_64/end_frame=0 +animation/clip_64/loops=false +animation/clip_65/name="" +animation/clip_65/start_frame=0 +animation/clip_65/end_frame=0 +animation/clip_65/loops=false +animation/clip_66/name="" +animation/clip_66/start_frame=0 +animation/clip_66/end_frame=0 +animation/clip_66/loops=false +animation/clip_67/name="" +animation/clip_67/start_frame=0 +animation/clip_67/end_frame=0 +animation/clip_67/loops=false +animation/clip_68/name="" +animation/clip_68/start_frame=0 +animation/clip_68/end_frame=0 +animation/clip_68/loops=false +animation/clip_69/name="" +animation/clip_69/start_frame=0 +animation/clip_69/end_frame=0 +animation/clip_69/loops=false +animation/clip_70/name="" +animation/clip_70/start_frame=0 +animation/clip_70/end_frame=0 +animation/clip_70/loops=false +animation/clip_71/name="" +animation/clip_71/start_frame=0 +animation/clip_71/end_frame=0 +animation/clip_71/loops=false +animation/clip_72/name="" +animation/clip_72/start_frame=0 +animation/clip_72/end_frame=0 +animation/clip_72/loops=false +animation/clip_73/name="" +animation/clip_73/start_frame=0 +animation/clip_73/end_frame=0 +animation/clip_73/loops=false +animation/clip_74/name="" +animation/clip_74/start_frame=0 +animation/clip_74/end_frame=0 +animation/clip_74/loops=false +animation/clip_75/name="" +animation/clip_75/start_frame=0 +animation/clip_75/end_frame=0 +animation/clip_75/loops=false +animation/clip_76/name="" +animation/clip_76/start_frame=0 +animation/clip_76/end_frame=0 +animation/clip_76/loops=false +animation/clip_77/name="" +animation/clip_77/start_frame=0 +animation/clip_77/end_frame=0 +animation/clip_77/loops=false +animation/clip_78/name="" +animation/clip_78/start_frame=0 +animation/clip_78/end_frame=0 +animation/clip_78/loops=false +animation/clip_79/name="" +animation/clip_79/start_frame=0 +animation/clip_79/end_frame=0 +animation/clip_79/loops=false +animation/clip_80/name="" +animation/clip_80/start_frame=0 +animation/clip_80/end_frame=0 +animation/clip_80/loops=false +animation/clip_81/name="" +animation/clip_81/start_frame=0 +animation/clip_81/end_frame=0 +animation/clip_81/loops=false +animation/clip_82/name="" +animation/clip_82/start_frame=0 +animation/clip_82/end_frame=0 +animation/clip_82/loops=false +animation/clip_83/name="" +animation/clip_83/start_frame=0 +animation/clip_83/end_frame=0 +animation/clip_83/loops=false +animation/clip_84/name="" +animation/clip_84/start_frame=0 +animation/clip_84/end_frame=0 +animation/clip_84/loops=false +animation/clip_85/name="" +animation/clip_85/start_frame=0 +animation/clip_85/end_frame=0 +animation/clip_85/loops=false +animation/clip_86/name="" +animation/clip_86/start_frame=0 +animation/clip_86/end_frame=0 +animation/clip_86/loops=false +animation/clip_87/name="" +animation/clip_87/start_frame=0 +animation/clip_87/end_frame=0 +animation/clip_87/loops=false +animation/clip_88/name="" +animation/clip_88/start_frame=0 +animation/clip_88/end_frame=0 +animation/clip_88/loops=false +animation/clip_89/name="" +animation/clip_89/start_frame=0 +animation/clip_89/end_frame=0 +animation/clip_89/loops=false +animation/clip_90/name="" +animation/clip_90/start_frame=0 +animation/clip_90/end_frame=0 +animation/clip_90/loops=false +animation/clip_91/name="" +animation/clip_91/start_frame=0 +animation/clip_91/end_frame=0 +animation/clip_91/loops=false +animation/clip_92/name="" +animation/clip_92/start_frame=0 +animation/clip_92/end_frame=0 +animation/clip_92/loops=false +animation/clip_93/name="" +animation/clip_93/start_frame=0 +animation/clip_93/end_frame=0 +animation/clip_93/loops=false +animation/clip_94/name="" +animation/clip_94/start_frame=0 +animation/clip_94/end_frame=0 +animation/clip_94/loops=false +animation/clip_95/name="" +animation/clip_95/start_frame=0 +animation/clip_95/end_frame=0 +animation/clip_95/loops=false +animation/clip_96/name="" +animation/clip_96/start_frame=0 +animation/clip_96/end_frame=0 +animation/clip_96/loops=false +animation/clip_97/name="" +animation/clip_97/start_frame=0 +animation/clip_97/end_frame=0 +animation/clip_97/loops=false +animation/clip_98/name="" +animation/clip_98/start_frame=0 +animation/clip_98/end_frame=0 +animation/clip_98/loops=false +animation/clip_99/name="" +animation/clip_99/start_frame=0 +animation/clip_99/end_frame=0 +animation/clip_99/loops=false +animation/clip_100/name="" +animation/clip_100/start_frame=0 +animation/clip_100/end_frame=0 +animation/clip_100/loops=false +animation/clip_101/name="" +animation/clip_101/start_frame=0 +animation/clip_101/end_frame=0 +animation/clip_101/loops=false +animation/clip_102/name="" +animation/clip_102/start_frame=0 +animation/clip_102/end_frame=0 +animation/clip_102/loops=false +animation/clip_103/name="" +animation/clip_103/start_frame=0 +animation/clip_103/end_frame=0 +animation/clip_103/loops=false +animation/clip_104/name="" +animation/clip_104/start_frame=0 +animation/clip_104/end_frame=0 +animation/clip_104/loops=false +animation/clip_105/name="" +animation/clip_105/start_frame=0 +animation/clip_105/end_frame=0 +animation/clip_105/loops=false +animation/clip_106/name="" +animation/clip_106/start_frame=0 +animation/clip_106/end_frame=0 +animation/clip_106/loops=false +animation/clip_107/name="" +animation/clip_107/start_frame=0 +animation/clip_107/end_frame=0 +animation/clip_107/loops=false +animation/clip_108/name="" +animation/clip_108/start_frame=0 +animation/clip_108/end_frame=0 +animation/clip_108/loops=false +animation/clip_109/name="" +animation/clip_109/start_frame=0 +animation/clip_109/end_frame=0 +animation/clip_109/loops=false +animation/clip_110/name="" +animation/clip_110/start_frame=0 +animation/clip_110/end_frame=0 +animation/clip_110/loops=false +animation/clip_111/name="" +animation/clip_111/start_frame=0 +animation/clip_111/end_frame=0 +animation/clip_111/loops=false +animation/clip_112/name="" +animation/clip_112/start_frame=0 +animation/clip_112/end_frame=0 +animation/clip_112/loops=false +animation/clip_113/name="" +animation/clip_113/start_frame=0 +animation/clip_113/end_frame=0 +animation/clip_113/loops=false +animation/clip_114/name="" +animation/clip_114/start_frame=0 +animation/clip_114/end_frame=0 +animation/clip_114/loops=false +animation/clip_115/name="" +animation/clip_115/start_frame=0 +animation/clip_115/end_frame=0 +animation/clip_115/loops=false +animation/clip_116/name="" +animation/clip_116/start_frame=0 +animation/clip_116/end_frame=0 +animation/clip_116/loops=false +animation/clip_117/name="" +animation/clip_117/start_frame=0 +animation/clip_117/end_frame=0 +animation/clip_117/loops=false +animation/clip_118/name="" +animation/clip_118/start_frame=0 +animation/clip_118/end_frame=0 +animation/clip_118/loops=false +animation/clip_119/name="" +animation/clip_119/start_frame=0 +animation/clip_119/end_frame=0 +animation/clip_119/loops=false +animation/clip_120/name="" +animation/clip_120/start_frame=0 +animation/clip_120/end_frame=0 +animation/clip_120/loops=false +animation/clip_121/name="" +animation/clip_121/start_frame=0 +animation/clip_121/end_frame=0 +animation/clip_121/loops=false +animation/clip_122/name="" +animation/clip_122/start_frame=0 +animation/clip_122/end_frame=0 +animation/clip_122/loops=false +animation/clip_123/name="" +animation/clip_123/start_frame=0 +animation/clip_123/end_frame=0 +animation/clip_123/loops=false +animation/clip_124/name="" +animation/clip_124/start_frame=0 +animation/clip_124/end_frame=0 +animation/clip_124/loops=false +animation/clip_125/name="" +animation/clip_125/start_frame=0 +animation/clip_125/end_frame=0 +animation/clip_125/loops=false +animation/clip_126/name="" +animation/clip_126/start_frame=0 +animation/clip_126/end_frame=0 +animation/clip_126/loops=false +animation/clip_127/name="" +animation/clip_127/start_frame=0 +animation/clip_127/end_frame=0 +animation/clip_127/loops=false +animation/clip_128/name="" +animation/clip_128/start_frame=0 +animation/clip_128/end_frame=0 +animation/clip_128/loops=false +animation/clip_129/name="" +animation/clip_129/start_frame=0 +animation/clip_129/end_frame=0 +animation/clip_129/loops=false +animation/clip_130/name="" +animation/clip_130/start_frame=0 +animation/clip_130/end_frame=0 +animation/clip_130/loops=false +animation/clip_131/name="" +animation/clip_131/start_frame=0 +animation/clip_131/end_frame=0 +animation/clip_131/loops=false +animation/clip_132/name="" +animation/clip_132/start_frame=0 +animation/clip_132/end_frame=0 +animation/clip_132/loops=false +animation/clip_133/name="" +animation/clip_133/start_frame=0 +animation/clip_133/end_frame=0 +animation/clip_133/loops=false +animation/clip_134/name="" +animation/clip_134/start_frame=0 +animation/clip_134/end_frame=0 +animation/clip_134/loops=false +animation/clip_135/name="" +animation/clip_135/start_frame=0 +animation/clip_135/end_frame=0 +animation/clip_135/loops=false +animation/clip_136/name="" +animation/clip_136/start_frame=0 +animation/clip_136/end_frame=0 +animation/clip_136/loops=false +animation/clip_137/name="" +animation/clip_137/start_frame=0 +animation/clip_137/end_frame=0 +animation/clip_137/loops=false +animation/clip_138/name="" +animation/clip_138/start_frame=0 +animation/clip_138/end_frame=0 +animation/clip_138/loops=false +animation/clip_139/name="" +animation/clip_139/start_frame=0 +animation/clip_139/end_frame=0 +animation/clip_139/loops=false +animation/clip_140/name="" +animation/clip_140/start_frame=0 +animation/clip_140/end_frame=0 +animation/clip_140/loops=false +animation/clip_141/name="" +animation/clip_141/start_frame=0 +animation/clip_141/end_frame=0 +animation/clip_141/loops=false +animation/clip_142/name="" +animation/clip_142/start_frame=0 +animation/clip_142/end_frame=0 +animation/clip_142/loops=false +animation/clip_143/name="" +animation/clip_143/start_frame=0 +animation/clip_143/end_frame=0 +animation/clip_143/loops=false +animation/clip_144/name="" +animation/clip_144/start_frame=0 +animation/clip_144/end_frame=0 +animation/clip_144/loops=false +animation/clip_145/name="" +animation/clip_145/start_frame=0 +animation/clip_145/end_frame=0 +animation/clip_145/loops=false +animation/clip_146/name="" +animation/clip_146/start_frame=0 +animation/clip_146/end_frame=0 +animation/clip_146/loops=false +animation/clip_147/name="" +animation/clip_147/start_frame=0 +animation/clip_147/end_frame=0 +animation/clip_147/loops=false +animation/clip_148/name="" +animation/clip_148/start_frame=0 +animation/clip_148/end_frame=0 +animation/clip_148/loops=false +animation/clip_149/name="" +animation/clip_149/start_frame=0 +animation/clip_149/end_frame=0 +animation/clip_149/loops=false +animation/clip_150/name="" +animation/clip_150/start_frame=0 +animation/clip_150/end_frame=0 +animation/clip_150/loops=false +animation/clip_151/name="" +animation/clip_151/start_frame=0 +animation/clip_151/end_frame=0 +animation/clip_151/loops=false +animation/clip_152/name="" +animation/clip_152/start_frame=0 +animation/clip_152/end_frame=0 +animation/clip_152/loops=false +animation/clip_153/name="" +animation/clip_153/start_frame=0 +animation/clip_153/end_frame=0 +animation/clip_153/loops=false +animation/clip_154/name="" +animation/clip_154/start_frame=0 +animation/clip_154/end_frame=0 +animation/clip_154/loops=false +animation/clip_155/name="" +animation/clip_155/start_frame=0 +animation/clip_155/end_frame=0 +animation/clip_155/loops=false +animation/clip_156/name="" +animation/clip_156/start_frame=0 +animation/clip_156/end_frame=0 +animation/clip_156/loops=false +animation/clip_157/name="" +animation/clip_157/start_frame=0 +animation/clip_157/end_frame=0 +animation/clip_157/loops=false +animation/clip_158/name="" +animation/clip_158/start_frame=0 +animation/clip_158/end_frame=0 +animation/clip_158/loops=false +animation/clip_159/name="" +animation/clip_159/start_frame=0 +animation/clip_159/end_frame=0 +animation/clip_159/loops=false +animation/clip_160/name="" +animation/clip_160/start_frame=0 +animation/clip_160/end_frame=0 +animation/clip_160/loops=false +animation/clip_161/name="" +animation/clip_161/start_frame=0 +animation/clip_161/end_frame=0 +animation/clip_161/loops=false +animation/clip_162/name="" +animation/clip_162/start_frame=0 +animation/clip_162/end_frame=0 +animation/clip_162/loops=false +animation/clip_163/name="" +animation/clip_163/start_frame=0 +animation/clip_163/end_frame=0 +animation/clip_163/loops=false +animation/clip_164/name="" +animation/clip_164/start_frame=0 +animation/clip_164/end_frame=0 +animation/clip_164/loops=false +animation/clip_165/name="" +animation/clip_165/start_frame=0 +animation/clip_165/end_frame=0 +animation/clip_165/loops=false +animation/clip_166/name="" +animation/clip_166/start_frame=0 +animation/clip_166/end_frame=0 +animation/clip_166/loops=false +animation/clip_167/name="" +animation/clip_167/start_frame=0 +animation/clip_167/end_frame=0 +animation/clip_167/loops=false +animation/clip_168/name="" +animation/clip_168/start_frame=0 +animation/clip_168/end_frame=0 +animation/clip_168/loops=false +animation/clip_169/name="" +animation/clip_169/start_frame=0 +animation/clip_169/end_frame=0 +animation/clip_169/loops=false +animation/clip_170/name="" +animation/clip_170/start_frame=0 +animation/clip_170/end_frame=0 +animation/clip_170/loops=false +animation/clip_171/name="" +animation/clip_171/start_frame=0 +animation/clip_171/end_frame=0 +animation/clip_171/loops=false +animation/clip_172/name="" +animation/clip_172/start_frame=0 +animation/clip_172/end_frame=0 +animation/clip_172/loops=false +animation/clip_173/name="" +animation/clip_173/start_frame=0 +animation/clip_173/end_frame=0 +animation/clip_173/loops=false +animation/clip_174/name="" +animation/clip_174/start_frame=0 +animation/clip_174/end_frame=0 +animation/clip_174/loops=false +animation/clip_175/name="" +animation/clip_175/start_frame=0 +animation/clip_175/end_frame=0 +animation/clip_175/loops=false +animation/clip_176/name="" +animation/clip_176/start_frame=0 +animation/clip_176/end_frame=0 +animation/clip_176/loops=false +animation/clip_177/name="" +animation/clip_177/start_frame=0 +animation/clip_177/end_frame=0 +animation/clip_177/loops=false +animation/clip_178/name="" +animation/clip_178/start_frame=0 +animation/clip_178/end_frame=0 +animation/clip_178/loops=false +animation/clip_179/name="" +animation/clip_179/start_frame=0 +animation/clip_179/end_frame=0 +animation/clip_179/loops=false +animation/clip_180/name="" +animation/clip_180/start_frame=0 +animation/clip_180/end_frame=0 +animation/clip_180/loops=false +animation/clip_181/name="" +animation/clip_181/start_frame=0 +animation/clip_181/end_frame=0 +animation/clip_181/loops=false +animation/clip_182/name="" +animation/clip_182/start_frame=0 +animation/clip_182/end_frame=0 +animation/clip_182/loops=false +animation/clip_183/name="" +animation/clip_183/start_frame=0 +animation/clip_183/end_frame=0 +animation/clip_183/loops=false +animation/clip_184/name="" +animation/clip_184/start_frame=0 +animation/clip_184/end_frame=0 +animation/clip_184/loops=false +animation/clip_185/name="" +animation/clip_185/start_frame=0 +animation/clip_185/end_frame=0 +animation/clip_185/loops=false +animation/clip_186/name="" +animation/clip_186/start_frame=0 +animation/clip_186/end_frame=0 +animation/clip_186/loops=false +animation/clip_187/name="" +animation/clip_187/start_frame=0 +animation/clip_187/end_frame=0 +animation/clip_187/loops=false +animation/clip_188/name="" +animation/clip_188/start_frame=0 +animation/clip_188/end_frame=0 +animation/clip_188/loops=false +animation/clip_189/name="" +animation/clip_189/start_frame=0 +animation/clip_189/end_frame=0 +animation/clip_189/loops=false +animation/clip_190/name="" +animation/clip_190/start_frame=0 +animation/clip_190/end_frame=0 +animation/clip_190/loops=false +animation/clip_191/name="" +animation/clip_191/start_frame=0 +animation/clip_191/end_frame=0 +animation/clip_191/loops=false +animation/clip_192/name="" +animation/clip_192/start_frame=0 +animation/clip_192/end_frame=0 +animation/clip_192/loops=false +animation/clip_193/name="" +animation/clip_193/start_frame=0 +animation/clip_193/end_frame=0 +animation/clip_193/loops=false +animation/clip_194/name="" +animation/clip_194/start_frame=0 +animation/clip_194/end_frame=0 +animation/clip_194/loops=false +animation/clip_195/name="" +animation/clip_195/start_frame=0 +animation/clip_195/end_frame=0 +animation/clip_195/loops=false +animation/clip_196/name="" +animation/clip_196/start_frame=0 +animation/clip_196/end_frame=0 +animation/clip_196/loops=false +animation/clip_197/name="" +animation/clip_197/start_frame=0 +animation/clip_197/end_frame=0 +animation/clip_197/loops=false +animation/clip_198/name="" +animation/clip_198/start_frame=0 +animation/clip_198/end_frame=0 +animation/clip_198/loops=false +animation/clip_199/name="" +animation/clip_199/start_frame=0 +animation/clip_199/end_frame=0 +animation/clip_199/loops=false +animation/clip_200/name="" +animation/clip_200/start_frame=0 +animation/clip_200/end_frame=0 +animation/clip_200/loops=false +animation/clip_201/name="" +animation/clip_201/start_frame=0 +animation/clip_201/end_frame=0 +animation/clip_201/loops=false +animation/clip_202/name="" +animation/clip_202/start_frame=0 +animation/clip_202/end_frame=0 +animation/clip_202/loops=false +animation/clip_203/name="" +animation/clip_203/start_frame=0 +animation/clip_203/end_frame=0 +animation/clip_203/loops=false +animation/clip_204/name="" +animation/clip_204/start_frame=0 +animation/clip_204/end_frame=0 +animation/clip_204/loops=false +animation/clip_205/name="" +animation/clip_205/start_frame=0 +animation/clip_205/end_frame=0 +animation/clip_205/loops=false +animation/clip_206/name="" +animation/clip_206/start_frame=0 +animation/clip_206/end_frame=0 +animation/clip_206/loops=false +animation/clip_207/name="" +animation/clip_207/start_frame=0 +animation/clip_207/end_frame=0 +animation/clip_207/loops=false +animation/clip_208/name="" +animation/clip_208/start_frame=0 +animation/clip_208/end_frame=0 +animation/clip_208/loops=false +animation/clip_209/name="" +animation/clip_209/start_frame=0 +animation/clip_209/end_frame=0 +animation/clip_209/loops=false +animation/clip_210/name="" +animation/clip_210/start_frame=0 +animation/clip_210/end_frame=0 +animation/clip_210/loops=false +animation/clip_211/name="" +animation/clip_211/start_frame=0 +animation/clip_211/end_frame=0 +animation/clip_211/loops=false +animation/clip_212/name="" +animation/clip_212/start_frame=0 +animation/clip_212/end_frame=0 +animation/clip_212/loops=false +animation/clip_213/name="" +animation/clip_213/start_frame=0 +animation/clip_213/end_frame=0 +animation/clip_213/loops=false +animation/clip_214/name="" +animation/clip_214/start_frame=0 +animation/clip_214/end_frame=0 +animation/clip_214/loops=false +animation/clip_215/name="" +animation/clip_215/start_frame=0 +animation/clip_215/end_frame=0 +animation/clip_215/loops=false +animation/clip_216/name="" +animation/clip_216/start_frame=0 +animation/clip_216/end_frame=0 +animation/clip_216/loops=false +animation/clip_217/name="" +animation/clip_217/start_frame=0 +animation/clip_217/end_frame=0 +animation/clip_217/loops=false +animation/clip_218/name="" +animation/clip_218/start_frame=0 +animation/clip_218/end_frame=0 +animation/clip_218/loops=false +animation/clip_219/name="" +animation/clip_219/start_frame=0 +animation/clip_219/end_frame=0 +animation/clip_219/loops=false +animation/clip_220/name="" +animation/clip_220/start_frame=0 +animation/clip_220/end_frame=0 +animation/clip_220/loops=false +animation/clip_221/name="" +animation/clip_221/start_frame=0 +animation/clip_221/end_frame=0 +animation/clip_221/loops=false +animation/clip_222/name="" +animation/clip_222/start_frame=0 +animation/clip_222/end_frame=0 +animation/clip_222/loops=false +animation/clip_223/name="" +animation/clip_223/start_frame=0 +animation/clip_223/end_frame=0 +animation/clip_223/loops=false +animation/clip_224/name="" +animation/clip_224/start_frame=0 +animation/clip_224/end_frame=0 +animation/clip_224/loops=false +animation/clip_225/name="" +animation/clip_225/start_frame=0 +animation/clip_225/end_frame=0 +animation/clip_225/loops=false +animation/clip_226/name="" +animation/clip_226/start_frame=0 +animation/clip_226/end_frame=0 +animation/clip_226/loops=false +animation/clip_227/name="" +animation/clip_227/start_frame=0 +animation/clip_227/end_frame=0 +animation/clip_227/loops=false +animation/clip_228/name="" +animation/clip_228/start_frame=0 +animation/clip_228/end_frame=0 +animation/clip_228/loops=false +animation/clip_229/name="" +animation/clip_229/start_frame=0 +animation/clip_229/end_frame=0 +animation/clip_229/loops=false +animation/clip_230/name="" +animation/clip_230/start_frame=0 +animation/clip_230/end_frame=0 +animation/clip_230/loops=false +animation/clip_231/name="" +animation/clip_231/start_frame=0 +animation/clip_231/end_frame=0 +animation/clip_231/loops=false +animation/clip_232/name="" +animation/clip_232/start_frame=0 +animation/clip_232/end_frame=0 +animation/clip_232/loops=false +animation/clip_233/name="" +animation/clip_233/start_frame=0 +animation/clip_233/end_frame=0 +animation/clip_233/loops=false +animation/clip_234/name="" +animation/clip_234/start_frame=0 +animation/clip_234/end_frame=0 +animation/clip_234/loops=false +animation/clip_235/name="" +animation/clip_235/start_frame=0 +animation/clip_235/end_frame=0 +animation/clip_235/loops=false +animation/clip_236/name="" +animation/clip_236/start_frame=0 +animation/clip_236/end_frame=0 +animation/clip_236/loops=false +animation/clip_237/name="" +animation/clip_237/start_frame=0 +animation/clip_237/end_frame=0 +animation/clip_237/loops=false +animation/clip_238/name="" +animation/clip_238/start_frame=0 +animation/clip_238/end_frame=0 +animation/clip_238/loops=false +animation/clip_239/name="" +animation/clip_239/start_frame=0 +animation/clip_239/end_frame=0 +animation/clip_239/loops=false +animation/clip_240/name="" +animation/clip_240/start_frame=0 +animation/clip_240/end_frame=0 +animation/clip_240/loops=false +animation/clip_241/name="" +animation/clip_241/start_frame=0 +animation/clip_241/end_frame=0 +animation/clip_241/loops=false +animation/clip_242/name="" +animation/clip_242/start_frame=0 +animation/clip_242/end_frame=0 +animation/clip_242/loops=false +animation/clip_243/name="" +animation/clip_243/start_frame=0 +animation/clip_243/end_frame=0 +animation/clip_243/loops=false +animation/clip_244/name="" +animation/clip_244/start_frame=0 +animation/clip_244/end_frame=0 +animation/clip_244/loops=false +animation/clip_245/name="" +animation/clip_245/start_frame=0 +animation/clip_245/end_frame=0 +animation/clip_245/loops=false +animation/clip_246/name="" +animation/clip_246/start_frame=0 +animation/clip_246/end_frame=0 +animation/clip_246/loops=false +animation/clip_247/name="" +animation/clip_247/start_frame=0 +animation/clip_247/end_frame=0 +animation/clip_247/loops=false +animation/clip_248/name="" +animation/clip_248/start_frame=0 +animation/clip_248/end_frame=0 +animation/clip_248/loops=false +animation/clip_249/name="" +animation/clip_249/start_frame=0 +animation/clip_249/end_frame=0 +animation/clip_249/loops=false +animation/clip_250/name="" +animation/clip_250/start_frame=0 +animation/clip_250/end_frame=0 +animation/clip_250/loops=false +animation/clip_251/name="" +animation/clip_251/start_frame=0 +animation/clip_251/end_frame=0 +animation/clip_251/loops=false +animation/clip_252/name="" +animation/clip_252/start_frame=0 +animation/clip_252/end_frame=0 +animation/clip_252/loops=false +animation/clip_253/name="" +animation/clip_253/start_frame=0 +animation/clip_253/end_frame=0 +animation/clip_253/loops=false +animation/clip_254/name="" +animation/clip_254/start_frame=0 +animation/clip_254/end_frame=0 +animation/clip_254/loops=false +animation/clip_255/name="" +animation/clip_255/start_frame=0 +animation/clip_255/end_frame=0 +animation/clip_255/loops=false +animation/clip_256/name="" +animation/clip_256/start_frame=0 +animation/clip_256/end_frame=0 +animation/clip_256/loops=false diff --git a/scripts/import/car_import.gd b/scripts/import/car_import.gd new file mode 100644 index 0000000..b926457 --- /dev/null +++ b/scripts/import/car_import.gd @@ -0,0 +1,20 @@ +tool +extends EditorScenePostImport + +func post_import(scene): + var queue = [scene] + while queue.size() > 0: + var item = queue.pop_front() + if item is MeshInstance: + if item.name == "car_base": + var shape = item.mesh.create_convex_shape() + var cs = CollisionShape.new() + cs.shape = shape + cs.name = item.name + "_shape" + scene.add_child(cs) + cs.owner = scene + print("generated collision shape") + break + for e in item.get_children(): + queue.push_back(e) + return scene diff --git a/scripts/import/import_clothes.gd b/scripts/import/import_clothes.gd new file mode 100644 index 0000000..5ce88d7 --- /dev/null +++ b/scripts/import/import_clothes.gd @@ -0,0 +1,14 @@ +tool +extends EditorScenePostImport + +func post_import(scene): + var queue = [scene] + var d = "res://scenes/clothes/" + while queue.size() > 0: + var g = queue.pop_front() + if g is MeshInstance: + ResourceSaver.save(d + g.name + ".mesh", g.mesh) + print("Saving " + d + g.name + ".mesh") + for e in g.get_children(): + queue.push_back(e) + return scene diff --git a/scripts/modules/character_hurtboxes.gd b/scripts/modules/character_hurtboxes.gd new file mode 100644 index 0000000..f31b4a5 --- /dev/null +++ b/scripts/modules/character_hurtboxes.gd @@ -0,0 +1,74 @@ +extends Node + +var raycast_queue = [] +var blood = preload("res://scenes/decals/blood.tscn") +var blood_decal = preload("res://scenes/decals/blood1-decal.gltf") +var rnd +func _ready(): + var root = get_parent() + var queue = [root] + var hurtboxes = [] + while queue.size() > 0: + var item = queue.pop_front() + if item is Area && item.name.ends_with("_hurt"): + hurtboxes.push_back(item) + for e in item.get_children(): + queue.push_back(e) + root.set_meta("hurtboxes", hurtboxes) + for e in hurtboxes: + e.connect("area_entered", self, "area_hit", [e]) + rnd = RandomNumberGenerator.new() + rnd.randomize() +func area_hit(area, e): + if area.is_in_group("weapon_hit"): + print("HIT") + var bi = blood.instance() + var d = area.global_transform.origin.linear_interpolate(e.global_transform.origin, 0.5) + e.add_child(bi) + bi.global_transform.origin = d + bi.emitting = true + var dcount = 2 + rnd.randi() % 5 + var org = d + raycast_queue.push_back(d) + print(dcount) + for rd in range(dcount): + var offt = Vector3() + while offt.length() < 0.05: + offt += Vector3(rnd.randf() * 0.3, 0, rnd.randf() * 0.3) + var xoff = offt.normalized() * 0.04 + xoff.y = 0 + offt.y = 0 + org += xoff + offt + raycast_queue.push_back(org) + yield(get_tree().create_timer(8), "timeout") + bi.queue_free() + +func _physics_process(delta): + var root = get_parent() + var space_state: PhysicsDirectSpaceState = root.get_world().direct_space_state + var offsets = [Vector3(0, -2, 0)] + var cam = get_viewport().get_camera() + if !cam.has_meta("player"): + return + var player = cam.get_meta("player") + while raycast_queue.size() > 0: + var item = raycast_queue.pop_front() + var a = item + for boff in offsets: + var b = a + boff + var result = {} + if root is PhysicsBody: + result = space_state.intersect_ray(a, b, [root, player]) + else: + result = space_state.intersect_ray(a, b) + if result.has("collider"): + var body = result.collider + var normal = result.normal + var position = result.position + var decal = blood_decal.instance() + decal.add_to_group("blood") + body.add_child(decal) + decal.global_transform.origin = position + var scale = 0.5 + rnd.randf() * 2.0 + var rot = PI * 2.0 * rnd.randf() + decal.global_transform.basis = Basis(normal).scaled(Vector3(scale, 1.0, scale)).rotated(normal, rot) diff --git a/scripts/modules/cmdq.gd b/scripts/modules/cmdq.gd new file mode 100644 index 0000000..8e045d8 --- /dev/null +++ b/scripts/modules/cmdq.gd @@ -0,0 +1,236 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. + +var animtree: AnimationTree +var root_motion_track +func _ready(): + process_priority = 0 + +func _physics_process(delta): + var root = get_parent() + var orientation: Transform + if root.has_meta("orientation"): + orientation = root.get_meta("orientation") + if !animtree: + animtree = root.get_meta("animation_tree") + if animtree: + root_motion_track = animtree.root_motion_track + else: + return + if characters.handle_cmdq(root): + return + var skel = root.get_meta("skeleton") + if !skel: + return + if root.has_meta("cmdqueue"): + var cmds = root.get_meta("cmdqueue") + var cmd = cmds.pop_front() + match cmd[0]: +# "disable_physics": +# var owners = get_shape_owners() +# for e in owners: +# shape_owner_set_disabled(e, true) +# $CollisionShape.disabled = true + "vehicle_mode_on": + if root.has_meta("vehicle"): + var v = root.get_meta("vehicle") + assert(v is VehicleBody) + if root is PhysicsBody: + root.add_collision_exception_with(v) + if v is PhysicsBody: + v.add_collision_exception_with(root) + "vehicle_mode_off": + if root.has_meta("vehicle"): + var v = root.get_meta("vehicle") + assert(v is VehicleBody) + if root is PhysicsBody: + root.remove_collision_exception_with(v) + if v is PhysicsBody: + v.remove_collision_exception_with(root) + root.remove_meta("seat") + root.remove_meta("vehicle") + root.remove_meta("orig_parent") + v.remove_meta("driver") + + "jumpto": + root.global_transform = cmd[1] + orientation.basis = root.global_transform.basis + if root.has_meta("vehicle"): + var v = root.get_meta("vehicle") + var et = root.global_transform + var vt = v.global_transform + var offset = vt.affine_inverse() * et + root.set_meta("vehicle_offset", offset) + root.set_meta("orientation", orientation) +# "jump_to_obj": +# var obj = cmd[1] +# root.global_transform = obj.global_transform +# orientation.basis = root.global_transform.basis +# root.set_meta("orientation", orientation) +# "jump_to_obj_rot": +# var obj = cmd[1] +# var xform = Transform() +# xform.origin = obj.global_transform.origin +# xform.basis = obj.global_transform.basis.rotated(Vector3(0, 1, 0), PI) +# root.global_transform = xform +# orientation.basis = root.global_transform.basis +# root.set_meta("orientation", orientation) + +# "anim_state": +# characters.animation_node_travel(root, cmd[1]) + "parent_to_vehicle": + pass +# if has_meta("vehicle"): +# var v = get_meta("vehicle") +# var et = global_transform.origin +# var vt = v.global_transform.origin +# var offset = et - vt +# set_meta("vehicle_offset", offset) + "col_ex_add", "add_col_exception": + root.add_collision_exception_with(cmd[1]) + "col_ex_rm", "remove_col_exception": + root.remove_collision_exception_with(cmd[1]) + "until_end": + var check = cmd[1] + var cur = characters.get_animation_node(root) + var p = animtree["parameters/state/playback"].get_current_play_position() + var l = animtree["parameters/state/playback"].get_current_length() + if check == cur && p < l - 0.05: + cmds.push_front(["until_end", cmd[1]]) +# "delay": +# var d = cmd[1] +# if d > 0: +# d = d - 1 +# cmds.push_front(["delay", d]) + "disable_collision": + if root is PhysicsBody: + var mask = root.collision_mask + root.set_meta("orig_mask", mask) + root.collision_mask = 0 + root.set_meta("physics", false) + animtree.root_motion_track = "" + "enable_collision": + if root is PhysicsBody: + var mask = root.get_meta("orig_mask") + root.collision_mask = mask + root.remove_meta("orig_mask") + root.set_meta("physics", true) + animtree.root_motion_track = root_motion_track + "show_marker": + if skel.has_node(cmd[1]): + skel.get_node(cmd[1]).show() + "hide_marker": + if skel.has_node(cmd[1]): + skel.get_node(cmd[1]).hide() + "register_marker": + if skel.has_node(cmd[2]): + markers.init_marker(cmd[1], skel.get_node(cmd[2]), cmd[3]) +# "anim_param": +# animtree["parameters/" + cmd[1]] = cmd[2] + "equip": + inventory.equip(skel.get_node(cmd[1]), cmd[2]) + "walkto": + if !root.has_meta("cmdq_walk"): + root.set_meta("cmdq_walk", true) + var fwd_probe = characters.forward_probe(root, 0.5, 0.05, 1.9, 0.2) + var climb = false + if fwd_probe < 0.1: + if !characters.get_animation_node(root) == "climb1": + characters.animation_node_travel(root, "locomotion"); + climb = false +# print("NO climb!!!") + elif fwd_probe < 1.2: +# print("trying climb!!!") + climb = true + characters.set_walk_speed(root, 0.5, 0) +# animtree["parameters/state/locomotion/loc/blend_position"].x = 0.5 +# animtree["parameters/state/locomotion/loc/blend_position"].y = 0 + var gt: Transform = root.global_transform + var target: = Vector3() + if cmd[1] is Spatial: + target = cmd[1].global_transform.origin + else: + target = cmd[1] + target.y = root.global_transform.origin.y + if gt.origin != target: + gt = gt.looking_at(target, Vector3.UP) + gt.origin = Vector3() +# print("target: ", target) + var timeout = cmd[3] + timeout -= delta + orientation.basis = gt.basis + root.set_meta("orientation", orientation) + root.global_transform.basis = gt.basis + var d = root.global_transform.origin.distance_to(target) + if climb: + var cmd_new = ["walkto", cmd[1], cmd[2], timeout + delta] + cmds.push_front(cmd_new) + cmd_new = ["climb", "1"] + cmds.push_front(cmd_new) + elif timeout >= 0.0 && d > cmd[2]: + var cmd_new = ["walkto", cmd[1], cmd[2], timeout] + cmds.push_front(cmd_new) + elif d > cmd[2]: + var dir = target - root.global_transform.origin + dir = dir.normalized() * (d - cmd[2]) + root.global_transform.origin += dir + characters.set_walk_speed(root, 0.0, 0.0) +# animtree["parameters/state/locomotion/loc/blend_position"].x = 0.0 + root.remove_meta("cmdq_walk") + else: + characters.set_walk_speed(root, 0.0, 0.0) +# animtree["parameters/state/locomotion/loc/blend_position"].x = 0.0 + root.remove_meta("cmdq_walk") +# print(d, " ", timeout, " ", gt) + "set_other": + var cmdq_other = [] + if cmd[1].has_meta("cmdqueue"): + cmdq_other = cmd[1].get_meta("cmdqueue") + cmdq_other.push_back(cmd[2]) + cmd[1].set_meta("cmdqueue", cmdq_other) + "wait_for_completion": + if !cmd[1].has_meta("complete_" + cmd[2]): + cmds.push_front([cmd[0], cmd[1], cmd[2]]) + cmd[1].remove_meta("complete_" + cmd[2]) + "complete": + root.set_meta("complete_" + cmd[1], true) + + "set_transforms": + var master_xform: Transform = cmd[1].global_transform + var slave_xform = master_xform + slave_xform.basis = master_xform.basis.rotated(Vector3.UP, PI) + slave_xform.origin = master_xform.origin - master_xform.basis[2] * 0.375 + var slave_orientation = slave_xform + slave_orientation.origin = Vector3() + cmd[2].set_meta("orientation", slave_orientation) + cmd[2].global_transform = slave_xform + "climb": + if !root.has_meta("last_climb"): + characters.animation_node_travel(root, "climb" + cmd[1]) + root.set_meta("last_climb", "climb" + cmd[1]) + elif root.get_meta("last_climb") == "climb" + cmd[1]: + characters.animation_node_travel(root, "climb" + cmd[1] + "a") + root.set_meta("last_climb", "climb" + cmd[1] + "a") + else: + characters.animation_node_travel(root, "climb" + cmd[1]) + root.set_meta("last_climb", "climb" + cmd[1]) + cmds.push_front(["climb_wait", cmd[1]]) + root.set_meta("climb", true) + "climb_wait": + var cur = characters.get_animation_node(root) + if cur.begins_with("climb" + cmd[1]): + cmds.push_front(["climb_wait", cmd[1]]) + else: + root.remove_meta("climb") + + if cmds.size() > 0: + root.set_meta("cmdqueue", cmds) + else: + root.remove_meta("cmdqueue") diff --git a/scripts/modules/npc_marker.gd b/scripts/modules/npc_marker.gd new file mode 100644 index 0000000..08f2984 --- /dev/null +++ b/scripts/modules/npc_marker.gd @@ -0,0 +1,38 @@ +extends Node + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + var root = get_parent() + var cmdq = [] + if root.has_meta("cmdqueue"): + cmdq = root.get_meta("cmdqueue") + cmdq.push_back(["register_marker", self, "head/marker_talk", {"method": "talk"}]) + cmdq.push_back(["register_marker", self, "head/marker_hips_action", {"method": "action", "action": "hips_action"}]) + cmdq.push_back(["show_marker", "head/marker_talk"]) + cmdq.push_back(["show_marker", "head/marker_hips_action"]) + root.set_meta("cmdqueue", cmdq) + +func talk(data): + print("TALK") +# var root = get_parent() +# root.set_meta("req_state", "TALK") +# scenario.emit_signal("talk", root) + +func marker_hips_action(data): + print("ACTION") + +func action(data): + return +# var root = get_parent() +# root.set_meta("req_state", "ACTION") +# if root.is_in_group("nuns"): +# scenario.nun_action(root) +# else: +# if data.action == "hips_action": +# print(data) +# marker_hips_action(data) diff --git a/scripts/modules/npc_nun.gd b/scripts/modules/npc_nun.gd new file mode 100644 index 0000000..c4e5adf --- /dev/null +++ b/scripts/modules/npc_nun.gd @@ -0,0 +1,142 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +var root +var skel +var hair_skel + +var garments = ["female-panties1", "female-bra1", "female-shirt1"] +var garments_head = ["female-cap"] +var basedir = "res://scenes/clothes/" +var material = preload("res://scenes/clothes/nun-clothes.material") +#var tween: Tween +#enum { +# IDLE, +# WALKING +# PRAYING, +# PRAYING_STARTLED, +# ACTION +#} +#var state = PRAYING +func _ready(): + root = get_parent() + root.add_to_group("nuns") +# tween = Tween.new() +# tween.playback_process_mode = Tween.TWEEN_PROCESS_PHYSICS +# tween.process_priority = 30 +# add_child(tween) +# call_deferred("setup_markers") + characters.call_deferred("setup_garments", root, garments, garments_head, material) +#func setup_markers(): +# var cmdq = [] +# if root.has_meta("cmdqueue"): +# cmdq = root.get_meta("cmdqueue") +# cmdq.push_back(["hide_marker", "head/marker_talk"]) +# cmdq.push_back(["hide_marker", "head/marker_hips_action"]) +# cmdq.push_back(["register_marker", self, "hips/marker_dagger_sacrifice", +# { +# "method": "dagger_sacrifice" +# } +# ]) +# cmdq.push_back(["hide_marker", "hips/marker_dagger_sacrifice"]) +# cmdq.push_back(["anim_state", "pray"]) +# root.set_meta("cmdqueue", cmdq) +# state = PRAYING +#var state_changed = 0.0 +#func set_orientation(v: Transform): +# root.set_meta("orientation", v) +#func set_basis_dir(dir: Vector3): +# var xdir: Vector3 = dir +# xdir.y = 0 +# var d0 = xdir.cross(Vector3.UP) +# var d1 = Vector3.UP +# var d2 = xdir +# var basis = Basis(d0, d1, -d2) +# var orientation = root.get_meta("orientation") +# orientation.basis = basis +# root.set_meta("orientation", orientation) +#func _process(delta): +# if !skel: +# skel = root.get_meta("skeleton") +# var space: PhysicsDirectSpaceState = root.getworld().get_direct_space_state() +# var p = get_viewport().get_camera().get_meta("player").global_transform +# var d = p.origin.distance_to(root.global_transform.origin) +# var px = p.origin +# px.y = root.global_transform.origin.y +# var pdir = px - root.global_transform.origin +# var fdir = -root.global_transform.basis[2] +# fdir.y = 0 +# pdir.y = 0 +# pdir = pdir.normalized() +# fdir = fdir.normalized() +# var cmdq = [] +# if root.has_meta("cmdqueue"): +# cmdq = root.get_meta("cmdqueue") +# state_changed -= delta +# state_changed = clamp(state_changed, 0.0, 10.0) +# match state: +# PRAYING: +# if root.has_meta("req_state") && root.get_meta("req_state") in ["TALK", "ACTION"]: +# state = ACTION +# cmdq.push_back(["anim_state", "locomotion"]) +# root.set_meta("cmdqueue", cmdq) +# elif d < 2.0 && state_changed <= 0.0: +# if pdir.angle_to(fdir) > PI / 8.0: +# tween.interpolate_method(self, "set_basis_dir", fdir, pdir, 0.3 + randf() * 0.6, Tween.TRANS_CUBIC) +# tween.start() +# state_changed = 0.5 +# else: +# cmdq.push_back(["anim_state", "pray-startled"]) +## cmdq.push_back(["anim_state", "locomotion"]) +## cmdq.push_back(["anim_param", "state/locomotion/loc/blend_position", Vector2(0.5, 0)]) +# root.set_meta("cmdqueue", cmdq) +# state = PRAYING_STARTLED +# state_changed = 3.0 +# PRAYING_STARTLED: +# if root.get_meta("req_state") in ["TALK", "ACTION"]: +# state = ACTION +# cmdq.push_back(["anim_state", "locomotion"]) +# root.set_meta("cmdqueue", cmdq) +# elif d > 4.0 && state_changed <= 0.0: +# cmdq.push_back(["anim_state", "pray"]) +# root.set_meta("cmdqueue", cmdq) +# state = PRAYING +# state_changed = 4.0 +# else: +# var f = root.global_transform.origin + Vector3.UP * 0.5 +# var t = f + root.global_transform.basis[2] * 0.22 +# var result = space.intersect_ray(f, t, [root]) +# if result.has("collider"): +# cmdq.push_back(["anim_state", "pray"]) +# root.set_meta("cmdqueue", cmdq) +# state = PRAYING +# state_changed = 2.0 +# ACTION: +# if !root.has_meta("req_state"): +# state = PRAYING +# +## elif d <= 4.0 || state_changed > 0.0: +## tween.interpolate_method(self, "set_orientation", root.get_meta("orientation"), root.get_meta("orientation").looking_at(px, Vector3(0, 1, 0)), 0.3 + randf() * 0.6, Tween.TRANS_CUBIC) +## tween.start() +## var sacrifice_marker = skel.get_node("hips/marker_dagger_sacrifice") +## if sacrifice_marker.visible && !inventory.items.s_dagger: +## sacrifice_marker.hide() +## elif !sacrifice_marker.visible && inventory.items.s_dagger: +## sacrifice_marker.show() +# +##func dagger_sacrifice(data): +## print("dagger sacrifice") +## var cmdq = [] +## var other = group_manager.player +## if other.has_meta("cmdqueue"): +## cmdq = other.get_meta("cmdqueue") +## cmdq.push_back(["anim_param", "blade_right/blend_amount", 1.0]) +## cmdq.push_back(["equip", "wrist_r/weapon_right", "s_dagger"]) +## other.set_meta("cmdqueue", cmdq) +## group_manager.submit_player_npc_event_arot(root, "sacrificed-a", root, "sacrificed", root) diff --git a/scripts/modules/npc_sacrifice.gd b/scripts/modules/npc_sacrifice.gd new file mode 100644 index 0000000..09e44ca --- /dev/null +++ b/scripts/modules/npc_sacrifice.gd @@ -0,0 +1,53 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +var root +var skel +var garments = ["female-panties1", "female-bra1"] +var basedir = "res://scenes/clothes/" +var material = preload("res://scenes/clothes/cloth.material") +func _ready(): + root = get_parent() + root.add_to_group("sacrifice") + call_deferred("setup_markers") + characters.call_deferred("setup_garments", root, garments, [], material) + +func setup_markers(): + var cmdq = [] + if root.has_meta("cmdqueue"): + cmdq = root.get_meta("cmdqueue") + cmdq.push_back(["hide_marker", "head/marker_talk"]) + cmdq.push_back(["hide_marker", "head/marker_hips_action"]) +# cmdq.push_back(["register_marker", self, "hips/marker_dagger_sacrifice", +# { +# "method": "dagger_sacrifice" +# } +# ]) +# cmdq.push_back(["hide_marker", "hips/marker_dagger_sacrifice"]) + cmdq.push_back(["anim_state", "sacrifice"]) + root.set_meta("cmdqueue", cmdq) +func _process(delta): + if !skel: + skel = root.get_meta("skeleton") +# var sacrifice_marker = skel.get_node("hips/marker_dagger_sacrifice") +# if sacrifice_marker.visible && !inventory.items.s_dagger: +# sacrifice_marker.hide() +# elif !sacrifice_marker.visible && inventory.items.s_dagger: +# sacrifice_marker.show() + +#func dagger_sacrifice(data): +# print("dagger sacrifice") +# var cmdq = [] +# var other = get_viewport().get_camera().get_meta("player") +# if other.has_meta("cmdqueue"): +# cmdq = other.get_meta("cmdqueue") +# cmdq.push_back(["anim_param", "blade_right/blend_amount", 1.0]) +# cmdq.push_back(["equip", "wrist_r/weapon_right", "s_dagger"]) +# other.set_meta("cmdqueue", cmdq) +# group_manager.submit_player_npc_event_arot(root, "sacrificed-a", root, "sacrificed", root) diff --git a/scripts/modules/npc_student.gd b/scripts/modules/npc_student.gd new file mode 100644 index 0000000..0266a48 --- /dev/null +++ b/scripts/modules/npc_student.gd @@ -0,0 +1,145 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +var root +var skel +var hair_skel + +var garments_female_lingerie = ["female-panties1", "female-bra1"] +var garments_head_female = [] +var garments_male_lingerie = ["male-panties1"] +var garments_head_male = [] +var garments_female_main = ["female-shirt_skirt1", "female-skirt1"] +var garments_male_main = ["male-pants1", "male-shirt1", "male-shoes1"] +var basedir = "res://scenes/clothes/" +var material_female = preload("res://scenes/clothes/nun-clothes.material") +var material_male = preload("res://scenes/clothes/clothes-male.material") +#var tween: Tween +#enum { +# IDLE, +# WALKING, +# SLEEPING +#} +#var state = SLEEPING +func _ready(): + name = "student_ai" + root = get_parent() + root.add_to_group("students") + root.add_to_group("student") +# tween = Tween.new() +# tween.playback_process_mode = Tween.TWEEN_PROCESS_PHYSICS +# tween.process_priority = 30 +# add_child(tween) +# call_deferred("setup_markers") + var character_data = root.get_meta("character_data") + if character_data.sex == "female": + var g = garments_female_lingerie + var h = [] + g += garments_female_main + h += garments_head_female + characters.call_deferred("setup_garments", root, g, h, material_female) + else: + var g = garments_male_lingerie + var h = [] + g += garments_male_main + h += garments_head_male + characters.call_deferred("setup_garments", root, g, h, material_male) + +#func setup_markers(): +# var cmdq = [] +# if root.has_meta("cmdqueue"): +# cmdq = root.get_meta("cmdqueue") +# if root.has_meta("saved_anim_state"): +# var st = root.get_meta("saved_anim_state") +# cmdq.push_back(["anim_state", st]) +# root.set_meta("cmdqueue", cmdq) +# root.remove_meta("saved_anim_state") +# if st == "sleeping": +# state = SLEEPING +# else: +# state = IDLE +# elif scenario.period > scenario.EARLY_MORNING: +# cmdq.push_back(["anim_state", "locomotion"]) +# root.set_meta("cmdqueue", cmdq) +# else: +# cmdq.push_back(["anim_state", "sleeping"]) +# root.set_meta("cmdqueue", cmdq) +# state = SLEEPING +#var state_changed = 0.0 +#func set_basis_dir(dir: Vector3): +# var xdir: Vector3 = dir +# xdir.y = 0 +# var d0 = xdir.cross(Vector3.UP) +# var d1 = Vector3.UP +# var d2 = xdir +# var basis = Basis(d0, d1, -d2) +# var orientation = root.get_meta("orientation") +# orientation.basis = basis +# root.set_meta("orientation", orientation) +#func _process(delta): +# if !skel: +# skel = root.get_meta("skeleton") +# var space: PhysicsDirectSpaceState = root.get_world().get_direct_space_state() +# var p = get_viewport().get_camera().get_meta("player").global_transform +# var d = p.origin.distance_to(root.global_transform.origin) +# var px = p.origin +# px.y = root.global_transform.origin.y +# var pdir = px - root.global_transform.origin +# var fdir = -root.global_transform.basis[2] +# fdir.y = 0 +# pdir.y = 0 +# pdir = pdir.normalized() +# fdir = fdir.normalized() +# var cmdq = [] +# if root.has_meta("cmdqueue"): +# cmdq = root.get_meta("cmdqueue") +# state_changed -= delta +# state_changed = clamp(state_changed, 0.0, 10.0) +# match state: +# SLEEPING: +# if scenario.period > scenario.EARLY_MORNING: +# state = WALKING +# cmdq.push_back(["anim_state", "locomotion"]) +# else: +# cmdq.push_back(["anim_state", "sleeping"]) +# root.set_meta("cmdqueue", cmdq) +# WALKING: +# pass +# IDLE: +# pass +## cmdq.push_back(["anim_state", "locomotion"]) +## root.set_meta("cmdqueue", cmdq) +#func switch_state(root, st): +# print("seitch state: ", state, " ", st) +# var cmdq = [] +# if state == st: +# return +# if root.has_meta("cmdqueue"): +# cmdq = root.get_meta("cmdqueue") +# match state: +# IDLE: +# pass +# SLEEPING: +# pass +# WALKING: +# pass +# match st: +# IDLE: +# cmdq.push_back(["anim_state", "locomotion"]) +# SLEEPING: +# cmdq.push_back(["anim_state", "sleeping"]) +# WALKING: +# cmdq.push_back(["anim_state", "locomotion"]) +# root.set_meta("cmdqueue", cmdq) +# state = st +#func command(cmd): +# print(name, " command: ", cmd) +# match cmd[0]: +# "wakeup": +# switch_state(get_parent(), WALKING) diff --git a/scripts/modules/player_clothes.gd b/scripts/modules/player_clothes.gd new file mode 100644 index 0000000..5517dea --- /dev/null +++ b/scripts/modules/player_clothes.gd @@ -0,0 +1,81 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +var root +var skel +var hair_skel + +var garments = ["male-panties1", "male-shirt1"] +var garments_head = [] +var basedir = "res://scenes/clothes/" +var material = preload("res://scenes/clothes/clothes-male.material") +func _ready(): + root = get_parent() + call_deferred("setup_markers") + call_deferred("setup_garments") +func setup_markers(): + var cmdq = [] + if root.has_meta("cmdqueue"): + cmdq = root.get_meta("cmdqueue") +# cmdq.push_back(["hide_marker", "head/marker_talk"]) +# cmdq.push_back(["hide_marker", "head/marker_hips_action"]) +# cmdq.push_back(["register_marker", self, "hips/marker_dagger_sacrifice", +# { +# "method": "dagger_sacrifice" +# } +# ]) +# cmdq.push_back(["hide_marker", "hips/marker_dagger_sacrifice"]) + cmdq.push_back(["anim_state", "locomotion"]) + root.set_meta("cmdqueue", cmdq) +func setup_garments(): + skel = root.get_meta("skeleton") + hair_skel = root.get_meta("hair_skeleton") + + print("garments for player") + for g in garments: + var m: MeshInstance = MeshInstance.new() + m.name = g + var geo: ArrayMesh = load(basedir + g + ".mesh") + print(g, " mesh: ", geo, "mat: ", material) + geo.surface_set_material(0, material) + m.mesh = geo +# m.skeleton = m.get_path_to(root.get_meta("skeleton")) +# = root.get_meta("skeleton") + skel.add_child(m) + m.transform = Transform() + for g in garments_head: + var m: MeshInstance = MeshInstance.new() + m.name = g + var geo: ArrayMesh = load(basedir + g + ".mesh") + print("mesh: ", geo, "mat: ", material) + geo.surface_set_material(0, material) + m.mesh = geo +# m.skeleton = m.get_path_to(root.get_meta("skeleton")) +# = root.get_meta("skeleton") + hair_skel.add_child(m) + m.transform = Transform() +#func _process(delta): +# if !skel: +# skel = root.get_meta("skeleton") +# var sacrifice_marker = skel.get_node("hips/marker_dagger_sacrifice") +# if sacrifice_marker.visible && !inventory.items.s_dagger: +# sacrifice_marker.hide() +# elif !sacrifice_marker.visible && inventory.items.s_dagger: +# sacrifice_marker.show() + +#func dagger_sacrifice(data): +# print("dagger sacrifice") +# var cmdq = [] +# var other = group_manager.player +# if other.has_meta("cmdqueue"): +# cmdq = other.get_meta("cmdqueue") +# cmdq.push_back(["anim_param", "blade_right/blend_amount", 1.0]) +# cmdq.push_back(["equip", "wrist_r/weapon_right", "s_dagger"]) +# other.set_meta("cmdqueue", cmdq) +# group_manager.submit_player_npc_event_arot(root, "sacrificed-a", root, "sacrificed", root) diff --git a/scripts/modules/player_controls.gd b/scripts/modules/player_controls.gd new file mode 100644 index 0000000..1a44245 --- /dev/null +++ b/scripts/modules/player_controls.gd @@ -0,0 +1,108 @@ +extends Node + + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +var cam +var fps_cam +var motion = Vector2() +func _ready(): + var root = get_parent() + process_priority = 200 + + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +#func _process(delta): +# pass +func _physics_process(delta): + var orientation: Transform + var root = get_parent() + if !root.has_meta("cam"): + return + cam = root.get_meta("cam") + assert(cam) + fps_cam = root.get_meta("fps_cam") + assert(fps_cam) + var animtree = root.get_meta("animation_tree") + if !animtree: + return + if root.has_meta("orientation"): + orientation = root.get_meta("orientation") + if !orientation: + return + var running = false + assert(cam) + assert(fps_cam) + + var motion_target = Vector2(Input.get_action_strength("walk_right") - Input.get_action_strength("walk_left"), + Input.get_action_strength("walk_front") - Input.get_action_strength("walk_back")) + motion = motion.linear_interpolate(motion_target, 10.0 * delta) + var xmotion = motion + xmotion.x = clamp(xmotion.x, -0.4, 0.4) +# if root.has_meta("group_behavior"): +# if motion_target.y < 0: +# behavior.destroy_group_behavior(root.get_meta("group_behavior")) + if !root.has_meta("vehicle") && !root.has_meta("cmdqueue") && !root.has_meta("group_behavior"): + if Input.is_action_just_pressed("activate"): + markers.activate_marker() + if Input.is_action_pressed("run"): + running = true + var cam_z = Vector3() + var cam_x = Vector3() + if cam.current: + cam_z = cam.global_transform.basis.z + cam_x = cam.global_transform.basis.x + cam_z.y = 0 + cam_z = cam_z.normalized() + cam_x.y = 0 + cam_x = cam_x.normalized() + var target = cam_x * motion.x - cam_z * motion.y + if target.length() > 0.001 && cam.current: + var q_from = Quat(orientation.basis) + var q_to = Quat(Transform().looking_at(target, Vector3.UP).basis) + orientation.basis = Basis(q_from.slerp(q_to, delta * 10.0)) + root.set_meta("orientation", orientation) + var fwd_probe = characters.forward_probe(root, 0.5, 0.05, 1.0, 0.1) + if fwd_probe > 0.1 && fwd_probe < 0.7: + var cmdq = [] + if root.has_meta("cmdqueue"): + cmdq = root.get_meta("cmdqueue") + cmdq.push_back(["climb", "1"]) + root.set_meta("cmdqueue", cmdq) + + animtree["parameters/state/playback"].travel("locomotion") + var strafing = 0 + var linear = 0 + if fps_cam.current: + strafing = motion.x + linear = motion.y + else: + strafing = 0 + linear = motion.length() + if running: + animtree["parameters/state/locomotion/loc/blend_position"] = Vector2(linear * 3.0, strafing * 2.0) + else: + animtree["parameters/state/locomotion/loc/blend_position"] = Vector2(linear * 0.5, strafing) + elif root.has_meta("vehicle"): + if Input.is_action_just_pressed("activate"): + markers.activate_marker() + var vehicle: VehicleBody = root.get_meta("vehicle") + var driver = vehicle.get_meta("driver") + if driver == root: + if vehicle.parked: + vehicle.parked = false + vehicle.mode = vehicle.MODE_RIGID + if abs(xmotion.y) < 0.001: + vehicle.brake = 1000 + vehicle.steering = -xmotion.x * 0.7 + else: + vehicle.brake = 0 + vehicle.engine_force = 4000 * xmotion.y + var accel = vehicle.angular_velocity * 350.0 * delta + vehicle.steering = -xmotion.x * 0.7 + diff --git a/world.gd b/world.gd new file mode 100644 index 0000000..5724bfe --- /dev/null +++ b/world.gd @@ -0,0 +1,110 @@ +extends Spatial + +export var camera_path: NodePath +export var camera_pos_path: NodePath +export var camera_rot_y_path: NodePath +export var camera_rot_x_path: NodePath +export var camera_offset_path: NodePath +export var camera_arm_path: NodePath +export var fps_camera_scene: PackedScene +export var fps_camera_rot_y_node: String = "fps_cam_rot_y" +export var fps_camera_rot_x_node: String = "fps_cam_rot_x" +export var fps_camera_node: String = "fps_camera" +var door_sc = preload("res://scenes/door_control.tscn") + +# Declare member variables here. Examples: +# var a = 2 +# var b = "text" + + +# Called when the node enters the scene tree for the first time. +func _ready(): + $waiting.show() + characters.set_navmesh(null, Transform()) +var start_delay0 = 8.0 +var start_delay1 = 2.0 +var start_delay2 = 2.0 +var start_delay3 = 2.0 +var state = 0 +var viewer + +func _process(delta): + match state: + 0: + state = 1 + 1: + start_delay1 -= delta + if start_delay1 < 0: + var player + var cam: Camera + var fps_cam: Camera + var cam_pos + var cam_rot_y + var cam_rot_x + var cam_offset + var cam_arm + var fps_cam_rot_y + var fps_cam_rot_x + var default_offset + if has_node("Roads") && get_node("Roads") is Roads: + for site in range(RoadsData.get_site_count()): + if site == 0: + streaming.setup_first_town() + var v = RoadsData.get_site_pos(0) + var sdf = RoadsData.get_sdf(v.x, 300, v.y) + var d = 300 - sdf + $player.global_transform.origin.x = v.x + $player.global_transform.origin.y = d + 12 + $player.global_transform.origin.z = v.y + else: + streaming.setup_town(site) + if streaming.towns > 30: + break + print("towns done: ", streaming.towns) + player = characters.replace_character($player, "male", ["player", "cmdq", "player_clothes"]) + player.add_child(VoxelViewer.new()) + player.set_script(load("res://characters/character.gd")) + var fps_cam_pos = fps_camera_scene.instance() + player.add_child(fps_cam_pos) + fps_cam = fps_cam_pos.find_node(fps_camera_node, true, false) + + cam = get_node(camera_path) + cam.current = true + cam_pos = get_node(camera_pos_path) + cam_rot_y = get_node(camera_rot_y_path) + cam_rot_x = get_node(camera_rot_x_path) + cam_offset = get_node(camera_offset_path) + cam_arm = get_node(camera_arm_path) + fps_cam_rot_y = fps_cam_pos.find_node(fps_camera_rot_y_node, true, false) + fps_cam_rot_x = fps_cam_pos.find_node(fps_camera_rot_x_node, true, false) + default_offset = cam_offset.translation + cam.set_meta("cam_pos", cam_pos) + cam.set_meta("cam_rot_y", cam_rot_y) + cam.set_meta("cam_rot_x", cam_rot_x) + cam.set_meta("cam_offset", cam_offset) + cam.set_meta("cam_arm", cam_arm) + cam.set_meta("default_offset", default_offset) + fps_cam.set_meta("fps_cam_rot_y", fps_cam_rot_y) + fps_cam.set_meta("fps_cam_rot_x", fps_cam_rot_x) + + cam_arm.add_excluded_object(player.get_rid()) + cam.set_meta("player", player) + fps_cam.set_meta("player", player) + player.set_meta("cam", cam) + player.set_meta("fps_cam", fps_cam) + print(player) + controls.switch_fps_mode(false) + state = 2 + 2: + start_delay2 -= delta + if start_delay2 < 0: + state = 3 + 3: + start_delay2 -= delta + if start_delay2 < 0: + $waiting.hide() + state = 4 + 4: + RoadsData.save_json("user://world-gen.json") + state = 5 + diff --git a/world.tscn b/world.tscn new file mode 100644 index 0000000..7e254b6 --- /dev/null +++ b/world.tscn @@ -0,0 +1,103 @@ +[gd_scene load_steps=13 format=2] + +[ext_resource path="res://world.gd" type="Script" id=1] +[ext_resource path="res://terrain.gdshader" type="Shader" id=2] +[ext_resource path="res://road/road_elements.gltf" type="PackedScene" id=3] +[ext_resource path="res://camera/camera_pos.tscn" type="PackedScene" id=4] +[ext_resource path="res://scenes/waiting.gd" type="Script" id=5] +[ext_resource path="res://camera/fps_cam_pos.tscn" type="PackedScene" id=6] + +[sub_resource type="WorldGenerator" id=7] +iso_scale = 0.01 + +[sub_resource type="VoxelMesherTransvoxel" id=4] + +[sub_resource type="ShaderMaterial" id=6] +shader = ExtResource( 2 ) +shader_param/u_transition_mask = null + +[sub_resource type="Curve" id=1] +min_value = -300.0 +max_value = 300.0 +bake_resolution = 200 +_data = [ Vector2( 0, -259.615 ), 0.0, 0.0, 0, 0, Vector2( 0.291262, -300 ), 0.0, 0.0, 0, 0, Vector2( 0.339806, -63.4615 ), 0.0, 0.0, 0, 0, Vector2( 0.466019, 0 ), 0.0, 0.0, 0, 0, Vector2( 0.466019, 11.5385 ), 0.0, 0.0, 0, 0, Vector2( 0.723301, 75 ), 311.264, 311.264, 0, 0, Vector2( 0.902913, 184.615 ), 976.237, 976.237, 0, 0, Vector2( 0.975728, 300 ), 0.0, 0.0, 0, 0 ] + +[sub_resource type="FastNoiseLite" id=8] +seed = 36800 +period = 256.0 + +[sub_resource type="DetourNavigationMesh" id=9] +cell_size = 0.15 +cell_height = 0.15 +agent_height = 1.5 +agent_radius = 0.15 +agent_max_climb = 0.6 +region_min_size = 0.5 +region_merge_size = 10.0 +edge_max_length = 0.4 +edge_max_error = 0.2 +detail_sample_max_error = 0.5 +group = "navigation" +partition_type = -1082130432 +data = { +} + +[node name="world" type="Spatial"] +script = ExtResource( 1 ) +camera_path = NodePath("camera_pos/rot_y/rot_x/SpringArm/camera_offset/Camera") +camera_pos_path = NodePath("camera_pos") +camera_rot_y_path = NodePath("camera_pos/rot_y") +camera_rot_x_path = NodePath("camera_pos/rot_y/rot_x") +camera_offset_path = NodePath("camera_pos/rot_y/rot_x/SpringArm/camera_offset") +camera_arm_path = NodePath("camera_pos/rot_y/rot_x/SpringArm") +fps_camera_scene = ExtResource( 6 ) + +[node name="VoxelLodTerrain" type="VoxelLodTerrain" parent="." groups=["navigation"]] +generator = SubResource( 7 ) +mesher = SubResource( 4 ) +lod_count = 5 +lod_distance = 64.0 +lod_fade_duration = 1.0 +material = SubResource( 6 ) +run_stream_in_editor = false + +[node name="DirectionalLight" type="DirectionalLight" parent="."] +transform = Transform( 1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, 100, 0 ) + +[node name="Camera" type="Camera" parent="."] +transform = Transform( 0.819152, 0.40558, -0.40558, 0, 0.707107, 0.707107, 0.573577, -0.579228, 0.579228, 0, 150, 0 ) +far = 600.0 + +[node name="Roads" type="Roads" parent="."] +road_data = ExtResource( 3 ) +curve = SubResource( 1 ) +noise = SubResource( 8 ) + +[node name="camera_pos" parent="." instance=ExtResource( 4 )] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 150, 0 ) + +[node name="waiting" type="ColorRect" parent="."] +visible = false +anchor_right = 1.0 +anchor_bottom = 1.0 +color = Color( 0, 0, 0, 1 ) +script = ExtResource( 5 ) +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="player" type="Spatial" parent="."] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 150, 0 ) + +[node name="DetourNavigation" type="DetourNavigation" parent="."] + +[node name="DetourNavigationMeshInstance" type="DetourNavigationMeshInstance" parent="."] +navmesh = SubResource( 9 ) + +[node name="DetourCrowdManager" type="DetourCrowdManager" parent="."] + +[node name="nav_pos" type="Spatial" parent="." groups=["navigation"]] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -4e+07, 0, -4e+07 ) + +[node name="nav_pos2" type="Spatial" parent="." groups=["navigation"]] +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 4e+07, 0, 4e+07 )