mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2024-12-27 04:50:12 +08:00
4224 lines
122 KiB
Markdown
4224 lines
122 KiB
Markdown
# 购买漫画章节
|
||
|
||
> https://manga.bilibili.com/twirp/comic.v1.Comic/BuyEpisode
|
||
|
||
*请求方式:POST*
|
||
|
||
认证方式:Cookie(SESSDATA)/ APP
|
||
|
||
**URL参数:**
|
||
|
||
| 参数名 | 类型 | 内容 | 必要性 | 备注 |
|
||
| ---------- | ---- | ------------------------ | -------------- | ------------------------------------------------------------ |
|
||
| access_key | str | APP登录凭证 | 必要 | 使用APP鉴权方式时必填 |
|
||
| appkey | str | cc8617fd6961e070 | 非必要 | |
|
||
| mobi_app | str | android_comic | 非必要 | |
|
||
| version | str | 4.13.0 | 非必要 | |
|
||
| build | str | 36413002 | 非必要 | |
|
||
| channel | str | bilicomic | 非必要 | |
|
||
| platform | str | android | 必要 | |
|
||
| device | str | android | 非必要 | |
|
||
| buvid | str | | 非必要 | |
|
||
| machine | str | samsung+SM-G9730 | 非必要 | |
|
||
| is_teenager | num | 0 | 非必要 | |
|
||
| no_recommend | num | 0 | 非必要 | |
|
||
| ts | num | 秒级时间戳 | 非必要 | |
|
||
|
||
**正文参数( application/json ):**
|
||
|
||
| 参数名 | 类型 | 内容 | 必要性 | 备注 |
|
||
| -------- | ---- | ------------------------ | ------ | ------------------------------------------------- |
|
||
| epId | num | 章节id | 必要 | |
|
||
| buyMethod | num | 购买方式 | 必要 | 2:漫读券<br />4:新人等免<br />5:通用券 |
|
||
| couponId | num | 漫读券id | 必要 | |
|
||
| comicId | num | 漫画id | 可选 | buyMethod:4为必要|
|
||
| autoPayGoldStatus | num | 2 | 可选 | buyMethod:2,5 为必要<br />buyMethod:4为不必要 |
|
||
| isPresale | num | 0 | 可选 | buyMethod:2,5 为必要<br />buyMethod:4为不必要 |
|
||
|
||
漫读券购买
|
||
|
||
```
|
||
{
|
||
"epId": 484366,
|
||
"buyMethod": 2,
|
||
"couponId": 7461430,
|
||
"autoPayGoldStatus": 2,
|
||
"isPresale": 0
|
||
}
|
||
```
|
||
|
||
等就免费(新人等免)
|
||
```
|
||
{
|
||
"ep_id": 321913,
|
||
"comic_id": 26564,
|
||
"buy_method": 4
|
||
}
|
||
```
|
||
|
||
通用券购买
|
||
|
||
```
|
||
{
|
||
"epId": 484366,
|
||
"buyMethod": 5,
|
||
"couponId": 0,
|
||
"autoPayGoldStatus": 2,
|
||
"payAmount": 1,
|
||
"isPresale": 0
|
||
}
|
||
```
|
||
|
||
**json回复:**
|
||
|
||
根对象:
|
||
|
||
| 字段 | 类型 | 内容 | 备注 |
|
||
| ------- | ---- | -------- | ------------------------------------------------------------ |
|
||
| code | num | 返回值 | 0:成功<br />0:本话无需购买<br />1:没有足够的卡券使用次数<br /> |
|
||
| msg | str | 错误信息 | |
|
||
|
||
**示例:**
|
||
|
||
```bash
|
||
curl -L -X POST 'https://manga.bilibili.com/twirp/comic.v1.Comic/BuyEpisode?platform=android' \
|
||
-H 'Cookie: SESSDATA=xxx;' \
|
||
-H 'Content-Type: application/json' \
|
||
--data-raw '{
|
||
"epId": 484366,
|
||
"buyMethod": 2,
|
||
"couponId": 7461430,
|
||
"autoPayGoldStatus": 2,
|
||
"isPresale": 0
|
||
}'
|
||
```
|
||
|
||
<details>
|
||
<summary>购买成功:</summary>
|
||
|
||
```json
|
||
{
|
||
"code": 0,
|
||
"msg": "",
|
||
"data": {
|
||
"auto_use_item": ""
|
||
}
|
||
}
|
||
```
|
||
|
||
</details>
|
||
|
||
# 获取漫画详情
|
||
|
||
> https://manga.bilibili.com/twirp/comic.v1.Comic/ComicDetail
|
||
|
||
*请求方式:POST*
|
||
|
||
认证方式:Cookie(SESSDATA)/ APP
|
||
|
||
**URL参数:**
|
||
|
||
| 参数名 | 类型 | 内容 | 必要性 | 备注 |
|
||
| ---------- | ---- | ------------------------ | -------------- | ------------------------------------------------------------ |
|
||
| access_key | str | APP登录凭证 | 非必要 | 可不登录访问 |
|
||
| appkey | str | cc8617fd6961e070 | 非必要 | |
|
||
| mobi_app | str | android_comic | 非必要 | |
|
||
| version | str | 4.13.0 | 非必要 | |
|
||
| build | str | 36413002 | 非必要 | |
|
||
| channel | str | bilicomic | 非必要 | |
|
||
| platform | str | android | 非必要 | 可选值:web/android |
|
||
| device | str | android | 必要 | 如不填则不会获取ep_list信息,可选值:pc/android |
|
||
| buvid | str | | 非必要 | |
|
||
| machine | str | samsung+SM-G9730 | 非必要 | |
|
||
| is_teenager | num | 0 | 非必要 | |
|
||
| no_recommend | num | 0 | 非必要 | |
|
||
| ts | num | 秒级时间戳 | 非必要 | |
|
||
|
||
**正文参数( application/json ):**
|
||
|
||
| 参数名 | 类型 | 内容 | 必要性 | 备注 |
|
||
| -------- | ---- | ------------------------ | ------ | ------------------------------------------------- |
|
||
| comicId | num | 漫画id | 必要 | |
|
||
|
||
**json回复:**
|
||
|
||
根对象:
|
||
|
||
| 字段 | 类型 | 内容 | 备注 |
|
||
| ------- | ---- | -------- | ------------------------------------------------------------ |
|
||
| code | num | 返回值 | 0:成功 |
|
||
| msg | str | 错误信息 | |
|
||
| data | obj | 信息本体 | |
|
||
|
||
`data`对象:
|
||
|
||
| 字段 | 类型 | 内容 | 备注 |
|
||
| ------- | ---- | -------- | ------------------------------------------------------------ |
|
||
| id | num | 漫画id | |
|
||
| title | str | 漫画名称 | |
|
||
| comic_type | num | 0,1 | |
|
||
| page_default | num | 0,1,2,4,8 | |
|
||
| page_allow | num | | |
|
||
| horizontal_cover | str | 横板封面 | |
|
||
| square_cover | str | 方形封面 | |
|
||
| vertical_cover | str | 竖版封面 | |
|
||
| author_name | array | 作者列表 | |
|
||
| styles | array | | |
|
||
| last_ord | num | 最新一话序号 | |
|
||
| is_finish | num | 完结状态<br />0:未完结 1:已完结 | |
|
||
| status | num | -1,0 | |
|
||
| fav | num | | |
|
||
| read_order | num | | |
|
||
| evaluate | num | 漫画简介 | |
|
||
| total | num | 总话数 | |
|
||
| ep_list | array | 章节信息 | |
|
||
| release_time | str | | |
|
||
| is_limit | num | | |
|
||
| read_epid | num | | |
|
||
| last_read_time | str | | |
|
||
| is_download | num | | |
|
||
| read_short_title | str | | |
|
||
| styles2 | array | | |
|
||
| renewal_time | str | | |
|
||
| last_short_title | str | 最新一话短标题 | |
|
||
| discount_type | num | | |
|
||
| discount | num | | |
|
||
| discount_end | str | | |
|
||
| no_reward | bool | | |
|
||
| batch_discount_type | num | | |
|
||
| ep_discount_type | num | | |
|
||
| has_fav_activity | bool | | |
|
||
| fav_free_amount | num | | |
|
||
| allow_wait_free | bool | 是否等就免费 | |
|
||
| wait_hour | num | 等待时间(小时) | |
|
||
| wait_free_at | num | 等待时间(小时) | |
|
||
| no_danmaku | num | | |
|
||
| auto_pay_status | num | | |
|
||
| no_month_ticket | bool | | |
|
||
| immersive | bool | | |
|
||
| no_discount | bool | | |
|
||
| show_type | num | | |
|
||
| pay_mode | num | | |
|
||
| chapters | array | | |
|
||
| classic_lines | str | 漫画简介 | |
|
||
| pay_for_new | num | | |
|
||
| fav_comic_info | obj | | |
|
||
| serial_status | num | | |
|
||
| series_info | obj | | |
|
||
| album_count | num | | |
|
||
| wiki_id | num | | |
|
||
| disable_coupon_amount | num | | |
|
||
| japan_comic | bool |是否为日本漫画 | |
|
||
| interact_value | num | | |
|
||
| temporary_finish_time | str | | |
|
||
| video | | | |
|
||
| introduction | str | 介绍| |
|
||
| comment_status | num | | |
|
||
| no_screenshot | bool | | |
|
||
| type | num | | |
|
||
| vomic_cvs | array | | |
|
||
| no_rank | bool | | |
|
||
| presale_eps | array | | |
|
||
| presale_text | str | | |
|
||
| presale_discount | num | | |
|
||
| no_leaderboard | bool | | |
|
||
|
||
`ep_list`数组中的对象:
|
||
|
||
| 字段 | 类型 | 内容 | 备注 |
|
||
| ------- | ---- | -------- | ------------------------------------------------------------ |
|
||
| id | num | 章节id | |
|
||
| ord | num | 章节序号,最新章节排在前面 | |
|
||
| read | num | 是否阅读过,0:没有 1:阅读过 | |
|
||
| pay_mode | num | | |
|
||
| is_locked | bool | 是否处于锁定状态 | |
|
||
| pay_gold | num | 解锁所需漫币 | |
|
||
| size | num | 文件大小(字节) | |
|
||
| short_title | str | 短标题 | |
|
||
| is_in_free | bool | | |
|
||
| title | str | 标题 | |
|
||
| cover | str | 封面 | |
|
||
| pub_time | str | 发布日期 | |
|
||
| comments | num | 评论数 | |
|
||
| unlock_expire_at | str | | |
|
||
| unlock_type | num | | |
|
||
| allow_wait_free | bool | | |
|
||
| progress | str | | |
|
||
| like_count | num | 点赞数 | |
|
||
| chapter_id | num | | |
|
||
| type | num | | |
|
||
| extra | num | | |
|
||
|
||
`styles2`数组中的对象:
|
||
|
||
| 字段 | 类型 | 内容 | 备注 |
|
||
| ------- | ---- | -------- | ------------------------------------------------------------ |
|
||
| id | num | 漫画风格id | |
|
||
| name | str | 漫画风格名称 | |
|
||
|
||
`fav_comic_info`对象:
|
||
|
||
| 字段 | 类型 | 内容 | 备注 |
|
||
| ------- | ---- | -------- | ------------------------------------------------------------ |
|
||
| has_fav_activity | bool | | |
|
||
| fav_free_amount | num | | |
|
||
| fav_coupon_type | num | | |
|
||
|
||
`series_info`对象:
|
||
|
||
| 字段 | 类型 | 内容 | 备注 |
|
||
| ------- | ---- | -------- | ------------------------------------------------------------ |
|
||
| id | num | | |
|
||
| comics | array | | |
|
||
|
||
**示例:**
|
||
|
||
```bash
|
||
curl -L -X POST 'https://manga.bilibili.com/twirp/comic.v1.Comic/ComicDetail?device=pc' \
|
||
-H 'Content-Type: application/json' \
|
||
--data-raw '{
|
||
"comicId": 28500
|
||
}'
|
||
```
|
||
|
||
<details>
|
||
<summary>查看响应示例:</summary>
|
||
|
||
```json
|
||
{
|
||
"code": 0,
|
||
"msg": "",
|
||
"data": {
|
||
"id": 28500,
|
||
"title": "夏日重现",
|
||
"comic_type": 1,
|
||
"page_default": 4,
|
||
"page_allow": 15,
|
||
"horizontal_cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"square_cover": "http://i0.hdslb.com/bfs/manga-static/35fa9fa6190aa528f26f6e1341d9ee80b66b535f.jpg",
|
||
"vertical_cover": "https://i0.hdslb.com/bfs/manga-static/965cdb5c83e0b2066b4b60973ba7f4242f592967.jpg",
|
||
"author_name": [
|
||
"田中靖规",
|
||
"集英社"
|
||
],
|
||
"styles": [
|
||
"悬疑灵异"
|
||
],
|
||
"last_ord": 152,
|
||
"is_finish": 1,
|
||
"status": 0,
|
||
"fav": 0,
|
||
"read_order": 0,
|
||
"evaluate": "【此漫画的翻译由版权方提供】青梅竹马的潮死了——。听闻这个悲报,慎平回到了阔别已久的故乡和歌山市·日都岛与家人再会并出席葬礼。但是岛上貌似陡生异变,充斥着不寻常的气息……?\n夏日孤岛上的悬疑剧!!\n\n",
|
||
"total": 167,
|
||
"ep_list": [
|
||
{
|
||
"id": 779804,
|
||
"ord": 152,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17973126,
|
||
"short_title": "后篇(4)",
|
||
"is_in_free": false,
|
||
"title": "2026未然凶宅-后篇(4)",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 218,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 458,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 779788,
|
||
"ord": 151,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17654401,
|
||
"short_title": "后篇(3)",
|
||
"is_in_free": false,
|
||
"title": "2026未然凶宅-后篇(3)",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 31,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 171,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 779782,
|
||
"ord": 150,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18250988,
|
||
"short_title": "后篇(2)",
|
||
"is_in_free": false,
|
||
"title": "2026未然凶宅-后篇(2)",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 39,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 179,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 779752,
|
||
"ord": 149,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19374429,
|
||
"short_title": "后篇(1)",
|
||
"is_in_free": false,
|
||
"title": "2026未然凶宅-后篇(1)",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 41,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 174,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 779751,
|
||
"ord": 148,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 20993207,
|
||
"short_title": "前篇(3)",
|
||
"is_in_free": false,
|
||
"title": "2026未然凶宅-前篇(3)",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 52,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 187,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 779749,
|
||
"ord": 147,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17048075,
|
||
"short_title": "前篇(2)",
|
||
"is_in_free": false,
|
||
"title": "2026未然凶宅-前篇(2)",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 60,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 191,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 779748,
|
||
"ord": 146,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 21462932,
|
||
"short_title": "前篇(1)",
|
||
"is_in_free": false,
|
||
"title": "2026未然凶宅-前篇(1)",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 151,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 233,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 546499,
|
||
"ord": 145,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 26980054,
|
||
"short_title": "139",
|
||
"is_in_free": false,
|
||
"title": "第139话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2021-02-01 12:00:00",
|
||
"comments": 1314,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 3241,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 543783,
|
||
"ord": 144,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 33822142,
|
||
"short_title": "138",
|
||
"is_in_free": false,
|
||
"title": "第138话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2021-01-25 12:00:00",
|
||
"comments": 232,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 514,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 539917,
|
||
"ord": 143,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 20551895,
|
||
"short_title": "137",
|
||
"is_in_free": false,
|
||
"title": "第137话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2021-01-11 12:00:00",
|
||
"comments": 124,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 461,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 529960,
|
||
"ord": 142,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18729857,
|
||
"short_title": "136",
|
||
"is_in_free": false,
|
||
"title": "第136话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-12-28 12:00:00",
|
||
"comments": 112,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 432,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 526882,
|
||
"ord": 141,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 9528871,
|
||
"short_title": "135",
|
||
"is_in_free": false,
|
||
"title": "第135话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-12-21 12:00:00",
|
||
"comments": 64,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 397,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 524737,
|
||
"ord": 140,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 4658617,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "023",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-12-14 12:00:00",
|
||
"comments": 63,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 368,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 520819,
|
||
"ord": 139,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19569820,
|
||
"short_title": "134",
|
||
"is_in_free": false,
|
||
"title": "第134话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-12-07 12:00:00",
|
||
"comments": 234,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 411,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 518563,
|
||
"ord": 138,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 0,
|
||
"short_title": "133",
|
||
"is_in_free": false,
|
||
"title": "第133话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-11-30 12:00:00",
|
||
"comments": 52,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 404,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 516460,
|
||
"ord": 137,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 16923412,
|
||
"short_title": "132",
|
||
"is_in_free": false,
|
||
"title": "第132话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-11-23 12:00:00",
|
||
"comments": 66,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 408,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 513494,
|
||
"ord": 136,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 22397411,
|
||
"short_title": "131",
|
||
"is_in_free": false,
|
||
"title": "第131话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-11-16 00:00:00",
|
||
"comments": 73,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 385,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 509309,
|
||
"ord": 135,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 11417949,
|
||
"short_title": "130",
|
||
"is_in_free": false,
|
||
"title": "第130话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-11-02 12:00:00",
|
||
"comments": 121,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 415,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 507403,
|
||
"ord": 134,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 13421937,
|
||
"short_title": "129",
|
||
"is_in_free": false,
|
||
"title": "第129话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-26 00:00:00",
|
||
"comments": 108,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 382,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 505464,
|
||
"ord": 133,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 0,
|
||
"short_title": "128",
|
||
"is_in_free": false,
|
||
"title": "第128话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 101,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 414,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 504084,
|
||
"ord": 132,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 714738,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "022",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 38,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 327,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 503749,
|
||
"ord": 131,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 13733489,
|
||
"short_title": "127",
|
||
"is_in_free": false,
|
||
"title": "第127话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 87,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 383,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 498378,
|
||
"ord": 130,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 0,
|
||
"short_title": "126",
|
||
"is_in_free": false,
|
||
"title": "第126话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 83,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 392,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 496100,
|
||
"ord": 129,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17044238,
|
||
"short_title": "125",
|
||
"is_in_free": false,
|
||
"title": "第125话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 59,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 378,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494999,
|
||
"ord": 128,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19000950,
|
||
"short_title": "124",
|
||
"is_in_free": false,
|
||
"title": "第124话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 53,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 369,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494997,
|
||
"ord": 127,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 757788,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "021",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 73,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 295,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494996,
|
||
"ord": 126,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 25583325,
|
||
"short_title": "123",
|
||
"is_in_free": false,
|
||
"title": "第123话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 88,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 341,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494995,
|
||
"ord": 125,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 22945986,
|
||
"short_title": "122",
|
||
"is_in_free": false,
|
||
"title": "第122话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 114,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 382,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494994,
|
||
"ord": 124,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 22007815,
|
||
"short_title": "121",
|
||
"is_in_free": false,
|
||
"title": "第121话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 60,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 336,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494992,
|
||
"ord": 123,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 14200387,
|
||
"short_title": "120",
|
||
"is_in_free": false,
|
||
"title": "第120话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 98,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 349,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494990,
|
||
"ord": 122,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 20253075,
|
||
"short_title": "119",
|
||
"is_in_free": false,
|
||
"title": "第119话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 153,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 352,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494986,
|
||
"ord": 121,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 34545559,
|
||
"short_title": "118",
|
||
"is_in_free": false,
|
||
"title": "第118话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 97,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 353,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494983,
|
||
"ord": 120,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 26875814,
|
||
"short_title": "117",
|
||
"is_in_free": false,
|
||
"title": "第117话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 38,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 326,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494982,
|
||
"ord": 119,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 24302773,
|
||
"short_title": "116",
|
||
"is_in_free": false,
|
||
"title": "第116话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 60,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 311,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494981,
|
||
"ord": 118,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 22563845,
|
||
"short_title": "115",
|
||
"is_in_free": false,
|
||
"title": "第115话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 103,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 332,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494979,
|
||
"ord": 117,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 26357441,
|
||
"short_title": "114",
|
||
"is_in_free": false,
|
||
"title": "第114话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 190,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 325,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494978,
|
||
"ord": 116,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 3055913,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "020",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 27,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 303,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494977,
|
||
"ord": 115,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 27213199,
|
||
"short_title": "113",
|
||
"is_in_free": false,
|
||
"title": "第113话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 131,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 344,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494876,
|
||
"ord": 114,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 27036215,
|
||
"short_title": "112",
|
||
"is_in_free": false,
|
||
"title": "第112话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 84,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 306,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494872,
|
||
"ord": 113,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18077367,
|
||
"short_title": "111",
|
||
"is_in_free": false,
|
||
"title": "第111话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 66,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 317,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494852,
|
||
"ord": 112,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 6547152,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "019",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 20,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 286,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494849,
|
||
"ord": 111,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17709563,
|
||
"short_title": "110",
|
||
"is_in_free": false,
|
||
"title": "第110话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 42,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 326,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494848,
|
||
"ord": 110,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 0,
|
||
"short_title": "109",
|
||
"is_in_free": false,
|
||
"title": "第109话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 42,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 325,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494847,
|
||
"ord": 109,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 20356850,
|
||
"short_title": "108",
|
||
"is_in_free": false,
|
||
"title": "第108话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 52,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 322,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494846,
|
||
"ord": 108,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 21075013,
|
||
"short_title": "107",
|
||
"is_in_free": false,
|
||
"title": "第107话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 29,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 314,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494698,
|
||
"ord": 107,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19078032,
|
||
"short_title": "106",
|
||
"is_in_free": false,
|
||
"title": "第106话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 81,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 320,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494696,
|
||
"ord": 106,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 21291294,
|
||
"short_title": "105",
|
||
"is_in_free": false,
|
||
"title": "第105话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 56,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 350,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494691,
|
||
"ord": 105,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 22030863,
|
||
"short_title": "104",
|
||
"is_in_free": false,
|
||
"title": "第104话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 56,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 305,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494690,
|
||
"ord": 104,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17400960,
|
||
"short_title": "103",
|
||
"is_in_free": false,
|
||
"title": "第103话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 33,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 304,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494688,
|
||
"ord": 103,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 0,
|
||
"short_title": "102",
|
||
"is_in_free": false,
|
||
"title": "第102话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 53,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 329,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552061,
|
||
"ord": 102.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 1922541,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "018",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 8,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 30,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494682,
|
||
"ord": 102,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 20268719,
|
||
"short_title": "101",
|
||
"is_in_free": false,
|
||
"title": "第101话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 92,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 317,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494666,
|
||
"ord": 101,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17542840,
|
||
"short_title": "100",
|
||
"is_in_free": false,
|
||
"title": "第100话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 48,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 323,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494665,
|
||
"ord": 100,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 27598387,
|
||
"short_title": "99",
|
||
"is_in_free": false,
|
||
"title": "第99话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 109,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 350,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494664,
|
||
"ord": 99,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 24852154,
|
||
"short_title": "98",
|
||
"is_in_free": false,
|
||
"title": "第98话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 64,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 326,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494663,
|
||
"ord": 98,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 20721168,
|
||
"short_title": "97",
|
||
"is_in_free": false,
|
||
"title": "第97话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 57,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 309,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494656,
|
||
"ord": 97,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 15000137,
|
||
"short_title": "96",
|
||
"is_in_free": false,
|
||
"title": "第96话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 126,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 339,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552060,
|
||
"ord": 96.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 3910437,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "017",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 5,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 30,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494650,
|
||
"ord": 96,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 25062481,
|
||
"short_title": "95",
|
||
"is_in_free": false,
|
||
"title": "第95话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 89,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 360,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494645,
|
||
"ord": 95,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19376143,
|
||
"short_title": "94",
|
||
"is_in_free": false,
|
||
"title": "第94话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 82,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 397,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494638,
|
||
"ord": 94,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 34661163,
|
||
"short_title": "93",
|
||
"is_in_free": false,
|
||
"title": "第93话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 64,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 352,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494637,
|
||
"ord": 93,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 33798923,
|
||
"short_title": "92",
|
||
"is_in_free": false,
|
||
"title": "第92话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 55,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 350,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494632,
|
||
"ord": 92,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19784232,
|
||
"short_title": "91",
|
||
"is_in_free": false,
|
||
"title": "第91话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 81,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 387,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494627,
|
||
"ord": 91,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18532096,
|
||
"short_title": "90",
|
||
"is_in_free": false,
|
||
"title": "第90话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 121,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 371,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 494009,
|
||
"ord": 90,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19527018,
|
||
"short_title": "89",
|
||
"is_in_free": false,
|
||
"title": "第89话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 57,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 330,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552059,
|
||
"ord": 89.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 2034891,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "016",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 14,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 33,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 493979,
|
||
"ord": 89,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18494693,
|
||
"short_title": "88",
|
||
"is_in_free": false,
|
||
"title": "第88话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 87,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 351,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 493950,
|
||
"ord": 88,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17416462,
|
||
"short_title": "87",
|
||
"is_in_free": false,
|
||
"title": "第87话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 71,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 343,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 493944,
|
||
"ord": 87,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 0,
|
||
"short_title": "86",
|
||
"is_in_free": false,
|
||
"title": "第86话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 88,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 357,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552058,
|
||
"ord": 86.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 4837743,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "015",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-10 00:00:00",
|
||
"comments": 9,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 42,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491230,
|
||
"ord": 86,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 21039936,
|
||
"short_title": "85",
|
||
"is_in_free": false,
|
||
"title": "第85话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 59,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 319,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491229,
|
||
"ord": 85,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 14463535,
|
||
"short_title": "84",
|
||
"is_in_free": false,
|
||
"title": "第84话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 87,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 344,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552057,
|
||
"ord": 84.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 11625156,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "014",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-10 00:00:00",
|
||
"comments": 12,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 46,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491228,
|
||
"ord": 84,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 15900351,
|
||
"short_title": "83",
|
||
"is_in_free": false,
|
||
"title": "第83话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 71,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 347,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491227,
|
||
"ord": 83,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19182670,
|
||
"short_title": "82",
|
||
"is_in_free": false,
|
||
"title": "第82话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 67,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 355,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491226,
|
||
"ord": 82,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18627336,
|
||
"short_title": "81",
|
||
"is_in_free": false,
|
||
"title": "第81话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 45,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 347,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491225,
|
||
"ord": 81,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 15574642,
|
||
"short_title": "80",
|
||
"is_in_free": false,
|
||
"title": "第80话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 51,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 346,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491224,
|
||
"ord": 80,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 24885059,
|
||
"short_title": "79",
|
||
"is_in_free": false,
|
||
"title": "第79话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 79,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 350,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491223,
|
||
"ord": 79,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 22427296,
|
||
"short_title": "78",
|
||
"is_in_free": false,
|
||
"title": "第78话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 80,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 356,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552056,
|
||
"ord": 78.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 1551067,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "013",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 5,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 38,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491222,
|
||
"ord": 78,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18725322,
|
||
"short_title": "77",
|
||
"is_in_free": false,
|
||
"title": "第77话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 100,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 354,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491221,
|
||
"ord": 77,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 16185606,
|
||
"short_title": "76",
|
||
"is_in_free": false,
|
||
"title": "第76话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 59,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 341,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491220,
|
||
"ord": 76,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18886387,
|
||
"short_title": "75",
|
||
"is_in_free": false,
|
||
"title": "第75话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 88,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 370,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491215,
|
||
"ord": 75,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19228812,
|
||
"short_title": "74",
|
||
"is_in_free": false,
|
||
"title": "第74话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 106,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 343,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552054,
|
||
"ord": 74.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 1106084,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "012",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 9,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 43,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491214,
|
||
"ord": 74,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17213820,
|
||
"short_title": "73",
|
||
"is_in_free": false,
|
||
"title": "第73话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 105,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 358,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552053,
|
||
"ord": 73.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 1510250,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "011",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-10 00:00:00",
|
||
"comments": 7,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 46,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491213,
|
||
"ord": 73,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 12514556,
|
||
"short_title": "72",
|
||
"is_in_free": false,
|
||
"title": "第72话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 38,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 356,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491212,
|
||
"ord": 72,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 24337518,
|
||
"short_title": "71",
|
||
"is_in_free": false,
|
||
"title": "第71话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 45,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 353,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491211,
|
||
"ord": 71,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 22329539,
|
||
"short_title": "70",
|
||
"is_in_free": false,
|
||
"title": "第70话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 45,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 343,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491210,
|
||
"ord": 70,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 12721444,
|
||
"short_title": "69",
|
||
"is_in_free": false,
|
||
"title": "第69话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 59,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 363,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491209,
|
||
"ord": 69,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 14948018,
|
||
"short_title": "68",
|
||
"is_in_free": false,
|
||
"title": "第68话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 48,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 363,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491208,
|
||
"ord": 68,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19604576,
|
||
"short_title": "67",
|
||
"is_in_free": false,
|
||
"title": "第67话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 97,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 370,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491207,
|
||
"ord": 67,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18529368,
|
||
"short_title": "66",
|
||
"is_in_free": false,
|
||
"title": "第66话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 136,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 386,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491206,
|
||
"ord": 66,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19616688,
|
||
"short_title": "65",
|
||
"is_in_free": false,
|
||
"title": "第65话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 79,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 350,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 491205,
|
||
"ord": 65,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17889729,
|
||
"short_title": "64",
|
||
"is_in_free": false,
|
||
"title": "第64话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 77,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 369,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552052,
|
||
"ord": 64.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 1729726,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "010",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-10 00:00:00",
|
||
"comments": 47,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 47,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485887,
|
||
"ord": 64,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 24816564,
|
||
"short_title": "63",
|
||
"is_in_free": false,
|
||
"title": "第63话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 96,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 363,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485886,
|
||
"ord": 63,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 21990493,
|
||
"short_title": "62",
|
||
"is_in_free": false,
|
||
"title": "第62话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 161,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 377,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485885,
|
||
"ord": 62,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 16121252,
|
||
"short_title": "61",
|
||
"is_in_free": false,
|
||
"title": "第61话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 35,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 338,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485884,
|
||
"ord": 61,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 23868117,
|
||
"short_title": "60",
|
||
"is_in_free": false,
|
||
"title": "第60话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 54,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 353,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485883,
|
||
"ord": 60,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 14907334,
|
||
"short_title": "59",
|
||
"is_in_free": false,
|
||
"title": "第59话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 57,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 360,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485882,
|
||
"ord": 59,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 21003716,
|
||
"short_title": "58",
|
||
"is_in_free": false,
|
||
"title": "第58话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 49,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 362,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485881,
|
||
"ord": 58,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 21336454,
|
||
"short_title": "57",
|
||
"is_in_free": false,
|
||
"title": "第57话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 43,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 335,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485880,
|
||
"ord": 57,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 15975510,
|
||
"short_title": "56",
|
||
"is_in_free": false,
|
||
"title": "第56话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 43,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 346,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485879,
|
||
"ord": 56,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 16073891,
|
||
"short_title": "55",
|
||
"is_in_free": false,
|
||
"title": "第55话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 48,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 352,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552051,
|
||
"ord": 55.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 1380370,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "009",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 8,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 49,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485878,
|
||
"ord": 55,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 13480749,
|
||
"short_title": "54",
|
||
"is_in_free": false,
|
||
"title": "第54话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 56,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 357,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485877,
|
||
"ord": 54,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 21882584,
|
||
"short_title": "53",
|
||
"is_in_free": false,
|
||
"title": "第53话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 38,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 372,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485853,
|
||
"ord": 53,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 23862198,
|
||
"short_title": "52",
|
||
"is_in_free": false,
|
||
"title": "第52话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 56,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 388,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485852,
|
||
"ord": 52,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 23267613,
|
||
"short_title": "51",
|
||
"is_in_free": false,
|
||
"title": "第51话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 43,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 370,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485851,
|
||
"ord": 51,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17028529,
|
||
"short_title": "50",
|
||
"is_in_free": false,
|
||
"title": "第50话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 63,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 380,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485850,
|
||
"ord": 50,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 21963399,
|
||
"short_title": "49",
|
||
"is_in_free": false,
|
||
"title": "第49话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 122,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 418,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552050,
|
||
"ord": 49.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 1650224,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "008",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 15,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 57,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485849,
|
||
"ord": 49,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 0,
|
||
"short_title": "48",
|
||
"is_in_free": false,
|
||
"title": "第48话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 71,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 392,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485848,
|
||
"ord": 48,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18582327,
|
||
"short_title": "47",
|
||
"is_in_free": false,
|
||
"title": "第47话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 64,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 401,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485847,
|
||
"ord": 47,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 28025152,
|
||
"short_title": "46",
|
||
"is_in_free": false,
|
||
"title": "第46话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 78,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 444,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485846,
|
||
"ord": 46,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18644930,
|
||
"short_title": "45",
|
||
"is_in_free": false,
|
||
"title": "第45话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 27,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 402,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485845,
|
||
"ord": 45,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17555220,
|
||
"short_title": "44",
|
||
"is_in_free": false,
|
||
"title": "第44话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 71,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 418,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485844,
|
||
"ord": 44,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 23713922,
|
||
"short_title": "43",
|
||
"is_in_free": false,
|
||
"title": "第43话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 41,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 392,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485842,
|
||
"ord": 43,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 22048242,
|
||
"short_title": "42",
|
||
"is_in_free": false,
|
||
"title": "第42话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 36,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 400,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485841,
|
||
"ord": 42,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17956496,
|
||
"short_title": "41",
|
||
"is_in_free": false,
|
||
"title": "第41话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 45,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 423,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485840,
|
||
"ord": 41,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 20461324,
|
||
"short_title": "40",
|
||
"is_in_free": false,
|
||
"title": "第40话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 102,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 441,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485839,
|
||
"ord": 40,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 16463871,
|
||
"short_title": "39",
|
||
"is_in_free": false,
|
||
"title": "第39话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 38,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 404,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485836,
|
||
"ord": 39,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18664684,
|
||
"short_title": "38",
|
||
"is_in_free": false,
|
||
"title": "第38话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 42,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 403,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485835,
|
||
"ord": 38,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17811979,
|
||
"short_title": "37",
|
||
"is_in_free": false,
|
||
"title": "第37话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 46,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 422,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552049,
|
||
"ord": 37.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 4923840,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "005~007",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 9,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 59,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485834,
|
||
"ord": 37,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 22221360,
|
||
"short_title": "36",
|
||
"is_in_free": false,
|
||
"title": "第36话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 78,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 410,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485833,
|
||
"ord": 36,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19204738,
|
||
"short_title": "35",
|
||
"is_in_free": false,
|
||
"title": "第35话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 42,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 397,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485832,
|
||
"ord": 35,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17688181,
|
||
"short_title": "34",
|
||
"is_in_free": false,
|
||
"title": "第34话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 43,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 407,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485831,
|
||
"ord": 34,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 14314953,
|
||
"short_title": "33",
|
||
"is_in_free": false,
|
||
"title": "第33话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 138,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 430,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 485826,
|
||
"ord": 33,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 15190983,
|
||
"short_title": "32",
|
||
"is_in_free": false,
|
||
"title": "第32话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 80,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 409,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484535,
|
||
"ord": 32,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 21701429,
|
||
"short_title": "31",
|
||
"is_in_free": false,
|
||
"title": "第31话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 81,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 408,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484534,
|
||
"ord": 31,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 15619952,
|
||
"short_title": "30",
|
||
"is_in_free": false,
|
||
"title": "第30话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 61,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 429,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484528,
|
||
"ord": 30,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18250579,
|
||
"short_title": "29",
|
||
"is_in_free": false,
|
||
"title": "第29话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 60,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 435,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484526,
|
||
"ord": 29,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 27051218,
|
||
"short_title": "28",
|
||
"is_in_free": false,
|
||
"title": "第28话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 59,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 406,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484514,
|
||
"ord": 28,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 0,
|
||
"short_title": "27",
|
||
"is_in_free": false,
|
||
"title": "第27话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 63,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 420,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484507,
|
||
"ord": 27,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17113482,
|
||
"short_title": "26",
|
||
"is_in_free": false,
|
||
"title": "第26话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 98,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 447,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484500,
|
||
"ord": 26,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 14359689,
|
||
"short_title": "25",
|
||
"is_in_free": false,
|
||
"title": "第25话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 63,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 407,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484483,
|
||
"ord": 25,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 15182223,
|
||
"short_title": "24",
|
||
"is_in_free": false,
|
||
"title": "第24话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 55,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 421,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484478,
|
||
"ord": 24,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 20914179,
|
||
"short_title": "23",
|
||
"is_in_free": false,
|
||
"title": "第23话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 75,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 447,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484474,
|
||
"ord": 23,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 17764811,
|
||
"short_title": "22",
|
||
"is_in_free": false,
|
||
"title": "第22话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 65,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 434,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484461,
|
||
"ord": 22,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 27296421,
|
||
"short_title": "21",
|
||
"is_in_free": false,
|
||
"title": "第21话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 51,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 441,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484443,
|
||
"ord": 21,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 15462050,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "004",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 115,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 455,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484433,
|
||
"ord": 20,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 20824911,
|
||
"short_title": "20",
|
||
"is_in_free": false,
|
||
"title": "第20话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 127,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 497,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484422,
|
||
"ord": 19,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 25714866,
|
||
"short_title": "19",
|
||
"is_in_free": false,
|
||
"title": "第19话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 106,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 537,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484395,
|
||
"ord": 18,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 24927577,
|
||
"short_title": "18",
|
||
"is_in_free": false,
|
||
"title": "第18话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 94,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 527,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484387,
|
||
"ord": 17,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 0,
|
||
"short_title": "17",
|
||
"is_in_free": false,
|
||
"title": "第17话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 48,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 493,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484377,
|
||
"ord": 16,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 19775909,
|
||
"short_title": "16",
|
||
"is_in_free": false,
|
||
"title": "第16话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 70,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 503,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552046,
|
||
"ord": 15.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 3261603,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "003",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2021-02-18 13:17:06",
|
||
"comments": 39,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 385,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484376,
|
||
"ord": 15,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 23101595,
|
||
"short_title": "15",
|
||
"is_in_free": false,
|
||
"title": "第15话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 97,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 510,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484375,
|
||
"ord": 14,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 21456269,
|
||
"short_title": "14",
|
||
"is_in_free": false,
|
||
"title": "第14话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 130,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 510,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484373,
|
||
"ord": 13,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 22942430,
|
||
"short_title": "13",
|
||
"is_in_free": false,
|
||
"title": "第13话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 64,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 522,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484372,
|
||
"ord": 12,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 20225389,
|
||
"short_title": "12",
|
||
"is_in_free": false,
|
||
"title": "第12话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 67,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 499,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552048,
|
||
"ord": 11.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 1569935,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "002",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 10,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 52,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484369,
|
||
"ord": 11,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18897621,
|
||
"short_title": "11",
|
||
"is_in_free": false,
|
||
"title": "第11话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 82,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 566,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484367,
|
||
"ord": 10,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 28021344,
|
||
"short_title": "10",
|
||
"is_in_free": false,
|
||
"title": "第10话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 65,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 519,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484366,
|
||
"ord": 9,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 14198049,
|
||
"short_title": "9",
|
||
"is_in_free": false,
|
||
"title": "第9话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 72,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 544,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484365,
|
||
"ord": 8,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 14137875,
|
||
"short_title": "8",
|
||
"is_in_free": false,
|
||
"title": "第8话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 92,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 575,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 552047,
|
||
"ord": 7.5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 1794952,
|
||
"short_title": "记录",
|
||
"is_in_free": false,
|
||
"title": "001",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2022-05-12 00:00:00",
|
||
"comments": 23,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 80,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484360,
|
||
"ord": 7,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 20283011,
|
||
"short_title": "7",
|
||
"is_in_free": false,
|
||
"title": "第7话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 83,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 589,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484351,
|
||
"ord": 6,
|
||
"read": 0,
|
||
"pay_mode": 1,
|
||
"is_locked": true,
|
||
"pay_gold": 49,
|
||
"size": 18898536,
|
||
"short_title": "6",
|
||
"is_in_free": false,
|
||
"title": "第6话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 43,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 626,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484350,
|
||
"ord": 5,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 18623472,
|
||
"short_title": "5",
|
||
"is_in_free": false,
|
||
"title": "第5话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 86,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 1017,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484347,
|
||
"ord": 4,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 15209423,
|
||
"short_title": "4",
|
||
"is_in_free": false,
|
||
"title": "第4话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 85,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 976,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484345,
|
||
"ord": 3,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 15210025,
|
||
"short_title": "3",
|
||
"is_in_free": false,
|
||
"title": "第3话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 72,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 972,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484344,
|
||
"ord": 2,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 26269998,
|
||
"short_title": "2",
|
||
"is_in_free": false,
|
||
"title": "第2话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 147,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 1001,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
},
|
||
{
|
||
"id": 484342,
|
||
"ord": 1,
|
||
"read": 0,
|
||
"pay_mode": 0,
|
||
"is_locked": false,
|
||
"pay_gold": 0,
|
||
"size": 81495763,
|
||
"short_title": "1",
|
||
"is_in_free": false,
|
||
"title": "第1话",
|
||
"cover": "http://i0.hdslb.com/bfs/manga-static/94dcf91d49253ab62b601a72772a00fddb5d0c32.jpg",
|
||
"pub_time": "2020-10-21 00:00:00",
|
||
"comments": 407,
|
||
"unlock_expire_at": "0000-00-00 00:00:00",
|
||
"unlock_type": 0,
|
||
"allow_wait_free": false,
|
||
"progress": "",
|
||
"like_count": 1283,
|
||
"chapter_id": 0,
|
||
"type": 0,
|
||
"extra": 0
|
||
}
|
||
],
|
||
"release_time": "2020.10.21",
|
||
"is_limit": 0,
|
||
"read_epid": 0,
|
||
"last_read_time": "",
|
||
"is_download": 1,
|
||
"read_short_title": "",
|
||
"styles2": [
|
||
{
|
||
"id": 1081,
|
||
"name": "悬疑灵异"
|
||
}
|
||
],
|
||
"renewal_time": "",
|
||
"last_short_title": "后篇(4)",
|
||
"discount_type": 0,
|
||
"discount": 0,
|
||
"discount_end": "0001-01-01 00:00:00",
|
||
"no_reward": false,
|
||
"batch_discount_type": 0,
|
||
"ep_discount_type": 0,
|
||
"has_fav_activity": false,
|
||
"fav_free_amount": 0,
|
||
"allow_wait_free": false,
|
||
"wait_hour": 0,
|
||
"wait_free_at": "0000-00-00 00:00:00",
|
||
"no_danmaku": 0,
|
||
"auto_pay_status": 0,
|
||
"no_month_ticket": false,
|
||
"immersive": false,
|
||
"no_discount": false,
|
||
"show_type": 0,
|
||
"pay_mode": 1,
|
||
"chapters": [],
|
||
"classic_lines": "【此漫画的翻译由版权方提供】青梅竹马的潮死了——。听闻这个悲报,慎平回到了阔别已久的故乡和歌山市·日都岛与家人再会并出席葬礼。但是岛上貌似陡生异变,充斥着不寻常的气息……?\n夏日孤岛上的悬疑剧!!\n\n",
|
||
"pay_for_new": 0,
|
||
"fav_comic_info": {
|
||
"has_fav_activity": false,
|
||
"fav_free_amount": 0,
|
||
"fav_coupon_type": 0
|
||
},
|
||
"serial_status": 0,
|
||
"series_info": {
|
||
"id": 0,
|
||
"comics": []
|
||
},
|
||
"album_count": 0,
|
||
"wiki_id": 131075,
|
||
"disable_coupon_amount": 2,
|
||
"japan_comic": true,
|
||
"interact_value": "57514",
|
||
"temporary_finish_time": "",
|
||
"video": null,
|
||
"introduction": "最聪明的男主打最聪明的反派!",
|
||
"comment_status": 1,
|
||
"no_screenshot": true,
|
||
"type": 0,
|
||
"vomic_cvs": [],
|
||
"no_rank": true,
|
||
"presale_eps": [],
|
||
"presale_text": "",
|
||
"presale_discount": 0,
|
||
"no_leaderboard": true
|
||
}
|
||
}
|
||
```
|
||
|
||
</details>
|