mirror of
https://github.com/daydreamer-json/ak-endfield-api-archive.git
synced 2026-04-09 17:12:26 +02:00
Compare commits
78 Commits
26d5daba58
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c89e632007 | ||
|
|
4ed490f202 | ||
|
|
8ca4b41874 | ||
|
|
b2de352608 | ||
|
|
0144ff917b | ||
|
|
82f3e4a3ee | ||
|
|
b6f0ae569d | ||
|
|
d4d7dec019 | ||
|
|
23532dc4f5 | ||
|
|
876a703285 | ||
|
|
980e71187c | ||
|
|
e7616840da | ||
|
|
e127290685 | ||
|
|
2c96220a42 | ||
|
|
84027f1acf | ||
|
|
3e2b94dda3 | ||
|
|
0ab26d11d1 | ||
|
|
3d51461634 | ||
|
|
070e2d5e52 | ||
|
|
41d7a54f5f | ||
|
|
d2ebb64455 | ||
|
|
c815a012c0 | ||
|
|
44270fcff9 | ||
|
|
de0f619968 | ||
|
|
521db6d000 | ||
|
|
8c03feb9b8 | ||
|
|
ccadd3747f | ||
|
|
5e9af546a2 | ||
|
|
df26d76107 | ||
|
|
97fe58600b | ||
|
|
2b25a65b8b | ||
|
|
08951c7d26 | ||
|
|
89f429f456 | ||
|
|
9f7729001f | ||
|
|
898415e33c | ||
|
|
80dbeeb545 | ||
|
|
75899425a1 | ||
|
|
b0b4f7dbc8 | ||
|
|
0619f2a21a | ||
|
|
bc1455acef | ||
|
|
d7c9c663e2 | ||
|
|
1b09b8e699 | ||
|
|
8b6c1abc2f | ||
|
|
255d633310 | ||
|
|
66814631d2 | ||
|
|
6d9866de81 | ||
|
|
1121c822a9 | ||
|
|
11054c6f47 | ||
|
|
30f306607d | ||
|
|
6e08db5391 | ||
|
|
d016141812 | ||
|
|
288f88d212 | ||
|
|
a8ed333e3a | ||
|
|
89e0ffe37c | ||
|
|
dcbb97f8dd | ||
|
|
08dd898af6 | ||
|
|
357823a175 | ||
|
|
6e797cd739 | ||
|
|
204859ecc3 | ||
|
|
fcc4cd771f | ||
|
|
5861283ade | ||
|
|
f2162a971c | ||
|
|
07a825129e | ||
|
|
7e4c653110 | ||
|
|
d8ee3c8238 | ||
|
|
17ab19eaab | ||
|
|
e4850b8c02 | ||
|
|
2b84beaa1b | ||
|
|
6f0246a3a4 | ||
|
|
e817952d73 | ||
|
|
e452c1ba10 | ||
|
|
e786a7f7cb | ||
|
|
f81fe95940 | ||
|
|
392df1d56d | ||
|
|
d71bea496e | ||
|
|
828b43a034 | ||
|
|
1e67fa3a81 | ||
|
|
ce8584442f |
28
.github/workflows/main.yml
vendored
28
.github/workflows/main.yml
vendored
@@ -20,6 +20,10 @@ jobs:
|
|||||||
uses: oven-sh/setup-bun@v2
|
uses: oven-sh/setup-bun@v2
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: bun install
|
run: bun install
|
||||||
|
- name: Configure git
|
||||||
|
run: |
|
||||||
|
git config user.name "github-actions[bot]"
|
||||||
|
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
||||||
- name: Create config auth
|
- name: Create config auth
|
||||||
env:
|
env:
|
||||||
CONFIG_AUTH_YAML_CTX: ${{ secrets.CONFIG_AUTH_YAML }}
|
CONFIG_AUTH_YAML_CTX: ${{ secrets.CONFIG_AUTH_YAML }}
|
||||||
@@ -35,14 +39,24 @@ jobs:
|
|||||||
- name: Format output folder
|
- name: Format output folder
|
||||||
run: bun x oxfmt output
|
run: bun x oxfmt output
|
||||||
- name: Git commit and push
|
- name: Git commit and push
|
||||||
|
id: commit_1
|
||||||
|
continue-on-error: true
|
||||||
uses: iarekylew00t/verified-bot-commit@v2
|
uses: iarekylew00t/verified-bot-commit@v2
|
||||||
with:
|
with:
|
||||||
message: "[Auto] API update"
|
message: "[Auto] API update"
|
||||||
files: |
|
files: |
|
||||||
output/akEndfield/**
|
output/akEndfield/**
|
||||||
output/raw/**
|
output/raw/**
|
||||||
output/mirror_file_list.json
|
output/mirror_file_list_pending.json
|
||||||
|
output/mirror_file_res_list_pending.json
|
||||||
|
output/mirror_file_res_patch_list_pending.json
|
||||||
if-no-commit: info
|
if-no-commit: info
|
||||||
|
- name: Git commit and push (Fallback)
|
||||||
|
if: steps.commit_1.outcome == 'failure'
|
||||||
|
run: |
|
||||||
|
git add output/akEndfield/** output/raw/** output/mirror_file_list_pending.json output/mirror_file_res_list_pending.json output/mirror_file_res_patch_list_pending.json
|
||||||
|
git commit -m "[Auto] API update" || echo "No changes to commit"
|
||||||
|
git push
|
||||||
- name: Run GitHub mirror upload
|
- name: Run GitHub mirror upload
|
||||||
run: bun run src/main.ts ghMirrorUpload
|
run: bun run src/main.ts ghMirrorUpload
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
@@ -51,10 +65,22 @@ jobs:
|
|||||||
- name: Git pull
|
- name: Git pull
|
||||||
run: git pull
|
run: git pull
|
||||||
- name: Git commit and push
|
- name: Git commit and push
|
||||||
|
id: commit_2
|
||||||
|
continue-on-error: true
|
||||||
uses: iarekylew00t/verified-bot-commit@v2
|
uses: iarekylew00t/verified-bot-commit@v2
|
||||||
with:
|
with:
|
||||||
message: "[Auto] API update"
|
message: "[Auto] API update"
|
||||||
files: |
|
files: |
|
||||||
output/mirror_file_list.json
|
output/mirror_file_list.json
|
||||||
output/mirror_file_list_pending.json
|
output/mirror_file_list_pending.json
|
||||||
|
output/mirror_file_res_list.json.zst
|
||||||
|
output/mirror_file_res_list_pending.json
|
||||||
|
output/mirror_file_res_patch_list.json.zst
|
||||||
|
output/mirror_file_res_patch_list_pending.json
|
||||||
if-no-commit: info
|
if-no-commit: info
|
||||||
|
- name: Git commit and push (Fallback)
|
||||||
|
if: steps.commit_2.outcome == 'failure'
|
||||||
|
run: |
|
||||||
|
git add output/mirror_file_list.json output/mirror_file_list_pending.json output/mirror_file_res_list.json.zst output/mirror_file_res_list_pending.json output/mirror_file_res_patch_list.json.zst output/mirror_file_res_patch_list_pending.json
|
||||||
|
git commit -m "[Auto] API update" || echo "No changes to commit"
|
||||||
|
git push
|
||||||
|
|||||||
64
README.md
64
README.md
@@ -1,56 +1,62 @@
|
|||||||
<h1 align="center">ak-endfield-api-archive</h2>
|
<h1 align="center">ak-endfield-api-archive</h1>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://github.com/palmcivet/awesome-arknights-endfield">
|
<a href="https://github.com/palmcivet/awesome-arknights-endfield"><img src="https://raw.githubusercontent.com/palmcivet/awesome-arknights-endfield/refs/heads/main/assets/badge-for-the-badge.svg" alt="Awesome Arknights Endfield" /></a>
|
||||||
<img src="https://github.com/palmcivet/awesome-arknights-endfield/blob/main/assets/badge-for-the-badge.svg" alt="Awesome Arknights Endfield badge" />
|
</p>
|
||||||
</a>
|
<p align="center">
|
||||||
|
<a href="https://github.com/daydreamer-json/ak-endfield-api-archive/actions/workflows/main.yml"><img src="https://github.com/daydreamer-json/ak-endfield-api-archive/actions/workflows/main.yml/badge.svg" alt="GitHub Actions" /></a>
|
||||||
|
<img src="https://api.cron-job.org/jobs/7183534/5f3f37a732a92096/status-0.svg" alt="Cron Job" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
Monitor changes to responses from various Arknights: Endfield APIs and record them in this repository.
|
This repository monitors and records changes to various Arknights: Endfield API responses.
|
||||||
|
|
||||||
Updates are checked about every 10 minutes and automatically pushed by GitHub Actions.
|
Updates are checked approximately every 5 minutes and automatically pushed via GitHub Actions.
|
||||||
API outputs are stored in the [`output`](/output/) directory.
|
API outputs are stored in the [`output`](/output/) directory.
|
||||||
|
|
||||||
The APIs currently being monitored are as follows:
|
## [Download Library](https://ak-endfield-api-archive.daydreamer-json.cc/)
|
||||||
|
|
||||||
|
For a historical overview of game packages and other resources, please click the link above.
|
||||||
|
|
||||||
|
## Contents of the Archive
|
||||||
|
|
||||||
|
The following APIs are currently being monitored:
|
||||||
- Launcher
|
- Launcher
|
||||||
- Get latest game (Global, China)
|
- Get latest game (Global, China)
|
||||||
- Get latest game resources (Global, China)
|
- Get latest game resources (Global, China)
|
||||||
- Get latest launcher (Global, China)
|
- Get latest launcher (Global, China)
|
||||||
- Get launcher web resources (Global, China)
|
- Get launcher web resources (Global, China)
|
||||||
- Announcement
|
- Announcements
|
||||||
- Banner
|
- Banners
|
||||||
- Main background image
|
- Main background images
|
||||||
- Single Ent.
|
- Single Ent.
|
||||||
- Sidebar
|
- Sidebar
|
||||||
- Raw
|
- Raw
|
||||||
- Game resource json (index, patch)
|
- Game resource manifests (index, patch)
|
||||||
|
- Launcher image resources
|
||||||
|
|
||||||
Currently, raw data is provided as-is without modification. It is also not decrypted.
|
Most raw data is provided "as-is" without modification. Some files (e.g., `index_*.json`) have been decrypted for readability.
|
||||||
|
|
||||||
## Download Library
|
The following data is archived in an external repository:
|
||||||
|
- Game packages (.zip)
|
||||||
|
- Game patch packages (.zip)
|
||||||
|
- Game hotfix resources
|
||||||
|
- To avoid the overhead of managing numerous small files, these are bundled into larger chunk files.
|
||||||
|
- Launcher packages (.exe, .zip)
|
||||||
|
|
||||||
To easily view information about past versions of game packages and other items, please refer to the following page.
|
For a full list of externally archived files, please refer to the mirror list JSON in the `output` directory. (Note: `*_pending` files are temporary files used during the archiving process.)
|
||||||
|
|
||||||
https://ak-endfield-api-archive.daydreamer-json.cc/
|
For users in Asia (including China, Japan, Korea): To speed up downloads, use any GitHub proxy service (such as [`gh-proxy.org`](https://gh-proxy.org/), which is cached by Cloudflare).
|
||||||
|
|
||||||
Previous pages created using Markdown will not be maintained.
|
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
Since I can only run the game on platforms and operating systems that are available to me, there may be inaccuracies. If you have information -particularly regarding **Chinese regional game data**, beta versions, encrypted binaries such as `index_main.json` or `game_files`- or if you're able to help improve the code, or if you encounter any other issues, feel free to submit an issue or a pull request.
|
As I can only test the game on the platforms and operating systems available to me, some data may contain inaccuracies. If you have information—particularly regarding **Chinese regional data** or beta versions—or if you would like to improve the code, please feel free to submit an issue or a pull request.
|
||||||
|
|
||||||
All files within the `output` folder are automatically generated by the `src` scripts. Therefore, to make changes, you must modify the scripts themselves.
|
|
||||||
|
|
||||||
## Disclaimer
|
|
||||||
|
|
||||||
This project has no affiliation with Hypergryph (GRYPHLINE) and was created solely for **private use, educational, and research purposes.**
|
|
||||||
|
|
||||||
I assume no responsibility whatsoever. **PLEASE USE IT AT YOUR OWN RISK.**
|
|
||||||
|
|
||||||
## Thanks
|
## Thanks
|
||||||
|
|
||||||
- [Vivi029](https://github.com/Vivi029): Added Windows Google Play Games channel
|
- [Vivi029](https://github.com/Vivi029): Added Windows Google Play Games channel support.
|
||||||
|
|
||||||
---
|
## Disclaimer
|
||||||
|
|
||||||
This project was created using `bun init` in bun v1.3.5. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
|
This project is not affiliated with Hypergryph (GRYPHLINE) and was created solely for **private use, educational, and research purposes.**
|
||||||
|
|
||||||
|
The author assumes no responsibility for any consequences arising from the use of this project. **USE AT YOUR OWN RISK.**
|
||||||
|
|||||||
@@ -1050,5 +1050,839 @@
|
|||||||
"state": 0,
|
"state": 0,
|
||||||
"launcher_action": 0
|
"launcher_action": 0
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-09T08:15:27.604+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"launcherAppCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"launcherSubChannel": 1,
|
||||||
|
"version": "1.0.14"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.1.9",
|
||||||
|
"request_version": "1.0.14",
|
||||||
|
"pkg": {
|
||||||
|
"packs": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.001?auth_key=1775722527-58dd5464997f443d86d985d980dcf335-0-4ee4c0dfa7fcdafb9696f5af4e1a790f",
|
||||||
|
"md5": "c38326d35ecae083e1287f2face71961",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.002?auth_key=1775722527-bd47459089e54a6c88d803504dfc84c2-0-aa88d7da15b0c6c10a692c96f27220e7",
|
||||||
|
"md5": "20f46b024bbd75248f3d22881f4222c0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.003?auth_key=1775722527-8910fa9b020644049eafdc9e7440b54c-0-53486e22e42accdd3c4910bdd59abecb",
|
||||||
|
"md5": "f3dbacf2619ec1bb2ed5333bea83ac7f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.004?auth_key=1775722527-5c01b6cc2e7441569db10c77b7c00392-0-516db56d42c4f75516a54c521ff4bc47",
|
||||||
|
"md5": "544b70a029e6dd841a9cfc2e4a64082a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.005?auth_key=1775722527-1058edbf6c7c4c1d9c3ab43fc8a27301-0-9c02a50c3a64d89408b6c0cc322689c3",
|
||||||
|
"md5": "d35d159cd37855302e6ae826f7a8b82f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.006?auth_key=1775722527-b50832e0ff344177b66eeea5646338cc-0-ace8cda78f39f8313212157b7e83f86b",
|
||||||
|
"md5": "5b4784ca47740fbaa80b3b055cad3073",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.007?auth_key=1775722527-0a5a83b8905d4228b2cf074e71c1a055-0-a0d0e34d90e94e954f2b89a242513e18",
|
||||||
|
"md5": "eb3b2ac60d8e74cbd0d49d6f6ed8376d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.008?auth_key=1775722527-0eb2c1f471be4244b1fb6222dbbce2fc-0-245edda32408ebef153ff8d5674f738c",
|
||||||
|
"md5": "e806f6fcda7d5a2477280b85d64808da",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.009?auth_key=1775722527-26a34c6bbd514897a6f9407cde285125-0-01e075311edb4d58d252171c02d2c99c",
|
||||||
|
"md5": "e17a49554221bdb2b84d9d4d4a6b1da5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.010?auth_key=1775722527-f16ff35960df4f0aa4983b86e1edde41-0-9ab3877af2d434a9249e01cf8a2b17a5",
|
||||||
|
"md5": "60537ec5bf32df03b831db6651ca2015",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.011?auth_key=1775722527-97fb4df1889746619e60dc92e60bb313-0-665d5df7788d8881ed6c702d9e71b259",
|
||||||
|
"md5": "bb0fd2da7a353262ac38390aa7dc57d2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.012?auth_key=1775722527-0cd061d0bd134750b3bdd661f7c88ae5-0-ce72aa61641574e88ee96d50a6c1473f",
|
||||||
|
"md5": "5bbf5d8ac4179949f0bd8ad9c1b31dd1",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.013?auth_key=1775722527-a7944d56cc3a4f2183f5e8cef49c031d-0-5357d02016c94df0e077d21f81ec7117",
|
||||||
|
"md5": "22d68e8afe49f32c658f250f89b366c0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.014?auth_key=1775722527-03e5ab1f8d174141bb33ba2fe521eae8-0-0eebabb16d69f544eba270dd5cb81961",
|
||||||
|
"md5": "630f07c23d73cbbf46e3e19d5d48b251",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.015?auth_key=1775722527-9578f45151124f28a0896dc835810d3e-0-3930d321f4c01adf99006ae81abdee62",
|
||||||
|
"md5": "e2313062706e7a870ec60f5ba048027f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.016?auth_key=1775722527-2a0a40695dad4659bc744d6c715300b3-0-64191ab88d92faa0452ccaad37644401",
|
||||||
|
"md5": "d435a67ee2f3508c93cfa482f40abc95",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.017?auth_key=1775722527-2304373be1de400eba6d62096bbd9155-0-31964fd8800a913f2e5d7be8e4d2b559",
|
||||||
|
"md5": "0f9d6061d9888caa5eb5093d7a2e5438",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.018?auth_key=1775722527-3fed6e0cee674547abb6debdbfc774ff-0-283e720c3cb6780d81a1e0ec45fccbbd",
|
||||||
|
"md5": "d53df9f8184b0a8ab10fd2e74d1c6307",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.019?auth_key=1775722527-61dc90fae2bc4af68b16def1d1024c35-0-5282a94329e8f3f13e3ea26ebd0dec78",
|
||||||
|
"md5": "4c05bb501a042fb53d704df42231dc22",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.020?auth_key=1775722527-6836a4fd6a594455b1bf33079f6ec4d2-0-30a878c94641d747cb9e757dac267659",
|
||||||
|
"md5": "2a65799ba837c1cb96b909797b1b0675",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.021?auth_key=1775722527-1e3a163380244c4687f89a45d2b71883-0-4ca3a9cb3619f83ff42f8966473efff7",
|
||||||
|
"md5": "3885b66d547b4b0fcbda6b7170f7e0bd",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.022?auth_key=1775722527-e9f53d08e64845fcb7374e0375f66704-0-08f2c8a74ee05d45904207b46b8beb18",
|
||||||
|
"md5": "0e814e7d05e8608fcfc325cf453b8c81",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.023?auth_key=1775722527-39dbaed1dd0b411eb8c0a8dc73608250-0-873cd33238135de95a6032c6b19483d9",
|
||||||
|
"md5": "461f2cabcc4551f3ee03c8f63a772fc9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.024?auth_key=1775722527-ebdf20620124420ca39c979b0bae11fe-0-079ccaa5b820a858d1ba67b914fd608d",
|
||||||
|
"md5": "f15fbc78df81c2b44f87f332cc1e13b3",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.025?auth_key=1775722527-b4311ccfc86345808adf403b642a5e2e-0-e990bb98fb7b85969049b3e8fac852cb",
|
||||||
|
"md5": "9c3a21b61f7340fd7df57644307ada5a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.026?auth_key=1775722527-c4b817c9d5634b93b2fed86f1648d4dc-0-44069ae9710b76c38287c052dc7b520b",
|
||||||
|
"md5": "0b29f2ecaca9c36fbbf3f6b28e32886a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.027?auth_key=1775722527-c3d0e49ec41e43f38c03ab10bd001d0b-0-f115ea74155267b1e1bb3d10628c0634",
|
||||||
|
"md5": "ef792738209206745460693584c5b412",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.028?auth_key=1775722527-cbaac158faea47fe976728e2f5492bce-0-1a7428e470543b46255cbba4a667ff24",
|
||||||
|
"md5": "af656465b65c8863a8ee365112a6d346",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.029?auth_key=1775722527-b403bc4033b242b29475c0cc5936d982-0-8deb83bd86d122e215cad12f55fe964c",
|
||||||
|
"md5": "49bdfadf3204d738f78e6a2b7ede0c1f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.030?auth_key=1775722527-1a3dbfcd3dcb490ca9d154017e107a96-0-f4e19fc18d6c65a92e496d17f132c260",
|
||||||
|
"md5": "910002bcd7ede4bd92dabda717f19b30",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.031?auth_key=1775722527-507409699c5840abbec4f8c1882a89f2-0-dec08a55e11593f7c3ca24b687c1e9f6",
|
||||||
|
"md5": "b37356986a956885aaf1237bd916c9d4",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.032?auth_key=1775722527-e504fb2000cb4a8697ae2a31119292a1-0-645bd43890cfa943ec1c9990a465e758",
|
||||||
|
"md5": "4dbb43d595cade7e29654be43f1eec9d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.033?auth_key=1775722527-61c0ba4bec494abbbc1b111dc51461b0-0-d53f1adb34a62e25ac46f3551a970b72",
|
||||||
|
"md5": "2e45b72c48dd42a8c95e15829eda5f5b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.034?auth_key=1775722527-87a9edda6cb74e26bd95d32741dc3d42-0-e8e44c31bed95304cd06b9c790a5ba2e",
|
||||||
|
"md5": "7a593e6085a481ab46249315881b3393",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.035?auth_key=1775722527-d41017d2bd7f44bc9f6c9b0412d6d543-0-09d2370c1e9cec473d4fe42075bf0198",
|
||||||
|
"md5": "4c1ee12ef15717ab13ca35507af8a2be",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.036?auth_key=1775722527-6ced7740d21a49d7ac6bab28f8680db0-0-2f724340cd5bbf5f8369185fb64b1d1a",
|
||||||
|
"md5": "d1ea86dd1efbf705e06a883ae138a5fe",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.037?auth_key=1775722527-8483aed3b303499287e7dcd53e9e2526-0-0a6246ec9f18c32e1cd43239ae55a841",
|
||||||
|
"md5": "12e3582aa295cba50fd887d09a239444",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.038?auth_key=1775722527-24f49ee9336b4afa8b5735deccce27fc-0-2c1f95b1caa1c522a904bf408a62f53f",
|
||||||
|
"md5": "cfdb76064a14ef5ec458deebaf7e176c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.039?auth_key=1775722527-fbbc07c559f04e1487181f3306f992bc-0-cb4ac12690062b1f47f50b9ab2e002c2",
|
||||||
|
"md5": "fd8fded1e44ace254fb79313421ee7fa",
|
||||||
|
"package_size": "927651225"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"total_size": "91824655390",
|
||||||
|
"file_path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/files",
|
||||||
|
"url": "",
|
||||||
|
"md5": "",
|
||||||
|
"package_size": "0",
|
||||||
|
"file_id": "0",
|
||||||
|
"sub_channel": "1",
|
||||||
|
"game_files_md5": "1bb81faed42edfd6ef23a8d51c9ec32a"
|
||||||
|
},
|
||||||
|
"patch": {
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip?auth_key=1775722527-172653e53a194810851b3488690f8070-0-4cdc09ef578ec0e64402a216e8f86f72",
|
||||||
|
"md5": "122d772691b54354443be31dddd4adbb",
|
||||||
|
"package_size": "38277348785",
|
||||||
|
"total_size": "84405302036",
|
||||||
|
"file_id": "1",
|
||||||
|
"patches": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.001?auth_key=1775722527-7bcd8e2a4f3b4aa68e676a30bfa58ffd-0-6f8644ae169a248d50870ad20be96b1b",
|
||||||
|
"md5": "d13a2fd73d5331d3c13f2e87acbcb100",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.002?auth_key=1775722527-d15fbf524777409281010f10e0a99d44-0-bb12df42d4d3a9c2f061069f5132154b",
|
||||||
|
"md5": "6778da9a84b3cd233711a79e879832aa",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.003?auth_key=1775722527-95373ede3d094ea18d3823008ed477d6-0-996d97cabf02a84c749f4990f12053c4",
|
||||||
|
"md5": "2b3f3b6c35b3abd06d69c092b5989bc0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.004?auth_key=1775722527-20862a60ba384623b2b429798fff6cec-0-82bba7f25a9e5f6df74b9bbfc300c1b0",
|
||||||
|
"md5": "a4327a01949d9d1ed960942d8c804855",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.005?auth_key=1775722527-472c26dd1cfd4bc4ac8554f975b2ff0e-0-db9843829c8f66cfb3842e21dc4a372a",
|
||||||
|
"md5": "55844a7113ae31b18acd64ad63de9d12",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.006?auth_key=1775722527-b289513ecca544818af6af1c849abaa5-0-6c33d6ce27f71164d677ddfd8a461e24",
|
||||||
|
"md5": "23363803dc70b0dd5239942c6c175819",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.007?auth_key=1775722527-874c8ae97f3b46f2a64510f1f8e15de8-0-a05d06f37f9669627505eb24289f778d",
|
||||||
|
"md5": "ff3cba7fc353ea10499e7a08be3cd682",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.008?auth_key=1775722527-be6c7a1c50bb42c88009536d2496e31d-0-9a9b7dcb08cce3180d268a06982bd2f9",
|
||||||
|
"md5": "a98a8fcc4780fa96d5cc660c16bd1da5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.009?auth_key=1775722527-0ffa12188a24445eacb496d401c90dad-0-5df8e85bb1023325ad838b60f40d471c",
|
||||||
|
"md5": "98070c6d19e1cc4156ee209c1ab64400",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.010?auth_key=1775722527-c08bce8af8f843aab74037a0144508b1-0-bb7f4933bdc856f8933aec4fc040afdd",
|
||||||
|
"md5": "c8569db6869347f569363393e625bdd6",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.011?auth_key=1775722527-3a44d1d30bfa4b2f8b1f2ccb3d7e26e5-0-a86141f73eb348a0b8845fd91c77e905",
|
||||||
|
"md5": "383b7d91013e0e3bcc9b0d4b410d9aab",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.012?auth_key=1775722527-519aead741fa4d0d95af305d7e094e71-0-2eae083d59c7094a8ebf9fd16e5b9ea7",
|
||||||
|
"md5": "21a85601a343578486c214a74150ef54",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.013?auth_key=1775722527-ecdb523614d543bf9075f7d406ccde2f-0-c7d1c8c1082f1499b8f3d4bb36d04a93",
|
||||||
|
"md5": "30dcc962b87dcc608fd93cd146a40063",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.014?auth_key=1775722527-2ef0579a18ae4cfda52ee304da1aa29a-0-251497db42bd2b62e48f32e4535c5079",
|
||||||
|
"md5": "5ac18b5a3ca8985914fb89dd8768dc83",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.015?auth_key=1775722527-60792e2e6d914bbcaaaa067d25072a93-0-27714a3c9ed1e34d869d491389708b8f",
|
||||||
|
"md5": "2d8b07fc373abf2c895e7e88bf9fa040",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.016?auth_key=1775722527-6d70e17903164cf78a433f8780c8789a-0-20624b7bdee63eb144c405611d222778",
|
||||||
|
"md5": "907f92bab6ad56f77aa94a1fb8f0e5b7",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.017?auth_key=1775722527-94cd440815bb4d86806b14df3a67b83f-0-b21d4b2e415844646dc5fda6d3bd6fe2",
|
||||||
|
"md5": "925d342e175b6039fe7b680acb9ffb81",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.018?auth_key=1775722527-6806ef8a87c3431998f7fc4f980da189-0-9918074430df5fa6e7ad14ef38f6325a",
|
||||||
|
"md5": "c62cbeaf872d207a969c1be9a106ced1",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.019?auth_key=1775722527-cfcf52a5a8f84eca9a5775c22d1037c5-0-6dc6a7f6fe34bc683a6d5954d0800456",
|
||||||
|
"md5": "c24a74afef3dc6e3e7df95bad23a4c21",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.020?auth_key=1775722527-8fd86e9e931f496e981c3e779333115d-0-b0f1c103b8060f018604f8adae053706",
|
||||||
|
"md5": "237fa447af215ba13f951ae16b142fbe",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.021?auth_key=1775722527-382d74ac053446d5a89cede07495c47e-0-1da7ea4ad1b2e3d6f130930e46645eda",
|
||||||
|
"md5": "d0536aaa0890e313a1715cf26aae15fb",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.022?auth_key=1775722527-475423be255a4b60851f61f427ce08f6-0-f2fc07db541aea70cb4d3fa1ec145569",
|
||||||
|
"md5": "8abb8a0bc074a6d2fbbf23e92cab4f87",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.023?auth_key=1775722527-6c41962768574115ab33c03d22faa32c-0-e9ef84430fa171312ed66d5a04fe1506",
|
||||||
|
"md5": "9abf54b85fbf2bde0beedaabaee22c80",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.024?auth_key=1775722527-046bac1099cc41e38823cc046ba52131-0-a384aa4ea12b6733ee031d92e532bc70",
|
||||||
|
"md5": "ee92cb543922f80ca9c38dbfbbfb7c62",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.025?auth_key=1775722527-0605ba0a68cb458e890966db1dd5a841-0-fbfa44e4de089d42031d32780a4f416c",
|
||||||
|
"md5": "e25faabb645c133ffd630f88a8ada9f3",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.026?auth_key=1775722527-f0e50dd64a00458ea83ba6233d9e15a9-0-72d3f8b16d963ac24af903a956be0f0b",
|
||||||
|
"md5": "f23b002977c6297791140a243b376231",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.027?auth_key=1775722527-67e4b3155b4947e089d30ee8ac127363-0-4a70679326c8a61815fd81cf23bc2819",
|
||||||
|
"md5": "868e944ff280b9b2d8afe6413e2e708f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.028?auth_key=1775722527-f8e8d910079440ca842a6b80dfb9d741-0-e1a066af6f0baf5cb6d0ab5aadc6168b",
|
||||||
|
"md5": "892e5ede522ace41862726d31d29d177",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.029?auth_key=1775722527-0b1cef3d886b40569c06dbaf62052d85-0-e0dde062f5ec0d62588e668cc78a74d8",
|
||||||
|
"md5": "1cf849ac8a54407296dd71a8b830f2a2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.030?auth_key=1775722527-648135aed1b041eb9cac5a44bcf94492-0-5199212b8305a0088517c5e8bd68a3b3",
|
||||||
|
"md5": "cf04eea492572688b181720ace6bf3e2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.031?auth_key=1775722527-3b3d980977bb40da976f53e07a70f432-0-e9fad7f327b8a42507584501f80702a1",
|
||||||
|
"md5": "2e0a7ce8697e35175478113600be26f2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.032?auth_key=1775722527-aa87d3ee081a4651b1b3316aa418297b-0-306555557a3db27284196e529d135a0e",
|
||||||
|
"md5": "d48f03183dac6131949dbb9b29236520",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.033?auth_key=1775722527-62113a8d90274894b1903ec593059041-0-303786973622921e94a4e3b6b84a2aef",
|
||||||
|
"md5": "4070fb14fc9d3df642033433d0c5b1fc",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.034?auth_key=1775722527-6990ba39382d4aec9dd740f0f499c445-0-b64159d1b294d9b815ff6d5d92b8cd6e",
|
||||||
|
"md5": "de88a54e15fb399fb7d600a98364f91e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.035?auth_key=1775722527-a153a8c81f864e61aa54cf0bd2f61a74-0-f79972ce0b4a0229763bed525464cee6",
|
||||||
|
"md5": "1fc2b8f8a16b7bcafe78d3f3907e6039",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_official_1_0_14.zip.036?auth_key=1775722527-5956b51387564f3591f5ff4c3b78fe45-0-84f0c899e92d98a84d3430a4f2b167a6",
|
||||||
|
"md5": "50e7cffa232471268e317bd5a4a8b6af",
|
||||||
|
"package_size": "696384945"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"v2_patch_info_url": "",
|
||||||
|
"v2_patch_info_size": "0",
|
||||||
|
"v2_patch_info_md5": ""
|
||||||
|
},
|
||||||
|
"state": 0,
|
||||||
|
"launcher_action": 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-09T08:15:28.375+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"launcherAppCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"launcherSubChannel": 1,
|
||||||
|
"version": "1.0.13"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.1.9",
|
||||||
|
"request_version": "1.0.13",
|
||||||
|
"pkg": {
|
||||||
|
"packs": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.001?auth_key=1775722528-01c69b5edd8a409496544cdf0ece3238-0-47b6253c3b18c002681278f0acc160e6",
|
||||||
|
"md5": "c38326d35ecae083e1287f2face71961",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.002?auth_key=1775722528-7edb9851bc164016a7cd5103a2a620be-0-d3f493d0ab1d51d19f3992aa38ba62d1",
|
||||||
|
"md5": "20f46b024bbd75248f3d22881f4222c0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.003?auth_key=1775722528-585b42a0c1ea4cffbdfa4c128f97460b-0-2ff7de8970b9e38bbb50f551dfdd1961",
|
||||||
|
"md5": "f3dbacf2619ec1bb2ed5333bea83ac7f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.004?auth_key=1775722528-684e64b39c8d4dc88d3bd0b7bd2ae595-0-4114478338bc0c72993bcccbb339ad79",
|
||||||
|
"md5": "544b70a029e6dd841a9cfc2e4a64082a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.005?auth_key=1775722528-24c65aa2194847a18afb7fcf4bedf027-0-8d31a8c63a0eccd53a50c66c0d130701",
|
||||||
|
"md5": "d35d159cd37855302e6ae826f7a8b82f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.006?auth_key=1775722528-02558387d6aa4ec18240f845fc1cb798-0-1cb9de721b43652b2930114ad005ede7",
|
||||||
|
"md5": "5b4784ca47740fbaa80b3b055cad3073",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.007?auth_key=1775722528-ebfe9568e4574b88af6951a7e9e02678-0-26c4b4f0ac1fcd5a91e849bd859fe82e",
|
||||||
|
"md5": "eb3b2ac60d8e74cbd0d49d6f6ed8376d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.008?auth_key=1775722528-d6635904d4494cdc97ce9f71f1a8fc98-0-7608b260a239dd242e3b4b8bd0e26824",
|
||||||
|
"md5": "e806f6fcda7d5a2477280b85d64808da",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.009?auth_key=1775722528-66499ade3e5d48d189db450818a86cbd-0-7026ee17b7771b9daa073e4ee2d13a02",
|
||||||
|
"md5": "e17a49554221bdb2b84d9d4d4a6b1da5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.010?auth_key=1775722528-884c12e57ca848859271e15f932b9c86-0-bb48313c37eacba8802ec488bb020ae4",
|
||||||
|
"md5": "60537ec5bf32df03b831db6651ca2015",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.011?auth_key=1775722528-7f29f1df808f4005b39ae9245bf81fb4-0-a3390ccba5498a2274f4ef155fa3ecc4",
|
||||||
|
"md5": "bb0fd2da7a353262ac38390aa7dc57d2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.012?auth_key=1775722528-bd2d8e318d26479b8f4f1b74de27f2ea-0-d6f19a1b444dcb217753972c21e8d60a",
|
||||||
|
"md5": "5bbf5d8ac4179949f0bd8ad9c1b31dd1",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.013?auth_key=1775722528-8cb1b9da087146b799774e2bc1f98c0a-0-a2815a1e3c97aec1bbbf433f13ce8abd",
|
||||||
|
"md5": "22d68e8afe49f32c658f250f89b366c0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.014?auth_key=1775722528-f426f1e96bff4ce28cb1a1c537bb4ea8-0-8931c03fd06deccef3329741759927c7",
|
||||||
|
"md5": "630f07c23d73cbbf46e3e19d5d48b251",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.015?auth_key=1775722528-da4ba4e1e08c4ec49e5a5d2d81aaea9a-0-9cfc1e2fdbb72c687a3f27612c6494a6",
|
||||||
|
"md5": "e2313062706e7a870ec60f5ba048027f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.016?auth_key=1775722528-94276e6794ca4f92b9684b9ec576a664-0-0d4e05a49632a8e0df31b57b17e0fa4c",
|
||||||
|
"md5": "d435a67ee2f3508c93cfa482f40abc95",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.017?auth_key=1775722528-27d4ba08a090456e9ef5ce45ad651f97-0-5e39109a10b2c5bcfee50dddeff30848",
|
||||||
|
"md5": "0f9d6061d9888caa5eb5093d7a2e5438",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.018?auth_key=1775722528-c9230d03998a4948a82b92b633043d17-0-7322167072c1d93144fdac4b6d0715a9",
|
||||||
|
"md5": "d53df9f8184b0a8ab10fd2e74d1c6307",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.019?auth_key=1775722528-e8b5471626f44ebca0fb5872dfd5563b-0-e6cfa5acf5ab0165c89c076f4536bf82",
|
||||||
|
"md5": "4c05bb501a042fb53d704df42231dc22",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.020?auth_key=1775722528-7f7998d7ce974f068ef47331b0c8cd52-0-664c9c5a6b0a46244f26e16e466fee05",
|
||||||
|
"md5": "2a65799ba837c1cb96b909797b1b0675",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.021?auth_key=1775722528-a9183608cd7543948afc71cb77fa65bc-0-1c0e7b5bc614020bc61826e554b62aca",
|
||||||
|
"md5": "3885b66d547b4b0fcbda6b7170f7e0bd",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.022?auth_key=1775722528-84b8d4bdad3c46e9b2afa921e9ee659f-0-a9d2702e6d75d6eacd8b63d9a969711b",
|
||||||
|
"md5": "0e814e7d05e8608fcfc325cf453b8c81",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.023?auth_key=1775722528-a4f613c8d99e44f7bc74dc587bf07420-0-5c298b7b5f4e055481fb9329029ab665",
|
||||||
|
"md5": "461f2cabcc4551f3ee03c8f63a772fc9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.024?auth_key=1775722528-92587b87b9c34eee9220a7c538952efb-0-bb24816e0ca0882ecc1dc88b1900e80b",
|
||||||
|
"md5": "f15fbc78df81c2b44f87f332cc1e13b3",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.025?auth_key=1775722528-c93774b36ac542a5b88fbc7f47303406-0-3780d5806aeeeb174527f150fdca23c5",
|
||||||
|
"md5": "9c3a21b61f7340fd7df57644307ada5a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.026?auth_key=1775722528-7c09db3318c04a1aa4b189b330f34f77-0-5ab0709ab9547cfa36af4e560a76d5c5",
|
||||||
|
"md5": "0b29f2ecaca9c36fbbf3f6b28e32886a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.027?auth_key=1775722528-04511561afc147f3a08300383a4f07ab-0-21b0eeb9314d90dd7bc6ac4f6f1c14b6",
|
||||||
|
"md5": "ef792738209206745460693584c5b412",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.028?auth_key=1775722528-d857336298154635a20b3590efdf0604-0-ed0fb29aef7fe2253c1180be8f43e61c",
|
||||||
|
"md5": "af656465b65c8863a8ee365112a6d346",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.029?auth_key=1775722528-66d658e3753d49d28fc66766f537617b-0-4edfbd2eb675a456af351fd61eca93ef",
|
||||||
|
"md5": "49bdfadf3204d738f78e6a2b7ede0c1f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.030?auth_key=1775722528-1b4d40549f554dfbb9bd5a9131eed78e-0-7e88ba083491a25c76bdc6050288e35d",
|
||||||
|
"md5": "910002bcd7ede4bd92dabda717f19b30",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.031?auth_key=1775722528-e6c9c5b939c4431abc921c904fcc5750-0-1506fd2f1ff222286fee259c695fbc5d",
|
||||||
|
"md5": "b37356986a956885aaf1237bd916c9d4",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.032?auth_key=1775722528-0db4cdcb6db941e5a97b5b00e7a7328b-0-396355950fb6c0cd4c1d859aa6dda86c",
|
||||||
|
"md5": "4dbb43d595cade7e29654be43f1eec9d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.033?auth_key=1775722528-5cbef763b87a480580b383fa3a4c35fa-0-eb27edcb0e1ea9304e2b220599c8dd4a",
|
||||||
|
"md5": "2e45b72c48dd42a8c95e15829eda5f5b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.034?auth_key=1775722528-2e4d3cd700f44f83a18a2eeb2438fcec-0-998143dea3a98b4b5313c01a1ffe4545",
|
||||||
|
"md5": "7a593e6085a481ab46249315881b3393",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.035?auth_key=1775722528-54c3838744e246e0a0695263e89af4ad-0-2c844acd8131947e94377ea282c212c3",
|
||||||
|
"md5": "4c1ee12ef15717ab13ca35507af8a2be",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.036?auth_key=1775722528-5b5cd854a239400f8654705067c92109-0-b4d233a83c4f49ac0c400d62f301fb48",
|
||||||
|
"md5": "d1ea86dd1efbf705e06a883ae138a5fe",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.037?auth_key=1775722528-4919e3070df54ab3b6fd05452356fd09-0-5773f6b405d6c6f29bd44656c66e472f",
|
||||||
|
"md5": "12e3582aa295cba50fd887d09a239444",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.038?auth_key=1775722528-ef88752848e740ba954bf9fd80098cee-0-c606faccae487713b42d2ff52d3e3e27",
|
||||||
|
"md5": "cfdb76064a14ef5ec458deebaf7e176c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_official.zip.039?auth_key=1775722528-df11e0bf653d440fb897c692ae19e72d-0-4845bd8e67f5e747e501ea8613669e07",
|
||||||
|
"md5": "fd8fded1e44ace254fb79313421ee7fa",
|
||||||
|
"package_size": "927651225"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"total_size": "91824655390",
|
||||||
|
"file_path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/files",
|
||||||
|
"url": "",
|
||||||
|
"md5": "",
|
||||||
|
"package_size": "0",
|
||||||
|
"file_id": "0",
|
||||||
|
"sub_channel": "1",
|
||||||
|
"game_files_md5": "1bb81faed42edfd6ef23a8d51c9ec32a"
|
||||||
|
},
|
||||||
|
"patch": {
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip?auth_key=1775722528-6715072bfdd64cf9869f2f222e9d454f-0-6b9d458a6da6a94879bbb4456bc3553e",
|
||||||
|
"md5": "e6786437a656f403dac9ff6bb5b3ad63",
|
||||||
|
"package_size": "38279669654",
|
||||||
|
"total_size": "84412380347",
|
||||||
|
"file_id": "1",
|
||||||
|
"patches": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.001?auth_key=1775722528-bbf2edca5d4147e39146acc986fa7298-0-6d88764c63bd713ffc71a50a6dec284e",
|
||||||
|
"md5": "3044c8db514b03681743e58cb1dd3f1c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.002?auth_key=1775722528-4744c207472643728cd0e946e1c768ae-0-23b45142754f6e7e9a3c5a199d4535f1",
|
||||||
|
"md5": "c175bc3946daa417a4468b94e305a61a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.003?auth_key=1775722528-9f1eebdc5f7f4dd288452f1920431ee7-0-830cd75cb2c5d8b5b6d316d1265a4a00",
|
||||||
|
"md5": "01cd48df573724691501ca52a810141a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.004?auth_key=1775722528-95bd221635c2489185c5710abd058d1c-0-342cced71b85213d00fdd5d4123ef8bb",
|
||||||
|
"md5": "d503d70588269cdf882ec10fb1a7084a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.005?auth_key=1775722528-4b96ed92b27243549c59ce1e51b97485-0-37578bb1767a8911f7c09c83d75f60f4",
|
||||||
|
"md5": "010ae7ee220ec3efc5b75c37b67de632",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.006?auth_key=1775722528-c9ad53fd8d32481bb70f69c5ef11e9c6-0-5e8ab336e2a115a7d15daa2383e72659",
|
||||||
|
"md5": "11e46b0ffb675a6eadd733130aa21957",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.007?auth_key=1775722528-4eb65c3cb2ce4b058c87f59ab0e2b195-0-61a1469fa5640d8ece3cb6c5c34d531b",
|
||||||
|
"md5": "12abee415350928c84c7325714da6167",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.008?auth_key=1775722528-e04af9f8c9d647329ca7ba872b68aa10-0-8ba9cacde6847d791ead2ab9d1665891",
|
||||||
|
"md5": "e574d174d0e4633c4d1e2087fab5f89f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.009?auth_key=1775722528-9ce562541a4443b1b6744cb34a09a0c7-0-ef44f711c538a8ff1ff2b4d214bb8fba",
|
||||||
|
"md5": "a472f828d834d9e865cbdaaafcfdda2b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.010?auth_key=1775722528-f33615ce1f904d71bc475aa7a5bed905-0-a58b01a01c5c5084b0953d47315e4a3a",
|
||||||
|
"md5": "55093095f9a0b3a33d932f64c44e7ed8",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.011?auth_key=1775722528-2cd5d86c7a3f45e3974abf724a799726-0-d803c098bac90e2725f6a1c2d97c65b4",
|
||||||
|
"md5": "a6bc805bca7c6e6cdbcd0331d599fa32",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.012?auth_key=1775722528-b42fe396b2d445489fc3ad1162c1f7de-0-3d2bf9e5c3332ef872cfbd20bae1d24e",
|
||||||
|
"md5": "6b54d883ab5c494bed62c2efaf469a3a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.013?auth_key=1775722528-2a69cf2b6f64425f80c141f40b7394eb-0-6cc1be9ef07dd501440554bb6ee1696d",
|
||||||
|
"md5": "c078ab00c4757518be74391cda8ca592",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.014?auth_key=1775722528-f5c5e44e514149e59cfd4759681e1c9a-0-bed8bdea0940f5dc155819f851f3ffef",
|
||||||
|
"md5": "676d2120a7d01a5add1f3e6401949181",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.015?auth_key=1775722528-aeb2aad18cff4fc79da4b6e8e0ba5541-0-91718790ae312b536f18f680b1d2af2a",
|
||||||
|
"md5": "adef6b403ad3933674e007e08945b0ae",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.016?auth_key=1775722528-02dbd92e251247dcac771c4e7a7ccfeb-0-7fcf2b16bb5cf592b6d5ef631593b5ec",
|
||||||
|
"md5": "60d68983cc4c9fd20c01cd9f2d92d0e4",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.017?auth_key=1775722528-d9b7404b56e14f1599045f6e80987489-0-5e807b3766337cae188e36742dd3bf74",
|
||||||
|
"md5": "57ff158b0f5faa6dd3a8c019f0dc990c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.018?auth_key=1775722528-f2461092ceef4266b3b0cb5c5f567c66-0-8f795da3d43040b1493b238aa2666a7f",
|
||||||
|
"md5": "a70c1d458b930e592724bf90f1c47942",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.019?auth_key=1775722528-f953b8ff4ea04ede8a6d48ed5442748c-0-c141357d02d5a67506c4b07bda8d6a33",
|
||||||
|
"md5": "332a07662eb67d9c21be93f51558dad7",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.020?auth_key=1775722528-8768e8ff14774393be21ce79ae4614bf-0-8b87ad99850b4e172772797841d4b137",
|
||||||
|
"md5": "9527d8db58279c31db2407c71bc6f8f9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.021?auth_key=1775722528-ec38b212e39a459b8ceaac017173f464-0-60ca8bcaa9a392de1b03b6da47cdeef9",
|
||||||
|
"md5": "0439bfda5c6f616792b9aa1d1bf1ff72",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.022?auth_key=1775722528-fc05b20c63634bd8ad3b480a38ab4db0-0-a849aa88b3fb31357a58d7f0aaa3e4ef",
|
||||||
|
"md5": "ac786f4d67ab0339e105d6042f205eee",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.023?auth_key=1775722528-52677baa2810440d962b1bee17abe301-0-498afe8615a5c811ca321dbb51f8cc2c",
|
||||||
|
"md5": "f8f56354c03942daedcfefe19e26fb36",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.024?auth_key=1775722528-6b8d3816d3194dca876d2217625d4583-0-c5e1c1f43ec60b5b047dbcfa899fd00b",
|
||||||
|
"md5": "d8ecc7878cdaed0a64ec18b009fdcd8e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.025?auth_key=1775722528-d143cbcd234c495bb2f2d2856b7227b8-0-8e7b07a7b226c04ce7f1cffa3c8772be",
|
||||||
|
"md5": "273131900d4f755709c8b651e5a8af2d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.026?auth_key=1775722528-4b54b72f86bd410bb285e899f901eabf-0-f86cbc6992f2d51193e1d0d7840efaae",
|
||||||
|
"md5": "8e2ce2fdd6950bc15051ff0fdf84e77b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.027?auth_key=1775722528-5a4546bee4d8416c96aeff76ee2e092a-0-574538d9828fc0593568df200425b5d6",
|
||||||
|
"md5": "316e7d8a071d2f3381b01c74dd19d623",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.028?auth_key=1775722528-6bbd70a9481b4ff9be2501eeff4e7c36-0-22dc7ae8074cff15ff8c1077e1463db2",
|
||||||
|
"md5": "ea7bcc196f915df20d9a7fe2e339ddca",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.029?auth_key=1775722528-a3bb08b4fc8f4c84ac71c59b991210dc-0-4eda5d30c98a3fe1ab2e3a39a1b0f8ac",
|
||||||
|
"md5": "0862c85a801345a96abd6e5b18724a2c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.030?auth_key=1775722528-4731deed55e240c69c5329aef5cd7915-0-14aa3e06e2437c5cf488e2a8b8204951",
|
||||||
|
"md5": "39ca2dd184cb1ca8a2989e0dfc49ed99",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.031?auth_key=1775722528-7fcced32f8494a6a884c169b8ca14f6d-0-29e0ff3cd39027f2a6fc0a49f2006084",
|
||||||
|
"md5": "1ce31f8e62ac0bf3664a0bbc338838f8",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.032?auth_key=1775722528-1d2c0c94bb144f8c917a8576e92bb478-0-df1524b4e4b02c998da69ba7d1fce1a4",
|
||||||
|
"md5": "6805d77bbb01312c0e27679033df8931",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.033?auth_key=1775722528-f902f875b9fb460e8c886da78f691c68-0-b50e09572c1862036d86f9f6a281c1dc",
|
||||||
|
"md5": "b97a2b9d0a9b76ea5c182e27f8803327",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.034?auth_key=1775722528-bcf38241fbbc44259901939619fe34ab-0-34bfeee2633b64590fb6707ff9378b9a",
|
||||||
|
"md5": "5b12e573ba1572c3d3a61214bbcc4a22",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.035?auth_key=1775722528-8c8c8480200e474d90e5bb2b226a3217-0-0db97510bf189a48dd37f1c4a304e5fe",
|
||||||
|
"md5": "302b443bf9464c3f330e435009b71007",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/1/1/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.13/Beyond_Release_v1d0-Rel-cn-5157154-10_prod_obt_official_1_0_13.zip.036?auth_key=1775722528-28e0dc0dfd774ce7876f839c6a2674b5-0-fb32796b8a0c60f2b3eb3147b6a3541a",
|
||||||
|
"md5": "afac53419f2abc4e635395c98d8151ad",
|
||||||
|
"package_size": "698705814"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"v2_patch_info_url": "",
|
||||||
|
"v2_patch_info_size": "0",
|
||||||
|
"v2_patch_info_md5": ""
|
||||||
|
},
|
||||||
|
"state": 0,
|
||||||
|
"launcher_action": 0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1050,5 +1050,422 @@
|
|||||||
"state": 0,
|
"state": 0,
|
||||||
"launcher_action": 0
|
"launcher_action": 0
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-09T08:15:28.623+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"launcherAppCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 2,
|
||||||
|
"subChannel": 2,
|
||||||
|
"launcherSubChannel": 2,
|
||||||
|
"version": "1.0.14"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.1.9",
|
||||||
|
"request_version": "1.0.14",
|
||||||
|
"pkg": {
|
||||||
|
"packs": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.001?auth_key=1775722528-73f4a6f689a04d7eaa753aa407c38400-0-779acaeb4aa73ae9fc6e2bc95896ec39",
|
||||||
|
"md5": "d4324d330a815095f90aee042a38179a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.002?auth_key=1775722528-098d3a751d834017a42f64c47106cd9e-0-cf32c739a70576d560f22ebe3198a23d",
|
||||||
|
"md5": "e2272ab3fd8f164689b841deb2ff8eb8",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.003?auth_key=1775722528-a62f762deda241039d4fb1722c95836c-0-c1c00b0e3eab7852d5ba98d8394341e9",
|
||||||
|
"md5": "fb11faab68af9ec76a0be762f830e756",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.004?auth_key=1775722528-184948736e854271acb1769ebab6c9cc-0-bad5fb769942bdb925c053e45453fe10",
|
||||||
|
"md5": "e69e4d2e6442bb0e4aa47487ea4d5359",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.005?auth_key=1775722528-ce6e72749c954b3491fc991aa459f667-0-1f2f993d096a163d5e8b1fe821b86c51",
|
||||||
|
"md5": "4accc2d81baf9254c6e5b453d6321bd1",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.006?auth_key=1775722528-7a0c6a404da74b6994f13394ec9da277-0-b927b66cac26c4c8d00102a74143bba8",
|
||||||
|
"md5": "55edd4666976289f7c0595f417b74da7",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.007?auth_key=1775722528-4a3861495eb34c219894f5444aed75fb-0-e68bbc63f8bf910186ff49a26a96a775",
|
||||||
|
"md5": "af1aca3ee6b0be8f15f8157e4db6283e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.008?auth_key=1775722528-f6d5b9fe131b45a0b9319183af651f8e-0-28c26d7fc6229b1936f5e3b3dcddae33",
|
||||||
|
"md5": "d219a19637b641b3d44bcd11cbffa27d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.009?auth_key=1775722528-e85ec5f407c84b8d9f7cc4543f53e3cc-0-6002f8aa1c12d392c1cfc946b0980988",
|
||||||
|
"md5": "809ce3cf53c6e179b08d84d52c649627",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.010?auth_key=1775722528-cfa4d881c4c14c229cfca8d7bb298b31-0-730a515500517fc75e0faeef6505e2ac",
|
||||||
|
"md5": "9a0e6b856d3deb6c2aed4a29f23f17f9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.011?auth_key=1775722528-5b06de27782a4bed8560470ac072d160-0-4abdbc0cae14d341393eb76131bbe876",
|
||||||
|
"md5": "e7d92996948830a7190c287407f4e85b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.012?auth_key=1775722528-9be8f774ccd44ea1a910349f33c912d4-0-1592e5b9fe3367ea32b33d0132a56fd3",
|
||||||
|
"md5": "b5e8ac6ce4606d3b383b4fe883725e8f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.013?auth_key=1775722528-51749bdd2c3a42f2ba61513151975af8-0-4489090fcd78c79a409ee248338eecf2",
|
||||||
|
"md5": "4e02050c578d1fa05073370d91725ea0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.014?auth_key=1775722528-7fc8b7177aee4d038e5e99f6ee2bb0e8-0-de6b3533e5c594e33be94ff8430e3a03",
|
||||||
|
"md5": "8a71022e0d7a4d6ac15e9d8775a53e7e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.015?auth_key=1775722528-a90d2d032b824ebfb78094cf799b53b3-0-187f4667acfcd35b443aad45453fc1f5",
|
||||||
|
"md5": "6c2a606f0324e630087993a575ae72c1",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.016?auth_key=1775722528-52ea196f57f740cfb0c0bdf96995cf43-0-413030be2dcf3d74cb92e8b7517dd52f",
|
||||||
|
"md5": "b15179c37b10d67c4c331faf6961a6a3",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.017?auth_key=1775722528-9eb344cb555d4fdc865f857912b9044c-0-e6a01d8603a78b7560b3a7b6386a3d72",
|
||||||
|
"md5": "de8bcdd611e7de31d02b8a936d2a2700",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.018?auth_key=1775722528-099578e485264a0398515e826109da97-0-8fab6c2cd796f816762eab7b13d1b271",
|
||||||
|
"md5": "e7a11a8da7962f1cc16bc01aa844014f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.019?auth_key=1775722528-8a29485973bc46a3918693bf391fff64-0-54c138d6f63bd9e039b195643d326165",
|
||||||
|
"md5": "8ca40cb1bb7f94593602570c71e3716e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.020?auth_key=1775722528-121e4f285997403c89c5a189c33ca0ab-0-9f37889b80b472c50d9697add8213c5e",
|
||||||
|
"md5": "86d9991fe77ed1d00730bc3b97e8be68",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.021?auth_key=1775722528-32cf4cb48e8a4ab88839712de526df35-0-16b1231f075b3ebd934e1424d5781091",
|
||||||
|
"md5": "6d1ffd9415bb22d89769f6d7afce8857",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.022?auth_key=1775722528-6247d27048a640b69d0f0d16163573e5-0-e810477659cb627cd147eb4a3c4f998c",
|
||||||
|
"md5": "e28f0fbc7e8de13f7eb4ff2c77c80f97",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.023?auth_key=1775722528-b706702d6e8c4971ad190efad1a648ea-0-23bad0fcf459cba4c68c7d069fbfb5b9",
|
||||||
|
"md5": "eca14e682fd327b53816a23778eeec95",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.024?auth_key=1775722528-6fee9a22387a4f558eb0a4c77421e457-0-dd5a68be6e95d1e1471a322fff5c62e4",
|
||||||
|
"md5": "fe0e4070526392253b7edb23a14a6278",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.025?auth_key=1775722528-e3720840b1cc420f8f5c64ce09a04bd4-0-20dbe1456f4582e0bb7f14b77d6edc57",
|
||||||
|
"md5": "48f1e697cfe28c6c2c43d2b417708d7b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.026?auth_key=1775722528-d9e87d17b5d7432b8677c9952e39a1d2-0-22c438b4d8971c3e74d2639c3b175e23",
|
||||||
|
"md5": "28b662c7b787969f99425a19fbc84ea2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.027?auth_key=1775722528-8cfb001cb22043a2ab3eb40a37969329-0-1f83576ad94ec7cfae9bae2899ebf339",
|
||||||
|
"md5": "91beb0656cfcbe377bf7d7858b292f82",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.028?auth_key=1775722528-5931e7e2da664c998713677886fbaa55-0-51ec54e5975094d170e5aa8dd783cd61",
|
||||||
|
"md5": "2b561fb465e3982bc5f558f76698644b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.029?auth_key=1775722528-b47d026c7a844f3892770c7ab1ef4197-0-8d7d58e0ac1288b1ec73dea83444f7d2",
|
||||||
|
"md5": "4a0cf029ac4df2e38c9240f19e4d9398",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.030?auth_key=1775722528-29391db249174af580569fa8cb30b6b6-0-d4c1631c452d3e84e710a69066137062",
|
||||||
|
"md5": "b3c7f33dc8e10314999e7051e63b5043",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.031?auth_key=1775722528-7f4e92fc8b294d45b69a0bd009b78594-0-b976db7e4d2bf6b6a09db8ecd25fbf04",
|
||||||
|
"md5": "0106ca7864ca462c913abf67fbbca7a8",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.032?auth_key=1775722528-2b6dea766a6a46d6a5a4273b716002b9-0-f1690c63f4f72b9b4c9e5140cc63526c",
|
||||||
|
"md5": "de6bc111d4939870a785eca5206a3e70",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.033?auth_key=1775722528-c3c794e6da2a49ff8443790182dcca4f-0-07b1bfdecdd8ff34a24eb56e4948179a",
|
||||||
|
"md5": "5bf8d8f7780724a68540702741e01f66",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.034?auth_key=1775722528-0dec25088f3b45ada8d659a96beadf5d-0-ec9861d1238497a7c7a524703acb4ad8",
|
||||||
|
"md5": "0243e631500d0562f207db0d92dece85",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.035?auth_key=1775722528-8dfaf466572e4a9db03e9e93db5583e5-0-5e17a9ff160f3089464a805c73f47e4b",
|
||||||
|
"md5": "dd32d1c9fb1f3247bb1625e686d59481",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.036?auth_key=1775722528-e0d6c9d5e85b48f68d403cac5c23b395-0-22c2e32558a6dbf64e5ee0abb9a8caca",
|
||||||
|
"md5": "d5bb85acd07430fc8a37ae6b32995f45",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.037?auth_key=1775722528-3cee1f4c00364bdba845c2c037c82893-0-1c76ebaa0dc3f16e3289860689d12248",
|
||||||
|
"md5": "c801d1c5ad3deab1314db26e6f967f6c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.038?auth_key=1775722528-cad0bd3855fb4927941bae68136d86c5-0-fdf995e9be86aabfba987c1bc0b4b44a",
|
||||||
|
"md5": "7e11c663396a34c38acb7c62ebea9983",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/packs/Beyond_Release_v1d1-Rel-cn-5769412-7_prod_obt_bilibili.zip.039?auth_key=1775722528-78a7c2a9eed24392963445dfccf3f035-0-7eab160a145991463b8b469846cb6fbf",
|
||||||
|
"md5": "634409e565e1d73540a47d9d5cec8d87",
|
||||||
|
"package_size": "1006691535"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"total_size": "92101182652",
|
||||||
|
"file_path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/files",
|
||||||
|
"url": "",
|
||||||
|
"md5": "",
|
||||||
|
"package_size": "0",
|
||||||
|
"file_id": "0",
|
||||||
|
"sub_channel": "2",
|
||||||
|
"game_files_md5": "57a2b3926b8d604b20ae9c0e828532b7"
|
||||||
|
},
|
||||||
|
"patch": {
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip?auth_key=1775722528-5f833fd6942f47e797168283b8bfbfef-0-fb26ce1e77fea4db9a33d993a6ab08bc",
|
||||||
|
"md5": "4097bb7802b0ce55ce9632f179942472",
|
||||||
|
"package_size": "38276076351",
|
||||||
|
"total_size": "84402254008",
|
||||||
|
"file_id": "1",
|
||||||
|
"patches": [
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.001?auth_key=1775722528-ce2762a3750b496aa693646ebbf3a65c-0-5a53ab1a7a8159e6235eb42fc03a8034",
|
||||||
|
"md5": "cd11d1c056fd35352c020d5002a4e3f0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.002?auth_key=1775722528-608b82a34f4242539290b41e5f8d372e-0-e2fd74fcd9d5236f9a91bed3e8b8e09f",
|
||||||
|
"md5": "69ee1fb98e0c2c783e6790be16b0af7a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.003?auth_key=1775722528-4702fdbe111642949591dca0aa8c82ce-0-aadea74fa5a3e3c2feff50141fe07ef0",
|
||||||
|
"md5": "408870806b1863eab5af17413a327da7",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.004?auth_key=1775722528-3ecb15e1ff0c413c9ee1825033787960-0-11f3a2ab24797b502169a6e833281877",
|
||||||
|
"md5": "4130908d27f88befb80a454a706660b5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.005?auth_key=1775722528-780bad51462f437dbef4292b92bbf141-0-aa395eb877e030803b5f378b7c095c69",
|
||||||
|
"md5": "7b864dbcf8dbf09a2f544a51dd588db9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.006?auth_key=1775722528-18af2c15254e4a4c9988bb80754f483a-0-5ec0b3f3ec5063d74f33483588c6bba1",
|
||||||
|
"md5": "4e392b9d953bc23db9e28cfc46b0107a",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.007?auth_key=1775722528-b651c9335826438393416f88846179cd-0-704dd99c49e0d434f6ddff8f5142a7a6",
|
||||||
|
"md5": "12ef3ae1dd316d09843addee7fb2d39b",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.008?auth_key=1775722528-8eb77dca01054a299049331349269260-0-e944149d9a53009247f6c543676f583f",
|
||||||
|
"md5": "0ac80d4bf4d2af9ca42cc5472895d677",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.009?auth_key=1775722528-34ac097e592847da8b07181fd6f23be8-0-dc0b3d5d62d70f3f59ab334edc3b26d5",
|
||||||
|
"md5": "54efdbcd61a699ca9c0ed31c41e2390d",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.010?auth_key=1775722528-4f5e347ce34a4e6489dac7be7f624c1d-0-9aa28530ef61ae951abe6f7de674f279",
|
||||||
|
"md5": "a510b80c259e5ef7390019df219406f9",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.011?auth_key=1775722528-c1f3eb5b7c72442d812c0115a2387c4a-0-cd5ed31680c7541ec95eac9501b37592",
|
||||||
|
"md5": "bc704d6e57fa257ba3e862e50ed8d836",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.012?auth_key=1775722528-916e6cf6a5c7426bb7574d68381d5de0-0-b2fc33ba55eed89007e090165a241500",
|
||||||
|
"md5": "8d30ac9bb285ba5a9a3226ec306a89ad",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.013?auth_key=1775722528-c4477cd46e1f4c85b13ddea3ebb0ac25-0-16b5d788babae88a5d5305f3ad796583",
|
||||||
|
"md5": "94711824416e11578e7e7fef90c459e6",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.014?auth_key=1775722528-3718cf8632b049668d5958bedc50bfb0-0-51417a779a9b54c99d2a72d8400ffef4",
|
||||||
|
"md5": "973b00cc1053446a4e4f74981b6838fe",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.015?auth_key=1775722528-cec0250af7a24bfd99f94d6ccda9ae3d-0-2203af7c7edf0a397e55e967b261d031",
|
||||||
|
"md5": "00b638a9eb0bbcb6660d140a6acf9cf0",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.016?auth_key=1775722528-a699e403052141ebaa1fb28284eb405e-0-90caed7eaf96b478ab7e984432ff18e5",
|
||||||
|
"md5": "ad8590befd2ac195fccf7933b3c4fb9f",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.017?auth_key=1775722528-cb352b54eecf44e3a88b2a3823758b79-0-b1785c0033132b1d7d406f40b93fa4a2",
|
||||||
|
"md5": "5c6be0f07ccf680b21154fd6059ce6f5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.018?auth_key=1775722528-02ef3bcacc7c4f48bc51c768fabe1b13-0-90d8e57f90911cc5d2bd8692346a6781",
|
||||||
|
"md5": "8d0c46ee94cecf22e8ce907c16454aca",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.019?auth_key=1775722528-76ba3fbee9e34815bde458b631f760d6-0-2882e9978d294b4344116ec903c78a8b",
|
||||||
|
"md5": "3d80bd59b8d475416c224abb26cad256",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.020?auth_key=1775722528-c032b10193ed43448295f4b5aa8f3e79-0-83986bcb39d5c04dd1eed924a6da0d33",
|
||||||
|
"md5": "388ffb30fd2f561d46831ced154711df",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.021?auth_key=1775722528-1c22427a9fbb41a896f0b662bfa73146-0-5dd00ba27c20b7ef439ca814a6fd0045",
|
||||||
|
"md5": "bf78cd9bae48e700d900d9b6f5a733d2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.022?auth_key=1775722528-1c9e28eeb74f45548d66dd8d3493f106-0-fcb2c056379709a31d7573e184ece890",
|
||||||
|
"md5": "4356321ee035d581d1aed9c4c86f0813",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.023?auth_key=1775722528-9902a2e3b9054039a6130a82cff3948c-0-5a6d80be77b11a8332ae00b1227d4cab",
|
||||||
|
"md5": "58f115bff9c9ffea646222211094b133",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.024?auth_key=1775722528-1348e4180fbd45b78aefb94fd021c31a-0-78dee6461fe6a79a6941cd877bd0eef9",
|
||||||
|
"md5": "0cf0d77984b9303c2a132097ad7cf54e",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.025?auth_key=1775722528-d7620091a7de409db858c5e451e2b261-0-f8edccce2461d608d05c7702727e52d0",
|
||||||
|
"md5": "84cd243f154dced354f867aeb55ea5c5",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.026?auth_key=1775722528-e68c1092274a44ff8b93f3184dd91d30-0-8ecd0181c2138501cd4dd00af66a30c4",
|
||||||
|
"md5": "f27e99af724a3797a1d5546a9bad45b3",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.027?auth_key=1775722528-df59b78de9f14945b575ff5a38762044-0-cba93436fb5883f29a07a2e8dbb24519",
|
||||||
|
"md5": "81baad1407d24c5bbc11580713d01102",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.028?auth_key=1775722528-0ed77d037f5f47229b9934c5fcb7d43a-0-19fd2da65ea10add90c5f541547e7ee4",
|
||||||
|
"md5": "54b4567ad062d54fc1a0c309a57fcd09",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.029?auth_key=1775722528-758b9098e6824decb9a7c48d859ea0e9-0-9a30a97f6a5647849ef1ff2852e55384",
|
||||||
|
"md5": "17f82970e16492bcc6b07c1d7a2cccc2",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.030?auth_key=1775722528-3bd81b9c44404ea1a39cab6d8f8586c3-0-bf0bbfeb74ca55cb051a623157d2f412",
|
||||||
|
"md5": "fcda96d468c718b1740ec99ea9d1c127",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.031?auth_key=1775722528-f95b642acc5a4e09b1b1c8d0fd93b6fb-0-ba4c5f5ef1f36a829bf0b740e74539bc",
|
||||||
|
"md5": "17485008a22fd28be1e8cc2f38f25526",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.032?auth_key=1775722528-5b5f1436abac487e808f6e8d79880ef2-0-c8f31a978cca0e0d2029f5f834d30e1c",
|
||||||
|
"md5": "09590fc5f66164af76e845de504e544c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.033?auth_key=1775722528-559199aadd7d4efebb1951ee77b04340-0-367009dfe2aadc6aee68b288649757e7",
|
||||||
|
"md5": "d8a47df74a982716609b99da97d9e203",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.034?auth_key=1775722528-d46b013b1f36459e9569249ee0165d0a-0-29101c213929d7bf98a470f10a58c558",
|
||||||
|
"md5": "961d64c3a981da9e34b18f272629908c",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.035?auth_key=1775722528-53cc93abf4f94de98d5eadf2f847225b-0-199e35b8e80870c48df481af493bc706",
|
||||||
|
"md5": "87897531c141e929a3aba5d8aef5df68",
|
||||||
|
"package_size": "1073741824"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/update/2/2/Windows/1.1.9_RfPNtRXLwX2my3ep/patches/1.0.14/Beyond_Release_v1d0-Rel-cn-5157154-11_prod_obt_bilibili_1_0_14.zip.036?auth_key=1775722528-3170e2a237824f49bc98b5991a8175dd-0-6d0c730fb08fddbadb3afce81bae50f6",
|
||||||
|
"md5": "832c12c0126133c7a866e34f1a46079a",
|
||||||
|
"package_size": "695112511"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"v2_patch_info_url": "",
|
||||||
|
"v2_patch_info_size": "0",
|
||||||
|
"v2_patch_info_md5": ""
|
||||||
|
},
|
||||||
|
"state": 0,
|
||||||
|
"launcher_action": 0
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -838,5 +838,229 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-13T04:00:37.548+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5917935-7",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/5917935-7_GlJa4P7IPe0DtQEB/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5917935-7",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/5917935-7_ZJZe7petvyatlVGC/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5917935-7_main_5917935-7",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-14T02:50:26.747+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/5928852-8_VPJAlvBn5S8teYv1/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/5928852-8_U00qdmWPyHxCCl3p/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5928852-8_main_5928852-8",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T02:05:25.708+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/5961872-9_FVAf81Fn1d0PKt7t/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/5961872-9_bvEy2UVf7Ku4rQrb/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_5961872-9_main_5961872-9",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T02:01:31.451+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/5998981-10_sZ5J4VoQo2bxg4hq/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/5998981-10_NZDmgwlkAChQxUzJ/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5998981-10_main_5998981-10",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:00:35.277+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6164589-11_PYhinKNBEnA4hJvU/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6164589-11_45Zmg8uTvFzamyD6/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:00:38.341+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6238634-12_9f0LgSDcpKaQTL6t/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6238634-12_FqzVtIPk2NwgF5OM/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-12_main_6238634-12",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:05:29.474+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6331530-14_xUQnoini4ny6IfoT/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6331530-14_FsOjvQzHcAt7DToA/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-14_main_6331530-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:05:29.587+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6366689-16_3vxzepI2KPfR1XuE/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6366689-16_AcmiAouQfFCuAxq8/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-5",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/5883275-5_5jW1E08pEQZIHCRF/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6366689-16_3vxzepI2KPfR1XuE/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-5",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/5883275-5_uGdOCXLkkJR7oCWM/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6366689-16_AcmiAouQfFCuAxq8/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-5_main_5883275-5",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-5",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/5883275-5_5jW1E08pEQZIHCRF/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/main/6366689-16_3vxzepI2KPfR1XuE/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-5",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/5883275-5_uGdOCXLkkJR7oCWM/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Android/initial/6366689-16_AcmiAouQfFCuAxq8/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-5_main_5883275-5",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -390,5 +390,229 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-13T03:50:29.449+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5917935-6",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/5917935-6_98C5nja1knjVgAcO/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5917935-6",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/5917935-6_GAK3xtAtlnZ8KV0L/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5917935-6_main_5917935-6",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-14T02:50:28.166+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/5928852-8_OpKtAlxgg7a4xISk/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/5928852-8_YjmRTIAiypnBKb3p/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5928852-8_main_5928852-8",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T02:05:27.293+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/5961872-9_b4Gd1j1WwyVFapoK/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/5961872-9_AJb3jkHqFTYjMv7q/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_5961872-9_main_5961872-9",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T02:01:33.678+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/5998981-10_twWvTfzpxaYdZ24s/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/5998981-10_xYO8ydH7I8cQc3gr/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5998981-10_main_5998981-10",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:00:36.776+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6164589-11_BBAZ8YHhcyKCZ5YE/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6164589-11_g10GWMCdszZWJENu/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:00:39.842+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6238634-12_PYHmyZsskorusvCM/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6238634-12_Rc8Ry57YtSNDpWId/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-12_main_6238634-12",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:05:30.928+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6331530-14_sqzTqHel8BKwLM3W/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6331530-14_SybQ50kET247sagy/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-14_main_6331530-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:05:30.772+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6366689-16_WyBzfN0NfuY0YDAe/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6366689-16_BWn9p9riqw1N5BdO/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-4",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/5883275-4_cQq4Lwb5Fr6MsytJ/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6366689-16_WyBzfN0NfuY0YDAe/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-4",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/5883275-4_j3ltD7v9ZmFkonIB/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6366689-16_BWn9p9riqw1N5BdO/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-4_main_5883275-4",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-4",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/5883275-4_cQq4Lwb5Fr6MsytJ/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/main/6366689-16_WyBzfN0NfuY0YDAe/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-4",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/5883275-4_j3ltD7v9ZmFkonIB/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/PlayStation/initial/6366689-16_BWn9p9riqw1N5BdO/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-4_main_5883275-4",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -390,5 +390,229 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-13T04:00:36.858+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5917935-8",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/5917935-8_R7QZaMoRjV9qHGIg/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5917935-8",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/5917935-8_I9uT2apmq4Jqfcub/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5917935-8_main_5917935-8",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-14T02:50:25.993+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5928852-10",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/5928852-10_2pOR4EkXaGODnS5V/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5928852-10",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/5928852-10_JoK0vb5SnST3L5S7/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5928852-10_main_5928852-10",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T02:05:24.842+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5961872-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/5961872-11_pcr8MvD2YiaDbMR9/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5961872-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/5961872-11_AQHPLB8I5GP4P4da/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_5961872-11_main_5961872-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T02:01:30.585+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5998981-12",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/5998981-12_yADk7f1BS0WEG7r2/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5998981-12",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/5998981-12_zGnpY0e77KjEXysi/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5998981-12_main_5998981-12",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:00:34.576+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-13",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6164589-13_6N4q6EEdGNPN4hZT/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-13",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6164589-13_uFmzUUFd4PliEqlu/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-13_main_6164589-13",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:00:37.513+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6238634-14_dEWlFy5FA8Wj4ijn/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6238634-14_ftds7LSoTFGq7Luq/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-14_main_6238634-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:05:28.608+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6331530-16_1UzoXJQJztjZT6lE/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6331530-16_GVmGbm9POpBpuGHa/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-16_main_6331530-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:05:28.867+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6366689-18_LzIg1Tc4FXT50tMQ/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6366689-18_gZdnW9B5JeN97ml0/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-6",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/5883275-6_R7TJLvYC9XDZ9mr8/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6366689-18_LzIg1Tc4FXT50tMQ/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-6",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/5883275-6_1DmMQenqScUOuMQj/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6366689-18_gZdnW9B5JeN97ml0/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-6_main_5883275-6",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-6",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/5883275-6_R7TJLvYC9XDZ9mr8/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/main/6366689-18_LzIg1Tc4FXT50tMQ/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-6",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/5883275-6_1DmMQenqScUOuMQj/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/Windows/initial/6366689-18_gZdnW9B5JeN97ml0/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-6_main_5883275-6",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -390,5 +390,229 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-13T03:50:28.698+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5917935-7",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/5917935-7_5XCGWH072IgO3oYj/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5917935-7",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/5917935-7_eP85NdTRhXOpT9O2/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5917935-7_main_5917935-7",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-14T02:50:27.491+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/5928852-8_ewjoJfFhU4mbCSGD/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/5928852-8_D7EisMucrgHgx4kz/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5928852-8_main_5928852-8",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T02:05:26.519+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/5961872-9_hNFK9YMf5fsfeAOL/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/5961872-9_IOhj3EJk2TrEOhl0/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_5961872-9_main_5961872-9",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T02:01:32.843+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/5998981-10_WL5LiTYp5BgvbEtl/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/5998981-10_dhwaK9morVFMkwtB/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5998981-10_main_5998981-10",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:00:36.051+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6164589-11_EBDrBNWDPBiUwLXg/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6164589-11_w5qeRMBFCLTRIPp8/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:00:39.090+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6238634-14_aRqB03otELJAYpoy/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6238634-14_IsrAvfVaQ2KerR0t/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-14_main_6238634-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:05:30.183+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6331530-16_6Yde431Tm8hAAERt/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6331530-16_AvigDMs631UT5HIo/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-16_main_6331530-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:05:30.179+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "RfPNtRXLwX2my3ep",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6366689-18_wDNojME5v0ztasSE/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6366689-18_Lx4YyPgTBL0rG8o4/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hycdn.cn"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-5",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/5883275-5_y3AWXonFbNHSSKEY/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6366689-18_wDNojME5v0ztasSE/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-5",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/5883275-5_4DZqXhC7zep07nAd/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6366689-18_Lx4YyPgTBL0rG8o4/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-5_main_5883275-5",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-5",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/5883275-5_y3AWXonFbNHSSKEY/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/main/6366689-18_wDNojME5v0ztasSE/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-5",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/5883275-5_4DZqXhC7zep07nAd/files"
|
"path": "https://beyond.hycdn.cn/6LL0KJuqHBVz33WK/1.1/resource/iOS/initial/6366689-18_Lx4YyPgTBL0rG8o4/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-5_main_5883275-5",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hycdn.cn"
|
"domain": "https://beyond.hycdn.cn"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -838,5 +838,229 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-13T04:30:30.817+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5917935-7",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/5917935-7_rUZGu5WS8oMtj7rt/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5917935-7",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/5917935-7_8OSgJvzHk3VFeG4D/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5917935-7_main_5917935-7",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-14T03:30:28.649+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/5928852-8_uZ0DfZbAzZXIJuG0/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/5928852-8_lBuPikv1i4gV2kW1/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5928852-8_main_5928852-8",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T02:35:20.206+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/5961872-9_XSRlGtPzC7gF3Mn1/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/5961872-9_g00b6Zi2uwRWGcDn/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_5961872-9_main_5961872-9",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T02:35:23.879+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/5998981-10_cSJn1DUqJDEgJgIQ/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/5998981-10_dSM176r9moW9qPbF/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5998981-10_main_5998981-10",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:30:30.126+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6164589-11_Vj5jgt3UidEA1ANb/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6164589-11_4u2MD7bFfZdpCLju/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:30:33.344+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6238634-12_ifT096qknnIYjhir/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6238634-12_u2LaekfUH5o1PSYE/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-12_main_6238634-12",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:35:21.809+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6331530-14_TTCwkNvyo5r48Y9s/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6331530-14_FCzffmaswkQ1H1ZV/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-14_main_6331530-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:35:27.190+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Android"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6366689-16_Zvy77077P8Q54Tdi/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6366689-16_TZ4CSbYESfEsAM8C/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-5",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/5883275-5_ZqrjBF0kQZqUyWnk/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6366689-16_Zvy77077P8Q54Tdi/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-5",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/5883275-5_fZhRRE1zA6F8Nczs/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6366689-16_TZ4CSbYESfEsAM8C/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-5_main_5883275-5",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-5",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/5883275-5_ZqrjBF0kQZqUyWnk/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/main/6366689-16_Zvy77077P8Q54Tdi/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-5",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/5883275-5_fZhRRE1zA6F8Nczs/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Android/initial/6366689-16_TZ4CSbYESfEsAM8C/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-5_main_5883275-5",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -838,5 +838,229 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-13T04:30:32.647+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5917935-6",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/5917935-6_HVhuSBMilwKRMAP8/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5917935-6",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/5917935-6_vVlllrN5dKKzyVFv/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5917935-6_main_5917935-6",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-14T03:30:30.135+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/5928852-8_pvIZ4ncEsmybAjV6/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/5928852-8_ytYzS2bFIkhyonME/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5928852-8_main_5928852-8",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T02:35:21.708+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/5961872-9_oGsdkkO39KHht9VA/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/5961872-9_3Q0XF0HBPP8VqQt8/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_5961872-9_main_5961872-9",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T02:35:25.379+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/5998981-10_MLLKfeqKqjy0673l/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/5998981-10_BqjmR5E5xdLSaEmU/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5998981-10_main_5998981-10",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:30:31.618+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6164589-11_8FTxNuO1zL7kmMcc/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6164589-11_tBsqcpEWmsx4TJns/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:30:34.943+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6238634-12_jt6qZbZ4quiBCYzl/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-12",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6238634-12_q2pUcKU9awgXOCZ2/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-12_main_6238634-12",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:35:23.345+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6331530-14_tR8rGLdosJvvfXvJ/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6331530-14_oBMwmXRvJq0PPnvb/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-14_main_6331530-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:35:28.781+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "PlayStation"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6366689-16_47JZucwq7LWPs7eG/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6366689-16_eI2aLnv12hXuO4LO/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-4",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/5883275-4_qRKQJ61htAtUzM15/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6366689-16_47JZucwq7LWPs7eG/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-4",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/5883275-4_Y79vJ1BKzttSXy9w/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6366689-16_eI2aLnv12hXuO4LO/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-4_main_5883275-4",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-4",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/5883275-4_qRKQJ61htAtUzM15/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/main/6366689-16_47JZucwq7LWPs7eG/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-4",
|
"version": "6366689-16",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/5883275-4_Y79vJ1BKzttSXy9w/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/PlayStation/initial/6366689-16_eI2aLnv12hXuO4LO/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-4_main_5883275-4",
|
"res_version": "initial_6366689-16_main_6366689-16",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -922,5 +922,229 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-13T04:30:30.185+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5917935-8",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/5917935-8_hCBcxWJfh1JkSHI0/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5917935-8",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/5917935-8_1wFU40RRNu4NnDEk/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5917935-8_main_5917935-8",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-14T03:30:27.914+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5928852-10",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/5928852-10_k7GFok5FdD9yFqVj/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5928852-10",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/5928852-10_HCoUIN9Fg9cetZcS/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5928852-10_main_5928852-10",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T02:35:19.448+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5961872-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/5961872-11_AfCUkpTxQ9vX3dkn/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5961872-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/5961872-11_5b4SElGbPSPktUxa/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_5961872-11_main_5961872-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T02:35:23.077+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5998981-12",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/5998981-12_pXDPnMZY3orirJOO/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5998981-12",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/5998981-12_NiISLZmCatO52cpa/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5998981-12_main_5998981-12",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:30:29.349+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-13",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6164589-13_MUJG63lwx3CO7a5v/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-13",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6164589-13_AJ9J45ri5TjF3KxD/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-13_main_6164589-13",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:30:32.581+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6238634-14_mW7tHaWCJWdHvrg7/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6238634-14_ljdgos3ayJD2QaUR/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-14_main_6238634-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:35:21.012+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6331530-16_Zrq5BrI142DaxJMr/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6331530-16_cv7tGSUN1WKKt6Rb/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-16_main_6331530-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:35:26.426+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6366689-18_XtudDqOTOlJV1nHQ/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6366689-18_yCXtD462EG3rxfpr/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-6",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/5883275-6_e8w9ZkypXHyGuR2z/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6366689-18_XtudDqOTOlJV1nHQ/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-6",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/5883275-6_6gSAXHroWjsffq3O/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6366689-18_yCXtD462EG3rxfpr/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-6_main_5883275-6",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-6",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/5883275-6_e8w9ZkypXHyGuR2z/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/main/6366689-18_XtudDqOTOlJV1nHQ/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-6",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/5883275-6_6gSAXHroWjsffq3O/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/Windows/initial/6366689-18_yCXtD462EG3rxfpr/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-6_main_5883275-6",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -838,5 +838,229 @@
|
|||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-13T04:30:32.035+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5917935-7",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/5917935-7_NKxFa42u0t05JHIB/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5917935-7",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/5917935-7_wzb2nAPoeZpoj1Eu/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5917935-7_main_5917935-7",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-14T03:30:29.391+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/5928852-8_N6yhCzVgG4fVHwwq/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5928852-8",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/5928852-8_ZeZAgncFoVl3yCJl/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5928852-8_main_5928852-8",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T02:35:20.961+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/5961872-9_1Kazl5tcq2CwxwUI/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5961872-9",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/5961872-9_cDWWOKylBF7vLj06/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_5961872-9_main_5961872-9",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T02:35:24.627+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/5998981-10_Us32zZdCwzIWu74l/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "5998981-10",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/5998981-10_FZ3QOF1zjS8HNbpB/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_5998981-10_main_5998981-10",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T02:30:30.867+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6164589-11_Xtl74lcAeC56AqrB/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6164589-11",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6164589-11_U1zZVjeada5BXWa3/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":true}",
|
||||||
|
"res_version": "initial_6164589-11_main_6164589-11",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T02:30:34.086+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6238634-14_687uK9odqPPmu0hb/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6238634-14",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6238634-14_JFtnH8wdwFLjBvzZ/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6238634-14_main_6238634-14",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T02:35:22.567+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6331530-16_aokP0GkK3fI8mLzr/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6331530-16",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6331530-16_KQTpJ5L45exJXqpf/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6331530-16_main_6331530-16",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T02:35:27.968+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"gameVersion": "1.1",
|
||||||
|
"version": "1.1.9",
|
||||||
|
"randStr": "PPTMaQzu2HpbgY7P",
|
||||||
|
"platform": "iOS"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"resources": [
|
||||||
|
{
|
||||||
|
"name": "main",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6366689-18_S0QGDj4PtN16wn8q/files"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "initial",
|
||||||
|
"version": "6366689-18",
|
||||||
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6366689-18_Z2UqJmET5JVAP1au/files"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configs": "{\"kick_flag\":false}",
|
||||||
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
|
"patch_index_path": "",
|
||||||
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-5",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/5883275-5_an6NOlNWq9SrRQjQ/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6366689-18_S0QGDj4PtN16wn8q/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-5",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/5883275-5_vXPZU7cuJ8mw9LVI/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6366689-18_Z2UqJmET5JVAP1au/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-5_main_5883275-5",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,17 +10,17 @@
|
|||||||
"resources": [
|
"resources": [
|
||||||
{
|
{
|
||||||
"name": "main",
|
"name": "main",
|
||||||
"version": "5883275-5",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/5883275-5_an6NOlNWq9SrRQjQ/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/main/6366689-18_S0QGDj4PtN16wn8q/files"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "initial",
|
"name": "initial",
|
||||||
"version": "5883275-5",
|
"version": "6366689-18",
|
||||||
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/5883275-5_vXPZU7cuJ8mw9LVI/files"
|
"path": "https://beyond.hg-cdn.com/YDUTE5gscDZ229CW/1.1/resource/iOS/initial/6366689-18_Z2UqJmET5JVAP1au/files"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"configs": "{\"kick_flag\":true}",
|
"configs": "{\"kick_flag\":false}",
|
||||||
"res_version": "initial_5883275-5_main_5883275-5",
|
"res_version": "initial_6366689-18_main_6366689-18",
|
||||||
"patch_index_path": "",
|
"patch_index_path": "",
|
||||||
"domain": "https://beyond.hg-cdn.com"
|
"domain": "https://beyond.hg-cdn.com"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,5 +17,24 @@
|
|||||||
"total_size": "389401989",
|
"total_size": "389401989",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T01:35:32.912+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"targetApp": "Arknights"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/D3pWrb8oLRkDV9V2/HypergryphLauncher_v1.2.1.1211_1_1_arknights.zip?auth_key=1773884132-e4c4956a34e44746b3c277ede6bcbee2-0-32c28df4fb690414fb359738476e4fec",
|
||||||
|
"md5": "abb82fe4e3eb10c9a3bbd5670c231f69",
|
||||||
|
"package_size": "125372461",
|
||||||
|
"total_size": "389271628",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,12 +7,12 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.1.1",
|
"version": "1.2.1",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.1/1/1/9lgNrktxI8ARzguv/HypergryphLauncher_v1.1.1.1121_1_1_arknights.zip?auth_key=1770805425-b97874bbf29b4747a0aba81165580890-0-3d4e79aa6cd654b814cc71189103aa83",
|
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/D3pWrb8oLRkDV9V2/HypergryphLauncher_v1.2.1.1211_1_1_arknights.zip?auth_key=1773884132-e4c4956a34e44746b3c277ede6bcbee2-0-32c28df4fb690414fb359738476e4fec",
|
||||||
"md5": "013d7e900c46b2324c8a749a06b84768",
|
"md5": "abb82fe4e3eb10c9a3bbd5670c231f69",
|
||||||
"package_size": "125456996",
|
"package_size": "125372461",
|
||||||
"total_size": "389401989",
|
"total_size": "389271628",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
18
output/akEndfield/launcher/launcher/Arknights/1/v1.2.1.json
Normal file
18
output/akEndfield/launcher/launcher/Arknights/1/v1.2.1.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"targetApp": "Arknights"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/D3pWrb8oLRkDV9V2/HypergryphLauncher_v1.2.1.1211_1_1_arknights.zip?auth_key=1773884132-e4c4956a34e44746b3c277ede6bcbee2-0-32c28df4fb690414fb359738476e4fec",
|
||||||
|
"md5": "abb82fe4e3eb10c9a3bbd5670c231f69",
|
||||||
|
"package_size": "125372461",
|
||||||
|
"total_size": "389271628",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -17,5 +17,24 @@
|
|||||||
"total_size": "390124155",
|
"total_size": "390124155",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T01:35:32.647+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"targetApp": "EndField"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/ZodW88OwDUHhrsRS/HypergryphLauncher_v1.2.1.1214_1_1_endfield.zip?auth_key=1773884132-d6f97459b026457f8480b69bb7431283-0-871b86c867216da72aeb8c4fc9e79b6c",
|
||||||
|
"md5": "d57167a507db49e2423949ad7ced53a5",
|
||||||
|
"package_size": "125959833",
|
||||||
|
"total_size": "390445560",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,12 +7,12 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.1.1",
|
"version": "1.2.1",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.1/1/1/NO0nx1dZDOVcjo27/HypergryphLauncher_v1.1.1.1124_1_1_endfield.zip?auth_key=1770805424-b340c15e0d964370803a4e25b35dfae7-0-c4db269999383a19f59306d6cbef99a0",
|
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/ZodW88OwDUHhrsRS/HypergryphLauncher_v1.2.1.1214_1_1_endfield.zip?auth_key=1773884132-d6f97459b026457f8480b69bb7431283-0-871b86c867216da72aeb8c4fc9e79b6c",
|
||||||
"md5": "0200ac146e854fc7692361d5f02e7727",
|
"md5": "d57167a507db49e2423949ad7ced53a5",
|
||||||
"package_size": "125818123",
|
"package_size": "125959833",
|
||||||
"total_size": "390124155",
|
"total_size": "390445560",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
18
output/akEndfield/launcher/launcher/EndField/1/v1.2.1.json
Normal file
18
output/akEndfield/launcher/launcher/EndField/1/v1.2.1.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"targetApp": "EndField"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/ZodW88OwDUHhrsRS/HypergryphLauncher_v1.2.1.1214_1_1_endfield.zip?auth_key=1773884132-d6f97459b026457f8480b69bb7431283-0-871b86c867216da72aeb8c4fc9e79b6c",
|
||||||
|
"md5": "d57167a507db49e2423949ad7ced53a5",
|
||||||
|
"package_size": "125959833",
|
||||||
|
"total_size": "390445560",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -55,5 +55,43 @@
|
|||||||
"total_size": "725364107",
|
"total_size": "725364107",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T01:35:32.160+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"targetApp": "EndField"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/igt3w3ltwlSKC9It/GRYPHLINK_v1.2.1.1217_6_6_endfield.zip",
|
||||||
|
"md5": "53b1686b303945baa4f9c1bdba383cb1",
|
||||||
|
"package_size": "125956870",
|
||||||
|
"total_size": "390438283",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T12:25:36.496+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"targetApp": "EndField"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.2",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.zip",
|
||||||
|
"md5": "d4c2dbe65bab448fa9937952d423c0f3",
|
||||||
|
"package_size": "125957812",
|
||||||
|
"total_size": "390439217",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,12 +7,12 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.1.0",
|
"version": "1.2.2",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.1.0/6/6/NVX60B0FgrIAIWH2/GRYPHLINK_v1.1.0.1107_6_6_endfield.zip",
|
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.zip",
|
||||||
"md5": "b099efdca62ba3a86e1160487b8c0589",
|
"md5": "d4c2dbe65bab448fa9937952d423c0f3",
|
||||||
"package_size": "293288325",
|
"package_size": "125957812",
|
||||||
"total_size": "725364107",
|
"total_size": "390439217",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
18
output/akEndfield/launcher/launcher/EndField/6/v1.2.1.json
Normal file
18
output/akEndfield/launcher/launcher/EndField/6/v1.2.1.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"targetApp": "EndField"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/igt3w3ltwlSKC9It/GRYPHLINK_v1.2.1.1217_6_6_endfield.zip",
|
||||||
|
"md5": "53b1686b303945baa4f9c1bdba383cb1",
|
||||||
|
"package_size": "125956870",
|
||||||
|
"total_size": "390438283",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
18
output/akEndfield/launcher/launcher/EndField/6/v1.2.2.json
Normal file
18
output/akEndfield/launcher/launcher/EndField/6/v1.2.2.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"targetApp": "EndField"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.2",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.zip",
|
||||||
|
"md5": "d4c2dbe65bab448fa9937952d423c0f3",
|
||||||
|
"package_size": "125957812",
|
||||||
|
"total_size": "390439217",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -17,5 +17,24 @@
|
|||||||
"total_size": "360918444",
|
"total_size": "360918444",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T01:35:33.559+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"targetApp": "Official"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/l4YLFFfm9k7pGIf2/HypergryphLauncher_v1.2.1.1221_1_1_official.zip?auth_key=1773884133-f83a56f5380f4e509a9c097999cc568b-0-f8b28096e491cd2579294fa9f630a47f",
|
||||||
|
"md5": "705f8514721c8a3102258f1b397a7864",
|
||||||
|
"package_size": "111352939",
|
||||||
|
"total_size": "361237202",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,12 +7,12 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.1.0",
|
"version": "1.2.1",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.0/1/1/2vyVIpSrNaIQNLLk/HypergryphLauncher_v1.1.0.1111_1_1_official.zip?auth_key=1770805425-4767f09255e04759acec76fee5709419-0-704e6c4ef290a9ed54699fa50d25896f",
|
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/l4YLFFfm9k7pGIf2/HypergryphLauncher_v1.2.1.1221_1_1_official.zip?auth_key=1773884133-f83a56f5380f4e509a9c097999cc568b-0-f8b28096e491cd2579294fa9f630a47f",
|
||||||
"md5": "ac840b12eeeee1e09be228e767300cc5",
|
"md5": "705f8514721c8a3102258f1b397a7864",
|
||||||
"package_size": "111213036",
|
"package_size": "111352939",
|
||||||
"total_size": "360918444",
|
"total_size": "361237202",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
18
output/akEndfield/launcher/launcher/Official/1/v1.2.1.json
Normal file
18
output/akEndfield/launcher/launcher/Official/1/v1.2.1.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"targetApp": "Official"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher-sign.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/l4YLFFfm9k7pGIf2/HypergryphLauncher_v1.2.1.1221_1_1_official.zip?auth_key=1773884133-f83a56f5380f4e509a9c097999cc568b-0-f8b28096e491cd2579294fa9f630a47f",
|
||||||
|
"md5": "705f8514721c8a3102258f1b397a7864",
|
||||||
|
"package_size": "111352939",
|
||||||
|
"total_size": "361237202",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -36,5 +36,24 @@
|
|||||||
"total_size": "360913124",
|
"total_size": "360913124",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T01:35:32.404+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"targetApp": "Official"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/MI79zS8kSJY7ne7H/GRYPHLINK_v1.2.1.1222_6_6_official.zip",
|
||||||
|
"md5": "e4c47aad83cc586187858706bd438aa7",
|
||||||
|
"package_size": "111351477",
|
||||||
|
"total_size": "361231482",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,12 +7,12 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.1.0",
|
"version": "1.2.1",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.1.0/6/6/oL3UfvgkscD1onKF/GRYPHLINK_v1.1.0.1112_6_6_official.zip",
|
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/MI79zS8kSJY7ne7H/GRYPHLINK_v1.2.1.1222_6_6_official.zip",
|
||||||
"md5": "dd92acd3fd5217992a64cb4b22729740",
|
"md5": "e4c47aad83cc586187858706bd438aa7",
|
||||||
"package_size": "111211982",
|
"package_size": "111351477",
|
||||||
"total_size": "360913124",
|
"total_size": "361231482",
|
||||||
"description": ""
|
"description": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
18
output/akEndfield/launcher/launcher/Official/6/v1.2.1.json
Normal file
18
output/akEndfield/launcher/launcher/Official/6/v1.2.1.json
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"targetApp": "Official"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"zip_package_url": "https://launcher.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/MI79zS8kSJY7ne7H/GRYPHLINK_v1.2.1.1222_6_6_official.zip",
|
||||||
|
"md5": "e4c47aad83cc586187858706bd438aa7",
|
||||||
|
"package_size": "111351477",
|
||||||
|
"total_size": "361231482",
|
||||||
|
"description": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -14,5 +14,21 @@
|
|||||||
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.1/1/1/9lgNrktxI8ARzguv/HypergryphLauncher_v1.1.1.1121_1_1_arknights.exe?auth_key=1770805425-172992522f484813a1114b3495dbf372-0-08a2616d5eb0731a005ece3fd6e606a9&tracking=Hypergryph",
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.1/1/1/9lgNrktxI8ARzguv/HypergryphLauncher_v1.1.1.1121_1_1_arknights.exe?auth_key=1770805425-172992522f484813a1114b3495dbf372-0-08a2616d5eb0731a005ece3fd6e606a9&tracking=Hypergryph",
|
||||||
"exe_size": "166524160"
|
"exe_size": "166524160"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T01:35:32.912+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"ta": "arknights"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/D3pWrb8oLRkDV9V2/HypergryphLauncher_v1.2.1.1211_1_1_arknights.exe?auth_key=1773884132-18625168e9ba4813bd5ce5f63acc3e34-0-8898f3c9c3d20cb6860f169b985ee1d6&tracking=Hypergryph",
|
||||||
|
"exe_size": "166219448"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.1.1",
|
"version": "1.2.1",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.1/1/1/9lgNrktxI8ARzguv/HypergryphLauncher_v1.1.1.1121_1_1_arknights.exe?auth_key=1770805425-172992522f484813a1114b3495dbf372-0-08a2616d5eb0731a005ece3fd6e606a9&tracking=Hypergryph",
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/D3pWrb8oLRkDV9V2/HypergryphLauncher_v1.2.1.1211_1_1_arknights.exe?auth_key=1773884132-18625168e9ba4813bd5ce5f63acc3e34-0-8898f3c9c3d20cb6860f169b985ee1d6&tracking=Hypergryph",
|
||||||
"exe_size": "166524160"
|
"exe_size": "166219448"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"ta": "arknights"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/D3pWrb8oLRkDV9V2/HypergryphLauncher_v1.2.1.1211_1_1_arknights.exe?auth_key=1773884132-18625168e9ba4813bd5ce5f63acc3e34-0-8898f3c9c3d20cb6860f169b985ee1d6&tracking=Hypergryph",
|
||||||
|
"exe_size": "166219448"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -14,5 +14,21 @@
|
|||||||
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.1/1/1/NO0nx1dZDOVcjo27/HypergryphLauncher_v1.1.1.1124_1_1_endfield.exe?auth_key=1770805424-20054abefba5462089be18ccc722a216-0-ea895a486266c0d352a65e21d49127d5&tracking=Hypergryph",
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.1/1/1/NO0nx1dZDOVcjo27/HypergryphLauncher_v1.1.1.1124_1_1_endfield.exe?auth_key=1770805424-20054abefba5462089be18ccc722a216-0-ea895a486266c0d352a65e21d49127d5&tracking=Hypergryph",
|
||||||
"exe_size": "167777352"
|
"exe_size": "167777352"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T01:35:32.648+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"ta": "endfield"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/ZodW88OwDUHhrsRS/HypergryphLauncher_v1.2.1.1214_1_1_endfield.exe?auth_key=1773884132-fe3f952faa044d8a88b44e10f32db0de-0-502ddace924d886d4a37e06800d2316b&tracking=Hypergryph",
|
||||||
|
"exe_size": "167966624"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.1.1",
|
"version": "1.2.1",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.1/1/1/NO0nx1dZDOVcjo27/HypergryphLauncher_v1.1.1.1124_1_1_endfield.exe?auth_key=1770805424-20054abefba5462089be18ccc722a216-0-ea895a486266c0d352a65e21d49127d5&tracking=Hypergryph",
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/ZodW88OwDUHhrsRS/HypergryphLauncher_v1.2.1.1214_1_1_endfield.exe?auth_key=1773884132-fe3f952faa044d8a88b44e10f32db0de-0-502ddace924d886d4a37e06800d2316b&tracking=Hypergryph",
|
||||||
"exe_size": "167777352"
|
"exe_size": "167966624"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"ta": "endfield"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/ZodW88OwDUHhrsRS/HypergryphLauncher_v1.2.1.1214_1_1_endfield.exe?auth_key=1773884132-fe3f952faa044d8a88b44e10f32db0de-0-502ddace924d886d4a37e06800d2316b&tracking=Hypergryph",
|
||||||
|
"exe_size": "167966624"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -14,5 +14,37 @@
|
|||||||
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.1.0/6/6/NVX60B0FgrIAIWH2/GRYPHLINK_v1.1.0.1107_6_6_endfield.exe?tracking=GRYPHLINK",
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.1.0/6/6/NVX60B0FgrIAIWH2/GRYPHLINK_v1.1.0.1107_6_6_endfield.exe?tracking=GRYPHLINK",
|
||||||
"exe_size": "167774552"
|
"exe_size": "167774552"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T01:35:32.170+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"ta": "endfield"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/igt3w3ltwlSKC9It/GRYPHLINK_v1.2.1.1217_6_6_endfield.exe?tracking=GRYPHLINK",
|
||||||
|
"exe_size": "167967024"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T12:25:36.506+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"ta": "endfield"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.2",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.exe?tracking=GRYPHLINK",
|
||||||
|
"exe_size": "167966912"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.1.0",
|
"version": "1.2.2",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.1.0/6/6/NVX60B0FgrIAIWH2/GRYPHLINK_v1.1.0.1107_6_6_endfield.exe?tracking=GRYPHLINK",
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.exe?tracking=GRYPHLINK",
|
||||||
"exe_size": "167774552"
|
"exe_size": "167966912"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"ta": "endfield"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/igt3w3ltwlSKC9It/GRYPHLINK_v1.2.1.1217_6_6_endfield.exe?tracking=GRYPHLINK",
|
||||||
|
"exe_size": "167967024"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"ta": "endfield"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.2",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.2/6/6/DzSNGqMmos8GW6SX/GRYPHLINK_v1.2.2.1227_6_6_endfield.exe?tracking=GRYPHLINK",
|
||||||
|
"exe_size": "167966912"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -14,5 +14,21 @@
|
|||||||
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.0/1/1/2vyVIpSrNaIQNLLk/HypergryphLauncher_v1.1.0.1111_1_1_official.exe?auth_key=1770805426-482b692452694284b22c17c22bfb41ca-0-3a0e71c35f55d5c438e0b88d2a134d6e&tracking=Hypergryph",
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.0/1/1/2vyVIpSrNaIQNLLk/HypergryphLauncher_v1.1.0.1111_1_1_official.exe?auth_key=1770805426-482b692452694284b22c17c22bfb41ca-0-3a0e71c35f55d5c438e0b88d2a134d6e&tracking=Hypergryph",
|
||||||
"exe_size": "124329856"
|
"exe_size": "124329856"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T01:35:33.559+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"ta": "official"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/l4YLFFfm9k7pGIf2/HypergryphLauncher_v1.2.1.1221_1_1_official.exe?auth_key=1773884133-3064761388d84d3986d45149e8738093-0-7ba5fa1c340cb7f6c8b1df41016848af&tracking=Hypergryph",
|
||||||
|
"exe_size": "124459128"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.1.0",
|
"version": "1.2.1",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.1.0/1/1/2vyVIpSrNaIQNLLk/HypergryphLauncher_v1.1.0.1111_1_1_official.exe?auth_key=1770805426-482b692452694284b22c17c22bfb41ca-0-3a0e71c35f55d5c438e0b88d2a134d6e&tracking=Hypergryph",
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/l4YLFFfm9k7pGIf2/HypergryphLauncher_v1.2.1.1221_1_1_official.exe?auth_key=1773884133-3064761388d84d3986d45149e8738093-0-7ba5fa1c340cb7f6c8b1df41016848af&tracking=Hypergryph",
|
||||||
"exe_size": "124329856"
|
"exe_size": "124459128"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "abYeZZ16BPluCFyT",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"ta": "official"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hycdn.cn/abYeZZ16BPluCFyT/launcher/1.2.1/1/1/l4YLFFfm9k7pGIf2/HypergryphLauncher_v1.2.1.1221_1_1_official.exe?auth_key=1773884133-3064761388d84d3986d45149e8738093-0-7ba5fa1c340cb7f6c8b1df41016848af&tracking=Hypergryph",
|
||||||
|
"exe_size": "124459128"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -14,5 +14,21 @@
|
|||||||
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.1.0/6/6/oL3UfvgkscD1onKF/GRYPHLINK_v1.1.0.1112_6_6_official.exe?tracking=GRYPHLINK",
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.1.0/6/6/oL3UfvgkscD1onKF/GRYPHLINK_v1.1.0.1112_6_6_official.exe?tracking=GRYPHLINK",
|
||||||
"exe_size": "124325992"
|
"exe_size": "124325992"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T01:35:32.404+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"ta": "official"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/MI79zS8kSJY7ne7H/GRYPHLINK_v1.2.1.1222_6_6_official.exe?tracking=GRYPHLINK",
|
||||||
|
"exe_size": "124454608"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"action": 1,
|
"action": 1,
|
||||||
"version": "1.1.0",
|
"version": "1.2.1",
|
||||||
"request_version": "",
|
"request_version": "",
|
||||||
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.1.0/6/6/oL3UfvgkscD1onKF/GRYPHLINK_v1.1.0.1112_6_6_official.exe?tracking=GRYPHLINK",
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/MI79zS8kSJY7ne7H/GRYPHLINK_v1.2.1.1222_6_6_official.exe?tracking=GRYPHLINK",
|
||||||
"exe_size": "124325992"
|
"exe_size": "124454608"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"req": {
|
||||||
|
"appCode": "TiaytKBUIEdoEwRT",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"ta": "official"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"action": 1,
|
||||||
|
"version": "1.2.1",
|
||||||
|
"request_version": "",
|
||||||
|
"exe_url": "https://launcher-rule.hg-cdn.com/TiaytKBUIEdoEwRT/launcher/1.2.1/6/6/MI79zS8kSJY7ne7H/GRYPHLINK_v1.2.1.1222_6_6_official.exe?tracking=GRYPHLINK",
|
||||||
|
"exe_size": "124454608"
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "公告",
|
"tabName": "公告",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特许寻访说明",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7224",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "123",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「绯珀申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/4783",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "124",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA 驱动程序新版本可能导致游戏表现异常的问题说明",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/3819",
|
||||||
|
"start_ts": "1773654000000",
|
||||||
|
"id": "118",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "「新潮起,故渊离」版本更新说明",
|
"content": "「新潮起,故渊离」版本更新说明",
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/6003",
|
"jump_url": "https://endfield.hypergryph.com/news/6003",
|
||||||
@@ -20,20 +41,6 @@
|
|||||||
"id": "108",
|
"id": "108",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "「新芽申领」限时特卖说明",
|
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/4784",
|
|
||||||
"start_ts": "1773158400000",
|
|
||||||
"id": "107",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"content": "「河流的女儿」特许寻访说明",
|
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/5992",
|
|
||||||
"start_ts": "1773158400000",
|
|
||||||
"id": "106",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "关于使用非官方工具的安全风险提示",
|
"content": "关于使用非官方工具的安全风险提示",
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/9345",
|
"jump_url": "https://endfield.hypergryph.com/news/9345",
|
||||||
@@ -41,13 +48,6 @@
|
|||||||
"id": "109",
|
"id": "109",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "使用NVIDIA App优化导致游戏表现异常的问题说明",
|
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/7239",
|
|
||||||
"start_ts": "1770462000000",
|
|
||||||
"id": "85",
|
|
||||||
"need_token": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "《明日方舟:终末地》游戏工具指南",
|
"content": "《明日方舟:终末地》游戏工具指南",
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/5906",
|
"jump_url": "https://endfield.hypergryph.com/news/5906",
|
||||||
@@ -82,10 +82,10 @@
|
|||||||
"tabName": "资讯",
|
"tabName": "资讯",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
{
|
{
|
||||||
"content": "【有奖活动】「新潮起,故渊离」热议中!",
|
"content": "「新潮起,故渊离」创作征集活动",
|
||||||
"jump_url": "https://www.skland.com/article?id=5648720&hg_media=launcher&hg_link_campaign=announcement",
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
"start_ts": "1773309600000",
|
"start_ts": "1773378000000",
|
||||||
"id": "110",
|
"id": "111",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -174,5 +174,367 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-13T05:00:43.245+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e2/50/e250e6f89c9b232b17cc20e253bbfc43.png",
|
||||||
|
"md5": "655d08413aa0c668dcad23d3fabe6ae9",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/d4/91/d4917b8f32895bfffa5ab68075d25299.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/6003",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/4c/2f/4c2f27c5d70199218aec8f4775485ba0.png",
|
||||||
|
"md5": "c648cec230819452c58b56ff2cac95cc",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/5992",
|
||||||
|
"id": "70",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
||||||
|
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7225",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/2f/fd/2ffd3caaf5d8a7b77c4454a325db118b.png",
|
||||||
|
"md5": "6ba877cd98e73faa4cd1289270ac5037",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/4795",
|
||||||
|
"id": "61",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-14T07:45:34.159+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b6/6a/b66a4a66da3a069776057af12a23f89a.jpg",
|
||||||
|
"md5": "6a884da36b2b7ec9dcf300f0ac8dc41b",
|
||||||
|
"jump_url": "https://www.skland.com/act/endfield/64d229351fee-ef01-incentive?header=0&hg_media=endfield&hg_link_campaign=banner",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e2/50/e250e6f89c9b232b17cc20e253bbfc43.png",
|
||||||
|
"md5": "655d08413aa0c668dcad23d3fabe6ae9",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/d4/91/d4917b8f32895bfffa5ab68075d25299.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/6003",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/4c/2f/4c2f27c5d70199218aec8f4775485ba0.png",
|
||||||
|
"md5": "c648cec230819452c58b56ff2cac95cc",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/5992",
|
||||||
|
"id": "70",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
||||||
|
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7225",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/2f/fd/2ffd3caaf5d8a7b77c4454a325db118b.png",
|
||||||
|
"md5": "6ba877cd98e73faa4cd1289270ac5037",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/4795",
|
||||||
|
"id": "61",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-16T04:00:43.262+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b7/da/b7da8509e5651c441a5ff8b11089e70d.png",
|
||||||
|
"md5": "4cca3be22c8028017a104be43dec0d21",
|
||||||
|
"jump_url": "http://arknightsendfieldyx.tmall.com/index.htm",
|
||||||
|
"id": "73",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b6/6a/b66a4a66da3a069776057af12a23f89a.jpg",
|
||||||
|
"md5": "6a884da36b2b7ec9dcf300f0ac8dc41b",
|
||||||
|
"jump_url": "https://www.skland.com/act/endfield/64d229351fee-ef01-incentive?header=0&hg_media=endfield&hg_link_campaign=banner",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e2/50/e250e6f89c9b232b17cc20e253bbfc43.png",
|
||||||
|
"md5": "655d08413aa0c668dcad23d3fabe6ae9",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/d4/91/d4917b8f32895bfffa5ab68075d25299.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/6003",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/4c/2f/4c2f27c5d70199218aec8f4775485ba0.png",
|
||||||
|
"md5": "c648cec230819452c58b56ff2cac95cc",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/5992",
|
||||||
|
"id": "70",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
||||||
|
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7225",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/2f/fd/2ffd3caaf5d8a7b77c4454a325db118b.png",
|
||||||
|
"md5": "6ba877cd98e73faa4cd1289270ac5037",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/4795",
|
||||||
|
"id": "61",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:42.251+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e9/22/e9221d36f6fa4784eedc926348f897ac.jpg",
|
||||||
|
"md5": "8f954e0293788f0e6c2817711afeca56",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7224",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b7/da/b7da8509e5651c441a5ff8b11089e70d.png",
|
||||||
|
"md5": "4cca3be22c8028017a104be43dec0d21",
|
||||||
|
"jump_url": "http://arknightsendfieldyx.tmall.com/index.htm",
|
||||||
|
"id": "73",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b6/6a/b66a4a66da3a069776057af12a23f89a.jpg",
|
||||||
|
"md5": "6a884da36b2b7ec9dcf300f0ac8dc41b",
|
||||||
|
"jump_url": "https://www.skland.com/act/endfield/64d229351fee-ef01-incentive?header=0&hg_media=endfield&hg_link_campaign=banner",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e2/50/e250e6f89c9b232b17cc20e253bbfc43.png",
|
||||||
|
"md5": "655d08413aa0c668dcad23d3fabe6ae9",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/d4/91/d4917b8f32895bfffa5ab68075d25299.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/6003",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
||||||
|
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7225",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/2f/fd/2ffd3caaf5d8a7b77c4454a325db118b.png",
|
||||||
|
"md5": "6ba877cd98e73faa4cd1289270ac5037",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/4795",
|
||||||
|
"id": "61",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-30T16:00:48.930+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e9/22/e9221d36f6fa4784eedc926348f897ac.jpg",
|
||||||
|
"md5": "8f954e0293788f0e6c2817711afeca56",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7224",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b6/6a/b66a4a66da3a069776057af12a23f89a.jpg",
|
||||||
|
"md5": "6a884da36b2b7ec9dcf300f0ac8dc41b",
|
||||||
|
"jump_url": "https://www.skland.com/act/endfield/64d229351fee-ef01-incentive?header=0&hg_media=endfield&hg_link_campaign=banner",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e2/50/e250e6f89c9b232b17cc20e253bbfc43.png",
|
||||||
|
"md5": "655d08413aa0c668dcad23d3fabe6ae9",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/d4/91/d4917b8f32895bfffa5ab68075d25299.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/6003",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
||||||
|
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7225",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/2f/fd/2ffd3caaf5d8a7b77c4454a325db118b.png",
|
||||||
|
"md5": "6ba877cd98e73faa4cd1289270ac5037",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/4795",
|
||||||
|
"id": "61",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T04:00:44.179+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/ac/c0/acc0177cc1ad311e21e3528cc7c4cee1.jpg",
|
||||||
|
"md5": "e3c8a3cf81976188cb245827038bcf20",
|
||||||
|
"jump_url": "https://comic.hypergryph.com/talos-ii-historicus/comic/3115",
|
||||||
|
"id": "76",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e9/22/e9221d36f6fa4784eedc926348f897ac.jpg",
|
||||||
|
"md5": "8f954e0293788f0e6c2817711afeca56",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7224",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b6/6a/b66a4a66da3a069776057af12a23f89a.jpg",
|
||||||
|
"md5": "6a884da36b2b7ec9dcf300f0ac8dc41b",
|
||||||
|
"jump_url": "https://www.skland.com/act/endfield/64d229351fee-ef01-incentive?header=0&hg_media=endfield&hg_link_campaign=banner",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e2/50/e250e6f89c9b232b17cc20e253bbfc43.png",
|
||||||
|
"md5": "655d08413aa0c668dcad23d3fabe6ae9",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/d4/91/d4917b8f32895bfffa5ab68075d25299.jpg",
|
||||||
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/6003",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
||||||
|
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7225",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/2f/fd/2ffd3caaf5d8a7b77c4454a325db118b.png",
|
||||||
|
"md5": "6ba877cd98e73faa4cd1289270ac5037",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/4795",
|
||||||
|
"id": "61",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,6 +10,34 @@
|
|||||||
"rsp": {
|
"rsp": {
|
||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/ac/c0/acc0177cc1ad311e21e3528cc7c4cee1.jpg",
|
||||||
|
"md5": "e3c8a3cf81976188cb245827038bcf20",
|
||||||
|
"jump_url": "https://comic.hypergryph.com/talos-ii-historicus/comic/3115",
|
||||||
|
"id": "76",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e9/22/e9221d36f6fa4784eedc926348f897ac.jpg",
|
||||||
|
"md5": "8f954e0293788f0e6c2817711afeca56",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/7224",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/b6/6a/b66a4a66da3a069776057af12a23f89a.jpg",
|
||||||
|
"md5": "6a884da36b2b7ec9dcf300f0ac8dc41b",
|
||||||
|
"jump_url": "https://www.skland.com/act/endfield/64d229351fee-ef01-incentive?header=0&hg_media=endfield&hg_link_campaign=banner",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/e2/50/e250e6f89c9b232b17cc20e253bbfc43.png",
|
||||||
|
"md5": "655d08413aa0c668dcad23d3fabe6ae9",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/0436",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/d4/91/d4917b8f32895bfffa5ab68075d25299.jpg",
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/d4/91/d4917b8f32895bfffa5ab68075d25299.jpg",
|
||||||
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
"md5": "6e114ae8b8898fb1dd114e8cc6079c03",
|
||||||
@@ -17,13 +45,6 @@
|
|||||||
"id": "71",
|
"id": "71",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/4c/2f/4c2f27c5d70199218aec8f4775485ba0.png",
|
|
||||||
"md5": "c648cec230819452c58b56ff2cac95cc",
|
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/5992",
|
|
||||||
"id": "70",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/16/ce/16ce42a4e7380ddd39f57ec9e9cd559f.png",
|
||||||
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
"md5": "d97bee4cbaf67db56ec4a71d70f79603",
|
||||||
|
|||||||
@@ -146,5 +146,148 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T03:15:32.384+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"sidebars": [
|
||||||
|
{
|
||||||
|
"display_type": "DisplayType_RESERVE",
|
||||||
|
"media": "Skland",
|
||||||
|
"pic": {
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/a9/dd/a9ddb9b7e3f6d9241a0a4b01a6c32836.png",
|
||||||
|
"md5": "5dfe04a8e109f6f6943609245e6e311d",
|
||||||
|
"description": "扫码下载官方社区"
|
||||||
|
},
|
||||||
|
"sidebar_labels": [
|
||||||
|
{
|
||||||
|
"content": "WIKI",
|
||||||
|
"jump_url": "https://wiki.skland.com/endfield?hg_media=launcher&hg_link_campaign=icon",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "地图工具",
|
||||||
|
"jump_url": "https://game.skland.com/map/endfield?header=0&hg_media=launcher&hg_link_campaign=icon",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "养成建议",
|
||||||
|
"jump_url": "https://game.skland.com/tools/endfield/build-guide?header=0&ctr_orientation=landscape&routeId=1&hg_media=launcher&hg_link_campaign=icon",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "配队推荐",
|
||||||
|
"jump_url": "https://game.skland.com/tools/endfield/rec-team?header=0&ctr_orientation=landscape&routeId=0&hg_media=launcher&hg_link_campaign=icon",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"grid_info": null,
|
||||||
|
"jump_url": "https://www.skland.com/game/endfield?cateId=16&hg_media=launcher",
|
||||||
|
"need_token": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"display_type": "DisplayType_RESERVE",
|
||||||
|
"media": "Bilibili",
|
||||||
|
"pic": {
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/64/67/6467e4041543651a6fbce77a8a1ef055.png",
|
||||||
|
"md5": "72efc9194dcdc301a14b63253a1855b7",
|
||||||
|
"description": "扫码关注官方B站"
|
||||||
|
},
|
||||||
|
"sidebar_labels": [],
|
||||||
|
"grid_info": null,
|
||||||
|
"jump_url": "https://space.bilibili.com/1265652806",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"display_type": "DisplayType_RESERVE",
|
||||||
|
"media": "Weibo",
|
||||||
|
"pic": {
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/df/b7/dfb73c2062c84f8195de01ba4d28b43b.png",
|
||||||
|
"md5": "ab8b9a383a649f492f2979455bf6f69e",
|
||||||
|
"description": "扫码关注官方微博"
|
||||||
|
},
|
||||||
|
"sidebar_labels": [],
|
||||||
|
"grid_info": null,
|
||||||
|
"jump_url": "https://weibo.com/u/7745672941",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"display_type": "DisplayType_RESERVE",
|
||||||
|
"media": "Taptap",
|
||||||
|
"pic": {
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/54/8a/548a8677b8e2d6b0205d85c0ed1cbe42.png",
|
||||||
|
"md5": "2a8a7b0f23f348bb1210841ce28cb054",
|
||||||
|
"description": "扫码关注官方TapTap"
|
||||||
|
},
|
||||||
|
"sidebar_labels": [],
|
||||||
|
"grid_info": null,
|
||||||
|
"jump_url": "https://www.taptap.cn/user/446565650",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"display_type": "DisplayType_RESERVE",
|
||||||
|
"media": "Douyin",
|
||||||
|
"pic": {
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/3b/ff/3bff2a87b8b55fe0b4bed5f1e8c05720.png",
|
||||||
|
"md5": "1a5a7bdc4c62d5772a2b065e49b7757b",
|
||||||
|
"description": "抖音APP扫码关注"
|
||||||
|
},
|
||||||
|
"sidebar_labels": [],
|
||||||
|
"grid_info": null,
|
||||||
|
"jump_url": "https://www.douyin.com/user/MS4wLjABAAAArN27NxSeh-QfhYXkgcotboH5zv4Jw9HkfcoLsda8hF7k6EkTxg5tWL5zxOCOVlHh?previous_page=web_code_link",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"display_type": "DisplayType_RESERVE",
|
||||||
|
"media": "Xiaohongshu",
|
||||||
|
"pic": {
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/20/d2/20d2644bf3503ad3e2b8d63186f4d0c9.png",
|
||||||
|
"md5": "3c5f3907d11ef9e4f63d4e8ac1dbb4f8",
|
||||||
|
"description": "扫码关注官方小红书"
|
||||||
|
},
|
||||||
|
"sidebar_labels": [],
|
||||||
|
"grid_info": null,
|
||||||
|
"jump_url": "https://www.xiaohongshu.com/user/profile/6531e7b0000000002a01a80b",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"display_type": "DisplayType_RESERVE",
|
||||||
|
"media": "Wechat",
|
||||||
|
"pic": {
|
||||||
|
"url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/30/77/3077359cf67627d50ada190853018353.png",
|
||||||
|
"md5": "b2ddfbe18108c4a1ac7ff50d6a8c9091",
|
||||||
|
"description": "扫码关注微信公众号"
|
||||||
|
},
|
||||||
|
"sidebar_labels": [],
|
||||||
|
"grid_info": null,
|
||||||
|
"jump_url": "",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"display_type": "DisplayType_RESERVE",
|
||||||
|
"media": "CS",
|
||||||
|
"pic": null,
|
||||||
|
"sidebar_labels": [
|
||||||
|
{
|
||||||
|
"content": "客服帮助",
|
||||||
|
"jump_url": "https://customer-service.hypergryph.com/endfield",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"grid_info": null,
|
||||||
|
"jump_url": "",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -131,11 +131,6 @@
|
|||||||
"content": "客服帮助",
|
"content": "客服帮助",
|
||||||
"jump_url": "https://customer-service.hypergryph.com/endfield",
|
"jump_url": "https://customer-service.hypergryph.com/endfield",
|
||||||
"need_token": true
|
"need_token": true
|
||||||
},
|
|
||||||
{
|
|
||||||
"content": "支付中心",
|
|
||||||
"jump_url": "https://user.hypergryph.com/payment/arknights_endfield/?source_from=launcher",
|
|
||||||
"need_token": true
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"grid_info": null,
|
"grid_info": null,
|
||||||
|
|||||||
@@ -44,5 +44,28 @@
|
|||||||
"need_token": false
|
"need_token": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T03:05:32.420+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 1,
|
||||||
|
"subChannel": 1,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"single_ent": {
|
||||||
|
"version_url": "https://hg-utils-public.hycdn.cn/hg-utils/prod/eppcsuwqpaueijqk/6LL0KJuqHBVz33WK/48/af/48af7cf6d9ceaa51676b7d81e27b9d2c.webp",
|
||||||
|
"version_md5": "810936e0355d7ade1f43f985abccb973",
|
||||||
|
"jump_url": "",
|
||||||
|
"button_url": "",
|
||||||
|
"button_md5": "",
|
||||||
|
"button_hover_url": "",
|
||||||
|
"button_hover_md5": "",
|
||||||
|
"need_token": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -16,7 +16,7 @@
|
|||||||
"button_md5": "",
|
"button_md5": "",
|
||||||
"button_hover_url": "",
|
"button_hover_url": "",
|
||||||
"button_hover_md5": "",
|
"button_hover_md5": "",
|
||||||
"need_token": false
|
"need_token": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,5 +42,47 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-13T04:00:43.108+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "6LL0KJuqHBVz33WK",
|
||||||
|
"channel": 2,
|
||||||
|
"subChannel": 2,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "cn",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "关于使用非官方工具的安全风险提示",
|
||||||
|
"jump_url": "https://endfield.hypergryph.com/news/9345",
|
||||||
|
"start_ts": "1773279000000",
|
||||||
|
"id": "109",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "32"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "资讯",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "【有奖活动】秀出你的蚀刻章!",
|
||||||
|
"jump_url": "https://www.skland.com/article?id=5650999&hg_media=launcher&hg_link_campaign=announcement",
|
||||||
|
"start_ts": "1773374400000",
|
||||||
|
"id": "113",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "34"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -9,20 +9,6 @@
|
|||||||
},
|
},
|
||||||
"rsp": {
|
"rsp": {
|
||||||
"data_version": "",
|
"data_version": "",
|
||||||
"tabs": [
|
"tabs": []
|
||||||
{
|
|
||||||
"tabName": "公告",
|
|
||||||
"announcements": [
|
|
||||||
{
|
|
||||||
"content": "关于使用非官方工具的安全风险提示",
|
|
||||||
"jump_url": "https://endfield.hypergryph.com/news/9345",
|
|
||||||
"start_ts": "1773279000000",
|
|
||||||
"id": "109",
|
|
||||||
"need_token": false
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"tab_id": "32"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -362,5 +362,362 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T07:00:40.575+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Hinweise",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "416",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[„Erneutes Aufblühen“-Ausgabe] Details zu zeitlich begrenztem Angebot",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Details zu [Tochter des Flusses] Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "346",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "143",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Erklärung zu Fairness im Spiel",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "99",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Sicherheitswarnung bei Verwendung inoffizieller Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Neuigkeiten",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "74"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.050+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Hinweise",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "416",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[„Erneutes Aufblühen“-Ausgabe] Details zu zeitlich begrenztem Angebot",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "143",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Erklärung zu Fairness im Spiel",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "99",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Sicherheitswarnung bei Verwendung inoffizieller Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Neuigkeiten",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "74"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:33.624+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Hinweise",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scharlachperle-Ausgabe] – KZO-Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "431",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "416",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[„Erneutes Aufblühen“-Ausgabe] Details zu zeitlich begrenztem Angebot",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "143",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Erklärung zu Fairness im Spiel",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "99",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Sicherheitswarnung bei Verwendung inoffizieller Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Neuigkeiten",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "74"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.401+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Hinweise",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Die Reise des Langohrs]-Festtag-Event – Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "459",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Scharlachperle-Ausgabe] – KZO-Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "431",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "416",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "388",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[„Erneutes Aufblühen“-Ausgabe] Details zu zeitlich begrenztem Angebot",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "360",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "143",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield – Erklärung zu Fairness im Spiel",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "99",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Sicherheitswarnung bei Verwendung inoffizieller Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "402",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "72"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Neuigkeiten",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "71",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "74"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Hinweise",
|
"tabName": "Hinweise",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scharlachperle-Ausgabe] – KZO-Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "431",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolfsperle] Details zur Rekrutierung: Priorisiert",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "445",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Hinweis zu Problemen im Spiel durch NVIDIA Treiber-Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "416",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
"content": "[Wogen der Flut tragen Tränen zum Quell] – Hinweise zum Versions-Update",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "360",
|
"id": "360",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Details zu [Tochter des Flusses] Rekrutierung: Priorisiert",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "346",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
"content": "Arknights: Endfield – Anleitung für Spielwerkzeuge",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -397,5 +397,390 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-16T13:40:33.566+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Notices",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "411",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Budding Anew Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[River's Daughter] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "341",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "138",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Fair Play Statement",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "94",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Security Risk Warning for Using Unofficial Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "News",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "65",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "50"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.048+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Notices",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "411",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Budding Anew Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "138",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Fair Play Statement",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "94",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Security Risk Warning for Using Unofficial Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "News",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "65",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "50"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:33.649+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Notices",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scarlet Pearl Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "426",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "411",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Budding Anew Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "138",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Fair Play Statement",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "94",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Security Risk Warning for Using Unofficial Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "News",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "65",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "50"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.418+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "en-us",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Notices",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Journey of the Long-Ear] Celebration Event Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "454",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Scarlet Pearl Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "426",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "411",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "383",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Budding Anew Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "355",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "138",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield Fair Play Statement",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "94",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Security Risk Warning for Using Unofficial Tools",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "397",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "48"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "News",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "321",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "65",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "50"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Notices",
|
"tabName": "Notices",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Scarlet Pearl Issue] LTO Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "426",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Wolf Pearl] Chartered Headhunting Details",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "440",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notice Regarding Game Issues Caused by NVIDIA Driver Updates",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "411",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
"content": "[Old Deep Water Dies, by Rising Tide It is Denied] Version Update Notes",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "355",
|
"id": "355",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "[River's Daughter] Chartered Headhunting Details",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "341",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Arknights: Endfield Game Tools Guide",
|
"content": "Arknights: Endfield Game Tools Guide",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -362,5 +362,362 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T07:00:40.563+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Noticias",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "414",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Brotar de nuevo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles de Caza de reclutas certificada [Hija del río]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "344",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "141",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Juego limpio de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "97",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Riesgo de seguridad: herramientas no oficiales",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "63"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novedades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "69",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "65"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.067+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Noticias",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "414",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Brotar de nuevo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "141",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Juego limpio de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "97",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Riesgo de seguridad: herramientas no oficiales",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "63"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novedades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "69",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "65"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:33.652+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Noticias",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Perla escarlata]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "429",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "414",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Brotar de nuevo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "141",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Juego limpio de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "97",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Riesgo de seguridad: herramientas no oficiales",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "63"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novedades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "69",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "65"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.416+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "es-mx",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Noticias",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles del evento de celebración [Viaje del orejilarga]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "457",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Perla escarlata]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "429",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "414",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "386",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Brotar de nuevo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "358",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "141",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Juego limpio de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "97",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Riesgo de seguridad: herramientas no oficiales",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "400",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "63"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novedades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "69",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "65"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Noticias",
|
"tabName": "Noticias",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalles OTL de la [Solicitud de Perla escarlata]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "429",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalles de la caza de reclutas certificada [Perla del lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "443",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre problemas del juego causados por las actualizaciones de los drivers de NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "414",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
"content": "Notas sobre la actualización de versión de [Perecen las aguas profundas de antaño, borradas por la marea creciente]",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "358",
|
"id": "358",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Detalles de Caza de reclutas certificada [Hija del río]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "344",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
"content": "Guía de herramientas del juego de Arknights: Endfield",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -362,5 +362,362 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T07:00:41.447+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avis",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Avertissement relatif à des problèmes dans le jeu liés aux mises à jour des pilotes NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "417",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notes de mise à jour de la version [La source se meurt et la marée montante affleure]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "389",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Bourgeonnement nouveau]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Détails sur le recrutement certifié [Fille de la rivière]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "347",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Guide des Outils de jeu",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "144",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Règles de fair-play d'Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "100",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement sur les risques des outils non officiels",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "403",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "69"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Actualités",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "71"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.313+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avis",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Joyau du loup] Détails du recrutement certifié",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "446",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement relatif à des problèmes dans le jeu liés aux mises à jour des pilotes NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "417",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notes de mise à jour de la version [La source se meurt et la marée montante affleure]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "389",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Bourgeonnement nouveau]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Guide des Outils de jeu",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "144",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Règles de fair-play d'Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "100",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement sur les risques des outils non officiels",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "403",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "69"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Actualités",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "71"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:33.861+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avis",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Perle écarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "432",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Joyau du loup] Détails du recrutement certifié",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "446",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement relatif à des problèmes dans le jeu liés aux mises à jour des pilotes NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "417",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notes de mise à jour de la version [La source se meurt et la marée montante affleure]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "389",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Bourgeonnement nouveau]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Guide des Outils de jeu",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "144",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Règles de fair-play d'Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "100",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement sur les risques des outils non officiels",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "403",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "69"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Actualités",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "71"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.593+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "fr-fr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avis",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Détails de l'événement de fête [Voyage du longauris]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "460",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Perle écarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "432",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Joyau du loup] Détails du recrutement certifié",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "446",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement relatif à des problèmes dans le jeu liés aux mises à jour des pilotes NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "417",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notes de mise à jour de la version [La source se meurt et la marée montante affleure]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "389",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Bourgeonnement nouveau]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "361",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Guide des Outils de jeu",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "144",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Règles de fair-play d'Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "100",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement sur les risques des outils non officiels",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "403",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "69"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Actualités",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "72",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "71"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Avis",
|
"tabName": "Avis",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Détails sur la durée limitée du [tirage de Perle écarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "432",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Joyau du loup] Détails du recrutement certifié",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "446",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avertissement relatif à des problèmes dans le jeu liés aux mises à jour des pilotes NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "417",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Notes de mise à jour de la version [La source se meurt et la marée montante affleure]",
|
"content": "Notes de mise à jour de la version [La source se meurt et la marée montante affleure]",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "361",
|
"id": "361",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Détails sur le recrutement certifié [Fille de la rivière]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "347",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Arknights: Endfield - Guide des Outils de jeu",
|
"content": "Arknights: Endfield - Guide des Outils de jeu",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -362,5 +362,362 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T07:00:41.460+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Pemberitahuan",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Pemberitahuan Terkait Masalah Game Akibat Pembaruan Driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "419",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Catatan Pembaruan Versi [Perairan Dalam Tua Tiada, Disangkal oleh Ombak Pasang]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "391",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Edisi Tunas Baru] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "363",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detail Headhunt Khusus [Putri Sungai]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "349",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Panduan Alat Game untuk Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "146",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pernyataan Bermain Adil Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "102",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Peringatan Risiko Keamanan Saat Menggunakan Alat Tidak Resmi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "405",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "81"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Berita",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "83"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.292+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Pemberitahuan",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detail Headhunt Khusus [Mutiara Serigala]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "448",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pemberitahuan Terkait Masalah Game Akibat Pembaruan Driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "419",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Catatan Pembaruan Versi [Perairan Dalam Tua Tiada, Disangkal oleh Ombak Pasang]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "391",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Edisi Tunas Baru] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "363",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Panduan Alat Game untuk Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "146",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pernyataan Bermain Adil Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "102",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Peringatan Risiko Keamanan Saat Menggunakan Alat Tidak Resmi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "405",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "81"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Berita",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "83"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:33.890+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Pemberitahuan",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Edisi Mutiara Merah] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "434",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detail Headhunt Khusus [Mutiara Serigala]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "448",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pemberitahuan Terkait Masalah Game Akibat Pembaruan Driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "419",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Catatan Pembaruan Versi [Perairan Dalam Tua Tiada, Disangkal oleh Ombak Pasang]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "391",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Edisi Tunas Baru] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "363",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Panduan Alat Game untuk Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "146",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pernyataan Bermain Adil Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "102",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Peringatan Risiko Keamanan Saat Menggunakan Alat Tidak Resmi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "405",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "81"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Berita",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "83"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.619+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "id-id",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Pemberitahuan",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detail Event Perayaan [Perjalanan si Kuping Panjang]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "462",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Edisi Mutiara Merah] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "434",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detail Headhunt Khusus [Mutiara Serigala]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "448",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pemberitahuan Terkait Masalah Game Akibat Pembaruan Driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "419",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Catatan Pembaruan Versi [Perairan Dalam Tua Tiada, Disangkal oleh Ombak Pasang]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "391",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Edisi Tunas Baru] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "363",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Panduan Alat Game untuk Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "146",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pernyataan Bermain Adil Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "102",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Peringatan Risiko Keamanan Saat Menggunakan Alat Tidak Resmi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "405",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "81"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Berita",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "74",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "83"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Pemberitahuan",
|
"tabName": "Pemberitahuan",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Edisi Mutiara Merah] Detail OBW",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "434",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detail Headhunt Khusus [Mutiara Serigala]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "448",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Pemberitahuan Terkait Masalah Game Akibat Pembaruan Driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "419",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Catatan Pembaruan Versi [Perairan Dalam Tua Tiada, Disangkal oleh Ombak Pasang]",
|
"content": "Catatan Pembaruan Versi [Perairan Dalam Tua Tiada, Disangkal oleh Ombak Pasang]",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "363",
|
"id": "363",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Detail Headhunt Khusus [Putri Sungai]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "349",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Panduan Alat Game untuk Arknights: Endfield",
|
"content": "Panduan Alat Game untuk Arknights: Endfield",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -362,5 +362,362 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T07:00:40.815+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avvisi",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Avviso sui problemi di gioco causati dagli aggiornamenti dei driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "422",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Note sull'aggiornamento \"Addio alle antiche acque, travolte dalla marea che avanza\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "394",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Nuovo germoglio a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli caccia ai talenti certificata Figlia del fiume",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "352",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guida agli strumenti di gioco di Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "149",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Impegno al fair play in Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "105",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso: rischio di sicurezza con strumenti non ufficiali",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "408",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "78"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novità",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "77",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "80"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.309+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avvisi",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Dettagli sulla caccia ai talenti certificata \"Perla lupina\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "451",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso sui problemi di gioco causati dagli aggiornamenti dei driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "422",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Note sull'aggiornamento \"Addio alle antiche acque, travolte dalla marea che avanza\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "394",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Nuovo germoglio a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guida agli strumenti di gioco di Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "149",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Impegno al fair play in Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "105",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso: rischio di sicurezza con strumenti non ufficiali",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "408",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "78"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novità",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "77",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "80"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.034+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avvisi",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Perla scarlatta a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "437",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli sulla caccia ai talenti certificata \"Perla lupina\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "451",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso sui problemi di gioco causati dagli aggiornamenti dei driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "422",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Note sull'aggiornamento \"Addio alle antiche acque, travolte dalla marea che avanza\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "394",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Nuovo germoglio a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guida agli strumenti di gioco di Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "149",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Impegno al fair play in Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "105",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso: rischio di sicurezza con strumenti non ufficiali",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "408",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "78"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novità",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "77",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "80"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.646+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "it-it",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avvisi",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Dettagli Evento celebrazione \"Viaggio del lungorecchi\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "465",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Perla scarlatta a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "437",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli sulla caccia ai talenti certificata \"Perla lupina\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "451",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso sui problemi di gioco causati dagli aggiornamenti dei driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "422",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Note sull'aggiornamento \"Addio alle antiche acque, travolte dalla marea che avanza\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "394",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Nuovo germoglio a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "366",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guida agli strumenti di gioco di Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "149",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Impegno al fair play in Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "105",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso: rischio di sicurezza con strumenti non ufficiali",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "408",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "78"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novità",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "77",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "80"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Avvisi",
|
"tabName": "Avvisi",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Dettagli Distribuzione Perla scarlatta a tempo limitato",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "437",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Dettagli sulla caccia ai talenti certificata \"Perla lupina\"",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "451",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Avviso sui problemi di gioco causati dagli aggiornamenti dei driver NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "422",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Note sull'aggiornamento \"Addio alle antiche acque, travolte dalla marea che avanza\"",
|
"content": "Note sull'aggiornamento \"Addio alle antiche acque, travolte dalla marea che avanza\"",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "366",
|
"id": "366",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Dettagli caccia ai talenti certificata Figlia del fiume",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "352",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Guida agli strumenti di gioco di Arknights: Endfield",
|
"content": "Guida agli strumenti di gioco di Arknights: Endfield",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -397,5 +397,390 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-16T13:40:34.088+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "お知らせ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "NVIDIAドライバー更新によるゲーム動作への影響について",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "412",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」バージョンアップデートの説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "特別スカウト「水の申し子」の説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "342",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』ゲームツール使用案内",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "139",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』公平な運営に関する声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "95",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "非公式ツール利用に関する注意喚起",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "54"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ニュース",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』「リリース予告」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "66",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "56"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.532+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "お知らせ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "特別スカウト「ウルフパール」の説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "441",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIAドライバー更新によるゲーム動作への影響について",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "412",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」バージョンアップデートの説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』ゲームツール使用案内",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "139",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』公平な運営に関する声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "95",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "非公式ツール利用に関する注意喚起",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "54"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ニュース",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』「リリース予告」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "66",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "56"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.114+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "お知らせ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「緋珀・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "427",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "特別スカウト「ウルフパール」の説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "441",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIAドライバー更新によるゲーム動作への影響について",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "412",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」バージョンアップデートの説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』ゲームツール使用案内",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "139",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』公平な運営に関する声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "95",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "非公式ツール利用に関する注意喚起",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "54"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ニュース",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』「リリース予告」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "66",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "56"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.811+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ja-jp",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "お知らせ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「長耳獣の旅」お祝いイベント概要",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "455",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「緋珀・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "427",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "特別スカウト「ウルフパール」の説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "441",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIAドライバー更新によるゲーム動作への影響について",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "412",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」バージョンアップデートの説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』ゲームツール使用案内",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "139",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』公平な運営に関する声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "95",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "非公式ツール利用に関する注意喚起",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "54"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ニュース",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「潮起ち、故淵離る」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "322",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "『アークナイツ:エンドフィールド』「リリース予告」開発通信",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "66",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "56"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "お知らせ",
|
"tabName": "お知らせ",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「緋珀・申請」期間限定ピックアップについて",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "427",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "特別スカウト「ウルフパール」の説明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "441",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIAドライバー更新によるゲーム動作への影響について",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "412",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "「潮起ち、故淵離る」バージョンアップデートの説明",
|
"content": "「潮起ち、故淵離る」バージョンアップデートの説明",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "356",
|
"id": "356",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "特別スカウト「水の申し子」の説明",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "342",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "『アークナイツ:エンドフィールド』ゲームツール使用案内",
|
"content": "『アークナイツ:エンドフィールド』ゲームツール使用案内",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -397,5 +397,390 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-16T13:40:34.813+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "공지",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "NVIDIA 드라이버 업데이트로 인한 비정상적인 게임 문제 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "413",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 버전 업데이트 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "385",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「신아 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「강에서 태어난 소녀」 특별 허가 헤드헌팅 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "343",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 게임 도구 가이드",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "140",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "<명일방주: 엔드필드> 공정 운영 성명서",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "96",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "비공식 도구 사용에 따른 보안 위험성 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "399",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "57"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "뉴스",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 「정식 출시 미리보기」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "59"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.539+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "공지",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「울프펄」 특별 허가 헤드헌팅 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "442",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA 드라이버 업데이트로 인한 비정상적인 게임 문제 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "413",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 버전 업데이트 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "385",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「신아 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 게임 도구 가이드",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "140",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "<명일방주: 엔드필드> 공정 운영 성명서",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "96",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "비공식 도구 사용에 따른 보안 위험성 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "399",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "57"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "뉴스",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 「정식 출시 미리보기」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "59"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.845+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "공지",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「적옥 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "428",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「울프펄」 특별 허가 헤드헌팅 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "442",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA 드라이버 업데이트로 인한 비정상적인 게임 문제 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "413",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 버전 업데이트 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "385",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「신아 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 게임 도구 가이드",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "140",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "<명일방주: 엔드필드> 공정 운영 성명서",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "96",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "비공식 도구 사용에 따른 보안 위험성 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "399",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "57"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "뉴스",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 「정식 출시 미리보기」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "59"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.856+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ko-kr",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "공지",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「큰 귀 토끼의 여정」 경축 이벤트 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "456",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「적옥 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "428",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「울프펄」 특별 허가 헤드헌팅 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "442",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA 드라이버 업데이트로 인한 비정상적인 게임 문제 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "413",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 버전 업데이트 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "385",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「신아 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "357",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 게임 도구 가이드",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "140",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "<명일방주: 엔드필드> 공정 운영 성명서",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "96",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "비공식 도구 사용에 따른 보안 위험성 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "399",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "57"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "뉴스",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "323",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「명일방주: 엔드필드」 「정식 출시 미리보기」 개발자 통신",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/ja-jp/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "67",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "59"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "공지",
|
"tabName": "공지",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「적옥 신청」 기간 한정 판매 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "428",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「울프펄」 특별 허가 헤드헌팅 설명",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "442",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA 드라이버 업데이트로 인한 비정상적인 게임 문제 안내",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "413",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "「몰아치는 새로운 물결, 과거와의 작별」 버전 업데이트 설명",
|
"content": "「몰아치는 새로운 물결, 과거와의 작별」 버전 업데이트 설명",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "357",
|
"id": "357",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "「강에서 태어난 소녀」 특별 허가 헤드헌팅 설명",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "343",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "「명일방주: 엔드필드」 게임 도구 가이드",
|
"content": "「명일방주: 엔드필드」 게임 도구 가이드",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -362,5 +362,362 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T07:00:41.086+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avisos",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre Problemas no Jogo Causados por Atualizações de Driver da NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "418",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas da atualização de versão [A Maré Ascendente e o Adeus a Águas Passadas]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "390",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Renascer]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes da Caça de Talentos Privilegiada [Filha do Rio]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "348",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guia de ferramentas do jogo para Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "145",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Declaração de Fair Play de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "101",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Alerta de Risco de Segurança para o Uso de Ferramentas Não Oficiais",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "404",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "66"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novidades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "73",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "68"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.563+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avisos",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalhes da caça de talentos privilegiada [Pérola do Lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "447",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre Problemas no Jogo Causados por Atualizações de Driver da NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "418",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas da atualização de versão [A Maré Ascendente e o Adeus a Águas Passadas]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "390",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Renascer]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guia de ferramentas do jogo para Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "145",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Declaração de Fair Play de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "101",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Alerta de Risco de Segurança para o Uso de Ferramentas Não Oficiais",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "404",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "66"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novidades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "73",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "68"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.181+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avisos",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Pérola Escarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "433",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes da caça de talentos privilegiada [Pérola do Lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "447",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre Problemas no Jogo Causados por Atualizações de Driver da NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "418",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas da atualização de versão [A Maré Ascendente e o Adeus a Águas Passadas]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "390",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Renascer]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guia de ferramentas do jogo para Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "145",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Declaração de Fair Play de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "101",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Alerta de Risco de Segurança para o Uso de Ferramentas Não Oficiais",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "404",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "66"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novidades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "73",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "68"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:42.993+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "pt-br",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Avisos",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalhes do Evento de Celebração [A Jornada do Orelha Longa]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "461",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Pérola Escarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "433",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes da caça de talentos privilegiada [Pérola do Lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "447",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre Problemas no Jogo Causados por Atualizações de Driver da NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "418",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Notas da atualização de versão [A Maré Ascendente e o Adeus a Águas Passadas]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "390",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Renascer]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "362",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Guia de ferramentas do jogo para Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "145",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Declaração de Fair Play de Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "101",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Alerta de Risco de Segurança para o Uso de Ferramentas Não Oficiais",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "404",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "66"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Novidades",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "73",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "68"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Avisos",
|
"tabName": "Avisos",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Detalhes STL da [Edição Pérola Escarlate]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "433",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Detalhes da caça de talentos privilegiada [Pérola do Lobo]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "447",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Aviso sobre Problemas no Jogo Causados por Atualizações de Driver da NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "418",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Notas da atualização de versão [A Maré Ascendente e o Adeus a Águas Passadas]",
|
"content": "Notas da atualização de versão [A Maré Ascendente e o Adeus a Águas Passadas]",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "362",
|
"id": "362",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Detalhes da Caça de Talentos Privilegiada [Filha do Rio]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "348",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Guia de ferramentas do jogo para Arknights: Endfield",
|
"content": "Guia de ferramentas do jogo para Arknights: Endfield",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -362,5 +362,362 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T07:00:41.273+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Уведомления",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Об ошибках в игре после обновления драйверов NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "415",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Примечания об обновлении версии [Древнее глубоководье пало от бунтарского прилива]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "387",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Молодой побег»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Информация о специальном найме [Дочь рек]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "345",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Руководство «Игровые инструменты Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "142",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Заявление о честной игре для «Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "98",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Предупреждение о риске сторонних инструментов",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "401",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "75"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Новости",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "70",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "77"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.790+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Уведомления",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Сведения о специальном найме «Жемчужина Стаи»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "444",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Об ошибках в игре после обновления драйверов NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "415",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Примечания об обновлении версии [Древнее глубоководье пало от бунтарского прилива]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "387",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Молодой побег»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Руководство «Игровые инструменты Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "142",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Заявление о честной игре для «Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "98",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Предупреждение о риске сторонних инструментов",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "401",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "75"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Новости",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "70",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "77"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.369+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Уведомления",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Алая жемчужина»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "430",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о специальном найме «Жемчужина Стаи»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "444",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Об ошибках в игре после обновления драйверов NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "415",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Примечания об обновлении версии [Древнее глубоководье пало от бунтарского прилива]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "387",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Молодой побег»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Руководство «Игровые инструменты Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "142",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Заявление о честной игре для «Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "98",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Предупреждение о риске сторонних инструментов",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "401",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "75"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Новости",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "70",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "77"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.571+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "ru-ru",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Уведомления",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Сведения о праздничном событии «Приключения длинноуха»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "458",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Алая жемчужина»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "430",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о специальном найме «Жемчужина Стаи»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "444",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Об ошибках в игре после обновления драйверов NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "415",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Примечания об обновлении версии [Древнее глубоководье пало от бунтарского прилива]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "387",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Молодой побег»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "359",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Руководство «Игровые инструменты Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "142",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Заявление о честной игре для «Arknights: Endfield»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "98",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Предупреждение о риске сторонних инструментов",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "401",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "75"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Новости",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "70",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "77"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Уведомления",
|
"tabName": "Уведомления",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Сведения о временном предложении [поставки «Алая жемчужина»]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "430",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Сведения о специальном найме «Жемчужина Стаи»",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "444",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Об ошибках в игре после обновления драйверов NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "415",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Примечания об обновлении версии [Древнее глубоководье пало от бунтарского прилива]",
|
"content": "Примечания об обновлении версии [Древнее глубоководье пало от бунтарского прилива]",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "359",
|
"id": "359",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Информация о специальном найме [Дочь рек]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "345",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Руководство «Игровые инструменты Arknights: Endfield»",
|
"content": "Руководство «Игровые инструменты Arknights: Endfield»",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -362,5 +362,362 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T07:00:41.491+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "ประกาศ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "ประกาศเกี่ยวกับปัญหาเกมที่เกิดจากการอัปเดตไดรเวอร์ NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "420",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "หมายเหตุการอัปเดตเวอร์ชัน [วารีลึกก่อนเก่าม้วยมอด คลื่นซัดทอดโถมสูงขาดสะบั้น]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "392",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วผลิบานใหม่] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียดการสรรหารับรอง [ธิดาแห่งสายน้ำ]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "350",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ไกด์อุปกรณ์เกม Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "147",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "แถลงการณ์เกี่ยวกับการเล่นอย่างยุติธรรมใน Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "103",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "คำเตือนความเสี่ยงด้านความปลอดภัยจากการใช้เครื่องมือที่ไม่เป็นทางการ",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "406",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "84"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ข่าวสาร",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "86"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.791+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "ประกาศ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "รายละเอียดการสรรหารับรอง [ไข่มุกหมาป่า]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "449",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ประกาศเกี่ยวกับปัญหาเกมที่เกิดจากการอัปเดตไดรเวอร์ NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "420",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "หมายเหตุการอัปเดตเวอร์ชัน [วารีลึกก่อนเก่าม้วยมอด คลื่นซัดทอดโถมสูงขาดสะบั้น]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "392",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วผลิบานใหม่] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ไกด์อุปกรณ์เกม Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "147",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "แถลงการณ์เกี่ยวกับการเล่นอย่างยุติธรรมใน Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "103",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "คำเตือนความเสี่ยงด้านความปลอดภัยจากการใช้เครื่องมือที่ไม่เป็นทางการ",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "406",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "84"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ข่าวสาร",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "86"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:35.081+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "ประกาศ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วมุกสกาเล็ต] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "435",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียดการสรรหารับรอง [ไข่มุกหมาป่า]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "449",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ประกาศเกี่ยวกับปัญหาเกมที่เกิดจากการอัปเดตไดรเวอร์ NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "420",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "หมายเหตุการอัปเดตเวอร์ชัน [วารีลึกก่อนเก่าม้วยมอด คลื่นซัดทอดโถมสูงขาดสะบั้น]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "392",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วผลิบานใหม่] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ไกด์อุปกรณ์เกม Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "147",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "แถลงการณ์เกี่ยวกับการเล่นอย่างยุติธรรมใน Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "103",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "คำเตือนความเสี่ยงด้านความปลอดภัยจากการใช้เครื่องมือที่ไม่เป็นทางการ",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "406",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "84"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ข่าวสาร",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "86"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.615+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "th-th",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "ประกาศ",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "รายละเอียดกิจกรรมเฉลิมฉลอง [การเดินทางของเจ้าหูยาว]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "463",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วมุกสกาเล็ต] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "435",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียดการสรรหารับรอง [ไข่มุกหมาป่า]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "449",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ประกาศเกี่ยวกับปัญหาเกมที่เกิดจากการอัปเดตไดรเวอร์ NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "420",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "หมายเหตุการอัปเดตเวอร์ชัน [วารีลึกก่อนเก่าม้วยมอด คลื่นซัดทอดโถมสูงขาดสะบั้น]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "392",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วผลิบานใหม่] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "364",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ไกด์อุปกรณ์เกม Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "147",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "แถลงการณ์เกี่ยวกับการเล่นอย่างยุติธรรมใน Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "103",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "คำเตือนความเสี่ยงด้านความปลอดภัยจากการใช้เครื่องมือที่ไม่เป็นทางการ",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "406",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "84"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "ข่าวสาร",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "75",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "86"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "ประกาศ",
|
"tabName": "ประกาศ",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "รายละเอียด [ตั๋วมุกสกาเล็ต] จำกัดเวลา",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "435",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "รายละเอียดการสรรหารับรอง [ไข่มุกหมาป่า]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "449",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "ประกาศเกี่ยวกับปัญหาเกมที่เกิดจากการอัปเดตไดรเวอร์ NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "420",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "หมายเหตุการอัปเดตเวอร์ชัน [วารีลึกก่อนเก่าม้วยมอด คลื่นซัดทอดโถมสูงขาดสะบั้น]",
|
"content": "หมายเหตุการอัปเดตเวอร์ชัน [วารีลึกก่อนเก่าม้วยมอด คลื่นซัดทอดโถมสูงขาดสะบั้น]",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "364",
|
"id": "364",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "รายละเอียดการสรรหารับรอง [ธิดาแห่งสายน้ำ]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "350",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "ไกด์อุปกรณ์เกม Arknights: Endfield",
|
"content": "ไกด์อุปกรณ์เกม Arknights: Endfield",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -362,5 +362,362 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T07:00:41.560+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Thông Báo",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Thông Báo Về Sự Cố Game Do Cập Nhật Trình Điều Khiển NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "421",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Ghi Chú Cập Nhật Phiên Bản [Sóng Sau Vùi Dập Sóng Trước]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "393",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi tiết LTO [Gói Chồi Non Tái Sinh]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi tiết Chiêu Mộ Đặc Quyền [Con Gái Của Dòng Sông]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "351",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Hướng Dẫn Công Cụ Chơi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "148",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Tuyên Bố Về Chơi Công Bằng Của Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "104",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Cảnh báo rủi ro bảo mật khi sử dụng công cụ không chính thức",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "407",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "87"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Tin Tức",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "76",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "89"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.850+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Thông Báo",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Chi Tiết Chiêu Mộ Đặc Quyền [Ngọc Trai Sói]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "450",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Thông Báo Về Sự Cố Game Do Cập Nhật Trình Điều Khiển NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "421",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Ghi Chú Cập Nhật Phiên Bản [Sóng Sau Vùi Dập Sóng Trước]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "393",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi tiết LTO [Gói Chồi Non Tái Sinh]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Hướng Dẫn Công Cụ Chơi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "148",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Tuyên Bố Về Chơi Công Bằng Của Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "104",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Cảnh báo rủi ro bảo mật khi sử dụng công cụ không chính thức",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "407",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "87"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Tin Tức",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "76",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "89"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.642+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Thông Báo",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Gói Ngọc Trai Đỏ] Chi Tiết Chương Trình Giới Hạn Thời Gian",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "436",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi Tiết Chiêu Mộ Đặc Quyền [Ngọc Trai Sói]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "450",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Thông Báo Về Sự Cố Game Do Cập Nhật Trình Điều Khiển NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "421",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Ghi Chú Cập Nhật Phiên Bản [Sóng Sau Vùi Dập Sóng Trước]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "393",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi tiết LTO [Gói Chồi Non Tái Sinh]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Hướng Dẫn Công Cụ Chơi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "148",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Tuyên Bố Về Chơi Công Bằng Của Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "104",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Cảnh báo rủi ro bảo mật khi sử dụng công cụ không chính thức",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "407",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "87"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Tin Tức",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "76",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "89"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.212+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "vi-vn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "Thông Báo",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Chi Tiết Sự Kiện Ăn Mừng [Hành Trình Của Tai Dài]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "464",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "[Gói Ngọc Trai Đỏ] Chi Tiết Chương Trình Giới Hạn Thời Gian",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "436",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi Tiết Chiêu Mộ Đặc Quyền [Ngọc Trai Sói]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "450",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Thông Báo Về Sự Cố Game Do Cập Nhật Trình Điều Khiển NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "421",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Ghi Chú Cập Nhật Phiên Bản [Sóng Sau Vùi Dập Sóng Trước]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "393",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi tiết LTO [Gói Chồi Non Tái Sinh]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "365",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield - Hướng Dẫn Công Cụ Chơi",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "148",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Tuyên Bố Về Chơi Công Bằng Của Arknights: Endfield",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "104",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Cảnh báo rủi ro bảo mật khi sử dụng công cụ không chính thức",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "407",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "87"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "Tin Tức",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "Arknights: Endfield [Official Release Preview] DEV Comm",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "76",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "89"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "Thông Báo",
|
"tabName": "Thông Báo",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "[Gói Ngọc Trai Đỏ] Chi Tiết Chương Trình Giới Hạn Thời Gian",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "436",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Chi Tiết Chiêu Mộ Đặc Quyền [Ngọc Trai Sói]",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "450",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "Thông Báo Về Sự Cố Game Do Cập Nhật Trình Điều Khiển NVIDIA",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "421",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "Ghi Chú Cập Nhật Phiên Bản [Sóng Sau Vùi Dập Sóng Trước]",
|
"content": "Ghi Chú Cập Nhật Phiên Bản [Sóng Sau Vùi Dập Sóng Trước]",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "365",
|
"id": "365",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "Chi tiết Chiêu Mộ Đặc Quyền [Con Gái Của Dòng Sông]",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "351",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "Arknights: Endfield - Hướng Dẫn Công Cụ Chơi",
|
"content": "Arknights: Endfield - Hướng Dẫn Công Cụ Chơi",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -362,5 +362,362 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-16T13:40:34.646+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驱动更新可能导致游戏异常说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "409",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故渊离」版本更新说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「河流的女儿」特许寻访说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "339",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》游戏工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "136",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》公平运营声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "92",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "关于使用非官方工具的安全风险提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "395",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "51"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新闻",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》「公测前瞻」研发通讯",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "64",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "53"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:39.031+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特许寻访说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "438",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驱动更新可能导致游戏异常说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "409",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故渊离」版本更新说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》游戏工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "136",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》公平运营声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "92",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "关于使用非官方工具的安全风险提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "395",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "51"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新闻",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》「公测前瞻」研发通讯",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "64",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "53"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.612+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「绯珀申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "424",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特许寻访说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "438",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驱动更新可能导致游戏异常说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "409",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故渊离」版本更新说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》游戏工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "136",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》公平运营声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "92",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "关于使用非官方工具的安全风险提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "395",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "51"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新闻",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》「公测前瞻」研发通讯",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "64",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "53"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.257+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-cn",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「长耳兽之旅」同庆活动说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "452",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「绯珀申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "424",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特许寻访说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "438",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驱动更新可能导致游戏异常说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "409",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故渊离」版本更新说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "381",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "353",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》游戏工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "136",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》公平运营声明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "92",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "关于使用非官方工具的安全风险提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "395",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "51"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新闻",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:终末地》「公测前瞻」研发通讯",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "64",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "53"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "公告",
|
"tabName": "公告",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「绯珀申领」限时特卖说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "424",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特许寻访说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "438",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驱动更新可能导致游戏异常说明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "409",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "「新潮起,故渊离」版本更新说明",
|
"content": "「新潮起,故渊离」版本更新说明",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "353",
|
"id": "353",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "「河流的女儿」特许寻访说明",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "339",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "《明日方舟:终末地》游戏工具指南",
|
"content": "《明日方舟:终末地》游戏工具指南",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -397,5 +397,390 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-16T13:40:34.791+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驅動更新可能導致遊戲異常說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "410",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」版本更新說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "382",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「河流的女兒」特許尋訪說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"start_ts": "1773203400000",
|
||||||
|
"id": "340",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》遊戲工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "137",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》公平營運聲明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "93",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "關於使用非官方工具的安全風險提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "396",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "60"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新聞",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "320",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》「公測前瞻」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "68",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "62"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:39.055+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特許尋訪說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "439",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驅動更新可能導致遊戲異常說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "410",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」版本更新說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "382",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》遊戲工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "137",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》公平營運聲明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "93",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "關於使用非官方工具的安全風險提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "396",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "60"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新聞",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "320",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》「公測前瞻」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "68",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "62"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:30:34.830+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「緋珀申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "425",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特許尋訪說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "439",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驅動更新可能導致遊戲異常說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "410",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」版本更新說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "382",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》遊戲工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "137",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》公平營運聲明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "93",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "關於使用非官方工具的安全風險提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "396",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "60"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新聞",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "320",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》「公測前瞻」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "68",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "62"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T02:00:43.272+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "zh-tw",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"tabs": [
|
||||||
|
{
|
||||||
|
"tabName": "公告",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「長耳獸之旅」同慶活動說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1337",
|
||||||
|
"start_ts": "1775008800000",
|
||||||
|
"id": "453",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「緋珀申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "425",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特許尋訪說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "439",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驅動更新可能導致遊戲異常說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "410",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」版本更新說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "382",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「新芽申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/5213",
|
||||||
|
"start_ts": "1773205200000",
|
||||||
|
"id": "354",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》遊戲工具指南",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
"start_ts": "1769050800000",
|
||||||
|
"id": "137",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》公平營運聲明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8900",
|
||||||
|
"start_ts": "1768892400000",
|
||||||
|
"id": "93",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "關於使用非官方工具的安全風險提示",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7026",
|
||||||
|
"start_ts": "1773277200000",
|
||||||
|
"id": "396",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "60"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"tabName": "新聞",
|
||||||
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「新潮起,故淵離」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2662",
|
||||||
|
"start_ts": "1772445600000",
|
||||||
|
"id": "320",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "《明日方舟:終末地》「公測前瞻」開發組通訊",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/zh-tw/news/4499",
|
||||||
|
"start_ts": "1768838400000",
|
||||||
|
"id": "68",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"tab_id": "62"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -13,6 +13,27 @@
|
|||||||
{
|
{
|
||||||
"tabName": "公告",
|
"tabName": "公告",
|
||||||
"announcements": [
|
"announcements": [
|
||||||
|
{
|
||||||
|
"content": "「緋珀申領」限時特賣說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/2660",
|
||||||
|
"start_ts": "1774758600000",
|
||||||
|
"id": "425",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "「狼珀」特許尋訪說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"start_ts": "1774756800000",
|
||||||
|
"id": "439",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"content": "NVIDIA驅動更新可能導致遊戲異常說明",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3844",
|
||||||
|
"start_ts": "1773590400000",
|
||||||
|
"id": "410",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"content": "「新潮起,故淵離」版本更新說明",
|
"content": "「新潮起,故淵離」版本更新說明",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/8907",
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
@@ -27,13 +48,6 @@
|
|||||||
"id": "354",
|
"id": "354",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"content": "「河流的女兒」特許尋訪說明",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"start_ts": "1773203400000",
|
|
||||||
"id": "340",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"content": "《明日方舟:終末地》遊戲工具指南",
|
"content": "《明日方舟:終末地》遊戲工具指南",
|
||||||
"jump_url": "https://endfield.gryphline.com/news/0755",
|
"jump_url": "https://endfield.gryphline.com/news/0755",
|
||||||
|
|||||||
@@ -130,5 +130,978 @@
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-14T11:00:38.110+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/45/694598c131120f6f2d363b76426c2859.png",
|
||||||
|
"md5": "c372b49d45507c81c565e939e804ceae",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "286",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/2d/012df07f9b02cee9f5f7e96fe9a9f3ed.png",
|
||||||
|
"md5": "253758dceaf84cb7867eff615f7d91da",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "257",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-17T04:00:38.984+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/45/694598c131120f6f2d363b76426c2859.png",
|
||||||
|
"md5": "c372b49d45507c81c565e939e804ceae",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "286",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/2d/012df07f9b02cee9f5f7e96fe9a9f3ed.png",
|
||||||
|
"md5": "253758dceaf84cb7867eff615f7d91da",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "257",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-18T04:00:40.192+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/42/ee/42ee4377a48a2be8f09d368759383447.jpg",
|
||||||
|
"md5": "97e129d9d0b470b23b8e8e32e6c319e2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "314",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/69/45/694598c131120f6f2d363b76426c2859.png",
|
||||||
|
"md5": "c372b49d45507c81c565e939e804ceae",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2028369049304242052&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "286",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/2d/012df07f9b02cee9f5f7e96fe9a9f3ed.png",
|
||||||
|
"md5": "253758dceaf84cb7867eff615f7d91da",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "257",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-19T15:00:47.326+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/42/ee/42ee4377a48a2be8f09d368759383447.jpg",
|
||||||
|
"md5": "97e129d9d0b470b23b8e8e32e6c319e2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "314",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/2d/012df07f9b02cee9f5f7e96fe9a9f3ed.png",
|
||||||
|
"md5": "253758dceaf84cb7867eff615f7d91da",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "257",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-20T04:00:41.309+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/42/ee/42ee4377a48a2be8f09d368759383447.jpg",
|
||||||
|
"md5": "97e129d9d0b470b23b8e8e32e6c319e2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "314",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/2d/012df07f9b02cee9f5f7e96fe9a9f3ed.png",
|
||||||
|
"md5": "253758dceaf84cb7867eff615f7d91da",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "257",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-21T11:01:26.070+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/06/f5063fa8df01dc3f1328521ccb3e5d83.png",
|
||||||
|
"md5": "fbfc871c4ac2f7c2e5d215331561140b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "342",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/42/ee/42ee4377a48a2be8f09d368759383447.jpg",
|
||||||
|
"md5": "97e129d9d0b470b23b8e8e32e6c319e2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "314",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/2d/012df07f9b02cee9f5f7e96fe9a9f3ed.png",
|
||||||
|
"md5": "253758dceaf84cb7867eff615f7d91da",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/1338",
|
||||||
|
"id": "257",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T04:00:38.035+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/06/f5063fa8df01dc3f1328521ccb3e5d83.png",
|
||||||
|
"md5": "fbfc871c4ac2f7c2e5d215331561140b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "342",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/42/ee/42ee4377a48a2be8f09d368759383447.jpg",
|
||||||
|
"md5": "97e129d9d0b470b23b8e8e32e6c319e2",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2033450826884044885&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "314",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-29T16:00:41.959+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/06/f5063fa8df01dc3f1328521ccb3e5d83.png",
|
||||||
|
"md5": "fbfc871c4ac2f7c2e5d215331561140b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "342",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
||||||
|
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "238",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-03-31T15:00:45.132+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/f5/06/f5063fa8df01dc3f1328521ccb3e5d83.png",
|
||||||
|
"md5": "fbfc871c4ac2f7c2e5d215331561140b",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2029132713323603170&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Qingbo",
|
||||||
|
"id": "342",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-01T15:00:47.674+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-02T11:00:49.695+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/be/4fbe503b6b2f89cc3efed4ea72bbbda4.png",
|
||||||
|
"md5": "45bdd1f1a67702fa980e43b855db79e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-03T10:00:41.510+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/be/4fbe503b6b2f89cc3efed4ea72bbbda4.png",
|
||||||
|
"md5": "45bdd1f1a67702fa980e43b855db79e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e2/36/e236bcb1efbf852ded6a108793788301.png",
|
||||||
|
"md5": "49ad5f4ab241bca3bead703a4f3b1df6",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "370",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-04T03:00:40.732+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/be/4fbe503b6b2f89cc3efed4ea72bbbda4.png",
|
||||||
|
"md5": "45bdd1f1a67702fa980e43b855db79e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/71/2b/712b16f00b6dd42389ae112511858e33.png",
|
||||||
|
"md5": "bc8d1c8ba28ad56c8f2213e36855e52e",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e2/36/e236bcb1efbf852ded6a108793788301.png",
|
||||||
|
"md5": "49ad5f4ab241bca3bead703a4f3b1df6",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "370",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/bd/34/bd34d202315438ca9fc4c4c32357af0b.png",
|
||||||
|
"md5": "891cc34565de3258110cb0d81a124750",
|
||||||
|
"jump_url": "https://store.gryphline.com/",
|
||||||
|
"id": "300",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"updatedAt": "2026-04-07T15:00:57.890+00:00",
|
||||||
|
"req": {
|
||||||
|
"appCode": "YDUTE5gscDZ229CW",
|
||||||
|
"channel": 6,
|
||||||
|
"subChannel": 6,
|
||||||
|
"lang": "de-de",
|
||||||
|
"region": "os",
|
||||||
|
"platform": "Windows"
|
||||||
|
},
|
||||||
|
"rsp": {
|
||||||
|
"data_version": "",
|
||||||
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/be/4fbe503b6b2f89cc3efed4ea72bbbda4.png",
|
||||||
|
"md5": "45bdd1f1a67702fa980e43b855db79e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/71/2b/712b16f00b6dd42389ae112511858e33.png",
|
||||||
|
"md5": "bc8d1c8ba28ad56c8f2213e36855e52e",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e2/36/e236bcb1efbf852ded6a108793788301.png",
|
||||||
|
"md5": "49ad5f4ab241bca3bead703a4f3b1df6",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "370",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/8907",
|
||||||
|
"id": "272",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/7029",
|
||||||
|
"id": "50",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/fe/97/fe97f4b29f4c302142f29ef56c567265.png",
|
||||||
|
"md5": "38bdd063099ea23ac3d0c32f7e09b58e",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/en-us/news/4499",
|
||||||
|
"id": "36",
|
||||||
|
"need_token": false
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,6 +10,41 @@
|
|||||||
"rsp": {
|
"rsp": {
|
||||||
"data_version": "",
|
"data_version": "",
|
||||||
"banners": [
|
"banners": [
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/4f/be/4fbe503b6b2f89cc3efed4ea72bbbda4.png",
|
||||||
|
"md5": "45bdd1f1a67702fa980e43b855db79e1",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038589290462449304&hg_media=launcher&hg_link_campaign=banner&hg_link_name=wash",
|
||||||
|
"id": "384",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/71/2b/712b16f00b6dd42389ae112511858e33.png",
|
||||||
|
"md5": "bc8d1c8ba28ad56c8f2213e36855e52e",
|
||||||
|
"jump_url": "https://www.skport.com/article?id=2038548112145123394&hg_media=launcher&hg_link_campaign=banner&hg_link_name=Rossi",
|
||||||
|
"id": "398",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/e2/36/e236bcb1efbf852ded6a108793788301.png",
|
||||||
|
"md5": "49ad5f4ab241bca3bead703a4f3b1df6",
|
||||||
|
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
||||||
|
"id": "370",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/87/0b/870be97c3a0fee997128e4734a3873c7.jpg",
|
||||||
|
"md5": "64fdc2445f86aba45637841f0941a5db",
|
||||||
|
"jump_url": "https://endfield.gryphline.com/news/3843",
|
||||||
|
"id": "356",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/24/84/248465f26aff417b33fbef7c61991bb9.jpg",
|
||||||
|
"md5": "5b333e97ca2a634b08f6300f25f7bd84",
|
||||||
|
"jump_url": "https://act.skport.com/endfield/old-deep-water-dies?header=0&hg_media=launcher&hg_link_campaign=banner&hg_link_name=messageboard",
|
||||||
|
"id": "328",
|
||||||
|
"need_token": false
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/3a/5f/3a5fa14cfeb4fd2e640cb61eb546ff6e.png",
|
||||||
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
"md5": "6d80d5e35e8b9b6b9f15c5f1b46302f1",
|
||||||
@@ -17,20 +52,6 @@
|
|||||||
"id": "272",
|
"id": "272",
|
||||||
"need_token": false
|
"need_token": false
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/01/2d/012df07f9b02cee9f5f7e96fe9a9f3ed.png",
|
|
||||||
"md5": "253758dceaf84cb7867eff615f7d91da",
|
|
||||||
"jump_url": "https://endfield.gryphline.com/news/1338",
|
|
||||||
"id": "257",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/57/46/5746e3b4c92cd62be6fd8a315f75a664.png",
|
|
||||||
"md5": "6af7dbd83af7910d183c6e6af16fa2b8",
|
|
||||||
"jump_url": "https://game.skport.com/endfield/sign-in?header=0&hg_media=launcher&hg_link_campaign=banner",
|
|
||||||
"id": "238",
|
|
||||||
"need_token": false
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
"url": "https://gl-utils-public.hg-cdn.com/hg-utils/prod/eppcsuwqpaueijqk/YDUTE5gscDZ229CW/77/72/7772d915d654f875a300b8b9211c3e96.png",
|
||||||
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
"md5": "4084b44ecc64e41efc8d74f001e8be17",
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user