{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); \n\nendPage() ?>\n"},"labels":{"kind":"string","value":"PHP"}}},{"rowIdx":62,"cells":{"text":{"kind":"string","value":"package tech.aurora.bfadmin.model;\n\nimport lombok.AllArgsConstructor;\nimport lombok.Data;\nimport lombok.NoArgsConstructor;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\n\nimport java.io.Serializable;\nimport java.util.Collections;\nimport java.util.Comparator;\nimport java.util.List;\n\n@Data\n@AllArgsConstructor\n@NoArgsConstructor\npublic class ClusterDetails implements Serializable {\n private static final long serialVersionUID = 4343106139005494435L;\n private static final Logger logger = LoggerFactory.getLogger(ClusterDetails.class);\n\n private String clusterId;\n private List servers;\n private List workers;\n\n public List getWorkers() {\n Collections.sort(workers, Comparator.comparing(Instance::getWorkerType).thenComparing(Instance::getUptimeInHours, Comparator.reverseOrder()));\n return workers;\n }\n}\n"},"labels":{"kind":"string","value":"Java"}}},{"rowIdx":63,"cells":{"text":{"kind":"string","value":"chapter \\Generated by Lem from \\sorting.lem\\.\\\n\ntheory \"Lem_sorting\" \n\nimports\n Main\n \"Lem_bool\"\n \"Lem_basic_classes\"\n \"Lem_maybe\"\n \"Lem_list\"\n \"Lem_num\"\n \"Lem\"\n \"HOL-Combinatorics.List_Permutation\"\n\nbegin \n\n\n\n\\ \\\\open import Bool Basic_classes Maybe List Num\\\\\n\n\\ \\\\open import {isabelle} `HOL-Combinatorics.List_Permutation`\\\\\n\\ \\\\open import {coq} `Coq.Lists.List`\\\\\n\\ \\\\open import {hol} `sortingTheory` `permLib`\\\\\n\\ \\\\open import {isabelle} `$LIB_DIR/Lem`\\\\\n\n\\ \\\\ ------------------------- \\\\\n\\ \\\\ permutations \\\\\n\\ \\\\ ------------------------- \\\\\n\n\\ \\\\val isPermutation : forall 'a. Eq 'a => list 'a -> list 'a -> bool\\\\\n\\ \\\\val isPermutationBy : forall 'a. ('a -> 'a -> bool) -> list 'a -> list 'a -> bool\\\\\n\nfun isPermutationBy :: \\('a \\ 'a \\ bool)\\ 'a list \\ 'a list \\ bool \\ where \n \\ isPermutationBy eq ([]) l2 = ( (l2 = []))\\ \n for \"eq\" :: \" 'a \\ 'a \\ bool \" \n and \"l2\" :: \" 'a list \"\n|\\ isPermutationBy eq (x # xs) l2 = ( (\n (case delete_first (eq x) l2 of\n None => False\n | Some ys => isPermutationBy eq xs ys\n )\n ))\\ \n for \"eq\" :: \" 'a \\ 'a \\ bool \" \n and \"xs\" :: \" 'a list \" \n and \"x\" :: \" 'a \" \n and \"l2\" :: \" 'a list \"\n\n\n\n\n\\ \\\\ ------------------------- \\\\\n\\ \\\\ isSorted \\\\\n\\ \\\\ ------------------------- \\\\\n\n\\ \\\\ isSortedBy R l \n checks, whether the list l is sorted by ordering R. \n R should represent an order, i.e. it should be transitive.\n Different backends defined \"isSorted\" slightly differently. However,\n the definitions coincide for transitive R. Therefore there is the\n following restriction:\n\n WARNING: Use isSorted and isSortedBy only with transitive relations!\n\\\\\n\n\\ \\\\val isSorted : forall 'a. Ord 'a => list 'a -> bool\\\\\n\\ \\\\val isSortedBy : forall 'a. ('a -> 'a -> bool) -> list 'a -> bool\\\\\n\n\\ \\\\ DPM: rejigged the definition with a nested match to get past Coq's termination checker. \\\\\n\\ \\\\let rec isSortedBy cmp l= match l with\n | [] -> true\n | x1 :: xs ->\n match xs with\n | [] -> true\n | x2 :: _ -> (cmp x1 x2 && isSortedBy cmp xs)\n end\nend\\\\\n\n\n\\ \\\\ ----------------------- \\\\\n\\ \\\\ insertion sort \\\\\n\\ \\\\ ----------------------- \\\\ \n\n\\ \\\\val insert : forall 'a. Ord 'a => 'a -> list 'a -> list 'a\\\\\n\\ \\\\val insertBy : forall 'a. ('a -> 'a -> bool) -> 'a -> list 'a -> list 'a\\\\\n\n\\ \\\\val insertSort: forall 'a. Ord 'a => list 'a -> list 'a\\\\\n\\ \\\\val insertSortBy: forall 'a. ('a -> 'a -> bool) -> list 'a -> list 'a\\\\\n\n\\ \\\\let rec insertBy cmp e l= match l with\n | [] -> [e]\n | x :: xs -> if cmp x e then x :: (insertBy cmp e xs) else (e :: x :: xs)\nend\\\\\n\n\\ \\\\let insertSortBy cmp l= List.foldl (fun l e -> insertBy cmp e l) [] l\\\\\n\n\n\\ \\\\ ----------------------- \\\\\n\\ \\\\ general sorting \\\\\n\\ \\\\ ----------------------- \\\\ \n\n\\ \\\\val sort: forall 'a. Ord 'a => list 'a -> list 'a\\\\\n\\ \\\\val sortBy: forall 'a. ('a -> 'a -> bool) -> list 'a -> list 'a\\\\\n\\ \\\\val sortByOrd: forall 'a. ('a -> 'a -> ordering) -> list 'a -> list 'a\\\\\n\n\\ \\\\val predicate_of_ord : forall 'a. ('a -> 'a -> ordering) -> 'a -> 'a -> bool\\\\\ndefinition predicate_of_ord :: \\('a \\ 'a \\ ordering)\\ 'a \\ 'a \\ bool \\ where \n \\ predicate_of_ord f x y = (\n (case f x y of\n LT => True\n | EQ => True\n | GT => False\n ))\\ \n for \"f\" :: \" 'a \\ 'a \\ ordering \" \n and \"x\" :: \" 'a \" \n and \"y\" :: \" 'a \"\n\n\n\nend\n"},"labels":{"kind":"string","value":"Isabelle"}}},{"rowIdx":64,"cells":{"text":{"kind":"string","value":"import numpy\n\n\ndef generate_random_parameters(parameter_search_space):\n if type(parameter_search_space) == dict:\n generated_params = {}\n\n for param in parameter_search_space:\n _generate_random_value_given_search_space(parameter_search_space, generated_params, param)\n\n return generated_params\n else:\n raise TypeError()\n\n\ndef _generate_random_value_given_search_space(parameter_search_space, generated_params, param):\n parameter_content = parameter_search_space[param]\n\n if type(parameter_content) == dict:\n if 'min' in parameter_content and 'max' in parameter_content:\n if 'min_count' in parameter_content and 'max_count' in parameter_content:\n minimum_list_length = parameter_content['min_count']\n maximum_list_length = parameter_content['max_count']\n list_length = numpy.random.randint(minimum_list_length, maximum_list_length)\n _generate_random_numbers_and_store(parameter_content, generated_params, param, list_length)\n else:\n _generate_random_numbers_and_store(parameter_content, generated_params, param, 1, False)\n\n if generated_params.get(param, None) == None:\n generated_params[param] = parameter_content\n\n\ndef _generate_random_numbers_and_store(parameter_content, generated_params, param, number_of_times, is_list=True):\n start = parameter_content['min']\n stop = parameter_content['max']\n\n if not is_list:\n generated_params[param] = numpy.random.uniform(start, stop)\n else:\n generated_params[param] = []\n for _ in range(number_of_times):\n generated_params[param].append(numpy.random.uniform(start, stop))\n"},"labels":{"kind":"string","value":"Python"}}},{"rowIdx":65,"cells":{"text":{"kind":"string","value":"import tasks\nimport json\nimport urllib\n\nfrom credentials import access_credentials\nfrom data_layer import locator_factory, ResourceLocator\nfrom typing import Generic, TypeVar, Dict, Optional\n\nT = TypeVar(tasks.FetchReportTask)\nclass CredentialsProvider(Generic[T]):\n task: T\n\n def __init__(self, task: T):\n self.task = task\n \n @property\n def credentials_file_suffix(self) -> str:\n return '.json'\n \n @property\n def credentials_locator_parameters(self) -> Dict[str, str]:\n return {'encoding': 'utf-8'}\n\n @property\n def credentials_path(self) -> str:\n return f'{self.task.api_credentials_key}/{self.task.api_credentials_key}_{self.task.task_set.target.value}{self.credentials_file_suffix}'\n\n @property\n def credentials_url(self) -> str:\n parts = urllib.parse.urlparse(access_credentials['credentials_url'])\n url = urllib.parse.urlunparse([\n parts.scheme,\n parts.netloc,\n f'{parts.path}{self.credentials_path}',\n parts.params,\n parts.query,\n parts.fragment\n ])\n\n url, base_params = ResourceLocator.strip_locator_parameters(url=url)\n return ResourceLocator.append_locator_parameters(\n url=url,\n parameters={\n **base_params,\n **self.credentials_locator_parameters\n }\n )\n\n def get_credentials_content(self) -> any:\n locator = locator_factory(url=self.credentials_url)\n resource = locator.get()\n return resource\n \n def prepare_credentials_content(self, content: any) -> Dict[str, any]:\n return json.loads(content)\n\n def get_credentials(self) -> any:\n content = self.get_credentials_content()\n return self.prepare_credentials_content(content)\n\n def provide(self):\n self.task.api_credentials = self.get_credentials()"},"labels":{"kind":"string","value":"Python"}}},{"rowIdx":66,"cells":{"text":{"kind":"string","value":"/**\n * Package for multifromoneton.\n *\n * @author Mishin Yura (mishin.inbox@gmail.com)\n * @since 26.10.2018\n */\npackage multifromoneton;\n"},"labels":{"kind":"string","value":"Java"}}},{"rowIdx":67,"cells":{"text":{"kind":"string","value":"%YAML 1.1\n%TAG !u! tag:unity3d.com,2011:\n--- !u!74 &7400000\nAnimationClip:\n m_ObjectHideFlags: 0\n m_CorrespondingSourceObject: {fileID: 0}\n m_PrefabInstance: {fileID: 0}\n m_PrefabAsset: {fileID: 0}\n m_Name: Pet_begin_eating\n serializedVersion: 7\n m_Legacy: 0\n m_Compressed: 0\n m_UseHighQualityCurve: 1\n m_RotationCurves:\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.51573575, y: 0.49114177, z: -0.4838369, w: 0.5086239}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.51573575, y: 0.49114177, z: -0.4838369, w: 0.5086239}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.0025352153, y: -0.00006145376, z: -0.024233429, w: 0.99970317}\n inSlope: {x: -0.004523154, y: 0.09247572, z: 0.00799818, w: 0.000066161156}\n outSlope: {x: -0.004523154, y: 0.09247572, z: 0.00799818, w: 0.000066161156}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.0016136476, y: 0.029797193, z: -0.023094917, w: 0.99928784}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.0032319073, y: -0.1389642, z: -0.000463463, w: 0.990292}\n inSlope: {x: 0.006448016, y: 0.106244974, z: 0.0066472962, w: 0.014696716}\n outSlope: {x: 0.006448016, y: 0.106244974, z: 0.0066472962, w: 0.014696716}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.004217632, y: -0.10840081, z: 0.00054837414, w: 0.9940982}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.0042301393, y: -0.32614452, z: -0.0038954378, w: 0.9453024}\n inSlope: {x: 0.0015463632, y: -0.026247201, z: 0.022004724, w: -0.008992552}\n outSlope: {x: 0.0015463632, y: -0.026247201, z: 0.022004724, w: -0.008992552}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.0051562604, y: -0.33227092, z: 0.0005089854, w: 0.9431698}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.0029061642, y: -0.087959155, z: -0.003040681, w: 0.9961152}\n inSlope: {x: 0.0069289, y: -0.118163146, z: -0.0031023168, w: -0.010700225}\n outSlope: {x: 0.0069289, y: -0.118163146, z: -0.0031023168, w: -0.010700225}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.10000001\n value: {x: 0.004016153, y: -0.114088066, z: -0.0035795935, w: 0.9934561}\n inSlope: {x: 0.017994238, y: -0.3648535, z: -0.009418454, w: -0.041854084}\n outSlope: {x: 0.017994238, y: -0.3648535, z: -0.009418454, w: -0.041854084}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.0047007063, y: -0.12582523, z: -0.0039459555, w: 0.9920334}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.011141595, y: -0.23518036, z: -0.028056994, w: 0.9714828}\n inSlope: {x: -0.023987887, y: -0.075343244, z: -0.045403033, w: -0.019975303}\n outSlope: {x: -0.023987887, y: -0.075343244, z: -0.045403033, w: -0.019975303}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.10000001\n value: {x: -0.016638055, y: -0.25862527, z: -0.03884831, w: 0.96505284}\n inSlope: {x: -0.12279299, y: -0.47990263, z: -0.21319364, w: -0.14123976}\n outSlope: {x: -0.12279299, y: -0.47990263, z: -0.21319364, w: -0.14123976}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: -0.021754792, y: -0.27744427, z: -0.047087517, w: 0.9593405}\n inSlope: {x: -0.07675105, y: -0.2822851, z: -0.12358809, w: -0.08568496}\n outSlope: {x: -0.07675105, y: -0.2822851, z: -0.12358809, w: -0.08568496}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.021754792, y: -0.27744427, z: -0.047087517, w: 0.9593405}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/Feeler\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.47406, y: 0.033215888, z: 0.8774065, w: 0.065740004}\n inSlope: {x: -0.04798114, y: -0.022305137, z: -0.02656102, w: 0.01877859}\n outSlope: {x: -0.04798114, y: -0.022305137, z: -0.02656102, w: 0.01877859}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.10000001\n value: {x: -0.49136496, y: 0.037529763, z: 0.86639106, w: 0.0807375}\n inSlope: {x: -0.3846265, y: 0.28101543, z: -0.2733913, w: 0.40764624}\n outSlope: {x: -0.3846265, y: 0.28101543, z: -0.2733913, w: 0.40764624}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: -0.50681716, y: 0.051286776, z: 0.854921, w: 0.09806209}\n inSlope: {x: -0.2317831, y: 0.2063552, z: -0.1720512, w: 0.25986886}\n outSlope: {x: -0.2317831, y: 0.2063552, z: -0.1720512, w: 0.25986886}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.50681716, y: 0.051286776, z: 0.854921, w: 0.09806209}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/Hair\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.39949492, y: -0.07475245, z: 0.52233714, w: 0.7496531}\n inSlope: {x: 0.044790205, y: -0.050443854, z: 0.037516948, w: -0.055239197}\n outSlope: {x: 0.044790205, y: -0.050443854, z: 0.037516948, w: -0.055239197}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.10000001\n value: {x: 0.40858093, y: -0.08776213, z: 0.52857953, w: 0.73889315}\n inSlope: {x: 0.16015112, y: -0.2225564, z: 0.08239567, w: -0.17433107}\n outSlope: {x: 0.16015112, y: -0.2225564, z: 0.08239567, w: -0.17433107}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.41451535, y: -0.09584224, z: 0.5311538, w: 0.73271203}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/LEar\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.38956413, y: -0.03369062, z: -0.53918177, w: 0.74591404}\n inSlope: {x: -0.05508631, y: -0.12141454, z: 0.010283588, w: -0.027236937}\n outSlope: {x: -0.05508631, y: -0.12141454, z: 0.010283588, w: -0.027236937}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.10000001\n value: {x: -0.40158135, y: -0.063267045, z: -0.5366053, w: 0.7394488}\n inSlope: {x: -0.22263542, y: -0.47448248, z: 0.052345097, w: -0.12444824}\n outSlope: {x: -0.22263542, y: -0.47448248, z: 0.052345097, w: -0.12444824}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: -0.40996116, y: -0.07989222, z: -0.53454846, w: 0.7347157}\n inSlope: {x: -0.12569727, y: -0.24937761, z: 0.030852558, w: -0.07099629}\n outSlope: {x: -0.12569727, y: -0.24937761, z: 0.030852558, w: -0.07099629}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.40996116, y: -0.07989222, z: -0.53454846, w: 0.7347157}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/REar\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.63736, y: -0.13784099, z: 0.73074794, w: 0.20193951}\n inSlope: {x: -0.04231989, y: 0.014104395, z: -0.03633141, w: 0.007255822}\n outSlope: {x: -0.04231989, y: 0.014104395, z: -0.03633141, w: 0.007255822}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.6485279, y: -0.13471769, z: 0.720855, w: 0.20403612}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.06084472, y: -0.16859429, z: 0.31517985, w: 0.9319526}\n inSlope: {x: 0.016050898, y: -0.07924273, z: 0.007626414, w: -0.018087028}\n outSlope: {x: 0.016050898, y: -0.07924273, z: 0.007626414, w: -0.018087028}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.060940273, y: -0.17537469, z: 0.31612936, w: 0.9303721}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0, y: 0.2591916, z: -0, w: 0.9658259}\n inSlope: {x: 0, y: 0.5822691, z: 0, w: -0.1625651}\n outSlope: {x: 0, y: 0.5822691, z: 0, w: -0.1625651}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.033333335\n value: {x: 0, y: 0.27860057, z: -0, w: 0.9604071}\n inSlope: {x: 0, y: 0.9246173, z: 0, w: -0.28035071}\n outSlope: {x: 0, y: 0.9246173, z: 0, w: -0.28035071}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.10000001\n value: {x: 0, y: 0.3663907, z: -0, w: 0.9304611}\n inSlope: {x: 0, y: 1.2505075, z: 0, w: -0.4869783}\n outSlope: {x: 0, y: 1.2505075, z: 0, w: -0.4869783}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: 0, y: 0.40419993, z: -0, w: 0.91467065}\n inSlope: {x: 0, y: 0.5671384, z: 0, w: -0.23685695}\n outSlope: {x: 0, y: 0.5671384, z: 0, w: -0.23685695}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0, y: 0.40419993, z: -0, w: 0.91467065}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm/LForeArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.0026784157, y: 0.57538176, z: -0.110033974, w: 0.8104451}\n inSlope: {x: 0.076874115, y: -0.21491824, z: 0.007923022, w: 0.15185772}\n outSlope: {x: 0.076874115, y: -0.21491824, z: 0.007923022, w: 0.15185772}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.10000001\n value: {x: 0.018034372, y: 0.5346988, z: -0.10876044, w: 0.8378205}\n inSlope: {x: 0.19522741, y: -0.51698774, z: 0.020213127, w: 0.3289774}\n outSlope: {x: 0.19522741, y: -0.51698774, z: 0.020213127, w: 0.3289774}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: 0.02397972, y: 0.51790863, z: -0.10801991, w: 0.84824955}\n inSlope: {x: 0.089180216, y: -0.2518523, z: 0.0111079225, w: 0.15643628}\n outSlope: {x: 0.089180216, y: -0.2518523, z: 0.0111079225, w: 0.15643628}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.02397972, y: 0.51790863, z: -0.10801991, w: 0.84824955}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm/LForeArm/LHand\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0, y: 0.07013112, z: -0, w: 0.9975378}\n inSlope: {x: 0, y: -0.21848357, z: 0, w: 0.01455903}\n outSlope: {x: 0, y: -0.21848357, z: 0, w: 0.01455903}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.10000001\n value: {x: 0, y: 0.02445491, z: -0, w: 0.99970096}\n inSlope: {x: 0, y: -0.57624924, z: 0, w: 0.015283225}\n outSlope: {x: 0, y: -0.57624924, z: 0, w: 0.015283225}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0, y: 0.0072999494, z: -0, w: 0.99997336}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm/LForeArm/LHand/LFinger\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.6597727, y: 0.13149545, z: 0.7105774, w: -0.20612772}\n inSlope: {x: -0.042092796, y: -0.015403478, z: -0.03873467, w: -0.008349717}\n outSlope: {x: -0.042092796, y: -0.015403478, z: -0.03873467, w: -0.008349717}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.67076486, y: 0.1282674, z: 0.7002105, w: -0.2081522}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.0037392399, y: -0.12633231, z: -0.2871707, w: 0.94950473}\n inSlope: {x: -0.012363663, y: -0.11731713, z: 0.011566578, w: -0.012311338}\n outSlope: {x: -0.012363663, y: -0.11731713, z: 0.011566578, w: -0.012311338}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.0059771086, y: -0.13510132, z: -0.2860708, w: 0.94861764}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0, y: 0.24001466, z: -0, w: 0.9707693}\n inSlope: {x: 0, y: 0.7090272, z: 0, w: -0.1845163}\n outSlope: {x: 0, y: 0.7090272, z: 0, w: -0.1845163}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.033333335\n value: {x: 0, y: 0.2636489, z: -0, w: 0.96461874}\n inSlope: {x: 0, y: 1.094737, z: 0, w: -0.31522837}\n outSlope: {x: 0, y: 1.094737, z: 0, w: -0.31522837}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.10000001\n value: {x: 0, y: 0.36356217, z: -0, w: 0.93157}\n inSlope: {x: 0, y: 1.3491702, z: 0, w: -0.51792645}\n outSlope: {x: 0, y: 1.3491702, z: 0, w: -0.51792645}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: 0, y: 0.40294182, z: -0, w: 0.9152256}\n inSlope: {x: 0, y: 0.5906949, z: 0, w: -0.24516554}\n outSlope: {x: 0, y: 0.5906949, z: 0, w: -0.24516554}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0, y: 0.40294182, z: -0, w: 0.9152256}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm/RForeArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.015057182, y: 0.54123896, z: 0.06623728, w: 0.8381207}\n inSlope: {x: -0.041404195, y: -0.3639185, z: -0.013366117, w: 0.2315837}\n outSlope: {x: -0.041404195, y: -0.3639185, z: -0.013366117, w: 0.2315837}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.06666667\n value: {x: -0.01843693, y: 0.5025869, z: 0.06526773, w: 0.8618623}\n inSlope: {x: -0.065267384, y: -0.8343095, z: -0.017722918, w: 0.48512036}\n outSlope: {x: -0.065267384, y: -0.8343095, z: -0.017722918, w: 0.48512036}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: -0.02323574, y: 0.44789177, z: 0.063884616, w: 0.8914998}\n inSlope: {x: -0.036708884, y: -0.38393903, z: -0.010883958, w: 0.19977452}\n outSlope: {x: -0.036708884, y: -0.38393903, z: -0.010883958, w: 0.19977452}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.02323574, y: 0.44789177, z: 0.063884616, w: 0.8914998}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm/RForeArm/RHand\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0, y: 0.016303543, z: -0, w: 0.99986714}\n inSlope: {x: 0, y: -0.06444756, z: 0, w: 0.0009799004}\n outSlope: {x: 0, y: -0.06444756, z: 0, w: 0.0009799004}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0, y: 0.0016957322, z: -0, w: 0.99999857}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm/RForeArm/RHand/RFinger\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.0056582233, y: 0.71895987, z: 0.03731993, w: 0.6940259}\n inSlope: {x: 0.016104778, y: -0.04609823, z: 0.013500675, w: 0.047045942}\n outSlope: {x: 0.016104778, y: -0.04609823, z: 0.013500675, w: 0.047045942}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.0026901043, y: 0.7047616, z: 0.040000357, w: 0.7083105}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0, y: -0.46323273, z: -0, w: 0.8862367}\n inSlope: {x: 0, y: 0.04823863, z: 0, w: 0.02515733}\n outSlope: {x: 0, y: 0.04823863, z: 0, w: 0.02515733}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0, y: -0.44915926, z: -0, w: 0.89345175}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.0036256672, y: 0.8940795, z: -0.02418643, w: 0.44724014}\n inSlope: {x: 0.0065020653, y: 0.04203021, z: -0.016376786, w: -0.085201256}\n outSlope: {x: 0.0065020653, y: 0.04203021, z: -0.016376786, w: -0.085201256}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.0027132162, y: 0.9077516, z: -0.027285766, w: 0.4186109}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg/LFoot\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0, y: 0.06934934, z: -0, w: 0.99759245}\n inSlope: {x: 0, y: -0.053177025, z: 0, w: 0.0036495922}\n outSlope: {x: 0, y: -0.053177025, z: 0, w: 0.0036495922}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0, y: 0.055453062, z: -0, w: 0.9984613}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg/LFoot/LToe1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.000000008571406, y: 0.09804545, z: -0.00000008700156, w: 0.995182}\n inSlope: {x: 1.4894752e-11, y: -0.05305029, z: -1.5134559e-10, w: 0.005178451}\n outSlope: {x: 1.4894752e-11, y: -0.05305029, z: -1.5134559e-10, w: 0.005178451}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.00000000857493, y: 0.08462994, z: -0.00000008703732, w: 0.99641246}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg/LFoot/LToe1/LToe2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.029139511, y: 0.8196198, z: -0.06478853, w: 0.56848633}\n inSlope: {x: 0.0040691905, y: -0.019075869, z: 0.008232594, w: 0.028198956}\n outSlope: {x: 0.0040691905, y: -0.019075869, z: 0.008232594, w: 0.028198956}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.029485095, y: 0.8128091, z: -0.063673496, w: 0.57828856}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0, y: -0.52403325, z: -0, w: 0.8516978}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0, y: -0.52403325, z: -0, w: 0.8516978}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh/RLeg\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.003091741, y: 0.9145929, z: 0.039271418, w: 0.4024526}\n inSlope: {x: -0.0020163157, y: 0.037949678, z: -0.011027566, w: -0.08554994}\n outSlope: {x: -0.0020163157, y: 0.037949678, z: -0.011027566, w: -0.08554994}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.10000001\n value: {x: -0.0034658003, y: 0.9231932, z: 0.03810105, w: 0.38242725}\n inSlope: {x: -0.0061217262, y: 0.12843579, z: -0.01045296, w: -0.30933917}\n outSlope: {x: -0.0061217262, y: 0.12843579, z: -0.01045296, w: -0.30933917}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.0036929366, y: 0.9275371, z: 0.03779294, w: 0.3717971}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh/RLeg/RFoot\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0, y: -0, z: -0, w: 1}\n inSlope: {x: 0, y: -0.07112713, z: 0, w: -0.00008404254}\n outSlope: {x: 0, y: -0.07112713, z: 0, w: -0.00008404254}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0, y: -0.026083875, z: -0, w: 0.9996598}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh/RLeg/RFoot/RToe1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.90852803, y: -0.09391811, z: 0.402317, w: -0.06242896}\n inSlope: {x: -0.036367174, y: -0.028650908, z: 0.07867723, w: 0.023257991}\n outSlope: {x: -0.036367174, y: -0.028650908, z: 0.07867723, w: 0.023257991}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.898493, y: -0.101489864, z: 0.4234213, w: -0.055898275}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.0031303011, y: 0.115267694, z: 0.007002916, w: 0.99330485}\n inSlope: {x: -0.023789775, y: 0.04995234, z: 0.017251479, w: -0.006049275}\n outSlope: {x: -0.023789775, y: 0.04995234, z: 0.017251479, w: -0.006049275}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.008511577, y: 0.12906723, z: 0.009956662, w: 0.9915494}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1/LTailA2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.004589925, y: -0.04351543, z: 0.004304938, w: 0.9990329}\n inSlope: {x: 0.027416596, y: -0.09357187, z: -0.012136799, w: -0.004057288}\n outSlope: {x: 0.027416596, y: -0.09357187, z: -0.012136799, w: -0.004057288}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: -0.0027646995, y: -0.052789625, z: 0.0034435308, w: 0.9985959}\n inSlope: {x: -0.011266431, y: 0.05621279, z: 0.0030404273, w: 0.003039837}\n outSlope: {x: -0.011266431, y: 0.05621279, z: 0.0030404273, w: 0.003039837}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.0027646995, y: -0.052789625, z: 0.0034435308, w: 0.9985959}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1/LTailA2/LTailA3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.008054474, y: -0.048289422, z: 0.009852094, w: 0.99875236}\n inSlope: {x: 0.045797613, y: -0.13114013, z: -0.023675494, w: -0.0060707326}\n outSlope: {x: 0.045797613, y: -0.13114013, z: -0.023675494, w: -0.0060707326}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.0008166754, y: -0.07647642, z: 0.0062997844, w: 0.9970512}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1/LTailA2/LTailA3/LTailA4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.90852803, y: 0.093918115, z: 0.40231687, w: 0.062428974}\n inSlope: {x: -0.035998818, y: -0.02249658, z: 0.085071616, w: 0.0070586796}\n outSlope: {x: -0.035998818, y: -0.02249658, z: 0.085071616, w: 0.0070586796}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.89842564, y: 0.08931895, z: 0.42510206, w: 0.06435633}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.0029462702, y: 0.11526736, z: 0.0067799394, w: 0.993307}\n inSlope: {x: -0.023776028, y: 0.049954128, z: 0.017265407, w: -0.0060421224}\n outSlope: {x: -0.023776028, y: 0.049954128, z: 0.017265407, w: -0.0060421224}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.008324447, y: 0.12906766, z: 0.009736328, w: 0.99155307}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1/RTailA2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.0045879576, y: -0.043516185, z: 0.004302489, w: 0.9990329}\n inSlope: {x: 0.027416414, y: -0.093571536, z: -0.012137107, w: -0.004057288}\n outSlope: {x: 0.027416414, y: -0.093571536, z: -0.012137107, w: -0.004057288}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: -0.0027627158, y: -0.052790385, z: 0.0034410695, w: 0.9985959}\n inSlope: {x: -0.011266187, y: 0.056212623, z: 0.003040546, w: 0.0030407312}\n outSlope: {x: -0.011266187, y: 0.056212623, z: 0.003040546, w: 0.0030407312}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.0027627158, y: -0.052790385, z: 0.0034410695, w: 0.9985959}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1/RTailA2/RTailA3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.008053919, y: -0.048289202, z: 0.009852069, w: 0.99875236}\n inSlope: {x: 0.045797933, y: -0.1311399, z: -0.023675634, w: -0.0060689445}\n outSlope: {x: 0.045797933, y: -0.1311399, z: -0.023675634, w: -0.0060689445}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.0008173597, y: -0.07647619, z: 0.006299748, w: 0.9970512}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1/RTailA2/RTailA3/RTailA4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.87748957, y: -0.31509474, z: 0.33985895, w: -0.123383075}\n inSlope: {x: -0.03460586, y: -0.03125131, z: 0.07525026, w: 0.042287033}\n outSlope: {x: -0.03460586, y: -0.03125131, z: 0.07525026, w: 0.042287033}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.86730915, y: -0.32386807, z: 0.36131266, w: -0.111074634}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.0023225427, y: 0.025873546, z: 0.0070626857, w: 0.9996376}\n inSlope: {x: -0.0147061115, y: 0.042546984, z: 0.015428051, w: -0.0012820958}\n outSlope: {x: -0.0147061115, y: 0.042546984, z: 0.015428051, w: -0.0012820958}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.006764162, y: 0.041779332, z: 0.010297052, w: 0.9990509}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1/LTailB2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.004588732, y: -0.043515503, z: 0.0043048854, w: 0.9990329}\n inSlope: {x: 0.030732267, y: -0.09946904, z: -0.012407046, w: -0.0043201447}\n outSlope: {x: 0.030732267, y: -0.09946904, z: -0.012407046, w: -0.0043201447}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: -0.0021661865, y: -0.054484386, z: 0.0034028937, w: 0.9985065}\n inSlope: {x: -0.010578306, y: 0.0492771, z: 0.0029622277, w: 0.0027412178}\n outSlope: {x: -0.010578306, y: 0.0492771, z: 0.0029622277, w: 0.0027412178}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.0021661865, y: -0.054484386, z: 0.0034028937, w: 0.9985065}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1/LTailB2/LTailB3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.00805385, y: -0.048289437, z: 0.009852064, w: 0.99875236}\n inSlope: {x: 0.04568577, y: -0.11624224, z: -0.022436174, w: -0.0053000445}\n outSlope: {x: 0.04568577, y: -0.11624224, z: -0.022436174, w: -0.0053000445}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.0008020942, y: -0.0722015, z: 0.006393709, w: 0.9973693}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1/LTailB2/LTailB3/LTailB4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.87801945, y: 0.3136535, z: 0.34004608, w: 0.122768074}\n inSlope: {x: -0.026140807, y: -0.012022554, z: 0.079858296, w: -0.004489347}\n outSlope: {x: -0.026140807, y: -0.012022554, z: 0.079858296, w: -0.004489347}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.8705112, y: 0.31093758, z: 0.36240348, w: 0.119129464}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.0024970584, y: 0.025874402, z: 0.007208418, w: 0.9996361}\n inSlope: {x: -0.014508424, y: 0.029482001, z: 0.015510236, w: -0.0009334087}\n outSlope: {x: -0.014508424, y: 0.029482001, z: 0.015510236, w: -0.0009334087}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.0068958066, y: 0.037293054, z: 0.010470544, w: 0.99922574}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1/RTailB2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.0045887507, y: -0.043515377, z: 0.004304886, w: 0.999033}\n inSlope: {x: 0.030803317, y: -0.11438604, z: -0.012368133, w: -0.005024671}\n outSlope: {x: 0.030803317, y: -0.11438604, z: -0.012368133, w: -0.005024671}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: -0.002152592, y: -0.05876423, z: 0.0034133445, w: 0.9982637}\n inSlope: {x: -0.01050528, y: 0.031756967, z: 0.0030463645, w: 0.0018739701}\n outSlope: {x: -0.01050528, y: 0.031756967, z: 0.0030463645, w: 0.0018739701}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.002152592, y: -0.05876423, z: 0.0034133445, w: 0.9982637}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1/RTailB2/RTailB3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.008053833, y: -0.048289437, z: 0.009852065, w: 0.99875236}\n inSlope: {x: 0.04586837, y: -0.13113934, z: -0.022381999, w: -0.0060814614}\n outSlope: {x: 0.04586837, y: -0.13113934, z: -0.022381999, w: -0.0060814614}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.0008276456, y: -0.07647633, z: 0.006391278, w: 0.9970506}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1/RTailB2/RTailB3/RTailB4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.8124824, y: -0.4872169, z: 0.25184482, w: -0.19765183}\n inSlope: {x: -0.016171932, y: -0.023497937, z: 0.02508044, w: 0.023574827}\n outSlope: {x: -0.016171932, y: -0.023497937, z: 0.02508044, w: 0.023574827}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.80781335, y: -0.49448517, z: 0.2600951, w: -0.18781024}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.0017196531, y: -0.07182725, z: 0.007195688, w: 0.9973897}\n inSlope: {x: -0.012007313, y: 0.008512214, z: 0.014626448, w: 0.00047922131}\n outSlope: {x: -0.012007313, y: 0.008512214, z: 0.014626448, w: 0.00047922131}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.006142683, y: -0.063611105, z: 0.010764567, w: 0.9978978}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1/LTailC2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.0045887325, y: -0.04351559, z: 0.0043048942, w: 0.9990329}\n inSlope: {x: 0.035399117, y: -0.119872384, z: -0.013998525, w: -0.0052624936}\n outSlope: {x: 0.035399117, y: -0.119872384, z: -0.013998525, w: -0.0052624936}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: 0.0010666591, y: -0.06293075, z: 0.0027009274, w: 0.9980137}\n inSlope: {x: 0.011669562, y: 0.00087317085, z: -0.0015964628, w: 0.000050961975}\n outSlope: {x: 0.011669562, y: 0.00087317085, z: -0.0015964628, w: 0.000050961975}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.0010666591, y: -0.06293075, z: 0.0027009274, w: 0.9980137}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1/LTailC2/LTailC3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.00805385, y: -0.048289437, z: 0.009852064, w: 0.99875236}\n inSlope: {x: 0.056038145, y: -0.12704842, z: -0.025575392, w: -0.0057721133}\n outSlope: {x: 0.056038145, y: -0.12704842, z: -0.025575392, w: -0.0057721133}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.0036618356, y: -0.07935979, z: 0.005343045, w: 0.99682504}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1/LTailC2/LTailC3/LTailC4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.8149724, y: 0.48322612, z: 0.25252777, w: 0.19632165}\n inSlope: {x: -0.0122219315, y: -0.002837777, z: 0.05937248, w: -0.018990038}\n outSlope: {x: -0.0122219315, y: -0.002837777, z: 0.05937248, w: -0.018990038}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.8109571, y: 0.4820938, z: 0.2722043, w: 0.18931189}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.0016790177, y: -0.07182788, z: 0.007478809, w: 0.99738765}\n inSlope: {x: -0.01606423, y: 0.034262538, z: 0.017500855, w: 0.0022780893}\n outSlope: {x: -0.01606423, y: 0.034262538, z: 0.017500855, w: 0.0022780893}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.0070492653, y: -0.057207983, z: 0.0115178125, w: 0.998271}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1/RTailC2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.00458875, y: -0.0435155, z: 0.004304885, w: 0.999033}\n inSlope: {x: 0.036839113, y: -0.097531036, z: -0.011382749, w: -0.0042146444}\n outSlope: {x: 0.036839113, y: -0.097531036, z: -0.011382749, w: -0.0042146444}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.13333334\n value: {x: -0.00020494961, y: -0.056514233, z: 0.0031819188, w: 0.9983967}\n inSlope: {x: 0.001586889, y: 0.02713267, z: 0.00023632079, w: 0.0015601517}\n outSlope: {x: 0.001586889, y: 0.02713267, z: 0.00023632079, w: 0.0015601517}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: -0.00020494961, y: -0.056514233, z: 0.0031819188, w: 0.9983967}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1/RTailC2/RTailC3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0.008053868, y: -0.048289437, z: 0.009852063, w: 0.99875236}\n inSlope: {x: 0.051888324, y: -0.104725055, z: -0.022945207, w: -0.0046563144}\n outSlope: {x: 0.051888324, y: -0.104725055, z: -0.022945207, w: -0.0046563144}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 0.0027609265, y: -0.07295212, z: 0.0058591627, w: 0.99731445}\n inSlope: {x: 0, y: 0, z: 0, w: 0}\n outSlope: {x: 0, y: 0, z: 0, w: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334, w: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1/RTailC2/RTailC3/RTailC4\n m_CompressedRotationCurves: []\n m_EulerCurves: []\n m_PositionCurves:\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 0.1041635, y: 24.11414, z: -5.159092}\n inSlope: {x: -0.27500957, y: -0.36987302, z: -0.5386448}\n outSlope: {x: -0.27500957, y: -0.36987302, z: -0.5386448}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1333333\n value: {x: 0.06425833, y: 24.03854, z: -5.273645}\n inSlope: {x: -0.2857363, y: -0.74552625, z: -1.1592878}\n outSlope: {x: -0, y: -0, z: -0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: 0.06425833, y: 24.03854, z: -5.273645}\n inSlope: {x: -0, y: -0, z: -0}\n outSlope: {x: -0, y: -0, z: -0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -0, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -0, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -4.470679, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -4.470679, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -7.299714, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -7.299714, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -4.759159, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -4.759159, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -18.66592, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -18.66592, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/Feeler\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -19.41975, y: 0.000002, z: 9.584366}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -19.41975, y: 0.000002, z: 9.584366}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/Hair\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -12.98365, y: -8.804085, z: -0.382601}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -12.98365, y: -8.804085, z: -0.382601}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/LEar\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -12.98365, y: 8.80409, z: -0.382603}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -12.98365, y: 8.80409, z: -0.382603}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/REar\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -5.259569, y: -3.281114, z: 1.122004}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -5.259569, y: -3.281114, z: 1.122004}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -5.188152, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -5.188152, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -9.770857, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -9.770857, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm/LForeArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -7.381496, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -7.381496, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm/LForeArm/LHand\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -2.581572, y: 0, z: -2.352362}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -2.581572, y: 0, z: -2.352362}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm/LForeArm/LHand/LFinger\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -5.259573, y: 3.28111, z: 1.121999}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -5.259573, y: 3.28111, z: 1.121999}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -5.188138, y: -0.000007, z: 0.000001}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -5.188138, y: -0.000007, z: 0.000001}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -9.770832, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -9.770832, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm/RForeArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -7.381544, y: -0.000001, z: -0.000014}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -7.381544, y: -0.000001, z: -0.000014}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm/RForeArm/RHand\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -2.58157, y: 0, z: -2.352359}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -2.58157, y: 0, z: -2.352359}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm/RForeArm/RHand/RFinger\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -8.306652, y: 5.999761, z: 1.483387}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -8.306652, y: 5.999761, z: 1.483387}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -7.854699, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -7.854699, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -7.080041, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -7.080041, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg/LFoot\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -1.395691, y: 0, z: -6.917546}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -1.395691, y: 0, z: -6.917546}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg/LFoot/LToe1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -2.244705, y: 0, z: -1.377425}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -2.244705, y: 0, z: -1.377425}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg/LFoot/LToe1/LToe2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -8.306605, y: -5.99976, z: 1.483359}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -8.306605, y: -5.99976, z: 1.483359}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -7.854751, y: -0.000001, z: -0.000089}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -7.854751, y: -0.000001, z: -0.000089}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh/RLeg\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -7.08004, y: 0, z: 0.000025}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -7.08004, y: 0, z: 0.000025}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh/RLeg/RFoot\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -1.3957, y: 0.000001, z: -6.91752}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -1.3957, y: 0.000001, z: -6.91752}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh/RLeg/RFoot/RToe1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -12.7014, y: -0.000001, z: -2.12554}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -12.7014, y: -0.000001, z: -2.12554}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -9.999958, y: -0.000006, z: 0.000003}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -9.999958, y: -0.000006, z: 0.000003}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1/LTailA2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10.00006, y: 0.000015, z: 0.000038}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10.00006, y: 0.000015, z: 0.000038}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1/LTailA2/LTailA3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -9.999949, y: -0.00013, z: -0.000097}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -9.999949, y: -0.00013, z: -0.000097}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1/LTailA2/LTailA3/LTailA4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -12.7014, y: 0.000001, z: -2.12554}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -12.7014, y: 0.000001, z: -2.12554}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1/RTailA2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1/RTailA2/RTailA3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10, y: 0.000067, z: -0.000004}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10, y: 0.000067, z: -0.000004}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1/RTailA2/RTailA3/RTailA4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -12.70136, y: 0, z: -2.125549}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -12.70136, y: 0, z: -2.125549}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1/LTailB2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1/LTailB2/LTailB3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1/LTailB2/LTailB3/LTailB4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -12.7014, y: 0, z: -2.12554}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -12.7014, y: 0, z: -2.12554}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10.00001, y: -0.000005, z: 0.000067}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10.00001, y: -0.000005, z: 0.000067}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1/RTailB2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10, y: 0.000021, z: -0.000053}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10, y: 0.000021, z: -0.000053}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1/RTailB2/RTailB3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -9.99995, y: 0.000074, z: 0.000016}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -9.99995, y: 0.000074, z: 0.000016}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1/RTailB2/RTailB3/RTailB4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -12.70136, y: 0, z: -2.125549}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -12.70136, y: 0, z: -2.125549}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1/LTailC2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1/LTailC2/LTailC3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -10, y: 0, z: 0}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1/LTailC2/LTailC3/LTailC4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -12.7014, y: 0, z: -2.12554}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -12.7014, y: 0, z: -2.12554}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -9.999983, y: 0.000049, z: 0.000029}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -9.999983, y: 0.000049, z: 0.000029}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1/RTailC2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -9.999983, y: -0.000082, z: 0.000005}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -9.999983, y: -0.000082, z: 0.000005}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1/RTailC2/RTailC3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: -9.999979, y: 0.000075, z: -0.000016}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.1666667\n value: {x: -9.999979, y: 0.000075, z: -0.000016}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1/RTailC2/RTailC3/RTailC4\n m_ScaleCurves:\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/Feeler\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/Hair\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/LEar\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/Neck/Head/REar\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm/LForeArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm/LForeArm/LHand\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/LShoulder/LArm/LForeArm/LHand/LFinger\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm/RForeArm\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm/RForeArm/RHand\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Spine1/Spine2/RShoulder/RArm/RForeArm/RHand/RFinger\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg/LFoot\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg/LFoot/LToe1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LThigh/LLeg/LFoot/LToe1/LToe2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh/RLeg\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh/RLeg/RFoot\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RThigh/RLeg/RFoot/RToe1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1/LTailA2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1/LTailA2/LTailA3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailA1/LTailA2/LTailA3/LTailA4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1/RTailA2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1/RTailA2/RTailA3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailA1/RTailA2/RTailA3/RTailA4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1/LTailB2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1/LTailB2/LTailB3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailB1/LTailB2/LTailB3/LTailB4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1/RTailB2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1/RTailB2/RTailB3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailB1/RTailB2/RTailB3/RTailB4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1/LTailC2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1/LTailC2/LTailC3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/LTailC1/LTailC2/LTailC3/LTailC4\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1/RTailC2\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1/RTailC2/RTailC3\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n - serializedVersion: 3\n time: 0.16666667\n value: {x: 1, y: 1, z: 1}\n inSlope: {x: 0, y: 0, z: 0}\n outSlope: {x: 0, y: 0, z: 0}\n tangentMode: 0\n weightedMode: 0\n inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n path: pm0037_00/Origin/Waist/Hips/RTailC1/RTailC2/RTailC3/RTailC4\n m_FloatCurves:\n - curve:\n serializedVersion: 2\n m_Curve: []\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n attribute: material._NormalMapOffset.y\n path: Eye_OptMesh_2_0\n classID: 137\n script: {fileID: 0}\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: 0.25\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n attribute: material._NormalMapOffset.x\n path: Eye_OptMesh_2_0\n classID: 137\n script: {fileID: 0}\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: 1\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.033333335\n value: 1\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.06666667\n value: 1\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.13333334\n value: 0.5\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.16666667\n value: 0.5\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n attribute: material._NormalMapOffset.y\n path: Mouth_OptMesh_3_0\n classID: 137\n script: {fileID: 0}\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: 0.25\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n attribute: material._NormalMapOffset.x\n path: Mouth_OptMesh_3_0\n classID: 137\n script: {fileID: 0}\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: 1\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.033333335\n value: 1\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.06666667\n value: 1\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.13333334\n value: 0.5\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.16666667\n value: 0.5\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n attribute: material._BaseMapOffset.y\n path: Mouth_OptMesh_3_0\n classID: 137\n script: {fileID: 0}\n - curve:\n serializedVersion: 2\n m_Curve: []\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n attribute: material._BaseMapOffset.x\n path: Mouth_OptMesh_3_0\n classID: 137\n script: {fileID: 0}\n - curve:\n serializedVersion: 2\n m_Curve:\n - serializedVersion: 3\n time: 0\n value: 1\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.033333335\n value: 1\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.06666667\n value: 1\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.13333334\n value: 0.5\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n - serializedVersion: 3\n time: 0.16666667\n value: 0.5\n inSlope: Infinity\n outSlope: Infinity\n tangentMode: 31\n weightedMode: 0\n inWeight: 0\n outWeight: 0\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n attribute: material._OcclusionMapOffset.y\n path: Mouth_OptMesh_3_0\n classID: 137\n script: {fileID: 0}\n - curve:\n serializedVersion: 2\n m_Curve: []\n m_PreInfinity: 2\n m_PostInfinity: 2\n m_RotationOrder: 4\n attribute: material._OcclusionMapOffset.x\n path: Mouth_OptMesh_3_0\n classID: 137\n script: {fileID: 0}\n m_PPtrCurves: []\n m_SampleRate: 60\n m_WrapMode: 0\n m_Bounds:\n m_Center: {x: 0, y: 0, z: 0}\n m_Extent: {x: 0, y: 0, z: 0}\n m_ClipBindingConstant:\n genericBindings: []\n pptrCurveMapping: []\n m_AnimationClipSettings:\n serializedVersion: 2\n m_AdditiveReferencePoseClip: {fileID: 0}\n m_AdditiveReferencePoseTime: 0\n m_StartTime: 0\n m_StopTime: 0.1666667\n m_OrientationOffsetY: 0\n m_Level: 0\n m_CycleOffset: 0\n m_HasAdditiveReferencePose: 0\n m_LoopTime: 1\n m_LoopBlend: 0\n m_LoopBlendOrientation: 0\n m_LoopBlendPositionY: 0\n m_LoopBlendPositionXZ: 0\n m_KeepOriginalOrientation: 0\n m_KeepOriginalPositionY: 1\n m_KeepOriginalPositionXZ: 0\n m_HeightFromFeet: 0\n m_Mirror: 0\n m_EditorCurves: []\n m_EulerEditorCurves: []\n m_HasGenericRootTransform: 0\n m_HasMotionFloatCurves: 0\n m_Events: []\n"},"labels":{"kind":"string","value":"Unity3D Asset"}}},{"rowIdx":68,"cells":{"text":{"kind":"string","value":"package cim4j;\n\nimport java.util.List;\nimport java.util.Map;\nimport java.util.HashMap;\nimport cim4j.PowerSystemStabilizerDynamics;\nimport java.lang.ArrayIndexOutOfBoundsException;\nimport java.lang.IllegalArgumentException;\n\n\nimport cim4j.Simple_Float;\nimport cim4j.Boolean;\nimport cim4j.Seconds;\nimport cim4j.PU;\n\n\n\n/*\nItalian PSS - Detailed PSS.\n*/\npublic class Pss5 extends PowerSystemStabilizerDynamics\n{\n\tprivate BaseClass[] Pss5_class_attributes;\n\tprivate BaseClass[] Pss5_primitive_attributes;\n\tprivate java.lang.String rdfid;\n\n\tpublic void setRdfid(java.lang.String id) {\n\t\trdfid = id;\n\t}\n\n\tprivate abstract interface PrimitiveBuilder {\n\t\tpublic abstract BaseClass construct(java.lang.String value);\n\t};\n\n\tprivate enum Pss5_primitive_builder implements PrimitiveBuilder {\n\t\tkpe(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Simple_Float(value);\n\t\t\t}\n\t\t},\n\t\tkf(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Simple_Float(value);\n\t\t\t}\n\t\t},\n\t\tisfreq(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Boolean(value);\n\t\t\t}\n\t\t},\n\t\tkpss(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Simple_Float(value);\n\t\t\t}\n\t\t},\n\t\tctw2(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Boolean(value);\n\t\t\t}\n\t\t},\n\t\ttw1(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Seconds(value);\n\t\t\t}\n\t\t},\n\t\ttw2(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Seconds(value);\n\t\t\t}\n\t\t},\n\t\ttl1(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Seconds(value);\n\t\t\t}\n\t\t},\n\t\ttl2(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Seconds(value);\n\t\t\t}\n\t\t},\n\t\ttl3(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Seconds(value);\n\t\t\t}\n\t\t},\n\t\ttl4(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Seconds(value);\n\t\t\t}\n\t\t},\n\t\tvsmn(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new PU(value);\n\t\t\t}\n\t\t},\n\t\tvsmx(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new PU(value);\n\t\t\t}\n\t\t},\n\t\ttpe(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Seconds(value);\n\t\t\t}\n\t\t},\n\t\tpmm(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new PU(value);\n\t\t\t}\n\t\t},\n\t\tdeadband(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new PU(value);\n\t\t\t}\n\t\t},\n\t\tvadat(){\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new Boolean(value);\n\t\t\t}\n\t\t},\n\t\t\tLAST_ENUM() {\n\t\t\tpublic BaseClass construct (java.lang.String value) {\n\t\t\t\treturn new cim4j.Integer(\"0\");\n\t\t\t}\n\t\t};\n\t}\n\n\tprivate enum Pss5_class_attributes_enum {\n\t\tkpe,\n\t\tkf,\n\t\tisfreq,\n\t\tkpss,\n\t\tctw2,\n\t\ttw1,\n\t\ttw2,\n\t\ttl1,\n\t\ttl2,\n\t\ttl3,\n\t\ttl4,\n\t\tvsmn,\n\t\tvsmx,\n\t\ttpe,\n\t\tpmm,\n\t\tdeadband,\n\t\tvadat,\n\t\t\tLAST_ENUM;\n\t}\n\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\t\n\t\n\tpublic Pss5() {\n\t\tPss5_primitive_attributes = new BaseClass[Pss5_primitive_builder.values().length];\n\t\tPss5_class_attributes = new BaseClass[Pss5_class_attributes_enum.values().length];\n\t}\n\n\tpublic void updateAttributeInArray(Pss5_class_attributes_enum attrEnum, BaseClass value) {\n\t\ttry {\n\t\t\tPss5_class_attributes[attrEnum.ordinal()] = value;\n\t\t}\n\t\tcatch (ArrayIndexOutOfBoundsException aoobe) {\n\t\t\tSystem.out.println(\"No such attribute: \" + attrEnum.name() + \": \" + aoobe.getMessage());\n\t\t}\n\t}\n\n\tpublic void updateAttributeInArray(Pss5_primitive_builder attrEnum, BaseClass value) {\n\t\ttry {\n\t\t\tPss5_primitive_attributes[attrEnum.ordinal()] = value;\n\t\t}\n\t\tcatch (ArrayIndexOutOfBoundsException aoobe) {\n\t\t\tSystem.out.println(\"No such attribute: \" + attrEnum.name() + \": \" + aoobe.getMessage());\n\t\t}\n\t}\n\n\tpublic void setAttribute(java.lang.String attrName, BaseClass value) {\n\t\ttry {\n\t\t\tPss5_class_attributes_enum attrEnum = Pss5_class_attributes_enum.valueOf(attrName);\n\t\t\tupdateAttributeInArray(attrEnum, value);\n\t\t\tSystem.out.println(\"Updated Pss5, setting \" + attrName);\n\t\t}\n\t\tcatch (IllegalArgumentException iae)\n\t\t{\n\t\t\tsuper.setAttribute(attrName, value);\n\t\t}\n\t}\n\n\t/* If the attribute is a String, it is a primitive and we will make it into a BaseClass */\n\tpublic void setAttribute(java.lang.String attrName, java.lang.String value) {\n\t\ttry {\n\t\t\tPss5_primitive_builder attrEnum = Pss5_primitive_builder.valueOf(attrName);\n\t\t\tupdateAttributeInArray(attrEnum, attrEnum.construct(value));\n\t\t\tSystem.out.println(\"Updated Pss5, setting \" + attrName + \" to: \" + value);\n\t\t}\n\t\tcatch (IllegalArgumentException iae)\n\t\t{\n\t\t\tsuper.setAttribute(attrName, value);\n\t\t}\n\t}\n\n\tpublic java.lang.String toString(boolean topClass) {\n\t\tjava.lang.String result = \"\";\n\t\tjava.lang.String indent = \"\";\n\t\tif (topClass) {\n\t\t\tfor (Pss5_primitive_builder attrEnum: Pss5_primitive_builder.values()) {\n\t\t\t\tBaseClass bc = Pss5_primitive_attributes[attrEnum.ordinal()];\n\t\t\t\tif (bc != null) {\n\t\t\t\t\tresult += \" Pss5.\" + attrEnum.name() + \"(\" + bc.debugString() + \")\" + \" \" + bc.toString(false) + System.lineSeparator();\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor (Pss5_class_attributes_enum attrEnum: Pss5_class_attributes_enum.values()) {\n\t\t\t\tBaseClass bc = Pss5_class_attributes[attrEnum.ordinal()];\n\t\t\t\tif (bc != null) {\n\t\t\t\t\tresult += \" Pss5.\" + attrEnum.name() + \"(\" + bc.debugString() + \")\" + \" \" + bc.toString(false) + System.lineSeparator();\n\t\t\t\t}\n\t\t\t}\n\t\t\tresult += super.toString(true);\n\t\t}\n\t\telse {\n\t\t\tresult += \"(Pss5) RDFID: \" + rdfid;\n\t\t}\n\t\treturn result;\n\t}\n\n\tpublic final java.lang.String debugName = \"Pss5\";\n\n\tpublic java.lang.String debugString()\n\t{\n\t\treturn debugName;\n\t}\n\n\tpublic void setValue(java.lang.String s) {\n\t\tSystem.out.println(debugString() + \" is not sure what to do with \" + s);\n\t}\n\n\tpublic BaseClass construct() {\n\t\treturn new Pss5();\n }\n};\n"},"labels":{"kind":"string","value":"Java"}}},{"rowIdx":69,"cells":{"text":{"kind":"string","value":"import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { HttpErrorResponse } from '@angular/common/http';\nimport { Router } from '@angular/router';\nimport { ToastrService } from 'ngx-toastr';\nimport { Observable } from 'rxjs';\nimport { tap } from 'rxjs/operators';\nimport { environment } from '../../environments/environment';\n@Injectable()\nexport class ErrorInterceptor implements HttpInterceptor {\n\n constructor(private router: Router, private toastrService: ToastrService) { }\n // eslint-disable-next-line \n intercept(req: HttpRequest, next: HttpHandler): Observable> {\n return next.handle(req).pipe(\n // eslint-disable-next-line \n tap((event: HttpEvent) => { }, (err: any) => {\n if (err instanceof HttpErrorResponse) {\n // if (err.status === 401 || err.status === 403) {\n // this.router.navigate(['login']);\n // }\n if (!environment.production) {\n this.toastrService.error(err.message);\n }\n }\n }));\n }\n}\n"},"labels":{"kind":"string","value":"TypeScript"}}},{"rowIdx":70,"cells":{"text":{"kind":"string","value":"import React from 'react';\nimport { lookpath } from 'lookpath';\nimport fs from 'fs';\nimport { remote } from 'electron';\nimport path from 'path';\nimport log from 'electron-log';\nimport { execFile } from 'child_process';\nimport { XTerm } from 'xterm-for-react';\nimport { FitAddon } from 'xterm-addon-fit';\nimport { spawn } from 'node-pty';\nimport prompt from 'electron-prompt';\nimport https from 'https';\nimport styles from './Home.css';\n\nconst { app, dialog } = remote;\n\nexport default class Home extends React.Component<\n {\n program?: string;\n },\n {\n executable?: string | null;\n help?: string | null;\n arguments: string[];\n argvIndexShift: number;\n xTermRef?: React.RefObject;\n initError?: Error;\n downloaded?: boolean | null;\n }\n> {\n private readonly fitAddon: FitAddon;\n\n constructor(props: {}) {\n super(props);\n\n this.state = {\n arguments: [],\n argvIndexShift: 0\n };\n\n this.fitAddon = new FitAddon();\n }\n\n componentDidMount() {\n this.initialize().catch(e => {\n log.error('Failed to initialize', e);\n this.setState({ initError: e });\n });\n }\n\n // eslint-disable-next-line class-methods-use-this\n get program() {\n const { program } = this.props;\n return program || 'youtube-dl';\n }\n\n get downloadUrl() {\n const downloadUrls: { [program: string]: string | undefined } = {};\n\n switch (process.platform) {\n case 'win32':\n Object.assign(downloadUrls, {\n 'youtube-dl': 'https://yt-dl.org/downloads/latest/youtube-dl.exe'\n });\n break;\n\n case 'linux':\n Object.assign(downloadUrls, {\n 'youtube-dl': 'https://yt-dl.org/downloads/latest/youtube-dl'\n });\n break;\n\n default:\n Object.assign(downloadUrls, {});\n }\n\n return downloadUrls[this.program];\n }\n\n get installUrl() {\n const installUrls: { [program: string]: string | undefined } = {\n 'youtube-dl': 'https://ytdl-org.github.io/youtube-dl/download.html',\n ffmpeg: 'https://ffmpeg.zeranoe.com/builds/'\n };\n\n return installUrls[this.program];\n }\n\n async findExecutable(): Promise {\n try {\n const executable = path.join(\n app.getPath('userData'),\n 'downloads',\n this.program\n );\n await fs.promises.access(executable);\n return executable;\n } catch {\n // noop\n }\n\n try {\n const executable = path.join(\n app.getPath('userData'),\n 'downloads',\n `${this.program}.exe`\n );\n await fs.promises.access(executable);\n return executable;\n } catch {\n // noop\n }\n\n {\n const executable = await lookpath(this.program);\n if (executable) return executable;\n }\n\n // {\n // const executable = await lookpath(`${this.program}.exe`);\n // if (executable) return executable;\n // }\n\n return undefined;\n }\n\n protected async initialize() {\n const executable = await this.findExecutable();\n\n if (executable) {\n this.setState({ executable });\n\n const help: string | null = await new Promise((resolve, reject) =>\n execFile(executable, ['-h'], (e, stdout, stderr) => {\n if (e && (!e.code || e.killed || e.signal)) reject(e);\n else if (stdout) resolve(stdout);\n else if (stderr) resolve(stderr);\n else resolve(null);\n })\n );\n\n this.setState({ help });\n } else {\n this.setState({ executable: null });\n }\n }\n\n protected download(url: string) {\n return new Promise((resolve, reject) =>\n https.get(url, res => {\n // const filename = url.replace(/.*\\//, '');\n const filename =\n process.platform === 'win32' ? `${this.program}.exe` : this.program;\n const file = path.join(app.getPath('userData'), 'downloads', filename);\n\n res.pipe(fs.createWriteStream(file)).on('close', resolve);\n res.on('error', reject);\n })\n );\n }\n\n protected run() {\n const {\n executable,\n arguments: args,\n xTermRef: previousProcess\n } = this.state;\n\n if (typeof executable !== 'string')\n throw new Error(`${this.program} is not found`);\n\n if (previousProcess) throw new Error(`Process is already running`);\n\n const xTermRef = React.createRef();\n this.setState({ xTermRef });\n\n setImmediate(() => {\n if (!xTermRef.current) {\n log.warn('Failed to spawn process: Terminal unavailable');\n return;\n }\n\n try {\n this.fitAddon.fit();\n } catch (e) {\n log.warn('Failed to fit the terminal', e);\n }\n\n const { terminal } = xTermRef.current;\n\n const pty = spawn(executable, args, {\n cwd: app.getPath('downloads'),\n rows: terminal.rows,\n cols: terminal.cols\n });\n\n terminal.onData(data => pty.write(data));\n pty.onData(data => {\n if (xTermRef.current) xTermRef.current.terminal.write(data);\n else log.warn('Failed to write data to the terminal');\n });\n\n pty.onExit(({ exitCode, signal }) => {\n dialog\n .showMessageBox({\n title: `${this.program} finished`,\n message: exitCode\n ? `${this.program} failed with ${\n signal === undefined ? `code ${exitCode}` : `signal ${signal}`\n }`\n : `${this.program} completed`\n })\n .then(() => {\n this.setState({ xTermRef: undefined });\n return undefined;\n })\n .catch(e => {\n log.error(e);\n });\n });\n\n log.info('Started', this.program, JSON.stringify(args));\n });\n }\n\n protected renderHelp() {\n const { help } = this.state;\n\n if (help === undefined) {\n // todo revise wording\n return

Please wait, getting help...

;\n }\n\n if (help === null) {\n return

Sorry, help is not available

;\n }\n\n return
Subsets and Splits

No community queries yet

The top public SQL queries from the community will appear here once available.