{"templateId":"markdown","sharedDataIds":{"sidebar":"sidebar-@l10n/zh/sidebars.yaml"},"props":{"metadata":{"markdoc":{"tagList":[]},"type":"markdown"},"seo":{"title":"云手机文件上传与下载"},"dynamicMarkdocComponents":[],"compilationErrors":[],"ast":{"$$mdtype":"Tag","name":"article","attributes":{},"children":[{"$$mdtype":"Tag","name":"Heading","attributes":{"level":1,"id":"云手机文件上传与下载","__idx":0},"children":["云手机文件上传与下载"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["本文给出完整的文件传输对接流程：将本地文件上传到云手机、从云手机导出文件、轮询异步任务，以及在超时后安全恢复。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"选择-api","__idx":1},"children":["选择 API"]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"步骤"},"children":["步骤"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"开放 API"},"children":["开放 API"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"本地 API"},"children":["本地 API"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["Base URL"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["https://api.morelogin.com"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["http://127.0.0.1:40000"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["认证"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Authorization: Bearer <token>"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["启用本地 Token 时传入本地 Token"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["获取上传地址"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /cloudphone/uploadUrl"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /api/cloudphone/upload/file/signedUrl"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["下发已上传文件"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /cloudphone/uploadFile"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /api/cloudphone/upload/file"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["查询上传结果"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /cloudphone/uploadFileResult"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /api/cloudphone/upload/file/result"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["创建文件导出任务"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /cloudphone/download"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /api/cloudphone/download"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":["查询导出结果"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /cloudphone/download/result"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /api/cloudphone/download/result"]}]}]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["下文以开放 API 为例。本地 API 只需按上表替换 Base URL 和路径。云手机 ID 与任务 ID 必须始终按字符串保存；JavaScript 客户端不能先转换为 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["Number"]},"。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"本地-api-multipart-快捷方式","__idx":2},"children":["本地 API multipart 快捷方式"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["当文件与 MoreLogin 客户端位于同一台电脑时，本地 API 还提供 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["POST /api/cloudphone/uploadFile"]},"，请求类型为 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["multipart/form-data"]},"："]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"curl --request POST \"http://127.0.0.1:40000/api/cloudphone/uploadFile\" \\\n  --form 'id=1661515884160372' \\\n  --form 'uploadDest=/Download' \\\n  --form 'file=@./report.csv'\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["调用方位于远程服务器、文件较大，或需要通过 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["fileId"]}," 明确轮询状态时，建议使用下文的预签名 URL 流程。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"上传流程","__idx":3},"children":["上传流程"]},{"$$mdtype":"Tag","name":"Diagram","attributes":{"data-language":"mermaid","diagramType":"mermaid","diagramSource":"sequenceDiagram\n    participant Client as 调用方\n    participant API as MoreLogin API\n    participant Storage as 临时存储\n    participant Phone as 云手机\n    Client->>API: 1. 获取预签名地址\n    API-->>Client: presignedUrl\n    Client->>Storage: 2. PUT 文件内容\n    Storage-->>Client: 2xx\n    Client->>API: 3. 注册文件地址\n    API-->>Client: fileId, status=0\n    loop 直到终态\n        Client->>API: 4. 查询上传结果\n        API-->>Client: null / status 0、1 或 2\n    end\n    API->>Phone: 下发文件\n","diagramHtml":"<svg id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 873px;\" viewBox=\"-50 -10 873 624\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><style>\n    #diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d foreignObject {\n      overflow: visible;\n    }\n  </style><g><rect x=\"623\" y=\"538\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Phone\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"698\" y=\"570.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"698\" dy=\"0\">云手机</tspan></text></g><g><rect x=\"423\" y=\"538\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Storage\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"498\" y=\"570.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"498\" dy=\"0\">临时存储</tspan></text></g><g><rect x=\"223\" y=\"538\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"298\" y=\"570.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"298\" dy=\"0\">MoreLogin API</tspan></text></g><g><rect x=\"0\" y=\"538\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Client\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"570.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">调用方</tspan></text></g><g><line id=\"actor3\" x1=\"698\" y1=\"65\" x2=\"698\" y2=\"538\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Phone\" data-et=\"life-line\" data-id=\"Phone\"></line><g id=\"root-3\" data-et=\"participant\" data-type=\"participant\" data-id=\"Phone\"><rect x=\"623\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Phone\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"698\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"698\" dy=\"0\">云手机</tspan></text></g></g><g><line id=\"actor2\" x1=\"498\" y1=\"65\" x2=\"498\" y2=\"538\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Storage\" data-et=\"life-line\" data-id=\"Storage\"></line><g id=\"root-2\" data-et=\"participant\" data-type=\"participant\" data-id=\"Storage\"><rect x=\"423\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Storage\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"498\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"498\" dy=\"0\">临时存储</tspan></text></g></g><g><line id=\"actor1\" x1=\"298\" y1=\"65\" x2=\"298\" y2=\"538\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"API\" data-et=\"life-line\" data-id=\"API\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"API\"><rect x=\"223\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"298\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"298\" dy=\"0\">MoreLogin API</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"538\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Client\" data-et=\"life-line\" data-id=\"Client\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"Client\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Client\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">调用方</tspan></text></g></g><style>#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .error-icon{fill:#552222;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .error-text{fill:#552222;stroke:#552222;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .edge-thickness-normal{stroke-width:1px;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .edge-thickness-thick{stroke-width:3.5px;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .edge-pattern-solid{stroke-dasharray:0;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .edge-pattern-dashed{stroke-dasharray:3;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .edge-pattern-dotted{stroke-dasharray:2;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .marker{fill:#333333;stroke:#333333;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .marker.cross{stroke:#333333;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d svg{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d p{margin:0;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .actor{stroke:#9370DB;fill:#ECECFF;stroke-width:1;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d rect.note[data-look=\"neo\"]{stroke:#aaaa33;fill:#fff5ad;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d text.actor&gt;tspan{fill:black;stroke:none;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .actor-line{stroke:#9370DB;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [id$=\"-arrowhead\"] path{fill:#333;stroke:#333;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .sequenceNumber{fill:white;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [id$=\"-sequencenumber\"]{fill:#333;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [id$=\"-crosshead\"] path{fill:#333;stroke:#333;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .messageText{fill:#333;stroke:none;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .labelBox{stroke:#9370DB;fill:#ECECFF;filter:none;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .labelText,#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .labelText&gt;tspan{fill:black;stroke:none;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .loopText,#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .loopText&gt;tspan{fill:black;stroke:none;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .sectionTitle,#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .sectionTitle&gt;tspan{fill:black;stroke:none;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#9370DB;fill:#9370DB;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .note{stroke:#aaaa33;fill:#fff5ad;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .noteText,#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .noteText&gt;tspan{fill:black;stroke:none;font-weight:normal;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .activation0{fill:#f4f4f4;stroke:#666;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .activation1{fill:#f4f4f4;stroke:#666;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .activation2{fill:#f4f4f4;stroke:#666;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .actorPopupMenu{position:absolute;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .actorPopupMenuPanel{position:absolute;fill:#ECECFF;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .actor-man circle,#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d line{fill:#ECECFF;stroke-width:2px;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d g rect.rect{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));stroke:#9370DB;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d .node .neo-node{stroke:#9370DB;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [data-look=\"neo\"].node rect,#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [data-look=\"neo\"].cluster rect,#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [data-look=\"neo\"].node polygon{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [data-look=\"neo\"].swimlane.cluster rect{filter:none;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [data-look=\"neo\"].node path{stroke:#9370DB;stroke-width:1px;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [data-look=\"neo\"].node .outer-path{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [data-look=\"neo\"].node .neo-line path{stroke:#9370DB;filter:none;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [data-look=\"neo\"].node circle{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [data-look=\"neo\"].icon-shape .icon{fill:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d [data-look=\"neo\"].icon-shape .icon-neo path{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d :root{--mermaid-font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><g data-et=\"control-structure\" data-id=\"i9\"><line x1=\"64\" y1=\"341\" x2=\"309\" y2=\"341\" class=\"loopLine\"></line><line x1=\"309\" y1=\"341\" x2=\"309\" y2=\"474\" class=\"loopLine\"></line><line x1=\"64\" y1=\"474\" x2=\"309\" y2=\"474\" class=\"loopLine\"></line><line x1=\"64\" y1=\"341\" x2=\"64\" y2=\"474\" class=\"loopLine\"></line><polygon points=\"64,341 114,341 114,354 105.6,361 64,361\" class=\"labelBox\"></polygon><text x=\"89\" y=\"354\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"labelText\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">loop</text><text x=\"211.5\" y=\"359\" text-anchor=\"middle\" class=\"loopText\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\"><tspan x=\"211.5\">[直到终态]</tspan></text></g><text x=\"185\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">1. 获取预签名地址</text><line x1=\"76\" y1=\"109\" x2=\"294\" y2=\"109\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"Client\" data-to=\"API\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-arrowhead)\" style=\"fill: none;\"></line><text x=\"188\" y=\"124\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">presignedUrl</text><line x1=\"297\" y1=\"155\" x2=\"79\" y2=\"155\" class=\"messageLine1\" data-et=\"message\" data-id=\"i1\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"285\" y=\"170\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">2. PUT 文件内容</text><line x1=\"76\" y1=\"199\" x2=\"494\" y2=\"199\" class=\"messageLine0\" data-et=\"message\" data-id=\"i2\" data-from=\"Client\" data-to=\"Storage\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-arrowhead)\" style=\"fill: none;\"></line><text x=\"288\" y=\"214\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">2xx</text><line x1=\"497\" y1=\"243\" x2=\"79\" y2=\"243\" class=\"messageLine1\" data-et=\"message\" data-id=\"i3\" data-from=\"Storage\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"185\" y=\"258\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">3. 注册文件地址</text><line x1=\"76\" y1=\"287\" x2=\"294\" y2=\"287\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"Client\" data-to=\"API\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-arrowhead)\" style=\"fill: none;\"></line><text x=\"188\" y=\"302\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">fileId, status=0</text><line x1=\"297\" y1=\"331\" x2=\"79\" y2=\"331\" class=\"messageLine1\" data-et=\"message\" data-id=\"i5\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"185\" y=\"391\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">4. 查询上传结果</text><line x1=\"76\" y1=\"420\" x2=\"294\" y2=\"420\" class=\"messageLine0\" data-et=\"message\" data-id=\"i7\" data-from=\"Client\" data-to=\"API\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-arrowhead)\" style=\"fill: none;\"></line><text x=\"188\" y=\"435\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">null / status 0、1 或 2</text><line x1=\"297\" y1=\"464\" x2=\"79\" y2=\"464\" class=\"messageLine1\" data-et=\"message\" data-id=\"i8\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"497\" y=\"489\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">下发文件</text><line x1=\"299\" y1=\"518\" x2=\"694\" y2=\"518\" class=\"messageLine0\" data-et=\"message\" data-id=\"i10\" data-from=\"API\" data-to=\"Phone\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-dac13553073053b32449fd111d0162bed77fd8e128df3a5e2d804d3403e8db2d-arrowhead)\" style=\"fill: none;\"></line></svg>","diagramHtmlDark":"<svg id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 873px;\" viewBox=\"-50 -10 873 624\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><style>\n    #diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d foreignObject {\n      overflow: visible;\n    }\n  </style><g><rect x=\"623\" y=\"538\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Phone\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"698\" y=\"570.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"698\" dy=\"0\">云手机</tspan></text></g><g><rect x=\"423\" y=\"538\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Storage\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"498\" y=\"570.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"498\" dy=\"0\">临时存储</tspan></text></g><g><rect x=\"223\" y=\"538\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"298\" y=\"570.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"298\" dy=\"0\">MoreLogin API</tspan></text></g><g><rect x=\"0\" y=\"538\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Client\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"570.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">调用方</tspan></text></g><g><line id=\"actor3\" x1=\"698\" y1=\"65\" x2=\"698\" y2=\"538\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Phone\" data-et=\"life-line\" data-id=\"Phone\"></line><g id=\"root-3\" data-et=\"participant\" data-type=\"participant\" data-id=\"Phone\"><rect x=\"623\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Phone\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"698\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"698\" dy=\"0\">云手机</tspan></text></g></g><g><line id=\"actor2\" x1=\"498\" y1=\"65\" x2=\"498\" y2=\"538\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Storage\" data-et=\"life-line\" data-id=\"Storage\"></line><g id=\"root-2\" data-et=\"participant\" data-type=\"participant\" data-id=\"Storage\"><rect x=\"423\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Storage\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"498\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"498\" dy=\"0\">临时存储</tspan></text></g></g><g><line id=\"actor1\" x1=\"298\" y1=\"65\" x2=\"298\" y2=\"538\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"API\" data-et=\"life-line\" data-id=\"API\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"API\"><rect x=\"223\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"298\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"298\" dy=\"0\">MoreLogin API</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"538\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Client\" data-et=\"life-line\" data-id=\"Client\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"Client\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Client\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">调用方</tspan></text></g></g><style>#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .error-icon{fill:#a44141;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .error-text{fill:#ddd;stroke:#ddd;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .edge-thickness-normal{stroke-width:1px;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .edge-thickness-thick{stroke-width:3.5px;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .edge-pattern-solid{stroke-dasharray:0;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .edge-pattern-dashed{stroke-dasharray:3;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .edge-pattern-dotted{stroke-dasharray:2;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .marker{fill:lightgrey;stroke:lightgrey;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .marker.cross{stroke:lightgrey;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d svg{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d p{margin:0;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .actor{stroke:#ccc;fill:#1f2020;stroke-width:1;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d rect.note[data-look=\"neo\"]{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d text.actor&gt;tspan{fill:lightgrey;stroke:none;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .actor-line{stroke:#ccc;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:lightgrey;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:lightgrey;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [id$=\"-arrowhead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .sequenceNumber{fill:black;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [id$=\"-sequencenumber\"]{fill:lightgrey;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [id$=\"-crosshead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .messageText{fill:lightgrey;stroke:none;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .labelBox{stroke:#ccc;fill:#1f2020;filter:none;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .labelText,#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .labelText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .loopText,#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .loopText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .sectionTitle,#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .sectionTitle&gt;tspan{fill:lightgrey;stroke:none;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#ccc;fill:#ccc;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .note{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .noteText,#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .noteText&gt;tspan{fill:rgb(183.8476190475, 181.5523809523, 181.5523809523);stroke:none;font-weight:normal;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .activation0{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .activation1{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .activation2{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .actorPopupMenu{position:absolute;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .actorPopupMenuPanel{position:absolute;fill:#1f2020;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .actor-man circle,#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d line{fill:#1f2020;stroke-width:2px;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d g rect.rect{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));stroke:#ccc;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d .node .neo-node{stroke:#ccc;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [data-look=\"neo\"].node rect,#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [data-look=\"neo\"].cluster rect,#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [data-look=\"neo\"].node polygon{stroke:url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [data-look=\"neo\"].swimlane.cluster rect{filter:none;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [data-look=\"neo\"].node path{stroke:url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-gradient);stroke-width:1px;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [data-look=\"neo\"].node .neo-line path{stroke:#ccc;filter:none;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [data-look=\"neo\"].node circle{stroke:url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d :root{--mermaid-font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><g data-et=\"control-structure\" data-id=\"i9\"><line x1=\"64\" y1=\"341\" x2=\"309\" y2=\"341\" class=\"loopLine\"></line><line x1=\"309\" y1=\"341\" x2=\"309\" y2=\"474\" class=\"loopLine\"></line><line x1=\"64\" y1=\"474\" x2=\"309\" y2=\"474\" class=\"loopLine\"></line><line x1=\"64\" y1=\"341\" x2=\"64\" y2=\"474\" class=\"loopLine\"></line><polygon points=\"64,341 114,341 114,354 105.6,361 64,361\" class=\"labelBox\"></polygon><text x=\"89\" y=\"354\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"labelText\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">loop</text><text x=\"211.5\" y=\"359\" text-anchor=\"middle\" class=\"loopText\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\"><tspan x=\"211.5\">[直到终态]</tspan></text></g><text x=\"185\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">1. 获取预签名地址</text><line x1=\"76\" y1=\"109\" x2=\"294\" y2=\"109\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"Client\" data-to=\"API\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-arrowhead)\" style=\"fill: none;\"></line><text x=\"188\" y=\"124\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">presignedUrl</text><line x1=\"297\" y1=\"155\" x2=\"79\" y2=\"155\" class=\"messageLine1\" data-et=\"message\" data-id=\"i1\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"285\" y=\"170\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">2. PUT 文件内容</text><line x1=\"76\" y1=\"199\" x2=\"494\" y2=\"199\" class=\"messageLine0\" data-et=\"message\" data-id=\"i2\" data-from=\"Client\" data-to=\"Storage\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-arrowhead)\" style=\"fill: none;\"></line><text x=\"288\" y=\"214\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">2xx</text><line x1=\"497\" y1=\"243\" x2=\"79\" y2=\"243\" class=\"messageLine1\" data-et=\"message\" data-id=\"i3\" data-from=\"Storage\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"185\" y=\"258\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">3. 注册文件地址</text><line x1=\"76\" y1=\"287\" x2=\"294\" y2=\"287\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"Client\" data-to=\"API\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-arrowhead)\" style=\"fill: none;\"></line><text x=\"188\" y=\"302\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">fileId, status=0</text><line x1=\"297\" y1=\"331\" x2=\"79\" y2=\"331\" class=\"messageLine1\" data-et=\"message\" data-id=\"i5\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"185\" y=\"391\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">4. 查询上传结果</text><line x1=\"76\" y1=\"420\" x2=\"294\" y2=\"420\" class=\"messageLine0\" data-et=\"message\" data-id=\"i7\" data-from=\"Client\" data-to=\"API\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-arrowhead)\" style=\"fill: none;\"></line><text x=\"188\" y=\"435\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">null / status 0、1 或 2</text><line x1=\"297\" y1=\"464\" x2=\"79\" y2=\"464\" class=\"messageLine1\" data-et=\"message\" data-id=\"i8\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"497\" y=\"489\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">下发文件</text><line x1=\"299\" y1=\"518\" x2=\"694\" y2=\"518\" class=\"messageLine0\" data-et=\"message\" data-id=\"i10\" data-from=\"API\" data-to=\"Phone\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-fe8122f2827d79f2b2e588a653870ac5934c557be293d0f714a85d77355d085d-arrowhead)\" style=\"fill: none;\"></line></svg>"},"children":["sequenceDiagram\n    participant Client as 调用方\n    participant API as MoreLogin API\n    participant Storage as 临时存储\n    participant Phone as 云手机\n    Client->>API: 1. 获取预签名地址\n    API-->>Client: presignedUrl\n    Client->>Storage: 2. PUT 文件内容\n    Storage-->>Client: 2xx\n    Client->>API: 3. 注册文件地址\n    API-->>Client: fileId, status=0\n    loop 直到终态\n        Client->>API: 4. 查询上传结果\n        API-->>Client: null / status 0、1 或 2\n    end\n    API->>Phone: 下发文件\n"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"1-获取预签名上传地址","__idx":4},"children":["1. 获取预签名上传地址"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"curl --request POST \"https://api.morelogin.com/cloudphone/uploadUrl\" \\\n  --header \"Authorization: Bearer $MORELOGIN_TOKEN\" \\\n  --header \"Content-Type: application/json\" \\\n  --data '{\n    \"id\": \"1661515884160372\",\n    \"fileName\": \"report.csv\"\n  }'\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["响应中的地址为 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["data.presignedUrl"]},"。临时对象会在 7 天后自动删除，但不会删除已经成功下发到云手机内的文件。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"2-上传文件内容","__idx":5},"children":["2. 上传文件内容"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["直接向预签名地址上传文件，不要在这个存储请求中携带 MoreLogin Bearer Token。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"curl --location --request PUT \\\n  --upload-file \"./report.csv\" \\\n  \"$PRESIGNED_URL\"\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["仅在存储服务返回成功 HTTP 状态后继续。如果请求失败或超时，可以在地址仍有效时对同一个地址重试 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["PUT"]},"。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"3-注册文件并下发到云手机","__idx":6},"children":["3. 注册文件并下发到云手机"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["传入刚刚上传的对象地址。预签名 URL 的查询参数包含凭证；如果对象存储配置允许，请在保存或记录 URL 前移除查询参数。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"FILE_URL=\"${PRESIGNED_URL%%\\?*}\"\n\ncurl --request POST \"https://api.morelogin.com/cloudphone/uploadFile\" \\\n  --header \"Authorization: Bearer $MORELOGIN_TOKEN\" \\\n  --header \"Content-Type: application/json\" \\\n  --data \"$(jq -n \\\n    --arg id '1661515884160372' \\\n    --arg url \"$FILE_URL\" \\\n    --arg dest '/Download' \\\n    '{id: $id, url: $url, uploadDest: $dest, uploadType: 1}')\"\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["普通文件使用 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["uploadType: 1"]},"。只有支持直播的 MP4 文件才使用 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["uploadType: 2"]},"。保存响应中的 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["data.fileId"]},"。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"4-轮询上传结果","__idx":7},"children":["4. 轮询上传结果"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"curl --request POST \"https://api.morelogin.com/cloudphone/uploadFileResult\" \\\n  --header \"Authorization: Bearer $MORELOGIN_TOKEN\" \\\n  --header \"Content-Type: application/json\" \\\n  --data '{\n    \"id\": \"1661515884160372\",\n    \"fileId\": \"1661515884160111\"\n  }'\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"data / data.status"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["data"]}," / ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["data.status"]}]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"含义"},"children":["含义"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"处理方式"},"children":["处理方式"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["null"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["任务暂时还不可见"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["等待后继续轮询"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["0"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["上传中"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["等待后继续轮询"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["1"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["上传成功"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["停止轮询"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["2"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["上传失败"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["停止轮询并记录 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["requestId"]}]}]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["建议每 2 秒查询一次，并根据文件大小设置客户端总超时。状态查询超时不代表上传任务失败，应继续查询已有 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["fileId"]},"，不要直接重复创建任务。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"下载流程","__idx":8},"children":["下载流程"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["这里的“下载”实际是先将云手机文件导出到临时地址，再由调用方下载，是一个两阶段异步流程。"]},{"$$mdtype":"Tag","name":"Diagram","attributes":{"data-language":"mermaid","diagramType":"mermaid","diagramSource":"sequenceDiagram\n    participant Client as 调用方\n    participant API as MoreLogin API\n    participant Phone as 云手机\n    participant Storage as 临时存储\n    Client->>API: 1. 创建文件导出任务（id、filePath）\n    API->>Phone: 读取并导出文件\n    API-->>Client: downId\n    loop status=10 时继续轮询\n        Client->>API: 2. 查询导出结果（id、downId）\n        API-->>Client: status=10\n    end\n    Phone->>Storage: 写入导出文件\n    API-->>Client: status=20、downUrl\n    Client->>Storage: 3. GET downUrl\n    Storage-->>Client: 返回文件内容\n","diagramHtml":"<svg id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 968px;\" viewBox=\"-50 -10 968 622\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><style>\n    #diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 foreignObject {\n      overflow: visible;\n    }\n  </style><g><rect x=\"718\" y=\"536\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Storage\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"793\" y=\"568.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"793\" dy=\"0\">临时存储</tspan></text></g><g><rect x=\"518\" y=\"536\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Phone\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"593\" y=\"568.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"593\" dy=\"0\">云手机</tspan></text></g><g><rect x=\"318\" y=\"536\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"393\" y=\"568.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"393\" dy=\"0\">MoreLogin API</tspan></text></g><g><rect x=\"0\" y=\"536\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Client\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"568.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">调用方</tspan></text></g><g><line id=\"actor3\" x1=\"793\" y1=\"65\" x2=\"793\" y2=\"536\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Storage\" data-et=\"life-line\" data-id=\"Storage\"></line><g id=\"root-3\" data-et=\"participant\" data-type=\"participant\" data-id=\"Storage\"><rect x=\"718\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Storage\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"793\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"793\" dy=\"0\">临时存储</tspan></text></g></g><g><line id=\"actor2\" x1=\"593\" y1=\"65\" x2=\"593\" y2=\"536\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Phone\" data-et=\"life-line\" data-id=\"Phone\"></line><g id=\"root-2\" data-et=\"participant\" data-type=\"participant\" data-id=\"Phone\"><rect x=\"518\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Phone\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"593\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"593\" dy=\"0\">云手机</tspan></text></g></g><g><line id=\"actor1\" x1=\"393\" y1=\"65\" x2=\"393\" y2=\"536\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"API\" data-et=\"life-line\" data-id=\"API\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"API\"><rect x=\"318\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"393\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"393\" dy=\"0\">MoreLogin API</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"536\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Client\" data-et=\"life-line\" data-id=\"Client\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"Client\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Client\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">调用方</tspan></text></g></g><style>#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;fill:#333;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .error-icon{fill:#552222;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .error-text{fill:#552222;stroke:#552222;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .edge-thickness-normal{stroke-width:1px;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .edge-thickness-thick{stroke-width:3.5px;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .edge-pattern-solid{stroke-dasharray:0;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .edge-pattern-dashed{stroke-dasharray:3;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .edge-pattern-dotted{stroke-dasharray:2;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .marker{fill:#333333;stroke:#333333;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .marker.cross{stroke:#333333;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 svg{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 p{margin:0;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .actor{stroke:#9370DB;fill:#ECECFF;stroke-width:1;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 rect.note[data-look=\"neo\"]{stroke:#aaaa33;fill:#fff5ad;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 text.actor&gt;tspan{fill:black;stroke:none;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .actor-line{stroke:#9370DB;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:#333;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [id$=\"-arrowhead\"] path{fill:#333;stroke:#333;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .sequenceNumber{fill:white;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [id$=\"-sequencenumber\"]{fill:#333;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [id$=\"-crosshead\"] path{fill:#333;stroke:#333;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .messageText{fill:#333;stroke:none;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .labelBox{stroke:#9370DB;fill:#ECECFF;filter:none;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .labelText,#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .labelText&gt;tspan{fill:black;stroke:none;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .loopText,#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .loopText&gt;tspan{fill:black;stroke:none;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .sectionTitle,#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .sectionTitle&gt;tspan{fill:black;stroke:none;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#9370DB;fill:#9370DB;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .note{stroke:#aaaa33;fill:#fff5ad;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .noteText,#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .noteText&gt;tspan{fill:black;stroke:none;font-weight:normal;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .activation0{fill:#f4f4f4;stroke:#666;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .activation1{fill:#f4f4f4;stroke:#666;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .activation2{fill:#f4f4f4;stroke:#666;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .actorPopupMenu{position:absolute;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .actorPopupMenuPanel{position:absolute;fill:#ECECFF;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .actor-man circle,#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 line{fill:#ECECFF;stroke-width:2px;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 g rect.rect{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));stroke:#9370DB;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 .node .neo-node{stroke:#9370DB;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [data-look=\"neo\"].node rect,#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [data-look=\"neo\"].cluster rect,#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [data-look=\"neo\"].node polygon{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [data-look=\"neo\"].swimlane.cluster rect{filter:none;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [data-look=\"neo\"].node path{stroke:#9370DB;stroke-width:1px;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [data-look=\"neo\"].node .outer-path{filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [data-look=\"neo\"].node .neo-line path{stroke:#9370DB;filter:none;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [data-look=\"neo\"].node circle{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [data-look=\"neo\"].icon-shape .icon{fill:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 [data-look=\"neo\"].icon-shape .icon-neo path{stroke:#9370DB;filter:drop-shadow(1px 2px 2px rgba(185, 185, 185, 1));}#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24 :root{--mermaid-font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><g data-et=\"control-structure\" data-id=\"i6\"><line x1=\"64\" y1=\"207\" x2=\"404\" y2=\"207\" class=\"loopLine\"></line><line x1=\"404\" y1=\"207\" x2=\"404\" y2=\"340\" class=\"loopLine\"></line><line x1=\"64\" y1=\"340\" x2=\"404\" y2=\"340\" class=\"loopLine\"></line><line x1=\"64\" y1=\"207\" x2=\"64\" y2=\"340\" class=\"loopLine\"></line><polygon points=\"64,207 114,207 114,220 105.6,227 64,227\" class=\"labelBox\"></polygon><text x=\"89\" y=\"220\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"labelText\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">loop</text><text x=\"259\" y=\"225\" text-anchor=\"middle\" class=\"loopText\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\"><tspan x=\"259\">[status=10 时继续轮询]</tspan></text></g><text x=\"233\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">1. 创建文件导出任务（id、filePath）</text><line x1=\"76\" y1=\"109\" x2=\"389\" y2=\"109\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"Client\" data-to=\"API\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-arrowhead)\" style=\"fill: none;\"></line><text x=\"492\" y=\"124\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">读取并导出文件</text><line x1=\"394\" y1=\"153\" x2=\"589\" y2=\"153\" class=\"messageLine0\" data-et=\"message\" data-id=\"i1\" data-from=\"API\" data-to=\"Phone\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-arrowhead)\" style=\"fill: none;\"></line><text x=\"236\" y=\"168\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">downId</text><line x1=\"392\" y1=\"197\" x2=\"79\" y2=\"197\" class=\"messageLine1\" data-et=\"message\" data-id=\"i2\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"233\" y=\"257\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">2. 查询导出结果（id、downId）</text><line x1=\"76\" y1=\"286\" x2=\"389\" y2=\"286\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"Client\" data-to=\"API\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-arrowhead)\" style=\"fill: none;\"></line><text x=\"236\" y=\"301\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">status=10</text><line x1=\"392\" y1=\"330\" x2=\"79\" y2=\"330\" class=\"messageLine1\" data-et=\"message\" data-id=\"i5\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"692\" y=\"355\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">写入导出文件</text><line x1=\"594\" y1=\"384\" x2=\"789\" y2=\"384\" class=\"messageLine0\" data-et=\"message\" data-id=\"i7\" data-from=\"Phone\" data-to=\"Storage\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-arrowhead)\" style=\"fill: none;\"></line><text x=\"236\" y=\"399\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">status=20、downUrl</text><line x1=\"392\" y1=\"428\" x2=\"79\" y2=\"428\" class=\"messageLine1\" data-et=\"message\" data-id=\"i8\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"433\" y=\"443\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">3. GET downUrl</text><line x1=\"76\" y1=\"472\" x2=\"789\" y2=\"472\" class=\"messageLine0\" data-et=\"message\" data-id=\"i9\" data-from=\"Client\" data-to=\"Storage\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-arrowhead)\" style=\"fill: none;\"></line><text x=\"436\" y=\"487\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">返回文件内容</text><line x1=\"792\" y1=\"516\" x2=\"79\" y2=\"516\" class=\"messageLine1\" data-et=\"message\" data-id=\"i10\" data-from=\"Storage\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-c15729c507ecde7798e14b8b2ccb291d162caae26554aac916cb2c54a05bcf24-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line></svg>","diagramHtmlDark":"<svg id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd\" width=\"100%\" xmlns=\"http://www.w3.org/2000/svg\" style=\"max-width: 968px;\" viewBox=\"-50 -10 968 622\" role=\"graphics-document document\" aria-roledescription=\"sequence\"><style>\n    #diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd foreignObject {\n      overflow: visible;\n    }\n  </style><g><rect x=\"718\" y=\"536\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Storage\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"793\" y=\"568.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"793\" dy=\"0\">临时存储</tspan></text></g><g><rect x=\"518\" y=\"536\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Phone\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"593\" y=\"568.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"593\" dy=\"0\">云手机</tspan></text></g><g><rect x=\"318\" y=\"536\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"393\" y=\"568.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"393\" dy=\"0\">MoreLogin API</tspan></text></g><g><rect x=\"0\" y=\"536\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Client\" rx=\"3\" ry=\"3\" class=\"actor actor-bottom\"></rect><text x=\"75\" y=\"568.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">调用方</tspan></text></g><g><line id=\"actor3\" x1=\"793\" y1=\"65\" x2=\"793\" y2=\"536\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Storage\" data-et=\"life-line\" data-id=\"Storage\"></line><g id=\"root-3\" data-et=\"participant\" data-type=\"participant\" data-id=\"Storage\"><rect x=\"718\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Storage\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"793\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"793\" dy=\"0\">临时存储</tspan></text></g></g><g><line id=\"actor2\" x1=\"593\" y1=\"65\" x2=\"593\" y2=\"536\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Phone\" data-et=\"life-line\" data-id=\"Phone\"></line><g id=\"root-2\" data-et=\"participant\" data-type=\"participant\" data-id=\"Phone\"><rect x=\"518\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Phone\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"593\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"593\" dy=\"0\">云手机</tspan></text></g></g><g><line id=\"actor1\" x1=\"393\" y1=\"65\" x2=\"393\" y2=\"536\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"API\" data-et=\"life-line\" data-id=\"API\"></line><g id=\"root-1\" data-et=\"participant\" data-type=\"participant\" data-id=\"API\"><rect x=\"318\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"API\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"393\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"393\" dy=\"0\">MoreLogin API</tspan></text></g></g><g><line id=\"actor0\" x1=\"75\" y1=\"65\" x2=\"75\" y2=\"536\" class=\"actor-line 200\" stroke-width=\"0.5px\" stroke=\"#999\" name=\"Client\" data-et=\"life-line\" data-id=\"Client\"></line><g id=\"root-0\" data-et=\"participant\" data-type=\"participant\" data-id=\"Client\"><rect x=\"0\" y=\"0\" fill=\"#eaeaea\" stroke=\"#666\" width=\"150\" height=\"65\" name=\"Client\" rx=\"3\" ry=\"3\" class=\"actor actor-top\"></rect><text x=\"75\" y=\"32.5\" dominant-baseline=\"central\" alignment-baseline=\"central\" class=\"actor actor-box\" style=\"text-anchor: middle; font-size: 16px; font-weight: 400; font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif;\"><tspan x=\"75\" dy=\"0\">调用方</tspan></text></g></g><style>#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;fill:#ccc;}@keyframes edge-animation-frame{from{stroke-dashoffset:0;}}@keyframes dash{to{stroke-dashoffset:0;}}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .edge-animation-slow{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 50s linear infinite;stroke-linecap:round;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .edge-animation-fast{stroke-dasharray:9,5!important;stroke-dashoffset:900;animation:dash 20s linear infinite;stroke-linecap:round;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .error-icon{fill:#a44141;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .error-text{fill:#ddd;stroke:#ddd;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .edge-thickness-normal{stroke-width:1px;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .edge-thickness-thick{stroke-width:3.5px;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .edge-pattern-solid{stroke-dasharray:0;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .edge-thickness-invisible{stroke-width:0;fill:none;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .edge-pattern-dashed{stroke-dasharray:3;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .edge-pattern-dotted{stroke-dasharray:2;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .marker{fill:lightgrey;stroke:lightgrey;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .marker.cross{stroke:lightgrey;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd svg{font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;font-size:16px;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd p{margin:0;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .actor{stroke:#ccc;fill:#1f2020;stroke-width:1;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd rect.actor.outer-path[data-look=\"neo\"]{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd rect.note[data-look=\"neo\"]{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd text.actor&gt;tspan{fill:lightgrey;stroke:none;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .actor-line{stroke:#ccc;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .innerArc{stroke-width:1.5;stroke-dasharray:none;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:lightgrey;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .messageLine1{stroke-width:1.5;stroke-dasharray:2,2;stroke:lightgrey;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [id$=\"-arrowhead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .sequenceNumber{fill:black;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [id$=\"-sequencenumber\"]{fill:lightgrey;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [id$=\"-crosshead\"] path{fill:lightgrey;stroke:lightgrey;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .messageText{fill:lightgrey;stroke:none;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .labelBox{stroke:#ccc;fill:#1f2020;filter:none;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .labelText,#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .labelText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .loopText,#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .loopText&gt;tspan{fill:lightgrey;stroke:none;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .sectionTitle,#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .sectionTitle&gt;tspan{fill:lightgrey;stroke:none;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .loopLine{stroke-width:2px;stroke-dasharray:2,2;stroke:#ccc;fill:#ccc;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .note{stroke:hsl(180, 0%, 18.3529411765%);fill:hsl(180, 1.5873015873%, 28.3529411765%);}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .noteText,#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .noteText&gt;tspan{fill:rgb(183.8476190475, 181.5523809523, 181.5523809523);stroke:none;font-weight:normal;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .activation0{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .activation1{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .activation2{fill:hsl(180, 1.5873015873%, 28.3529411765%);stroke:#ccc;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .actorPopupMenu{position:absolute;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .actorPopupMenuPanel{position:absolute;fill:#1f2020;box-shadow:0px 8px 16px 0px rgba(0,0,0,0.2);filter:drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .actor-man circle,#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd line{fill:#1f2020;stroke-width:2px;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd g rect.rect{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));stroke:#ccc;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd .node .neo-node{stroke:#ccc;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [data-look=\"neo\"].node rect,#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [data-look=\"neo\"].cluster rect,#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [data-look=\"neo\"].node polygon{stroke:url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [data-look=\"neo\"].swimlane.cluster rect{filter:none;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [data-look=\"neo\"].node path{stroke:url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-gradient);stroke-width:1px;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [data-look=\"neo\"].node .outer-path{filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [data-look=\"neo\"].node .neo-line path{stroke:#ccc;filter:none;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [data-look=\"neo\"].node circle{stroke:url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [data-look=\"neo\"].node circle .state-start{fill:#000000;}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [data-look=\"neo\"].icon-shape .icon{fill:url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd [data-look=\"neo\"].icon-shape .icon-neo path{stroke:url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-gradient);filter:drop-shadow( 1px 2px 2px rgba(185,185,185,1));}#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd :root{--mermaid-font-family:\"Redocly Mermaid Sans\",Arial,\"Liberation Sans\",Arimo,Helvetica,\"Redocly Mermaid CJK\",sans-serif;}</style><g></g><defs><symbol id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-computer\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M2 2v13h20v-13h-20zm18 11h-16v-9h16v9zm-10.228 6l.466-1h3.524l.467 1h-4.457zm14.228 3h-24l2-6h2.104l-1.33 4h18.45l-1.297-4h2.073l2 6zm-5-10h-14v-7h14v7z\"></path></symbol></defs><defs><symbol id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-database\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path transform=\"scale(.5)\" d=\"M12.258.001l.256.004.255.005.253.008.251.01.249.012.247.015.246.016.242.019.241.02.239.023.236.024.233.027.231.028.229.031.225.032.223.034.22.036.217.038.214.04.211.041.208.043.205.045.201.046.198.048.194.05.191.051.187.053.183.054.18.056.175.057.172.059.168.06.163.061.16.063.155.064.15.066.074.033.073.033.071.034.07.034.069.035.068.035.067.035.066.035.064.036.064.036.062.036.06.036.06.037.058.037.058.037.055.038.055.038.053.038.052.038.051.039.05.039.048.039.047.039.045.04.044.04.043.04.041.04.04.041.039.041.037.041.036.041.034.041.033.042.032.042.03.042.029.042.027.042.026.043.024.043.023.043.021.043.02.043.018.044.017.043.015.044.013.044.012.044.011.045.009.044.007.045.006.045.004.045.002.045.001.045v17l-.001.045-.002.045-.004.045-.006.045-.007.045-.009.044-.011.045-.012.044-.013.044-.015.044-.017.043-.018.044-.02.043-.021.043-.023.043-.024.043-.026.043-.027.042-.029.042-.03.042-.032.042-.033.042-.034.041-.036.041-.037.041-.039.041-.04.041-.041.04-.043.04-.044.04-.045.04-.047.039-.048.039-.05.039-.051.039-.052.038-.053.038-.055.038-.055.038-.058.037-.058.037-.06.037-.06.036-.062.036-.064.036-.064.036-.066.035-.067.035-.068.035-.069.035-.07.034-.071.034-.073.033-.074.033-.15.066-.155.064-.16.063-.163.061-.168.06-.172.059-.175.057-.18.056-.183.054-.187.053-.191.051-.194.05-.198.048-.201.046-.205.045-.208.043-.211.041-.214.04-.217.038-.22.036-.223.034-.225.032-.229.031-.231.028-.233.027-.236.024-.239.023-.241.02-.242.019-.246.016-.247.015-.249.012-.251.01-.253.008-.255.005-.256.004-.258.001-.258-.001-.256-.004-.255-.005-.253-.008-.251-.01-.249-.012-.247-.015-.245-.016-.243-.019-.241-.02-.238-.023-.236-.024-.234-.027-.231-.028-.228-.031-.226-.032-.223-.034-.22-.036-.217-.038-.214-.04-.211-.041-.208-.043-.204-.045-.201-.046-.198-.048-.195-.05-.19-.051-.187-.053-.184-.054-.179-.056-.176-.057-.172-.059-.167-.06-.164-.061-.159-.063-.155-.064-.151-.066-.074-.033-.072-.033-.072-.034-.07-.034-.069-.035-.068-.035-.067-.035-.066-.035-.064-.036-.063-.036-.062-.036-.061-.036-.06-.037-.058-.037-.057-.037-.056-.038-.055-.038-.053-.038-.052-.038-.051-.039-.049-.039-.049-.039-.046-.039-.046-.04-.044-.04-.043-.04-.041-.04-.04-.041-.039-.041-.037-.041-.036-.041-.034-.041-.033-.042-.032-.042-.03-.042-.029-.042-.027-.042-.026-.043-.024-.043-.023-.043-.021-.043-.02-.043-.018-.044-.017-.043-.015-.044-.013-.044-.012-.044-.011-.045-.009-.044-.007-.045-.006-.045-.004-.045-.002-.045-.001-.045v-17l.001-.045.002-.045.004-.045.006-.045.007-.045.009-.044.011-.045.012-.044.013-.044.015-.044.017-.043.018-.044.02-.043.021-.043.023-.043.024-.043.026-.043.027-.042.029-.042.03-.042.032-.042.033-.042.034-.041.036-.041.037-.041.039-.041.04-.041.041-.04.043-.04.044-.04.046-.04.046-.039.049-.039.049-.039.051-.039.052-.038.053-.038.055-.038.056-.038.057-.037.058-.037.06-.037.061-.036.062-.036.063-.036.064-.036.066-.035.067-.035.068-.035.069-.035.07-.034.072-.034.072-.033.074-.033.151-.066.155-.064.159-.063.164-.061.167-.06.172-.059.176-.057.179-.056.184-.054.187-.053.19-.051.195-.05.198-.048.201-.046.204-.045.208-.043.211-.041.214-.04.217-.038.22-.036.223-.034.226-.032.228-.031.231-.028.234-.027.236-.024.238-.023.241-.02.243-.019.245-.016.247-.015.249-.012.251-.01.253-.008.255-.005.256-.004.258-.001.258.001zm-9.258 20.499v.01l.001.021.003.021.004.022.005.021.006.022.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.023.018.024.019.024.021.024.022.025.023.024.024.025.052.049.056.05.061.051.066.051.07.051.075.051.079.052.084.052.088.052.092.052.097.052.102.051.105.052.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.048.144.049.147.047.152.047.155.047.16.045.163.045.167.043.171.043.176.041.178.041.183.039.187.039.19.037.194.035.197.035.202.033.204.031.209.03.212.029.216.027.219.025.222.024.226.021.23.02.233.018.236.016.24.015.243.012.246.01.249.008.253.005.256.004.259.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.021.224-.024.22-.026.216-.027.212-.028.21-.031.205-.031.202-.034.198-.034.194-.036.191-.037.187-.039.183-.04.179-.04.175-.042.172-.043.168-.044.163-.045.16-.046.155-.046.152-.047.148-.048.143-.049.139-.049.136-.05.131-.05.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.053.083-.051.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.05.023-.024.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.023.01-.022.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.127l-.077.055-.08.053-.083.054-.085.053-.087.052-.09.052-.093.051-.095.05-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.045-.118.044-.12.043-.122.042-.124.042-.126.041-.128.04-.13.04-.132.038-.134.038-.135.037-.138.037-.139.035-.142.035-.143.034-.144.033-.147.032-.148.031-.15.03-.151.03-.153.029-.154.027-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.01-.179.008-.179.008-.181.006-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.006-.179-.008-.179-.008-.178-.01-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.027-.153-.029-.151-.03-.15-.03-.148-.031-.146-.032-.145-.033-.143-.034-.141-.035-.14-.035-.137-.037-.136-.037-.134-.038-.132-.038-.13-.04-.128-.04-.126-.041-.124-.042-.122-.042-.12-.044-.117-.043-.116-.045-.113-.045-.112-.046-.109-.047-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.05-.093-.052-.09-.051-.087-.052-.085-.053-.083-.054-.08-.054-.077-.054v4.127zm0-5.654v.011l.001.021.003.021.004.021.005.022.006.022.007.022.009.022.01.022.011.023.012.023.013.023.015.024.016.023.017.024.018.024.019.024.021.024.022.024.023.025.024.024.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.052.11.051.114.051.119.052.123.05.127.051.131.05.135.049.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.044.171.042.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.022.23.02.233.018.236.016.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.012.241-.015.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.048.139-.05.136-.049.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.051.051-.049.023-.025.023-.024.021-.025.02-.024.019-.024.018-.024.017-.024.015-.023.014-.023.013-.024.012-.022.01-.023.01-.023.008-.022.006-.022.006-.022.004-.021.004-.022.001-.021.001-.021v-4.139l-.077.054-.08.054-.083.054-.085.052-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.049-.105.048-.106.047-.109.047-.111.046-.114.045-.115.044-.118.044-.12.044-.122.042-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.035-.143.033-.144.033-.147.033-.148.031-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.025-.161.024-.162.023-.163.022-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.011-.178.009-.179.009-.179.007-.181.007-.182.005-.182.004-.184.003-.184.002h-.37l-.184-.002-.184-.003-.182-.004-.182-.005-.181-.007-.179-.007-.179-.009-.178-.009-.176-.011-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.022-.162-.023-.161-.024-.159-.025-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.031-.146-.033-.145-.033-.143-.033-.141-.035-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.04-.126-.041-.124-.042-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.047-.105-.048-.102-.049-.1-.049-.097-.05-.095-.051-.093-.051-.09-.051-.087-.053-.085-.052-.083-.054-.08-.054-.077-.054v4.139zm0-5.666v.011l.001.02.003.022.004.021.005.022.006.021.007.022.009.023.01.022.011.023.012.023.013.023.015.023.016.024.017.024.018.023.019.024.021.025.022.024.023.024.024.025.052.05.056.05.061.05.066.051.07.051.075.052.079.051.084.052.088.052.092.052.097.052.102.052.105.051.11.052.114.051.119.051.123.051.127.05.131.05.135.05.139.049.144.048.147.048.152.047.155.046.16.045.163.045.167.043.171.043.176.042.178.04.183.04.187.038.19.037.194.036.197.034.202.033.204.032.209.03.212.028.216.027.219.025.222.024.226.021.23.02.233.018.236.017.24.014.243.012.246.01.249.008.253.006.256.003.259.001.26-.001.257-.003.254-.006.25-.008.247-.01.244-.013.241-.014.237-.016.233-.018.231-.02.226-.022.224-.024.22-.025.216-.027.212-.029.21-.03.205-.032.202-.033.198-.035.194-.036.191-.037.187-.039.183-.039.179-.041.175-.042.172-.043.168-.044.163-.045.16-.045.155-.047.152-.047.148-.048.143-.049.139-.049.136-.049.131-.051.126-.05.123-.051.118-.052.114-.051.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.052.07-.051.065-.051.06-.051.056-.05.051-.049.023-.025.023-.025.021-.024.02-.024.019-.024.018-.024.017-.024.015-.023.014-.024.013-.023.012-.023.01-.022.01-.023.008-.022.006-.022.006-.022.004-.022.004-.021.001-.021.001-.021v-4.153l-.077.054-.08.054-.083.053-.085.053-.087.053-.09.051-.093.051-.095.051-.097.05-.1.049-.102.048-.105.048-.106.048-.109.046-.111.046-.114.046-.115.044-.118.044-.12.043-.122.043-.124.042-.126.041-.128.04-.13.039-.132.039-.134.038-.135.037-.138.036-.139.036-.142.034-.143.034-.144.033-.147.032-.148.032-.15.03-.151.03-.153.028-.154.028-.156.027-.158.026-.159.024-.161.024-.162.023-.163.023-.165.021-.166.02-.167.019-.169.018-.169.017-.171.016-.173.015-.173.014-.175.013-.175.012-.177.01-.178.01-.179.009-.179.007-.181.006-.182.006-.182.004-.184.003-.184.001-.185.001-.185-.001-.184-.001-.184-.003-.182-.004-.182-.006-.181-.006-.179-.007-.179-.009-.178-.01-.176-.01-.176-.012-.175-.013-.173-.014-.172-.015-.171-.016-.17-.017-.169-.018-.167-.019-.166-.02-.165-.021-.163-.023-.162-.023-.161-.024-.159-.024-.157-.026-.156-.027-.155-.028-.153-.028-.151-.03-.15-.03-.148-.032-.146-.032-.145-.033-.143-.034-.141-.034-.14-.036-.137-.036-.136-.037-.134-.038-.132-.039-.13-.039-.128-.041-.126-.041-.124-.041-.122-.043-.12-.043-.117-.044-.116-.044-.113-.046-.112-.046-.109-.046-.106-.048-.105-.048-.102-.048-.1-.05-.097-.049-.095-.051-.093-.051-.09-.052-.087-.052-.085-.053-.083-.053-.08-.054-.077-.054v4.153zm8.74-8.179l-.257.004-.254.005-.25.008-.247.011-.244.012-.241.014-.237.016-.233.018-.231.021-.226.022-.224.023-.22.026-.216.027-.212.028-.21.031-.205.032-.202.033-.198.034-.194.036-.191.038-.187.038-.183.04-.179.041-.175.042-.172.043-.168.043-.163.045-.16.046-.155.046-.152.048-.148.048-.143.048-.139.049-.136.05-.131.05-.126.051-.123.051-.118.051-.114.052-.11.052-.106.052-.101.052-.096.052-.092.052-.088.052-.083.052-.079.052-.074.051-.07.052-.065.051-.06.05-.056.05-.051.05-.023.025-.023.024-.021.024-.02.025-.019.024-.018.024-.017.023-.015.024-.014.023-.013.023-.012.023-.01.023-.01.022-.008.022-.006.023-.006.021-.004.022-.004.021-.001.021-.001.021.001.021.001.021.004.021.004.022.006.021.006.023.008.022.01.022.01.023.012.023.013.023.014.023.015.024.017.023.018.024.019.024.02.025.021.024.023.024.023.025.051.05.056.05.06.05.065.051.07.052.074.051.079.052.083.052.088.052.092.052.096.052.101.052.106.052.11.052.114.052.118.051.123.051.126.051.131.05.136.05.139.049.143.048.148.048.152.048.155.046.16.046.163.045.168.043.172.043.175.042.179.041.183.04.187.038.191.038.194.036.198.034.202.033.205.032.21.031.212.028.216.027.22.026.224.023.226.022.231.021.233.018.237.016.241.014.244.012.247.011.25.008.254.005.257.004.26.001.26-.001.257-.004.254-.005.25-.008.247-.011.244-.012.241-.014.237-.016.233-.018.231-.021.226-.022.224-.023.22-.026.216-.027.212-.028.21-.031.205-.032.202-.033.198-.034.194-.036.191-.038.187-.038.183-.04.179-.041.175-.042.172-.043.168-.043.163-.045.16-.046.155-.046.152-.048.148-.048.143-.048.139-.049.136-.05.131-.05.126-.051.123-.051.118-.051.114-.052.11-.052.106-.052.101-.052.096-.052.092-.052.088-.052.083-.052.079-.052.074-.051.07-.052.065-.051.06-.05.056-.05.051-.05.023-.025.023-.024.021-.024.02-.025.019-.024.018-.024.017-.023.015-.024.014-.023.013-.023.012-.023.01-.023.01-.022.008-.022.006-.023.006-.021.004-.022.004-.021.001-.021.001-.021-.001-.021-.001-.021-.004-.021-.004-.022-.006-.021-.006-.023-.008-.022-.01-.022-.01-.023-.012-.023-.013-.023-.014-.023-.015-.024-.017-.023-.018-.024-.019-.024-.02-.025-.021-.024-.023-.024-.023-.025-.051-.05-.056-.05-.06-.05-.065-.051-.07-.052-.074-.051-.079-.052-.083-.052-.088-.052-.092-.052-.096-.052-.101-.052-.106-.052-.11-.052-.114-.052-.118-.051-.123-.051-.126-.051-.131-.05-.136-.05-.139-.049-.143-.048-.148-.048-.152-.048-.155-.046-.16-.046-.163-.045-.168-.043-.172-.043-.175-.042-.179-.041-.183-.04-.187-.038-.191-.038-.194-.036-.198-.034-.202-.033-.205-.032-.21-.031-.212-.028-.216-.027-.22-.026-.224-.023-.226-.022-.231-.021-.233-.018-.237-.016-.241-.014-.244-.012-.247-.011-.25-.008-.254-.005-.257-.004-.26-.001-.26.001z\"></path></symbol></defs><defs><symbol id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-clock\" width=\"24\" height=\"24\"><path transform=\"scale(.5)\" d=\"M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm5.848 12.459c.202.038.202.333.001.372-1.907.361-6.045 1.111-6.547 1.111-.719 0-1.301-.582-1.301-1.301 0-.512.77-5.447 1.125-7.445.034-.192.312-.181.343.014l.985 6.238 5.394 1.011z\"></path></symbol></defs><defs><marker id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-arrowhead\" refX=\"7.9\" refY=\"5\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M -1 0 L 10 5 L 0 10 z\"></path></marker></defs><defs><marker id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-crosshead\" markerWidth=\"15\" markerHeight=\"8\" orient=\"auto\" refX=\"4\" refY=\"4.5\"><path fill=\"none\" stroke=\"#000000\" stroke-width=\"1pt\" d=\"M 1,2 L 6,7 M 6,2 L 1,7\" style=\"stroke-dasharray: 0, 0;\"></path></marker></defs><defs><marker id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-filled-head\" refX=\"15.5\" refY=\"7\" markerWidth=\"20\" markerHeight=\"28\" orient=\"auto\"><path d=\"M 18,7 L9,13 L14,7 L9,1 Z\"></path></marker></defs><defs><marker id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-sequencenumber\" refX=\"15\" refY=\"15\" markerWidth=\"60\" markerHeight=\"40\" orient=\"auto\"><circle cx=\"15\" cy=\"15\" r=\"6\"></circle></marker></defs><defs><marker id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-solidTopArrowHead\" refX=\"7.9\" refY=\"7.25\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 8 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-solidBottomArrowHead\" refX=\"7.9\" refY=\"0.75\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 10 0 L 0 8 z\"></path></marker></defs><defs><marker id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-stickTopArrowHead\" refX=\"7.5\" refY=\"7\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 0 L 7 7\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><defs><marker id=\"diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-stickBottomArrowHead\" refX=\"7.5\" refY=\"0\" markerUnits=\"userSpaceOnUse\" markerWidth=\"12\" markerHeight=\"12\" orient=\"auto-start-reverse\"><path d=\"M 0 7 L 7 0\" stroke=\"black\" stroke-width=\"1.5\" fill=\"none\"></path></marker></defs><g data-et=\"control-structure\" data-id=\"i6\"><line x1=\"64\" y1=\"207\" x2=\"404\" y2=\"207\" class=\"loopLine\"></line><line x1=\"404\" y1=\"207\" x2=\"404\" y2=\"340\" class=\"loopLine\"></line><line x1=\"64\" y1=\"340\" x2=\"404\" y2=\"340\" class=\"loopLine\"></line><line x1=\"64\" y1=\"207\" x2=\"64\" y2=\"340\" class=\"loopLine\"></line><polygon points=\"64,207 114,207 114,220 105.6,227 64,227\" class=\"labelBox\"></polygon><text x=\"89\" y=\"220\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"labelText\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">loop</text><text x=\"259\" y=\"225\" text-anchor=\"middle\" class=\"loopText\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\"><tspan x=\"259\">[status=10 时继续轮询]</tspan></text></g><text x=\"233\" y=\"80\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">1. 创建文件导出任务（id、filePath）</text><line x1=\"76\" y1=\"109\" x2=\"389\" y2=\"109\" class=\"messageLine0\" data-et=\"message\" data-id=\"i0\" data-from=\"Client\" data-to=\"API\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-arrowhead)\" style=\"fill: none;\"></line><text x=\"492\" y=\"124\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">读取并导出文件</text><line x1=\"394\" y1=\"153\" x2=\"589\" y2=\"153\" class=\"messageLine0\" data-et=\"message\" data-id=\"i1\" data-from=\"API\" data-to=\"Phone\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-arrowhead)\" style=\"fill: none;\"></line><text x=\"236\" y=\"168\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">downId</text><line x1=\"392\" y1=\"197\" x2=\"79\" y2=\"197\" class=\"messageLine1\" data-et=\"message\" data-id=\"i2\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"233\" y=\"257\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">2. 查询导出结果（id、downId）</text><line x1=\"76\" y1=\"286\" x2=\"389\" y2=\"286\" class=\"messageLine0\" data-et=\"message\" data-id=\"i4\" data-from=\"Client\" data-to=\"API\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-arrowhead)\" style=\"fill: none;\"></line><text x=\"236\" y=\"301\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">status=10</text><line x1=\"392\" y1=\"330\" x2=\"79\" y2=\"330\" class=\"messageLine1\" data-et=\"message\" data-id=\"i5\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"692\" y=\"355\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">写入导出文件</text><line x1=\"594\" y1=\"384\" x2=\"789\" y2=\"384\" class=\"messageLine0\" data-et=\"message\" data-id=\"i7\" data-from=\"Phone\" data-to=\"Storage\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-arrowhead)\" style=\"fill: none;\"></line><text x=\"236\" y=\"399\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">status=20、downUrl</text><line x1=\"392\" y1=\"428\" x2=\"79\" y2=\"428\" class=\"messageLine1\" data-et=\"message\" data-id=\"i8\" data-from=\"API\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line><text x=\"433\" y=\"443\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">3. GET downUrl</text><line x1=\"76\" y1=\"472\" x2=\"789\" y2=\"472\" class=\"messageLine0\" data-et=\"message\" data-id=\"i9\" data-from=\"Client\" data-to=\"Storage\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-arrowhead)\" style=\"fill: none;\"></line><text x=\"436\" y=\"487\" text-anchor=\"middle\" dominant-baseline=\"middle\" alignment-baseline=\"middle\" class=\"messageText\" dy=\"1em\" style=\"font-family: &quot;Redocly Mermaid Sans&quot;, Arial, &quot;Liberation Sans&quot;, Arimo, Helvetica, &quot;Redocly Mermaid CJK&quot;, sans-serif; font-size: 16px; font-weight: 400;\">返回文件内容</text><line x1=\"792\" y1=\"516\" x2=\"79\" y2=\"516\" class=\"messageLine1\" data-et=\"message\" data-id=\"i10\" data-from=\"Storage\" data-to=\"Client\" stroke-width=\"2\" stroke=\"none\" marker-end=\"url(#diagram-44003034114c6bcb88bfdb1eb2a0b38f4e96f1d020b2a192ed7fd102fd62cbdd-arrowhead)\" style=\"stroke-dasharray: 3, 3; fill: none;\"></line></svg>"},"children":["sequenceDiagram\n    participant Client as 调用方\n    participant API as MoreLogin API\n    participant Phone as 云手机\n    participant Storage as 临时存储\n    Client->>API: 1. 创建文件导出任务（id、filePath）\n    API->>Phone: 读取并导出文件\n    API-->>Client: downId\n    loop status=10 时继续轮询\n        Client->>API: 2. 查询导出结果（id、downId）\n        API-->>Client: status=10\n    end\n    Phone->>Storage: 写入导出文件\n    API-->>Client: status=20、downUrl\n    Client->>Storage: 3. GET downUrl\n    Storage-->>Client: 返回文件内容\n"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["如果轮询返回 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["30"]},"（失败）或 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["40"]},"（已取消），应停止流程，不要再请求 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["downUrl"]},"。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"1-创建文件导出任务","__idx":9},"children":["1. 创建文件导出任务"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["必须传入包含文件名的 Android 绝对路径。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"curl --request POST \"https://api.morelogin.com/cloudphone/download\" \\\n  --header \"Authorization: Bearer $MORELOGIN_TOKEN\" \\\n  --header \"Content-Type: application/json\" \\\n  --data '{\n    \"id\": \"1661515884160372\",\n    \"filePath\": \"/sdcard/Download/report.csv\"\n  }'\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["保存 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["data.downId"]},"。该请求只创建导出任务，不会直接返回文件内容。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":3,"id":"2-轮询并获取下载地址","__idx":10},"children":["2. 轮询并获取下载地址"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"curl --request POST \"https://api.morelogin.com/cloudphone/download/result\" \\\n  --header \"Authorization: Bearer $MORELOGIN_TOKEN\" \\\n  --header \"Content-Type: application/json\" \\\n  --data '{\n    \"id\": \"1661515884160372\",\n    \"downId\": \"1661515884160999\"\n  }'\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"div","attributes":{"className":"md-table-wrapper"},"children":[{"$$mdtype":"Tag","name":"table","attributes":{"className":"md"},"children":[{"$$mdtype":"Tag","name":"thead","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"data.status"},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["data.status"]}]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"含义"},"children":["含义"]},{"$$mdtype":"Tag","name":"th","attributes":{"data-label":"处理方式"},"children":["处理方式"]}]}]},{"$$mdtype":"Tag","name":"tbody","attributes":{},"children":[{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["10"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["执行中"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["等待后继续轮询"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["20"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["成功"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["使用 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["data.downUrl"]}," 下载"]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["30"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["失败"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["停止并记录 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["requestId"]}]}]},{"$$mdtype":"Tag","name":"tr","attributes":{},"children":[{"$$mdtype":"Tag","name":"td","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["40"]}]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["已取消"]},{"$$mdtype":"Tag","name":"td","attributes":{},"children":["停止；仍有需要时再创建新任务"]}]}]}]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["状态为 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["20"]}," 后应尽快下载文件："]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"bash","header":{"controls":{"copy":{}}},"source":"curl --location \"$DOWN_URL\" --output \"./report.csv\"\n","lang":"bash"},"children":[]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["不要向 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["downUrl"]}," 携带 MoreLogin Bearer Token。预签名上传地址和下载地址都应视为敏感信息，不应写入应用日志。"]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"完整-python-示例","__idx":11},"children":["完整 Python 示例"]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["下面的代码需要安装 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["requests"]},"。它会同时检查 HTTP 状态和业务 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["code"]},"，设置轮询截止时间，并始终复用服务端返回的任务 ID。"]},{"$$mdtype":"Tag","name":"CodeBlock","attributes":{"data-language":"python","header":{"controls":{"copy":{}}},"source":"import os\nimport time\nfrom pathlib import Path\n\nimport requests\n\nBASE_URL = \"https://api.morelogin.com\"\nTOKEN = os.environ[\"MORELOGIN_TOKEN\"]\nPHONE_ID = \"1661515884160372\"\nHEADERS = {\"Authorization\": f\"Bearer {TOKEN}\"}\n\n\ndef api_post(path, payload):\n    response = requests.post(\n        f\"{BASE_URL}{path}\", json=payload, headers=HEADERS, timeout=30\n    )\n    response.raise_for_status()\n    body = response.json()\n    if body.get(\"code\") != 0:\n        raise RuntimeError(\n            f\"API error code={body.get('code')} msg={body.get('msg')} \"\n            f\"requestId={body.get('requestId')}\"\n        )\n    return body\n\n\ndef wait_for(path, payload, terminal, timeout=300):\n    deadline = time.monotonic() + timeout\n    while time.monotonic() < deadline:\n        body = api_post(path, payload)\n        data = body.get(\"data\")\n        if data is not None and data.get(\"status\") in terminal:\n            return body\n        time.sleep(2)\n    raise TimeoutError(f\"Timed out while polling {path}; keep the task ID\")\n\n\ndef upload_to_phone(local_path, destination=\"/Download\"):\n    path = Path(local_path)\n    signed = api_post(\n        \"/cloudphone/uploadUrl\", {\"id\": PHONE_ID, \"fileName\": path.name}\n    )\n    presigned_url = signed[\"data\"][\"presignedUrl\"]\n    with path.open(\"rb\") as stream:\n        put_response = requests.put(presigned_url, data=stream, timeout=120)\n    put_response.raise_for_status()\n\n    object_url = presigned_url.split(\"?\", 1)[0]\n    created = api_post(\n        \"/cloudphone/uploadFile\",\n        {\n            \"id\": PHONE_ID,\n            \"url\": object_url,\n            \"uploadDest\": destination,\n            \"uploadType\": 1,\n        },\n    )\n    file_id = created[\"data\"][\"fileId\"]\n    result = wait_for(\n        \"/cloudphone/uploadFileResult\",\n        {\"id\": PHONE_ID, \"fileId\": file_id},\n        terminal={1, 2},\n    )\n    if result[\"data\"][\"status\"] != 1:\n        raise RuntimeError(f\"Upload failed; requestId={result.get('requestId')}\")\n    return file_id\n\n\ndef download_from_phone(remote_path, local_path):\n    created = api_post(\n        \"/cloudphone/download\", {\"id\": PHONE_ID, \"filePath\": remote_path}\n    )\n    down_id = created[\"data\"][\"downId\"]\n    result = wait_for(\n        \"/cloudphone/download/result\",\n        {\"id\": PHONE_ID, \"downId\": down_id},\n        terminal={20, 30, 40},\n    )\n    if result[\"data\"][\"status\"] != 20:\n        raise RuntimeError(f\"Download export failed; requestId={result.get('requestId')}\")\n\n    with requests.get(result[\"data\"][\"downUrl\"], stream=True, timeout=120) as response:\n        response.raise_for_status()\n        with open(local_path, \"wb\") as output:\n            for chunk in response.iter_content(1024 * 1024):\n                if chunk:\n                    output.write(chunk)\n    return down_id\n\n\nupload_to_phone(\"./report.csv\")\ndownload_from_phone(\"/sdcard/Download/report.csv\", \"./downloaded-report.csv\")\n","lang":"python"},"children":[]},{"$$mdtype":"Tag","name":"Heading","attributes":{"level":2,"id":"生产接入检查清单","__idx":12},"children":["生产接入检查清单"]},{"$$mdtype":"Tag","name":"ul","attributes":{},"children":[{"$$mdtype":"Tag","name":"li","attributes":{},"children":["必须检查 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["code == 0"]},"，HTTP ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["200"]}," 本身不代表业务操作成功。"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":[{"$$mdtype":"Tag","name":"code","attributes":{},"children":["id"]},"、",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["fileId"]}," 和 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["downId"]}," 始终按字符串保存。"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["状态查询使用退避重试。创建任务请求超时后，如果已经获得任务 ID，应先查询原任务。"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["限制并发传输数量，并遵守",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/zh/api-reference/getting-started/rate-limits"},"children":["限流规则"]},"。"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["大文件传输前检查本地文件大小与云手机剩余存储空间。"]},{"$$mdtype":"Tag","name":"li","attributes":{},"children":["为排障记录 ",{"$$mdtype":"Tag","name":"code","attributes":{},"children":["requestId"]},"、端点、云手机 ID、任务 ID 和终态，但必须脱敏 Token 与签名 URL。"]}]},{"$$mdtype":"Tag","name":"p","attributes":{},"children":["完整字段定义参见",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/zh/api-reference/cloud-phone/open-api"},"children":["云手机开放 API"]},"和",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/zh/api-reference/cloud-phone/local-api"},"children":["云手机本地 API"]},"；通用轮询与重试规则参见",{"$$mdtype":"Tag","name":"MarkdownLink","attributes":{"href":"/zh/api-reference/getting-started/async-operations"},"children":["异步操作"]},"。"]}]},"headings":[{"value":"云手机文件上传与下载","id":"云手机文件上传与下载","depth":1},{"value":"选择 API","id":"选择-api","depth":2},{"value":"本地 API multipart 快捷方式","id":"本地-api-multipart-快捷方式","depth":3},{"value":"上传流程","id":"上传流程","depth":2},{"value":"1. 获取预签名上传地址","id":"1-获取预签名上传地址","depth":3},{"value":"2. 上传文件内容","id":"2-上传文件内容","depth":3},{"value":"3. 注册文件并下发到云手机","id":"3-注册文件并下发到云手机","depth":3},{"value":"4. 轮询上传结果","id":"4-轮询上传结果","depth":3},{"value":"下载流程","id":"下载流程","depth":2},{"value":"1. 创建文件导出任务","id":"1-创建文件导出任务","depth":3},{"value":"2. 轮询并获取下载地址","id":"2-轮询并获取下载地址","depth":3},{"value":"完整 Python 示例","id":"完整-python-示例","depth":2},{"value":"生产接入检查清单","id":"生产接入检查清单","depth":2}],"frontmatter":{"seo":{"title":"云手机文件上传与下载"}},"lastModified":"2026-09-02T11:22:17.000Z","pagePropGetterError":{"message":"","name":""}},"slug":"/zh/api-reference/cloud-phone/file-transfer","userData":{"isAuthenticated":false,"teams":["anonymous"]},"isPublic":true}