Python爬虫爬取数据以Json格式保存并解决中文乱码问题

爬取网站的前端源码:

 

 

Python代码:

import requests
from bs4 import BeautifulSoup
import json

target = 'http://www.hatxt.com/0_22/'
server = 'http://www.hatxt.com/'
req = requests.get(url=target)
req.encoding = 'GBK'
html = req.text
div_bf = BeautifulSoup(html, 'lxml')
div = div_bf.find_all('div', id='list')
a_bf = BeautifulSoup(str(div[0]), 'lxml')
a = a_bf.find_all('a')
content = []
result = {'content': content}
for each in a:
    dic = {'chapter': str(each.string), 'href': server + each.get('href')}
    content.append(dic)
print(json.dumps(result))

输出结果:

可以看到原本是中文的标题现在变成了一堆Unicode

{"content": [{"chapter": "\u7b2c\u56db\u767e\u56db\u5341\u4e8c\u7ae0 \u5927\u6218\u5f00\u59cb", "href": "http://www.hatxt.com//0_22/18420664.html"}, {"chapter": "\u7b2c\u56db\u767e\u56db\u5341\u4e00\u7ae0 \u5e1d\u90fd\u4e4b\u5916", "href": "http://www.hatxt.com//0_22/18420663.html"}, {"chapter": "\u7b2c\u56db\u767e\u56db\u5341\u7ae0 \u55dc\u8840\u4e27\u795e\u4e39", "href": "http://www.hatxt.com//0_22/18420660.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u4e5d\u7ae0 \u70bc\u836f\u6740\u4f10\u672f", "href": "http://www.hatxt.com//0_22/18420657.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u516b\u7ae0 \u5c55\u9732\u7360\u7259", "href": "http://www.hatxt.com//0_22/18420655.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u4e03\u7ae0 \u5982\u6b64\u8349\u7387", "href": "http://www.hatxt.com//0_22/18229472.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u516d\u7ae0 \u4ec0\u4e48\u624d\u53eb\u8349\u7387", "href": "http://www.hatxt.com//0_22/18229470.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u4e94\u7ae0 \u8d64\u708e\u864e\u8d32\u519b", "href": "http://www.hatxt.com//0_22/18229469.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u56db\u7ae0 \u7f57\u5239\u8840\u8109", "href": "http://www.hatxt.com//0_22/18229467.html"}, {"chapter": "\u7b2c\u4e00\u7ae0 \u4fee\u7f57\u91cd\u751f", "href": "http://www.hatxt.com//0_22/8098.html"}, {"chapter": "\u7b2c\u4e8c\u7ae0 \u4e07\u53e4\u9b54\u4f53", "href": "http://www.hatxt.com//0_22/8099.html"}, {"chapter": "\u7b2c\u4e09\u7ae0 \u522b\u5fcd\u7740\uff0c\u6c14\u5927\u4f24\u8eab", "href": "http://www.hatxt.com//0_22/8100.html"}, {"chapter": "\u7b2c\u56db\u7ae0 \u805a\u6e90\u4e39\u4e4b\u4e89", "href": "http://www.hatxt.com//0_22/8101.html"}, {"chapter": "\u7b2c\u4e94\u7ae0 \u6218\u5434\u9633", "href": "http://www.hatxt.com//0_22/8102.html"}, {"chapter": "\u7b2c\u516d\u7ae0 \u77a0\u76ee\u7ed3\u820c", "href": "http://www.hatxt.com//0_22/8103.html"}, {"chapter": "\u7b2c\u4e03\u7ae0 \u795e\u79d8\u7684\u5e08\u5c0a", "href": "http://www.hatxt.com//0_22/8104.html"}, {"chapter": "\u7b2c\u516b\u7ae0 \u6df1\u591c\u5371\u673a", "href": "http://www.hatxt.com//0_22/8105.html"}, {"chapter": "\u7b2c\u4e5d\u7ae0 \u5929\u7384\u5c71\u8109", "href": "http://www.hatxt.com//0_22/8106.html"}, {"chapter": "\u7b2c\u5341\u7ae0 \u5bb6\u65cf\u7684\u91cd\u89c6", "href": "http://www.hatxt.com//0_22/8107.html"}, {"chapter": "\u7b2c\u5341\u4e00\u7ae0 \u5c71\u8109\u5386\u7ec3", "href": "http://www.hatxt.com//0_22/8108.html"}, {"chapter": "\u7b2c\u5341\u4e8c\u7ae0 \u6740\u5fc3", "href": "http://www.hatxt.com//0_22/8109.html"}, {"chapter": "\u7b2c\u5341\u4e09\u7ae0 \u78a7\u773c\u91d1\u72ee", "href": "http://www.hatxt.com//0_22/8110.html"}, {"chapter": "\u7b2c\u5341\u56db\u7ae0 \u964d\u670d", "href": "http://www.hatxt.com//0_22/8111.html"}, {"chapter": "\u7b2c\u5341\u4e94\u7ae0 \u8840\u8109\u8fdb\u9636", "href": "http://www.hatxt.com//0_22/8112.html"}, {"chapter": "\u7b2c\u5341\u516d\u7ae0 \u5f3a\u4e70\u5f3a\u5356", "href": "http://www.hatxt.com//0_22/8113.html"}, {"chapter": "\u7b2c\u5341\u4e03\u7ae0 \u517d\u6f6e", "href": "http://www.hatxt.com//0_22/8114.html"}, {"chapter": "\u7b2c\u5341\u516b\u7ae0 \u95ee\u5fc3\u8def", "href": "http://www.hatxt.com//0_22/8115.html"}, {"chapter": "\u7b2c\u5341\u4e5d\u7ae0 \u7075\u53d8\u8003\u9a8c", "href": "http://www.hatxt.com//0_22/8116.html"}, {"chapter": "\u7b2c\u4e8c\u5341\u7ae0 \u5929\u7384\u6563\u4eba", "href": "http://www.hatxt.com//0_22/8117.html"}, {"chapter": "\u7b2c\u4e8c\u5341\u4e00\u7ae0 \u593a\u820d", "href": "http://www.hatxt.com//0_22/8118.html"}, {"chapter": "\u7b2c\u4e8c\u5341\u4e8c\u7ae0 \u6dec\u4f53\u7075\u4e73", "href": "http://www.hatxt.com//0_22/8119.html"}, {"chapter": "\u7b2c\u4e8c\u5341\u4e09\u7ae0 \u518d\u9047\u6797\u661f\u598d", "href": "http://www.hatxt.com//0_22/8120.html"}, {"chapter": "\u7b2c\u4e8c\u5341\u56db\u7ae0 \u4f60\u7684\u547d\uff0c\u6211\u6536\u5b9a\u4e86", "href": "http://www.hatxt.com//0_22/8121.html"}, {"chapter": "\u7b2c\u4e8c\u5341\u4e94\u7ae0 \u4ea4\u624b", "href": "http://www.hatxt.com//0_22/8122.html"}, {"chapter": "\u7b2c\u4e8c\u5341\u516d\u7ae0 \u4fee\u70bc", "href": "http://www.hatxt.com//0_22/8123.html"}, {"chapter": "\u7b2c\u4e8c\u5341\u4e03\u7ae0 \u805a\u5b9d\u697c", "href": "http://www.hatxt.com//0_22/8124.html"}, {"chapter": "\u7b2c\u4e8c\u5341\u516b\u7ae0 \u62cd\u5356\u4f1a", "href": "http://www.hatxt.com//0_22/8125.html"}, {"chapter": "\u7b2c\u4e8c\u5341\u4e5d\u7ae0 \u7b2c\u4e8c\u5f20\u6b8b\u56fe", "href": "http://www.hatxt.com//0_22/8126.html"}, {"chapter": "\u7b2c\u4e09\u5341\u7ae0 \u7ade\u62cd", "href": "http://www.hatxt.com//0_22/4856408.html"}, {"chapter": "\u7b2c\u4e09\u5341\u4e00\u7ae0 \u65cf\u4f1a\u524d\u7a81\u7834", "href": "http://www.hatxt.com//0_22/4856409.html"}, {"chapter": "\u7b2c\u4e09\u5341\u4e8c\u7ae0 \u65cf\u4f1a", "href": "http://www.hatxt.com//0_22/4856410.html"}, {"chapter": "\u7b2c\u4e09\u5341\u4e09\u7ae0 \u5434\u9633\u66b4\u8d70", "href": "http://www.hatxt.com//0_22/4856411.html"}, {"chapter": "\u7b2c\u4e09\u5341\u56db\u7ae0 \u5351\u9119", "href": "http://www.hatxt.com//0_22/4856412.html"}, {"chapter": "\u7b2c\u4e09\u5341\u4e94\u7ae0 \u60ca\u5168\u573a", "href": "http://www.hatxt.com//0_22/4856413.html"}, {"chapter": "\u7b2c\u4e09\u5341\u516d\u7ae0 \u51b3\u8d5b\u4e00\u6218", "href": "http://www.hatxt.com//0_22/4856414.html"}, {"chapter": "\u7b2c\u4e09\u5341\u4e03\u7ae0 \u593a\u9b41", "href": "http://www.hatxt.com//0_22/4856415.html"}, {"chapter": "\u7b2c\u4e09\u5341\u516b\u7ae0 \u98de\u4e91\u5927\u6bd4", "href": "http://www.hatxt.com//0_22/5891850.html"}, {"chapter": "\u7b2c\u4e09\u5341\u4e5d\u7ae0 \u903c\u8feb", "href": "http://www.hatxt.com//0_22/5891851.html"}, {"chapter": "\u7b2c\u56db\u5341\u7ae0 \u8d28\u95ee", "href": "http://www.hatxt.com//0_22/6912960.html"}, {"chapter": "\u7b2c\u56db\u5341\u4e00\u7ae0 \u5f3a\u52bf\u7684\u8001\u7237\u5b50", "href": "http://www.hatxt.com//0_22/6912961.html"}, {"chapter": "\u7b2c\u56db\u5341\u4e8c\u7ae0 \u5077\u88ad", "href": "http://www.hatxt.com//0_22/6912962.html"}, {"chapter": "\u7b2c\u56db\u5341\u4e09\u7ae0 \u4f11\u4e66", "href": "http://www.hatxt.com//0_22/6912963.html"}, {"chapter": "\u7b2c\u56db\u5341\u56db\u7ae0 \u9634\u8c0b", "href": "http://www.hatxt.com//0_22/7058619.html"}, {"chapter": "\u7b2c\u56db\u5341\u4e94\u7ae0 \u5c11\u5973", "href": "http://www.hatxt.com//0_22/7316323.html"}, {"chapter": "\u7b2c\u56db\u5341\u516d\u7ae0 \u738b\u51ef", "href": "http://www.hatxt.com//0_22/7429677.html"}, {"chapter": "\u7b2c\u56db\u5341\u4e03\u7ae0 \u6740\u4eba", "href": "http://www.hatxt.com//0_22/7429678.html"}, {"chapter": "\u7b2c\u56db\u5341\u516b\u7ae0 \u592a\u6e05\u7389\u4f53", "href": "http://www.hatxt.com//0_22/7527778.html"}, {"chapter": "\u7b2c49\u7ae0 \u4ea4\u6d41\u4f1a", "href": "http://www.hatxt.com//0_22/14488076.html"}, {"chapter": "\u7b2c50\u7ae0 \u70bc\u836f\u9f0e", "href": "http://www.hatxt.com//0_22/14488077.html"}, {"chapter": "\u7b2c51\u7ae0 \u8d4c\u6ce8", "href": "http://www.hatxt.com//0_22/14488078.html"}, {"chapter": "\u7b2c52\u7ae0 \u70bc\u4e39", "href": "http://www.hatxt.com//0_22/14488079.html"}, {"chapter": "\u7b2c53\u7ae0 \u80dc\u8d1f", "href": "http://www.hatxt.com//0_22/14488080.html"}, {"chapter": "\u7b2c54\u7ae0 \u9634\u9669\u5c0f\u4eba", "href": "http://www.hatxt.com//0_22/14488081.html"}, {"chapter": "\u7b2c55\u7ae0 \u6211\u8ba9\u4f60\u8d70\u4e86\u5417", "href": "http://www.hatxt.com//0_22/14488082.html"}, {"chapter": "\u7b2c56\u7ae0 \u6740\u65e0\u8d66", "href": "http://www.hatxt.com//0_22/14488083.html"}, {"chapter": "\u7b2c57\u7ae0 \u65ad\u5b50\u7edd\u5b59", "href": "http://www.hatxt.com//0_22/14488084.html"}, {"chapter": "\u7b2c58\u7ae0 \u51fa\u5934", "href": "http://www.hatxt.com//0_22/14488085.html"}, {"chapter": "\u7b2c59\u7ae0 \u95f9\u50f5", "href": "http://www.hatxt.com//0_22/14488086.html"}, {"chapter": "\u7b2c60\u7ae0 \u5144\u59b9", "href": "http://www.hatxt.com//0_22/14488087.html"}, {"chapter": "\u7b2c61\u7ae0 \u5bb6\u65cf\u6765\u5386", "href": "http://www.hatxt.com//0_22/14488088.html"}, {"chapter": "\u7b2c62\u7ae0 \u5efa\u6728\u795e\u6811", "href": "http://www.hatxt.com//0_22/14488089.html"}, {"chapter": "\u7b2c63\u7ae0 \u89e3\u98ce\u60c5", "href": "http://www.hatxt.com//0_22/14488090.html"}, {"chapter": "\u7b2c64\u7ae0 \u5434\u6c0f\u5b97\u65cf", "href": "http://www.hatxt.com//0_22/14488091.html"}, {"chapter": "\u7b2c65\u7ae0 \u8d4c\u6597", "href": "http://www.hatxt.com//0_22/14488092.html"}, {"chapter": "\u7b2c66\u7ae0 \u5165\u7b51\u57fa", "href": "http://www.hatxt.com//0_22/14488093.html"}, {"chapter": "\u7b2c67\u7ae0 \u9634\u8c0b", "href": "http://www.hatxt.com//0_22/14488094.html"}, {"chapter": "\u7b2c68\u7ae0 \u4e0d\u53ef\u601d\u8bae", "href": "http://www.hatxt.com//0_22/14488095.html"}, {"chapter": "\u7b2c69\u7ae0 \u593a\u6743", "href": "http://www.hatxt.com//0_22/14488096.html"}, {"chapter": "\u7b2c70\u7ae0 \u5e73\u4e71", "href": "http://www.hatxt.com//0_22/14488097.html"}, {"chapter": "\u7b2c71\u7ae0 \u6740", "href": "http://www.hatxt.com//0_22/14488098.html"}, {"chapter": "\u7b2c72\u7ae0 \u6b66\u4f1a", "href": "http://www.hatxt.com//0_22/14488099.html"}, {"chapter": "\u7b2c73\u7ae0 \u5434\u78ca", "href": "http://www.hatxt.com//0_22/14488100.html"}, {"chapter": "\u7b2c74\u7ae0 \u6218", "href": "http://www.hatxt.com//0_22/14488101.html"}, {"chapter": "\u7b2c75\u7ae0 \u5996\u4e4b\u8840\u8109", "href": "http://www.hatxt.com//0_22/14488102.html"}, {"chapter": "\u7b2c76\u7ae0 \u5371\u673a", "href": "http://www.hatxt.com//0_22/14488103.html"}, {"chapter": "\u7b2c77\u7ae0 \u4ea4\u6613", "href": "http://www.hatxt.com//0_22/14488104.html"}, {"chapter": "\u7b2c78\u7ae0 \u751f\u6b7b\u6289\u62e9", "href": "http://www.hatxt.com//0_22/14488105.html"}, {"chapter": "\u7b2c79\u7ae0 \u706d\u65cf", "href": "http://www.hatxt.com//0_22/14488106.html"}, {"chapter": "\u7b2c80\u7ae0 \u7edd\u5883", "href": "http://www.hatxt.com//0_22/14488107.html"}, {"chapter": "\u7b2c81\u7ae0 \u4f55\u5fc5\u5462", "href": "http://www.hatxt.com//0_22/14488108.html"}, {"chapter": "\u7b2c82\u7ae0 \u795e\u79d8\u5973\u5b50", "href": "http://www.hatxt.com//0_22/14488109.html"}, {"chapter": "\u7b2c83\u7ae0 \u53cd\u566c", "href": "http://www.hatxt.com//0_22/14488110.html"}, {"chapter": "\u7b2c84\u7ae0 \u7d2b\u5ae3", "href": "http://www.hatxt.com//0_22/14488111.html"}, {"chapter": "\u7b2c85\u7ae0 \u7686\u6740", "href": "http://www.hatxt.com//0_22/14488112.html"}, {"chapter": "\u7b2c86\u7ae0 \u91cd\u521b\u7684\u5434\u9053", "href": "http://www.hatxt.com//0_22/14488113.html"}, {"chapter": "\u7b2c87\u7ae0 \u6c42\u6b7b", "href": "http://www.hatxt.com//0_22/14488114.html"}, {"chapter": "\u7b2c88\u7ae0 \u5251\u8005", "href": "http://www.hatxt.com//0_22/14488115.html"}, {"chapter": "\u7b2c89\u7ae0 \u5f3a\u5927\u7684\u767d\u5cf0", "href": "http://www.hatxt.com//0_22/14488116.html"}, {"chapter": "\u7b2c90\u7ae0 \u836f\u8574\u9633\u4f53", "href": "http://www.hatxt.com//0_22/14488117.html"}, {"chapter": "\u7b2c91\u7ae0 \u75af\u72c2\u7684\u767d\u5cf0", "href": "http://www.hatxt.com//0_22/14488118.html"}, {"chapter": "\u7b2c92\u7ae0 \u8bdb\u6740\u4e91\u5929", "href": "http://www.hatxt.com//0_22/14488119.html"}, {"chapter": "\u7b2c93\u7ae0 \u5669\u8017", "href": "http://www.hatxt.com//0_22/14488120.html"}, {"chapter": "\u7b2c94\u7ae0 \u706d\u65cf", "href": "http://www.hatxt.com//0_22/14488121.html"}, {"chapter": "\u7b2c95\u7ae0 \u79f0\u9738", "href": "http://www.hatxt.com//0_22/14488122.html"}, {"chapter": "\u7b2c96\u7ae0 \u4e0d\u77e5\u6b7b\u6d3b", "href": "http://www.hatxt.com//0_22/14488123.html"}, {"chapter": "\u7b2c97\u7ae0 \u82b1\u68d8\u4e4b\u543b", "href": "http://www.hatxt.com//0_22/14488124.html"}, {"chapter": "\u7b2c98\u7ae0 \u4f55\u53f6\u5386\u7ec3", "href": "http://www.hatxt.com//0_22/14488125.html"}, {"chapter": "\u7b2c99\u7ae0 \u524d\u5f80\u5929\u8fd0\u57ce", "href": "http://www.hatxt.com//0_22/14488126.html"}, {"chapter": "\u7b2c100\u7ae0 \u6311\u8845", "href": "http://www.hatxt.com//0_22/14488127.html"}, {"chapter": "\u7b2c101\u7ae0 \u8dcb\u6248\u5973\u5b50", "href": "http://www.hatxt.com//0_22/14488128.html"}, {"chapter": "\u7b2c102\u7ae0 \u6559\u8bad", "href": "http://www.hatxt.com//0_22/14488129.html"}, {"chapter": "\u7b2c103\u7ae0 \u738b\u6c0f\u5b97\u65cf", "href": "http://www.hatxt.com//0_22/14488130.html"}, {"chapter": "\u7b2c104\u7ae0 \u9ebb\u70e6\u4e0a\u95e8", "href": "http://www.hatxt.com//0_22/14488131.html"}, {"chapter": "\u7b2c105\u7ae0 \u5a01\u6151", "href": "http://www.hatxt.com//0_22/14488132.html"}, {"chapter": "\u7b2c106\u7ae0 \u65e0\u803b", "href": "http://www.hatxt.com//0_22/14488133.html"}, {"chapter": "\u7b2c107\u7ae0 \u5f3a\u52bf\u7684\u7d2b\u5ae3", "href": "http://www.hatxt.com//0_22/14488134.html"}, {"chapter": "\u7b2c108\u7ae0 \u5929\u8fd0\u8d4c\u57ce", "href": "http://www.hatxt.com//0_22/14488135.html"}, {"chapter": "\u7b2c109\u7ae0 \u89d2\u6597\u533a", "href": "http://www.hatxt.com//0_22/14488136.html"}, {"chapter": "\u7b2c110\u7ae0 \u4eba\u795e\u5171\u6124\u77f3\u98de\u4e91", "href": "http://www.hatxt.com//0_22/14488137.html"}, {"chapter": "\u7b2c111\u7ae0 \u731c\u4e39", "href": "http://www.hatxt.com//0_22/14488138.html"}, {"chapter": "\u7b2c112\u7ae0 \u96be\u4ee5\u542f\u9f7f\u7684\u8d4c\u7ea6", "href": "http://www.hatxt.com//0_22/14488139.html"}, {"chapter": "\u7b2c113\u7ae0 \u6536\u83b7", "href": "http://www.hatxt.com//0_22/14488140.html"}, {"chapter": "\u7b2c114\u7ae0 \u70bc\u4e39\u672f", "href": "http://www.hatxt.com//0_22/14488141.html"}, {"chapter": "\u7b2c115\u7ae0 \u95f9\u591f\u4e86\u6ca1\u6709", "href": "http://www.hatxt.com//0_22/14488142.html"}, {"chapter": "\u7b2c116\u7ae0 \u8c01\u6562\u4e0e\u6211\u4e00\u8d4c", "href": "http://www.hatxt.com//0_22/14488143.html"}, {"chapter": "\u7b2c117\u7ae0 \u8138\u7eff", "href": "http://www.hatxt.com//0_22/14488144.html"}, {"chapter": "\u7b2c118\u7ae0 \u8574\u9b42\u4e39", "href": "http://www.hatxt.com//0_22/14488145.html"}, {"chapter": "\u7b2c119\u7ae0 \u5929\u8fd0\u57ce\u8bf8\u5929\u624d", "href": "http://www.hatxt.com//0_22/14488146.html"}, {"chapter": "\u7b2c120\u7ae0 \u53e4\u57ce\u9057\u8ff9", "href": "http://www.hatxt.com//0_22/14488147.html"}, {"chapter": "\u7b2c121\u7ae0 \u5c01\u7075\u571f", "href": "http://www.hatxt.com//0_22/14488148.html"}, {"chapter": "\u7b2c122\u7ae0 \u8eab\u4efd\u5927\u767d", "href": "http://www.hatxt.com//0_22/14488149.html"}, {"chapter": "\u7b2c123\u7ae0 \u6fc0\u70c8\u7ade\u4e89", "href": "http://www.hatxt.com//0_22/14488150.html"}, {"chapter": "\u7b2c124\u7ae0 \u62c9\u62e2", "href": "http://www.hatxt.com//0_22/14488151.html"}, {"chapter": "\u7b2c125\u7ae0 \u8fd0\u7b79\u5e37\u5e44", "href": "http://www.hatxt.com//0_22/14488152.html"}, {"chapter": "\u7b2c126\u7ae0 \u5929\u624d\u9f50\u805a", "href": "http://www.hatxt.com//0_22/14488153.html"}, {"chapter": "\u7b2c127\u7ae0 \u4e0a\u95e8\u6311\u8845", "href": "http://www.hatxt.com//0_22/14488154.html"}, {"chapter": "\u7b2c128\u7ae0 \u97e9\u51b2\u7684\u5a01\u80c1", "href": "http://www.hatxt.com//0_22/14488155.html"}, {"chapter": "\u7b2c129\u7ae0 \u8650\u5929\u624d", "href": "http://www.hatxt.com//0_22/14488156.html"}, {"chapter": "\u7b2c130\u7ae0 \u7b51\u57fa\u4e39\u3001\u6781\u9633\u4e39", "href": "http://www.hatxt.com//0_22/14488157.html"}, {"chapter": "\u7b2c131\u7ae0 \u9001\u4e0a\u95e8\u6765", "href": "http://www.hatxt.com//0_22/14488158.html"}, {"chapter": "\u7b2c132\u7ae0 \u4e09\u5e74\u524d\u7684\u7b2c\u4e00\u5929\u624d", "href": "http://www.hatxt.com//0_22/14488159.html"}, {"chapter": "\u7b2c133\u7ae0 \u7075\u5f02", "href": "http://www.hatxt.com//0_22/14488160.html"}, {"chapter": "\u7b2c134\u7ae0 \u8840\u5492", "href": "http://www.hatxt.com//0_22/14488161.html"}, {"chapter": "\u7b2c135\u7ae0 \u55dc\u8840\u8005\u6768\u6b23", "href": "http://www.hatxt.com//0_22/14488162.html"}, {"chapter": "\u7b2c136\u7ae0 \u65d6\u65ce", "href": "http://www.hatxt.com//0_22/14488163.html"}, {"chapter": "\u7b2c137\u7ae0 \u5524\u9192", "href": "http://www.hatxt.com//0_22/14488164.html"}, {"chapter": "\u7b2c138\u7ae0 \u7a81\u7834", "href": "http://www.hatxt.com//0_22/14488165.html"}, {"chapter": "\u7b2c139\u7ae0 \u68a6", "href": "http://www.hatxt.com//0_22/14488166.html"}, {"chapter": "\u7b2c140\u7ae0 \u51d1\u9f50\u6750\u6599", "href": "http://www.hatxt.com//0_22/14488167.html"}, {"chapter": "\u7b2c141\u7ae0 \u8d4c\u4e39\u53f0\u70bc\u4e39", "href": "http://www.hatxt.com//0_22/14488168.html"}, {"chapter": "\u7b2c142\u7ae0 \u9634\u8c0b", "href": "http://www.hatxt.com//0_22/14488169.html"}, {"chapter": "\u7b2c143\u7ae0 \u591c\u8272\u88ad\u6740", "href": "http://www.hatxt.com//0_22/14488170.html"}, {"chapter": "\u7b2c144\u7ae0 \u751f\u6b7b\u5371\u673a", "href": "http://www.hatxt.com//0_22/14488171.html"}, {"chapter": "\u7b2c145\u7ae0 \u6210\u9b54", "href": "http://www.hatxt.com//0_22/14488172.html"}, {"chapter": "\u7b2c146\u7ae0 \u5434\u9053\u9668\u843d\uff1f", "href": "http://www.hatxt.com//0_22/14488173.html"}, {"chapter": "\u7b2c147\u7ae0 \u7075\u53d8\u7686\u73b0", "href": "http://www.hatxt.com//0_22/14488174.html"}, {"chapter": "\u7b2c148\u7ae0 \u5bf9\u5cd9", "href": "http://www.hatxt.com//0_22/14488175.html"}, {"chapter": "\u7b2c149\u7ae0 \u79d8\u8f9b", "href": "http://www.hatxt.com//0_22/14488176.html"}, {"chapter": "\u7b2c150\u7ae0 \u517b\u5251\u4e4b\u5730", "href": "http://www.hatxt.com//0_22/14488177.html"}, {"chapter": "\u7b2c151\u7ae0 \u5251\u540d\u5929\u6b8b", "href": "http://www.hatxt.com//0_22/14488178.html"}, {"chapter": "\u7b2c152\u7ae0 \u5f52\u6765", "href": "http://www.hatxt.com//0_22/14488179.html"}, {"chapter": "\u7b2c153\u7ae0 \u67d4\u60c5", "href": "http://www.hatxt.com//0_22/14488180.html"}, {"chapter": "\u7b2c154\u7ae0 \u5b89\u6392", "href": "http://www.hatxt.com//0_22/14488181.html"}, {"chapter": "\u7b2c155\u7ae0 \u6df1\u5c71", "href": "http://www.hatxt.com//0_22/14488182.html"}, {"chapter": "\u7b2c156\u7ae0 \u9057\u8ff9\u5f00\u542f", "href": "http://www.hatxt.com//0_22/14488183.html"}, {"chapter": "\u7b2c157\u7ae0 \u518d\u89c1\u9f99\u6d8e\u82b1", "href": "http://www.hatxt.com//0_22/14488184.html"}, {"chapter": "\u7b2c158\u7ae0 \u5730\u9b54", "href": "http://www.hatxt.com//0_22/14488185.html"}, {"chapter": "\u7b2c159\u7ae0 \u6536\u670d", "href": "http://www.hatxt.com//0_22/14488186.html"}, {"chapter": "\u7b2c160\u7ae0 \u7b51\u57fa\u516d\u91cd", "href": "http://www.hatxt.com//0_22/14488187.html"}, {"chapter": "\u7b2c161\u7ae0 \u5929\u624d\u519b\u56e2", "href": "http://www.hatxt.com//0_22/14488188.html"}, {"chapter": "\u7b2c162\u7ae0 \u5f3a\u52bf\u51fa\u624b", "href": "http://www.hatxt.com//0_22/14488189.html"}, {"chapter": "\u7b2c163\u7ae0 \u8def\u9047\u97e9\u51b2", "href": "http://www.hatxt.com//0_22/14488190.html"}, {"chapter": "\u7b2c164\u7ae0 \u51fb\u6740", "href": "http://www.hatxt.com//0_22/14488191.html"}, {"chapter": "\u7b2c165\u7ae0 \u6254\u51fa\u53bb", "href": "http://www.hatxt.com//0_22/14488192.html"}, {"chapter": "\u7b2c166\u7ae0 \u9488\u5bf9", "href": "http://www.hatxt.com//0_22/14488193.html"}, {"chapter": "\u7b2c167\u7ae0 \u6218\u7fa4\u72fc", "href": "http://www.hatxt.com//0_22/14488194.html"}, {"chapter": "\u7b2c168\u7ae0 \u51fb\u6740", "href": "http://www.hatxt.com//0_22/14488195.html"}, {"chapter": "\u7b2c169\u7ae0 \u5434\u78ca\u548c\u6731\u5efa\u5cf0", "href": "http://www.hatxt.com//0_22/14488196.html"}, {"chapter": "\u7b2c170\u7ae0 \u5371\u673a\u56db\u4f0f", "href": "http://www.hatxt.com//0_22/14488197.html"}, {"chapter": "\u7b2c171\u7ae0 \u56db\u7ffc\u708e\u9f99", "href": "http://www.hatxt.com//0_22/14488198.html"}, {"chapter": "\u7b2c172\u7ae0 \u5408\u4f5c", "href": "http://www.hatxt.com//0_22/14488199.html"}, {"chapter": "\u7b2c173\u7ae0 \u4e00\u628a\u94a5\u5319", "href": "http://www.hatxt.com//0_22/14488200.html"}, {"chapter": "\u7b2c174\u7ae0 \u7433\u7405\u6ee1\u76ee", "href": "http://www.hatxt.com//0_22/14488201.html"}, {"chapter": "\u7b2c175\u7ae0 \u5996\u517d\u5316\u5f62", "href": "http://www.hatxt.com//0_22/14488202.html"}, {"chapter": "\u7b2c176\u7ae0 \u77f3\u98de\u4e91\u91cd\u521b", "href": "http://www.hatxt.com//0_22/14488203.html"}, {"chapter": "\u7b2c177\u7ae0 \u6211\u662f\u8001\u4e8c", "href": "http://www.hatxt.com//0_22/14488204.html"}, {"chapter": "\u7b2c178\u7ae0 \u5766\u767d", "href": "http://www.hatxt.com//0_22/14488205.html"}, {"chapter": "\u7b2c179\u7ae0 \u9b54\u6676", "href": "http://www.hatxt.com//0_22/14488206.html"}, {"chapter": "\u7b2c180\u7ae0 \u5927\u5a5a", "href": "http://www.hatxt.com//0_22/14488207.html"}, {"chapter": "\u7b2c181\u7ae0 \u5927\u95f9\u5a5a\u793c", "href": "http://www.hatxt.com//0_22/14488208.html"}, {"chapter": "\u7b2c182\u7ae0 \u7765\u7768", "href": "http://www.hatxt.com//0_22/14488209.html"}, {"chapter": "\u7b2c183\u7ae0 \u66ff\u6b7b\u9b3c", "href": "http://www.hatxt.com//0_22/14488210.html"}, {"chapter": "\u7b2c184\u7ae0 \u56db\u7ffc\u708e\u9f99\u73b0\u8eab", "href": "http://www.hatxt.com//0_22/14488211.html"}, {"chapter": "\u7b2c185\u7ae0 \u6b3a\u4eba\u592a\u751a", "href": "http://www.hatxt.com//0_22/14488212.html"}, {"chapter": "\u7b2c186\u7ae0 \u6218\u5bb9\u98ce", "href": "http://www.hatxt.com//0_22/14488213.html"}, {"chapter": "\u7b2c187\u7ae0 \u901a\u5fc3\u82b1\u6362\u547d", "href": "http://www.hatxt.com//0_22/14488214.html"}, {"chapter": "\u7b2c188\u7ae0 \u5730\u9f99\u8c37", "href": "http://www.hatxt.com//0_22/14488215.html"}, {"chapter": "\u7b2c189\u7ae0 \u9b3c\u773c\u5c38\u86c7", "href": "http://www.hatxt.com//0_22/14488216.html"}, {"chapter": "\u7b2c190\u7ae0 \u730e\u9f99\u8005", "href": "http://www.hatxt.com//0_22/14488217.html"}, {"chapter": "\u7b2c191\u7ae0 \u521a\u51fa\u9f99\u6f6d\uff0c\u53c8\u9677\u864e\u7a74", "href": "http://www.hatxt.com//0_22/14841327.html"}, {"chapter": "\u7b2c192\u7ae0 \u9b3c\u773c\u5c38\u86c7\u738b", "href": "http://www.hatxt.com//0_22/14841328.html"}, {"chapter": "\u7b2c193\u7ae0 \u81f3\u9633\u4e4b\u5730", "href": "http://www.hatxt.com//0_22/14841329.html"}, {"chapter": "\u7b2c194\u7ae0 \u8fdc\u53e4\u6218\u573a", "href": "http://www.hatxt.com//0_22/14841330.html"}, {"chapter": "\u7b2c195\u7ae0 \u9f99\u8840\u6c60", "href": "http://www.hatxt.com//0_22/14841331.html"}, {"chapter": "\u7b2c196\u7ae0 \u5929\u6b8b\u51fa\u4e16", "href": "http://www.hatxt.com//0_22/14841332.html"}, {"chapter": "\u7b2c197\u7ae0 \u7a81\u7834", "href": "http://www.hatxt.com//0_22/14841333.html"}, {"chapter": "\u7b2c198\u7ae0 \u53d8\u5f3a\u7684\u56db\u7ffc\u708e\u9f99", "href": "http://www.hatxt.com//0_22/14841334.html"}, {"chapter": "\u7b2c199\u7ae0 \u8d64\u9633\u679c", "href": "http://www.hatxt.com//0_22/14841335.html"}, {"chapter": "\u7b2c200\u7ae0 \u5750\u5c71\u89c2\u864e\u6597", "href": "http://www.hatxt.com//0_22/14841336.html"}, {"chapter": "\u7b2c201\u7ae0 \u865a\u4e0e\u59d4\u86c7", "href": "http://www.hatxt.com//0_22/14841337.html"}, {"chapter": "\u7b2c202\u7ae0 \u51fa\u624b", "href": "http://www.hatxt.com//0_22/14841338.html"}, {"chapter": "\u7b2c203\u7ae0 \u5408\u4f5c", "href": "http://www.hatxt.com//0_22/14841339.html"}, {"chapter": "\u7b2c204\u7ae0 \u8d64\u9f99\u5cf0", "href": "http://www.hatxt.com//0_22/14841340.html"}, {"chapter": "\u7b2c205\u7ae0 \u523a\u6740", "href": "http://www.hatxt.com//0_22/14841341.html"}, {"chapter": "\u7b2c206\u7ae0 \u5357\u5c71", "href": "http://www.hatxt.com//0_22/14841342.html"}, {"chapter": "\u7b2c207\u7ae0 \u8052\u566a\u7684\u5357\u5bb6", "href": "http://www.hatxt.com//0_22/14841343.html"}, {"chapter": "\u7b2c208\u7ae0 \u6697\u4e2d\u7684\u654c\u4eba", "href": "http://www.hatxt.com//0_22/14841344.html"}, {"chapter": "\u7b2c209\u7ae0 \u4e0a\u5c71", "href": "http://www.hatxt.com//0_22/14911080.html"}, {"chapter": "\u7b2c210\u7ae0 \u6050\u6016\u56f4\u6740", "href": "http://www.hatxt.com//0_22/14911081.html"}, {"chapter": "\u7b2c211\u7ae0 \u83ab\u9053", "href": "http://www.hatxt.com//0_22/14911082.html"}, {"chapter": "\u7b2c212\u7ae0 \u6b7b\u4ea1\u5371\u673a", "href": "http://www.hatxt.com//0_22/14911083.html"}, {"chapter": "\u7b2c213\u7ae0 \u9001\u5c14\u7b49\u5f80\u751f", "href": "http://www.hatxt.com//0_22/15036048.html"}, {"chapter": "\u7b2c214\u7ae0 \u7ed3\u4e39\u5883", "href": "http://www.hatxt.com//0_22/15036049.html"}, {"chapter": "\u7b2c215\u7ae0 \u592a\u521d\u9b54\u7ecf", "href": "http://www.hatxt.com//0_22/15036050.html"}, {"chapter": "\u7b2c216\u7ae0 \u53f6\u5a77\u6709\u96be", "href": "http://www.hatxt.com//0_22/15036051.html"}, {"chapter": "\u7b2c217\u7ae0 \u8dcb\u6248", "href": "http://www.hatxt.com//0_22/15036052.html"}, {"chapter": "\u7b2c218\u7ae0 \u6559\u8bad", "href": "http://www.hatxt.com//0_22/15036053.html"}, {"chapter": "\u7b2c219\u7ae0 \u53f6\u5bb6\u5371\u673a", "href": "http://www.hatxt.com//0_22/15036054.html"}, {"chapter": "\u7b2c220\u7ae0 \u6b3a\u4eba\u592a\u751a", "href": "http://www.hatxt.com//0_22/15036055.html"}, {"chapter": "\u7b2c221\u7ae0 \u8d64\u7130\u9f0e", "href": "http://www.hatxt.com//0_22/15105903.html"}, {"chapter": "\u7b2c222\u7ae0 \u4e39\u6210", "href": "http://www.hatxt.com//0_22/15105904.html"}, {"chapter": "\u7b2c223\u7ae0 \u711a\u7075\u4e39", "href": "http://www.hatxt.com//0_22/15105905.html"}, {"chapter": "\u7b2c224\u7ae0 \u5357\u5982\u5c71", "href": "http://www.hatxt.com//0_22/15105906.html"}, {"chapter": "\u7b2c225\u7ae0 \u8bf8\u654c\u8054\u624b", "href": "http://www.hatxt.com//0_22/15105907.html"}, {"chapter": "\u7b2c226\u7ae0 \u706d\u65cf\u5371\u673a", "href": "http://www.hatxt.com//0_22/15105908.html"}, {"chapter": "\u7b2c227\u7ae0 \u5927\u6218\u7206\u53d1", "href": "http://www.hatxt.com//0_22/17399273.html"}, {"chapter": "\u7b2c228\u7ae0 \u957f\u5251\u6240\u5411", "href": "http://www.hatxt.com//0_22/17399276.html"}, {"chapter": "\u7b2c229\u7ae0 \u843d\u5e55", "href": "http://www.hatxt.com//0_22/17399278.html"}, {"chapter": "\u7b2c230\u7ae0 \u4ec6\u4ece\uff1f", "href": "http://www.hatxt.com//0_22/17399280.html"}, {"chapter": "\u7b2c231\u7ae0 \u65e0\u803b\u4e4b\u5c24", "href": "http://www.hatxt.com//0_22/17399282.html"}, {"chapter": "\u7b2c232\u7ae0 \u65e0\u60c5\u6740\u622e", "href": "http://www.hatxt.com//0_22/17399284.html"}, {"chapter": "\u7b2c233\u7ae0 \u4f55\u53f6\u7684\u673a\u7f18", "href": "http://www.hatxt.com//0_22/17399286.html"}, {"chapter": "\u7b2c234\u7ae0 \u592a\u6e05\u7389\u4f53\u7684\u4f20\u627f", "href": "http://www.hatxt.com//0_22/17399289.html"}, {"chapter": "\u7b2c235\u7ae0 \u5f88\u4eb2\u8fd1\uff1f", "href": "http://www.hatxt.com//0_22/17399291.html"}, {"chapter": "\u7b2c236\u7ae0 \u65e0\u803b\u4e0d\u8981\u8138", "href": "http://www.hatxt.com//0_22/17399293.html"}, {"chapter": "\u7b2c237\u7ae0 \u51fa\u624b", "href": "http://www.hatxt.com//0_22/17399295.html"}, {"chapter": "\u7b2c238\u7ae0 \u68a6\u60c5\u5165\u90aa\u9053\uff1f", "href": "http://www.hatxt.com//0_22/17399297.html"}, {"chapter": "\u7b2c239\u7ae0 \u68a6\u9b54", "href": "http://www.hatxt.com//0_22/17399299.html"}, {"chapter": "\u7b2c240\u7ae0 \u68a6\u9b47\u4e4b\u6cd5", "href": "http://www.hatxt.com//0_22/17399301.html"}, {"chapter": "\u7b2c241\u7ae0 \u6740\u622e", "href": "http://www.hatxt.com//0_22/17399304.html"}, {"chapter": "\u7b2c242\u7ae0 \u9668\u90aa\u5c9b", "href": "http://www.hatxt.com//0_22/17399306.html"}, {"chapter": "\u7b2c243\u7ae0 \u4e09\u773c\u9ed1\u9cb8", "href": "http://www.hatxt.com//0_22/17399309.html"}, {"chapter": "\u7b2c244\u7ae0 \u4e4c\u9e26\u5634", "href": "http://www.hatxt.com//0_22/17399312.html"}, {"chapter": "\u7b2c245\u7ae0 \u4f5b\u5ea6\u6709\u7f18\u4eba\uff0c\u9b54\u8bdb\u65e0\u5fc3\u8005", "href": "http://www.hatxt.com//0_22/17399314.html"}, {"chapter": "\u7b2c246\u7ae0 \u517b\u5c38", "href": "http://www.hatxt.com//0_22/17399317.html"}, {"chapter": "\u7b2c247\u7ae0 \u5c38\u90aa", "href": "http://www.hatxt.com//0_22/17399319.html"}, {"chapter": "\u7b2c248\u7ae0 \u6b7b\u4e0d\u7791\u76ee\u7684\u5bb9\u98ce", "href": "http://www.hatxt.com//0_22/17399322.html"}, {"chapter": "\u7b2c249\u7ae0 \u6218\u5c38\u90aa", "href": "http://www.hatxt.com//0_22/17399324.html"}, {"chapter": "\u7b2c250\u7ae0 \u7b2c\u4e8c\u9897\u9ed1\u77f3", "href": "http://www.hatxt.com//0_22/17399326.html"}, {"chapter": "\u7b2c251\u7ae0 \u5669\u68a6", "href": "http://www.hatxt.com//0_22/17399329.html"}, {"chapter": "\u7b2c252\u7ae0 \u8bdb\u4ed9\u5251\u6cd5", "href": "http://www.hatxt.com//0_22/17399332.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e94\u5341\u4e09\u7ae0 \u6012\u706b", "href": "http://www.hatxt.com//0_22/17399335.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e94\u5341\u56db\u7ae0 \u4e3b\u52a8\u51fa\u51fb", "href": "http://www.hatxt.com//0_22/17399338.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e94\u5341\u4e94\u7ae0 \u8840\u6f2b\u6234\u5bb6", "href": "http://www.hatxt.com//0_22/17399341.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e94\u5341\u516d\u7ae0 \u5f3a\u7edd", "href": "http://www.hatxt.com//0_22/17399344.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e94\u5341\u4e03\u7ae0 \u5c38\u9053\u6234\u96c4\u5929", "href": "http://www.hatxt.com//0_22/17399346.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e94\u5341\u516b\u7ae0 \u5206\u8d43", "href": "http://www.hatxt.com//0_22/17399349.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e94\u5341\u4e5d\u7ae0 \u4e07\u517d\u76f8\u9001", "href": "http://www.hatxt.com//0_22/17399351.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516d\u5341\u7ae0 \u98ce\u6ce2\u52a8", "href": "http://www.hatxt.com//0_22/17399353.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516d\u5341\u4e00\u7ae0 \u738b\u8005\u5f52\u6765", "href": "http://www.hatxt.com//0_22/17399356.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516d\u5341\u4e8c\u7ae0 \u8981\u706d\u8881\u6c0f\u5b97\u65cf", "href": "http://www.hatxt.com//0_22/17399358.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516d\u5341\u4e09\u7ae0 \u4e00\u5bb6\u56e2\u805a", "href": "http://www.hatxt.com//0_22/17399360.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516d\u5341\u56db\u7ae0 \u8df3\u6881\u5c0f\u4e11", "href": "http://www.hatxt.com//0_22/17399362.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516d\u5341\u4e94\u7ae0 \u641c\u9b42\u672f", "href": "http://www.hatxt.com//0_22/17399364.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516d\u5341\u516d\u7ae0 \u95ee\u7f6a\u79cb\u5170", "href": "http://www.hatxt.com//0_22/17399367.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516d\u5341\u4e03\u7ae0 \u5e1d\u90fd\u4e16\u5bb6\u6765\u4eba", "href": "http://www.hatxt.com//0_22/17399369.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516d\u5341\u516b\u7ae0 \u7f9e\u8fb1\u5929\u624d", "href": "http://www.hatxt.com//0_22/17399372.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516d\u5341\u4e5d\u7ae0 \u81ea\u5bfb\u6b7b\u8def", "href": "http://www.hatxt.com//0_22/17399374.html"}, {"chapter": "\u7b2c270\u7ae0 \u5927\u6218\u5c06\u8d77", "href": "http://www.hatxt.com//0_22/17399376.html"}, {"chapter": "\u7b2c271\u7ae0 \u767d\u5cf0\u6218\u83ab\u5faa", "href": "http://www.hatxt.com//0_22/17399379.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e03\u5341\u4e8c\u7ae0 \u4e71\u6218", "href": "http://www.hatxt.com//0_22/17399381.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e03\u5341\u4e09\u7ae0 \u4e0b\u4e00\u4e2a", "href": "http://www.hatxt.com//0_22/17399384.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e03\u5341\u56db\u7ae0 \u6740\u622e\u4fee\u7f57", "href": "http://www.hatxt.com//0_22/17399386.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e03\u5341\u4e94\u7ae0 \u83ab\u85cf\u950b", "href": "http://www.hatxt.com//0_22/17399388.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e03\u5341\u516d\u7ae0 \u620f\u5f04", "href": "http://www.hatxt.com//0_22/17399390.html"}, {"chapter": "\u7b2c277\u7ae0 \u65a9\u5c38\u9b41", "href": "http://www.hatxt.com//0_22/17399392.html"}, {"chapter": "\u7b2c278\u7ae0 \u706b\u7130\u5de8\u624b", "href": "http://www.hatxt.com//0_22/17399394.html"}, {"chapter": "\u7b2c279\u7ae0 \u7687\u5b50\u4f20\u8bdd", "href": "http://www.hatxt.com//0_22/17399396.html"}, {"chapter": "\u7b2c280\u7ae0 \u9ed1\u6697\u540e\u624b", "href": "http://www.hatxt.com//0_22/17399398.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516b\u5341\u4e00\u7ae0 \u6536\u670d\u5929\u5730\u7075\u706b", "href": "http://www.hatxt.com//0_22/17399400.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516b\u5341\u4e8c\u7ae0 \u6539\u9020\u4fee\u70bc\u5723\u5730", "href": "http://www.hatxt.com//0_22/17399402.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516b\u5341\u4e09\u7ae0 \u8d4f\u8d50", "href": "http://www.hatxt.com//0_22/17399404.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516b\u5341\u56db\u7ae0 \u5e1d\u90fd\u7687\u5b50", "href": "http://www.hatxt.com//0_22/17399406.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516b\u5341\u4e94\u7ae0 \u4e00\u62db\u8d25\u7fa4\u654c", "href": "http://www.hatxt.com//0_22/17399407.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516b\u5341\u516d\u7ae0 \u9b3c\u738b\u4e39", "href": "http://www.hatxt.com//0_22/17399408.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516b\u5341\u4e03\u7ae0 \u77f3\u98de\u4e91\u7684\u771f\u6b63\u8eab\u4efd", "href": "http://www.hatxt.com//0_22/17399410.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516b\u5341\u516b\u7ae0 \u77f3\u5bb6\u5fe0\u70c8", "href": "http://www.hatxt.com//0_22/17399412.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u516b\u5341\u4e5d\u7ae0 \u5206\u914d\u5929\u8840\u6c60", "href": "http://www.hatxt.com//0_22/17399414.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e5d\u5341\u7ae0 \u5929\u77f3\u5e1d\u56fd\u7684\u7687\u5b50 \u7b2c\u4e00\u66f4", "href": "http://www.hatxt.com//0_22/17399416.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e5d\u5341\u4e00\u7ae0 \u518d\u5165\u9752\u77f3\u79d8\u5883 \u7b2c\u4e8c\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399418.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e5d\u5341\u4e8c\u7ae0 \u795e\u517d\u91d1\u7fc5\u5927\u9e4f \u7b2c\u4e09\u66f4\uff01\uff01", "href": "http://www.hatxt.com//0_22/17399420.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e5d\u5341\u4e09\u7ae0 \u9cb2\u9e4f\u51cc\u9704 \u7b2c\u56db\u66f4\uff01\uff01\uff01", "href": "http://www.hatxt.com//0_22/17399422.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e5d\u5341\u56db\u7ae0 \u4ee5\u8eab\u9972\u9b54 \u7b2c\u4e00\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399424.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e5d\u5341\u4e94\u7ae0 \u5e1d\u90fd \u7b2c\u4e8c\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399426.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e5d\u5341\u516d\u7ae0 \u9752\u77f3\u8def \u7b2c\u4e09\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399428.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e5d\u5341\u4e03\u7ae0 \u5168\u90e8\u62cd\u7ffb \u7b2c\u56db\u66f4\uff01\uff01\uff01", "href": "http://www.hatxt.com//0_22/17399430.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e5d\u5341\u516b\u7ae0 \u7389\u73b2\u73d1 \u7b2c\u4e00\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399432.html"}, {"chapter": "\u7b2c\u4e8c\u767e\u4e5d\u5341\u4e5d\u7ae0 \u6253\u8d4c \u7b2c\u4e8c\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399434.html"}, {"chapter": "\u7b2c\u4e09\u767e\u7ae0 \u5e7b\u9b54\u679c \u7b2c\u4e09\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399436.html"}, {"chapter": "\u7b2c\u4e09\u767e\u96f6\u4e00\u7ae0 \u6768\u65e0\u53cc \u7b2c\u56db\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399438.html"}, {"chapter": "\u7b2c\u4e09\u767e\u96f6\u4e8c\u7ae0 \u8c08\u7b11\u5bf9\u654c \u7b2c\u4e00\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399440.html"}, {"chapter": "\u7b2c\u4e09\u767e\u96f6\u4e09\u7ae0 \u7ffb\u624b\u4e3a\u4e91 \u7b2c\u4e8c\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399442.html"}, {"chapter": "\u7b2c\u4e09\u767e\u96f6\u56db\u7ae0 \u9547\u538b\u5929\u624d \u7b2c\u4e09\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399445.html"}, {"chapter": "\u7b2c\u4e09\u767e\u96f6\u4e94\u7ae0 \u95ef\u9752\u77f3\u8def \u7b2c\u56db\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399447.html"}, {"chapter": "\u7b2c\u4e09\u767e\u96f6\u516d\u7ae0 \u5835\u5929\u624d\u4e4b\u8def \u7b2c\u4e00\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399451.html"}, {"chapter": "\u7b2c\u4e09\u767e\u96f6\u4e03\u7ae0 \u77f3\u7075 \u7b2c\u4e8c\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399454.html"}, {"chapter": "\u7b2c\u4e09\u767e\u96f6\u516b\u7ae0 \u5b66\u9662\u8001\u7956 \u7b2c\u4e00\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399457.html"}, {"chapter": "\u7b2c\u4e09\u767e\u96f6\u4e5d\u7ae0 \u6307\u70b9\u8001\u7956\uff1f \u7b2c\u4e8c\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399460.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e00\u5341\u7ae0 \u5404\u65b9\u53cd\u5e94 \u7b2c\u4e09\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399463.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e00\u5341\u4e00\u7ae0 \u89e3\u51b3\u68a6\u9b54 \u7b2c\u56db\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399466.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e00\u5341\u4e8c\u7ae0 \u51b2\u7a81 \u7b2c\u4e00\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399469.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e00\u5341\u4e09\u7ae0 \u4ed6\u662f\u5434\u9053\uff01 \u7b2c\u4e8c\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399471.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e00\u5341\u56db\u7ae0 \u811a\u8e29\u5929\u624d \u7b2c\u4e09\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399472.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e00\u5341\u4e94\u7ae0 \u80cc\u540e\u9634\u8c0b \u7b2c\u56db\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399473.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e00\u5341\u516d\u7ae0 \u6253\u5e9f\u4e0e\u6536\u670d", "href": "http://www.hatxt.com//0_22/17399476.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e00\u5341\u4e03\u7ae0 \u6307\u70b9\u4f60\u4eec", "href": "http://www.hatxt.com//0_22/17399478.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e00\u5341\u516b\u7ae0 \u8001\u7956\u7684\u9707\u60ca", "href": "http://www.hatxt.com//0_22/17399480.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e00\u5341\u4e5d\u7ae0 \u903c\u4e0a\u95e8\u6765", "href": "http://www.hatxt.com//0_22/17399482.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e8c\u5341\u7ae0 \u9488\u950b\u76f8\u5bf9", "href": "http://www.hatxt.com//0_22/17399484.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e8c\u5341\u4e00\u7ae0 \u5434\u9053\u5927\u5e08\uff1f", "href": "http://www.hatxt.com//0_22/17399486.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e8c\u5341\u4e8c\u7ae0 \u7834\u5929\u621f\u4e0e\u9752\u94dc\u6218\u6208", "href": "http://www.hatxt.com//0_22/17399487.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e8c\u5341\u4e09\u7ae0 \u5f53\u5e74\u51f6\u624b", "href": "http://www.hatxt.com//0_22/17399490.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e8c\u5341\u56db\u7ae0 \u82b1\u5bb6", "href": "http://www.hatxt.com//0_22/17399492.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e8c\u5341\u4e94\u7ae0 \u65e0\u4eba\u53ef\u4e3a\u96be\u4f60", "href": "http://www.hatxt.com//0_22/17399494.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e8c\u5341\u516d\u7ae0 \u60f3\u8981\u5207\u78cb\uff1f", "href": "http://www.hatxt.com//0_22/17399496.html"}, {"chapter": "\u7b2c327\u7ae0 \u9010\u51fa\u5bb6\u65cf", "href": "http://www.hatxt.com//0_22/17399498.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e8c\u5341\u516b\u7ae0 \u5927\u95f9\u82b1\u5bb6 \u4eca\u5929\u56db\u66f4", "href": "http://www.hatxt.com//0_22/17399500.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e8c\u5341\u4e5d\u7ae0 \u5fa1\u517d\u5c71\u5e84 \u7b2c\u4e8c\u66f4\u4e86", "href": "http://www.hatxt.com//0_22/17399502.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e09\u5341\u7ae0 \u5927\u957f\u8001\u7684\u5a01\u540d \u7b2c\u4e09\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399504.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e09\u5341\u4e00\u7ae0 \u6211\u4e0d\u559c\u6b22\u5f00\u73a9\u7b11 \u7b2c\u56db\u66f4\uff01", "href": "http://www.hatxt.com//0_22/17399506.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e09\u5341\u4e8c\u7ae0 \u8bf4\u5e9f\u5c31\u5e9f", "href": "http://www.hatxt.com//0_22/17399508.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e09\u5341\u4e09\u7ae0 \u5f3a\u52bf\u5230\u5e95", "href": "http://www.hatxt.com//0_22/17399510.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e09\u5341\u56db\u7ae0 \u82b1\u5bb6\u8bf8\u7956", "href": "http://www.hatxt.com//0_22/17399512.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e09\u5341\u4e94\u7ae0 \u82b1\u6ee1\u56ed", "href": "http://www.hatxt.com//0_22/17399514.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e09\u5341\u516d\u7ae0 \u7687\u752b\u5251\u6b87\u7684\u6545\u53cb\uff1f", "href": "http://www.hatxt.com//0_22/17399516.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e09\u5341\u4e03\u7ae0 \u98ce\u96e8\u6b32\u6765 \u8865\u66f4", "href": "http://www.hatxt.com//0_22/17399518.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e09\u5341\u516b\u7ae0 \u5815\u843d\u4e4b\u57ce", "href": "http://www.hatxt.com//0_22/17399520.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e09\u5341\u4e5d\u7ae0 \u6697\u5f71", "href": "http://www.hatxt.com//0_22/17399522.html"}, {"chapter": "\u7b2c\u4e09\u767e\u56db\u5341\u7ae0 \u4e3a\u6211\u6548\u547d", "href": "http://www.hatxt.com//0_22/17399524.html"}, {"chapter": "\u7b2c\u4e09\u767e\u56db\u5341\u4e00\u7ae0 \u5815\u843d\u53e4\u5821", "href": "http://www.hatxt.com//0_22/17399526.html"}, {"chapter": "\u7b2c\u4e09\u767e\u56db\u5341\u4e8c\u7ae0 \u903c\u4f60\u8ba9\u8def", "href": "http://www.hatxt.com//0_22/17399527.html"}, {"chapter": "\u7b2c\u4e09\u767e\u56db\u5341\u4e09\u7ae0 \u5351\u52a3\u7684\u6267\u6cd5\u8005", "href": "http://www.hatxt.com//0_22/17399528.html"}, {"chapter": "\u7b2c\u4e09\u767e\u56db\u5341\u56db\u7ae0 \u77f3\u684c\u4e0e\u77f3\u68fa", "href": "http://www.hatxt.com//0_22/17399529.html"}, {"chapter": "\u7b2c\u4e09\u767e\u56db\u5341\u4e94\u7ae0 \u77f3\u68fa\u8001\u9b54", "href": "http://www.hatxt.com//0_22/17399530.html"}, {"chapter": "\u7b2c\u4e09\u767e\u56db\u5341\u516d\u7ae0 \u77f3\u68fa\u5185", "href": "http://www.hatxt.com//0_22/17399531.html"}, {"chapter": "\u7b2c\u4e09\u767e\u56db\u5341\u4e03\u7ae0 \u6267\u638c\u6740\u4f10 \u4eca\u5929\u7206\u53d1", "href": "http://www.hatxt.com//0_22/17399532.html"}, {"chapter": "\u7b2c\u4e09\u767e\u56db\u5341\u516b\u7ae0 \u5168\u90e8\u8bdb\u6740 \u7b2c\u4e8c\u66f4", "href": "http://www.hatxt.com//0_22/17399533.html"}, {"chapter": "\u7b2c\u4e09\u767e\u56db\u5341\u4e5d\u7ae0 \u6b7b\u4ea1\u9b3c\u86db\u3001\u5e7d\u51a5\u8840\u8760 \u7b2c\u4e09\u66f4", "href": "http://www.hatxt.com//0_22/17399534.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e94\u5341\u7ae0 \u65e0\u89c6\u89c4\u5219 \u7b2c\u56db\u66f4", "href": "http://www.hatxt.com//0_22/17399535.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e94\u5341\u4e00\u7ae0 \u8427\u5bb6 \u7b2c\u4e94\u66f4", "href": "http://www.hatxt.com//0_22/17399536.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e94\u5341\u4e8c\u7ae0 \u8c08\u7b11\u95f4\u5bf9\u654c \u7b2c\u516d\u66f4", "href": "http://www.hatxt.com//0_22/17399537.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e94\u5341\u4e09\u7ae0 \u6253\u8138 \u7b2c\u4e03\u66f4", "href": "http://www.hatxt.com//0_22/17399538.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e94\u5341\u56db\u7ae0 \u4e0e\u8427\u5bb6\u6e05\u7b97", "href": "http://www.hatxt.com//0_22/17399539.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e94\u5341\u4e94\u7ae0 \u98ce\u66b4\u964d\u4e34", "href": "http://www.hatxt.com//0_22/17399540.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e94\u5341\u516d\u7ae0 \u5c0f\u53cb\u8bf7\u7559\u6b65", "href": "http://www.hatxt.com//0_22/17399541.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e94\u5341\u4e03\u7ae0 \u4e8b\u4e86\u62c2\u8863\u53bb", "href": "http://www.hatxt.com//0_22/17399542.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e94\u5341\u516b\u7ae0 \u6012\u4e91\u9ca4", "href": "http://www.hatxt.com//0_22/17399543.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e94\u5341\u4e5d\u7ae0 \u53f8\u9a6c\u7389\u513f", "href": "http://www.hatxt.com//0_22/17399544.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516d\u5341\u7ae0 \u566c\u5fc3\u86ca", "href": "http://www.hatxt.com//0_22/17399545.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516d\u5341\u4e00\u7ae0 \u62e6\u8def\u4e11\u7537", "href": "http://www.hatxt.com//0_22/17399546.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516d\u5341\u4e8c\u7ae0 \u9b54\u9053\u7eaa\u6d9b \u4eca\u65e5\u5341\u66f4\u7206\u53d1\uff01\uff01\uff01", "href": "http://www.hatxt.com//0_22/17399547.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516d\u5341\u4e09\u7ae0 \u4e00\u6307\u5e9f\u4e00\u4eba \u7b2c\u4e8c\u66f4\u4e86", "href": "http://www.hatxt.com//0_22/17399548.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516d\u5341\u56db\u7ae0 \u518d\u5165\u82b1\u5bb6", "href": "http://www.hatxt.com//0_22/17399549.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516d\u5341\u4e94\u7ae0 \u6ed4\u5929\u6012\u706b \u7b2c\u56db\u66f4", "href": "http://www.hatxt.com//0_22/17399550.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516d\u5341\u516d\u7ae0 \u7528\u6bd2\u7684\u8001\u7956 \u7b2c\u4e94\u66f4", "href": "http://www.hatxt.com//0_22/17399551.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516d\u5341\u4e03\u7ae0 \u77f3\u6218 \u7b2c\u516d\u66f4\u4e86", "href": "http://www.hatxt.com//0_22/17399552.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516d\u5341\u516b\u7ae0 \u4e0a\u95e8\u903c\u8feb \u7b2c\u4e03\u66f4", "href": "http://www.hatxt.com//0_22/17399553.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516d\u5341\u4e5d\u7ae0 \u751f\u6b7b\u7531\u6211\u638c\uff0c\u5929\u5730\u5948\u6211\u4f55 \u7b2c\u516b\u66f4", "href": "http://www.hatxt.com//0_22/17399554.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e03\u5341\u7ae0 \u4f55\u4e3a\u5929\u624d\uff1f \u7b2c\u4e5d\u66f4", "href": "http://www.hatxt.com//0_22/17399555.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e03\u5341\u4e00\u7ae0 \u82e6\u6bd2\u8001\u4eba \u7b2c\u5341\u66f4", "href": "http://www.hatxt.com//0_22/17399556.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e03\u5341\u4e8c\u7ae0 \u6bd2\u87d2\u8001\u9b3c \u9664\u5915\u4f9d\u65e7\u7206\u53d1", "href": "http://www.hatxt.com//0_22/17399557.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e03\u5341\u4e09\u7ae0 \u666e\u901a\u7684\u77f3\u6218 \u7b2c\u4e8c\u66f4", "href": "http://www.hatxt.com//0_22/17399558.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e03\u5341\u56db\u7ae0 \u5143\u5a74\u5883\uff1f \u7b2c\u4e09\u66f4", "href": "http://www.hatxt.com//0_22/17399559.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e03\u5341\u4e94\u7ae0 \u5de8\u5927\u9707\u52a8 \u7b2c\u56db\u66f4", "href": "http://www.hatxt.com//0_22/17399560.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e03\u5341\u516d\u7ae0 \u6768\u5bb6\u7684\u56f0\u5883 \u7b2c\u4e94\u66f4", "href": "http://www.hatxt.com//0_22/17399561.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e03\u5341\u4e03\u7ae0 \u903c\u8feb \u7b2c\u516d\u66f4", "href": "http://www.hatxt.com//0_22/17399562.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e03\u5341\u516b\u7ae0 \u56a3\u5f20\u5230\u5e95 \u7b2c\u4e03\u66f4", "href": "http://www.hatxt.com//0_22/17399563.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e03\u5341\u4e5d\u7ae0 \u552f\u6218\u800c\u5df2", "href": "http://www.hatxt.com//0_22/17399564.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516b\u5341\u7ae0 \u5143\u5a74\u5927\u9635", "href": "http://www.hatxt.com//0_22/17399565.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516b\u5341\u4e00\u7ae0 \u5e73\u5b9a\u6768\u5bb6", "href": "http://www.hatxt.com//0_22/17399566.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516b\u5341\u4e8c\u7ae0 \u4e0e\u4f60\u7ed3\u76df", "href": "http://www.hatxt.com//0_22/17399567.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516b\u5341\u4e09\u7ae0 \u58f0\u52bf\u6d69\u8361", "href": "http://www.hatxt.com//0_22/17399569.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516b\u5341\u56db\u7ae0 \u5815\u843d\u4e4b\u57ce\u5927\u4e71", "href": "http://www.hatxt.com//0_22/17399571.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516b\u5341\u4e94\u7ae0 \u6697\u5f71\u7684\u56f0\u5883", "href": "http://www.hatxt.com//0_22/17399574.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516b\u5341\u516d\u7ae0 \u6536\u670d", "href": "http://www.hatxt.com//0_22/17399576.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516b\u5341\u4e03\u7ae0 \u6728\u76d2\u4e4b\u4e2d", "href": "http://www.hatxt.com//0_22/17399578.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516b\u5341\u516b\u7ae0 \u4fee\u70bc\u5ba4\u4e4b\u4e89", "href": "http://www.hatxt.com//0_22/17399580.html"}, {"chapter": "\u7b2c\u4e09\u767e\u516b\u5341\u4e5d\u7ae0 \u6076\u6bd2", "href": "http://www.hatxt.com//0_22/17399582.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e5d\u5341\u7ae0 \u6740", "href": "http://www.hatxt.com//0_22/17399585.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e5d\u5341\u4e00\u7ae0 \u4e94\u7687\u5b50\u6709\u8bf7", "href": "http://www.hatxt.com//0_22/17399587.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e5d\u5341\u4e8c\u7ae0 \u4e5d\u8d24\u7687", "href": "http://www.hatxt.com//0_22/17399589.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e5d\u5341\u4e09\u7ae0 \u6797\u96f7", "href": "http://www.hatxt.com//0_22/17399591.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e5d\u5341\u56db\u7ae0 \u6254\u4f60\u4e0b\u53bb", "href": "http://www.hatxt.com//0_22/17399593.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e5d\u5341\u4e94\u7ae0 \u7fa4\u82f1\u835f\u8403", "href": "http://www.hatxt.com//0_22/17399595.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e5d\u5341\u516d\u7ae0 \u4e94\u7687\u5b50\u8d75\u5929\u6daf", "href": "http://www.hatxt.com//0_22/17399597.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e5d\u5341\u4e03\u7ae0 \u6311\u8845", "href": "http://www.hatxt.com//0_22/17399599.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e5d\u5341\u516b\u7ae0 \u53ea\u624b\u9547\u538b", "href": "http://www.hatxt.com//0_22/17399601.html"}, {"chapter": "\u7b2c\u4e09\u767e\u4e5d\u5341\u4e5d\u7ae0 \u8bbd\u523a\u4e94\u7687\u5b50", "href": "http://www.hatxt.com//0_22/17399603.html"}, {"chapter": "\u7b2c\u56db\u767e\u7ae0 \u638c\u63b4\u5929\u624d", "href": "http://www.hatxt.com//0_22/17399605.html"}, {"chapter": "\u7b2c\u56db\u767e\u96f6\u4e00\u7ae0 \u5230\u5e95\u662f\u8c01\uff1f", "href": "http://www.hatxt.com//0_22/17399607.html"}, {"chapter": "\u7b2c\u56db\u767e\u96f6\u4e8c\u7ae0 \u66b4\u98ce\u96e8\u6765\u4e34\u524d", "href": "http://www.hatxt.com//0_22/17399609.html"}, {"chapter": "\u7b2c\u56db\u767e\u96f6\u4e09\u7ae0 \u6b7b\u795e\u7684\u7b49\u5f85", "href": "http://www.hatxt.com//0_22/17399611.html"}, {"chapter": "\u7b2c\u56db\u767e\u96f6\u56db\u7ae0 \u6740\u9635", "href": "http://www.hatxt.com//0_22/17399613.html"}, {"chapter": "\u7b2c\u56db\u767e\u96f6\u4e94\u7ae0 \u5251\u9b54\u4e4b\u9053", "href": "http://www.hatxt.com//0_22/17399615.html"}, {"chapter": "\u7b2c\u56db\u767e\u96f6\u516d\u7ae0 \u5927\u5f00\u6740\u6212", "href": "http://www.hatxt.com//0_22/17399616.html"}, {"chapter": "\u7b2c\u56db\u767e\u96f6\u4e03\u7ae0 \u8840\u67d3\u5c71\u8c37", "href": "http://www.hatxt.com//0_22/17399619.html"}, {"chapter": "\u7b2c\u56db\u767e\u96f6\u516b\u7ae0 \u8f69\u7136\u5927\u6ce2", "href": "http://www.hatxt.com//0_22/17399621.html"}, {"chapter": "\u7b2c\u56db\u767e\u96f6\u4e5d\u7ae0 \u6768\u5bb6\u548c\u82b1\u5bb6\u7684\u6050\u60e7", "href": "http://www.hatxt.com//0_22/17399622.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e00\u5341\u7ae0 \u8ffd\u98ce\u4e66\u751f", "href": "http://www.hatxt.com//0_22/17399624.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e00\u5341\u4e00\u7ae0 \u767d\u9e64\u7684\u6d88\u606f", "href": "http://www.hatxt.com//0_22/17399626.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e00\u5341\u4e8c\u7ae0 \u4e0d\u6b22\u8fce\uff1f", "href": "http://www.hatxt.com//0_22/17399628.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e00\u5341\u4e09\u7ae0 \u5bc6\u8c0b", "href": "http://www.hatxt.com//0_22/17399630.html"}, {"chapter": "\u7b2c414\u7ae0 \u9009\u77f3", "href": "http://www.hatxt.com//0_22/17399632.html"}, {"chapter": "\u7b2c415\u7ae0 \u62a2\u77f3\uff1f", "href": "http://www.hatxt.com//0_22/17803877.html"}, {"chapter": "\u7b2c416\u7ae0 \u9b3c\u7891", "href": "http://www.hatxt.com//0_22/17803878.html"}, {"chapter": "\u7b2c417\u7ae0 \u9b3c\u51a2", "href": "http://www.hatxt.com//0_22/17803879.html"}, {"chapter": "\u7b2c418\u7ae0 \u975e\u51e1\u5c38\u4f53", "href": "http://www.hatxt.com//0_22/17803880.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e00\u5341\u4e5d\u7ae0 \u51a5\u5c06\u4e7e\u6208", "href": "http://www.hatxt.com//0_22/17803881.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e8c\u5341\u7ae0 \u4e5d\u9634\u7075\u6cc9\u6c34", "href": "http://www.hatxt.com//0_22/17803882.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e8c\u5341\u4e00\u7ae0 \u9b42\u5370", "href": "http://www.hatxt.com//0_22/17803883.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e8c\u5341\u4e8c\u7ae0 \u5c01\u5370\u9b42\u51a2", "href": "http://www.hatxt.com//0_22/17803884.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e8c\u5341\u4e09\u7ae0 \u9b54\u5934\u5f52\u6765", "href": "http://www.hatxt.com//0_22/18229440.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e8c\u5341\u56db\u7ae0 \u6597\u77f3\u5927\u4f1a", "href": "http://www.hatxt.com//0_22/18229442.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e8c\u5341\u4e94\u7ae0 \u77f3\u4e2d\u8574\u9b54\u6c14", "href": "http://www.hatxt.com//0_22/18229445.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e8c\u5341\u516d\u7ae0 \u5143\u5a74\u5883\u7684\u5e0c\u671b", "href": "http://www.hatxt.com//0_22/18229447.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e8c\u5341\u4e03\u7ae0 \u7ffb\u8138", "href": "http://www.hatxt.com//0_22/18229450.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e8c\u5341\u516b\u7ae0 \u7099\u624b\u53ef\u70ed \u8865\u66f4", "href": "http://www.hatxt.com//0_22/18229453.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e8c\u5341\u4e5d\u7ae0 \u7687\u65cf\u7684\u6761\u4ef6", "href": "http://www.hatxt.com//0_22/18229456.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u7ae0 \u4e07\u53e4\u9b54\u4f53\u7a81\u7834", "href": "http://www.hatxt.com//0_22/18229458.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u4e00\u7ae0 \u9648\u6d69\u5c71", "href": "http://www.hatxt.com//0_22/18229461.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u4e8c\u7ae0 \u77f3\u98de\u4e91\u7684\u60b2\u4f24", "href": "http://www.hatxt.com//0_22/18229463.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u4e09\u7ae0 \u8840\u6b66\u679c", "href": "http://www.hatxt.com//0_22/18229465.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u56db\u7ae0 \u7f57\u5239\u8840\u8109", "href": "http://www.hatxt.com//0_22/18229467.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u4e94\u7ae0 \u8d64\u708e\u864e\u8d32\u519b", "href": "http://www.hatxt.com//0_22/18229469.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u516d\u7ae0 \u4ec0\u4e48\u624d\u53eb\u8349\u7387", "href": "http://www.hatxt.com//0_22/18229470.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u4e03\u7ae0 \u5982\u6b64\u8349\u7387", "href": "http://www.hatxt.com//0_22/18229472.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u516b\u7ae0 \u5c55\u9732\u7360\u7259", "href": "http://www.hatxt.com//0_22/18420655.html"}, {"chapter": "\u7b2c\u56db\u767e\u4e09\u5341\u4e5d\u7ae0 \u70bc\u836f\u6740\u4f10\u672f", "href": "http://www.hatxt.com//0_22/18420657.html"}, {"chapter": "\u7b2c\u56db\u767e\u56db\u5341\u7ae0 \u55dc\u8840\u4e27\u795e\u4e39", "href": "http://www.hatxt.com//0_22/18420660.html"}, {"chapter": "\u7b2c\u56db\u767e\u56db\u5341\u4e00\u7ae0 \u5e1d\u90fd\u4e4b\u5916", "href": "http://www.hatxt.com//0_22/18420663.html"}, {"chapter": "\u7b2c\u56db\u767e\u56db\u5341\u4e8c\u7ae0 \u5927\u6218\u5f00\u59cb", "href": "http://www.hatxt.com//0_22/18420664.html"}]}

修改:

print(json.dumps(result))  # 错误写法
print(json.dumps(result, ensure_ascii=False))  # 正确写法

重新输出结果:

{"content": [{"chapter": "第四百四十二章 大战开始", "href": "http://www.hatxt.com//0_22/18420664.html"}, {"chapter": "第四百四十一章 帝都之外", "href": "http://www.hatxt.com//0_22/18420663.html"}, {"chapter": "第四百四十章 嗜血丧神丹", "href": "http://www.hatxt.com//0_22/18420660.html"}, {"chapter": "第四百三十九章 炼药杀伐术", "href": "http://www.hatxt.com//0_22/18420657.html"}, {"chapter": "第四百三十八章 展露獠牙", "href": "http://www.hatxt.com//0_22/18420655.html"}, {"chapter": "第四百三十七章 如此草率", "href": "http://www.hatxt.com//0_22/18229472.html"}, {"chapter": "第四百三十六章 什么才叫草率", "href": "http://www.hatxt.com//0_22/18229470.html"}, {"chapter": "第四百三十五章 赤炎虎贲军", "href": "http://www.hatxt.com//0_22/18229469.html"}, {"chapter": "第四百三十四章 罗刹血脉", "href": "http://www.hatxt.com//0_22/18229467.html"}, {"chapter": "第一章 修罗重生", "href": "http://www.hatxt.com//0_22/8098.html"}, {"chapter": "第二章 万古魔体", "href": "http://www.hatxt.com//0_22/8099.html"}, {"chapter": "第三章 别忍着,气大伤身", "href": "http://www.hatxt.com//0_22/8100.html"}, {"chapter": "第四章 聚源丹之争", "href": "http://www.hatxt.com//0_22/8101.html"}, {"chapter": "第五章 战吴阳", "href": "http://www.hatxt.com//0_22/8102.html"}, {"chapter": "第六章 瞠目结舌", "href": "http://www.hatxt.com//0_22/8103.html"}, {"chapter": "第七章 神秘的师尊", "href": "http://www.hatxt.com//0_22/8104.html"}, {"chapter": "第八章 深夜危机", "href": "http://www.hatxt.com//0_22/8105.html"}, {"chapter": "第九章 天玄山脉", "href": "http://www.hatxt.com//0_22/8106.html"}, {"chapter": "第十章 家族的重视", "href": "http://www.hatxt.com//0_22/8107.html"}, {"chapter": "第十一章 山脉历练", "href": "http://www.hatxt.com//0_22/8108.html"}, {"chapter": "第十二章 杀心", "href": "http://www.hatxt.com//0_22/8109.html"}, {"chapter": "第十三章 碧眼金狮", "href": "http://www.hatxt.com//0_22/8110.html"}, {"chapter": "第十四章 降服", "href": "http://www.hatxt.com//0_22/8111.html"}, {"chapter": "第十五章 血脉进阶", "href": "http://www.hatxt.com//0_22/8112.html"}, {"chapter": "第十六章 强买强卖", "href": "http://www.hatxt.com//0_22/8113.html"}, {"chapter": "第十七章 兽潮", "href": "http://www.hatxt.com//0_22/8114.html"}, {"chapter": "第十八章 问心路", "href": "http://www.hatxt.com//0_22/8115.html"}, {"chapter": "第十九章 灵变考验", "href": "http://www.hatxt.com//0_22/8116.html"}, {"chapter": "第二十章 天玄散人", "href": "http://www.hatxt.com//0_22/8117.html"}, {"chapter": "第二十一章 夺舍", "href": "http://www.hatxt.com//0_22/8118.html"}, {"chapter": "第二十二章 淬体灵乳", "href": "http://www.hatxt.com//0_22/8119.html"}, {"chapter": "第二十三章 再遇林星妍", "href": "http://www.hatxt.com//0_22/8120.html"}, {"chapter": "第二十四章 你的命,我收定了", "href": "http://www.hatxt.com//0_22/8121.html"}, {"chapter": "第二十五章 交手", "href": "http://www.hatxt.com//0_22/8122.html"}, {"chapter": "第二十六章 修炼", "href": "http://www.hatxt.com//0_22/8123.html"}, {"chapter": "第二十七章 聚宝楼", "href": "http://www.hatxt.com//0_22/8124.html"}, {"chapter": "第二十八章 拍卖会", "href": "http://www.hatxt.com//0_22/8125.html"}, {"chapter": "第二十九章 第二张残图", "href": "http://www.hatxt.com//0_22/8126.html"}, {"chapter": "第三十章 竞拍", "href": "http://www.hatxt.com//0_22/4856408.html"}, {"chapter": "第三十一章 族会前突破", "href": "http://www.hatxt.com//0_22/4856409.html"}, {"chapter": "第三十二章 族会", "href": "http://www.hatxt.com//0_22/4856410.html"}, {"chapter": "第三十三章 吴阳暴走", "href": "http://www.hatxt.com//0_22/4856411.html"}, {"chapter": "第三十四章 卑鄙", "href": "http://www.hatxt.com//0_22/4856412.html"}, {"chapter": "第三十五章 惊全场", "href": "http://www.hatxt.com//0_22/4856413.html"}, {"chapter": "第三十六章 决赛一战", "href": "http://www.hatxt.com//0_22/4856414.html"}, {"chapter": "第三十七章 夺魁", "href": "http://www.hatxt.com//0_22/4856415.html"}, {"chapter": "第三十八章 飞云大比", "href": "http://www.hatxt.com//0_22/5891850.html"}, {"chapter": "第三十九章 逼迫", "href": "http://www.hatxt.com//0_22/5891851.html"}, {"chapter": "第四十章 质问", "href": "http://www.hatxt.com//0_22/6912960.html"}, {"chapter": "第四十一章 强势的老爷子", "href": "http://www.hatxt.com//0_22/6912961.html"}, {"chapter": "第四十二章 偷袭", "href": "http://www.hatxt.com//0_22/6912962.html"}, {"chapter": "第四十三章 休书", "href": "http://www.hatxt.com//0_22/6912963.html"}, {"chapter": "第四十四章 阴谋", "href": "http://www.hatxt.com//0_22/7058619.html"}, {"chapter": "第四十五章 少女", "href": "http://www.hatxt.com//0_22/7316323.html"}, {"chapter": "第四十六章 王凯", "href": "http://www.hatxt.com//0_22/7429677.html"}, {"chapter": "第四十七章 杀人", "href": "http://www.hatxt.com//0_22/7429678.html"}, {"chapter": "第四十八章 太清玉体", "href": "http://www.hatxt.com//0_22/7527778.html"}, {"chapter": "第49章 交流会", "href": "http://www.hatxt.com//0_22/14488076.html"}, {"chapter": "第50章 炼药鼎", "href": "http://www.hatxt.com//0_22/14488077.html"}, {"chapter": "第51章 赌注", "href": "http://www.hatxt.com//0_22/14488078.html"}, {"chapter": "第52章 炼丹", "href": "http://www.hatxt.com//0_22/14488079.html"}, {"chapter": "第53章 胜负", "href": "http://www.hatxt.com//0_22/14488080.html"}, {"chapter": "第54章 阴险小人", "href": "http://www.hatxt.com//0_22/14488081.html"}, {"chapter": "第55章 我让你走了吗", "href": "http://www.hatxt.com//0_22/14488082.html"}, {"chapter": "第56章 杀无赦", "href": "http://www.hatxt.com//0_22/14488083.html"}, {"chapter": "第57章 断子绝孙", "href": "http://www.hatxt.com//0_22/14488084.html"}, {"chapter": "第58章 出头", "href": "http://www.hatxt.com//0_22/14488085.html"}, {"chapter": "第59章 闹僵", "href": "http://www.hatxt.com//0_22/14488086.html"}, {"chapter": "第60章 兄妹", "href": "http://www.hatxt.com//0_22/14488087.html"}, {"chapter": "第61章 家族来历", "href": "http://www.hatxt.com//0_22/14488088.html"}, {"chapter": "第62章 建木神树", "href": "http://www.hatxt.com//0_22/14488089.html"}, {"chapter": "第63章 解风情", "href": "http://www.hatxt.com//0_22/14488090.html"}, {"chapter": "第64章 吴氏宗族", "href": "http://www.hatxt.com//0_22/14488091.html"}, {"chapter": "第65章 赌斗", "href": "http://www.hatxt.com//0_22/14488092.html"}, {"chapter": "第66章 入筑基", "href": "http://www.hatxt.com//0_22/14488093.html"}, {"chapter": "第67章 阴谋", "href": "http://www.hatxt.com//0_22/14488094.html"}, {"chapter": "第68章 不可思议", "href": "http://www.hatxt.com//0_22/14488095.html"}, {"chapter": "第69章 夺权", "href": "http://www.hatxt.com//0_22/14488096.html"}, {"chapter": "第70章 平乱", "href": "http://www.hatxt.com//0_22/14488097.html"}, {"chapter": "第71章 杀", "href": "http://www.hatxt.com//0_22/14488098.html"}, {"chapter": "第72章 武会", "href": "http://www.hatxt.com//0_22/14488099.html"}, {"chapter": "第73章 吴磊", "href": "http://www.hatxt.com//0_22/14488100.html"}, {"chapter": "第74章 战", "href": "http://www.hatxt.com//0_22/14488101.html"}, {"chapter": "第75章 妖之血脉", "href": "http://www.hatxt.com//0_22/14488102.html"}, {"chapter": "第76章 危机", "href": "http://www.hatxt.com//0_22/14488103.html"}, {"chapter": "第77章 交易", "href": "http://www.hatxt.com//0_22/14488104.html"}, {"chapter": "第78章 生死抉择", "href": "http://www.hatxt.com//0_22/14488105.html"}, {"chapter": "第79章 灭族", "href": "http://www.hatxt.com//0_22/14488106.html"}, {"chapter": "第80章 绝境", "href": "http://www.hatxt.com//0_22/14488107.html"}, {"chapter": "第81章 何必呢", "href": "http://www.hatxt.com//0_22/14488108.html"}, {"chapter": "第82章 神秘女子", "href": "http://www.hatxt.com//0_22/14488109.html"}, {"chapter": "第83章 反噬", "href": "http://www.hatxt.com//0_22/14488110.html"}, {"chapter": "第84章 紫嫣", "href": "http://www.hatxt.com//0_22/14488111.html"}, {"chapter": "第85章 皆杀", "href": "http://www.hatxt.com//0_22/14488112.html"}, {"chapter": "第86章 重创的吴道", "href": "http://www.hatxt.com//0_22/14488113.html"}, {"chapter": "第87章 求死", "href": "http://www.hatxt.com//0_22/14488114.html"}, {"chapter": "第88章 剑者", "href": "http://www.hatxt.com//0_22/14488115.html"}, {"chapter": "第89章 强大的白峰", "href": "http://www.hatxt.com//0_22/14488116.html"}, {"chapter": "第90章 药蕴阳体", "href": "http://www.hatxt.com//0_22/14488117.html"}, {"chapter": "第91章 疯狂的白峰", "href": "http://www.hatxt.com//0_22/14488118.html"}, {"chapter": "第92章 诛杀云天", "href": "http://www.hatxt.com//0_22/14488119.html"}, {"chapter": "第93章 噩耗", "href": "http://www.hatxt.com//0_22/14488120.html"}, {"chapter": "第94章 灭族", "href": "http://www.hatxt.com//0_22/14488121.html"}, {"chapter": "第95章 称霸", "href": "http://www.hatxt.com//0_22/14488122.html"}, {"chapter": "第96章 不知死活", "href": "http://www.hatxt.com//0_22/14488123.html"}, {"chapter": "第97章 花棘之吻", "href": "http://www.hatxt.com//0_22/14488124.html"}, {"chapter": "第98章 何叶历练", "href": "http://www.hatxt.com//0_22/14488125.html"}, {"chapter": "第99章 前往天运城", "href": "http://www.hatxt.com//0_22/14488126.html"}, {"chapter": "第100章 挑衅", "href": "http://www.hatxt.com//0_22/14488127.html"}, {"chapter": "第101章 跋扈女子", "href": "http://www.hatxt.com//0_22/14488128.html"}, {"chapter": "第102章 教训", "href": "http://www.hatxt.com//0_22/14488129.html"}, {"chapter": "第103章 王氏宗族", "href": "http://www.hatxt.com//0_22/14488130.html"}, {"chapter": "第104章 麻烦上门", "href": "http://www.hatxt.com//0_22/14488131.html"}, {"chapter": "第105章 威慑", "href": "http://www.hatxt.com//0_22/14488132.html"}, {"chapter": "第106章 无耻", "href": "http://www.hatxt.com//0_22/14488133.html"}, {"chapter": "第107章 强势的紫嫣", "href": "http://www.hatxt.com//0_22/14488134.html"}, {"chapter": "第108章 天运赌城", "href": "http://www.hatxt.com//0_22/14488135.html"}, {"chapter": "第109章 角斗区", "href": "http://www.hatxt.com//0_22/14488136.html"}, {"chapter": "第110章 人神共愤石飞云", "href": "http://www.hatxt.com//0_22/14488137.html"}, {"chapter": "第111章 猜丹", "href": "http://www.hatxt.com//0_22/14488138.html"}, {"chapter": "第112章 难以启齿的赌约", "href": "http://www.hatxt.com//0_22/14488139.html"}, {"chapter": "第113章 收获", "href": "http://www.hatxt.com//0_22/14488140.html"}, {"chapter": "第114章 炼丹术", "href": "http://www.hatxt.com//0_22/14488141.html"}, {"chapter": "第115章 闹够了没有", "href": "http://www.hatxt.com//0_22/14488142.html"}, {"chapter": "第116章 谁敢与我一赌", "href": "http://www.hatxt.com//0_22/14488143.html"}, {"chapter": "第117章 脸绿", "href": "http://www.hatxt.com//0_22/14488144.html"}, {"chapter": "第118章 蕴魂丹", "href": "http://www.hatxt.com//0_22/14488145.html"}, {"chapter": "第119章 天运城诸天才", "href": "http://www.hatxt.com//0_22/14488146.html"}, {"chapter": "第120章 古城遗迹", "href": "http://www.hatxt.com//0_22/14488147.html"}, {"chapter": "第121章 封灵土", "href": "http://www.hatxt.com//0_22/14488148.html"}, {"chapter": "第122章 身份大白", "href": "http://www.hatxt.com//0_22/14488149.html"}, {"chapter": "第123章 激烈竞争", "href": "http://www.hatxt.com//0_22/14488150.html"}, {"chapter": "第124章 拉拢", "href": "http://www.hatxt.com//0_22/14488151.html"}, {"chapter": "第125章 运筹帷幄", "href": "http://www.hatxt.com//0_22/14488152.html"}, {"chapter": "第126章 天才齐聚", "href": "http://www.hatxt.com//0_22/14488153.html"}, {"chapter": "第127章 上门挑衅", "href": "http://www.hatxt.com//0_22/14488154.html"}, {"chapter": "第128章 韩冲的威胁", "href": "http://www.hatxt.com//0_22/14488155.html"}, {"chapter": "第129章 虐天才", "href": "http://www.hatxt.com//0_22/14488156.html"}, {"chapter": "第130章 筑基丹、极阳丹", "href": "http://www.hatxt.com//0_22/14488157.html"}, {"chapter": "第131章 送上门来", "href": "http://www.hatxt.com//0_22/14488158.html"}, {"chapter": "第132章 三年前的第一天才", "href": "http://www.hatxt.com//0_22/14488159.html"}, {"chapter": "第133章 灵异", "href": "http://www.hatxt.com//0_22/14488160.html"}, {"chapter": "第134章 血咒", "href": "http://www.hatxt.com//0_22/14488161.html"}, {"chapter": "第135章 嗜血者杨欣", "href": "http://www.hatxt.com//0_22/14488162.html"}, {"chapter": "第136章 旖旎", "href": "http://www.hatxt.com//0_22/14488163.html"}, {"chapter": "第137章 唤醒", "href": "http://www.hatxt.com//0_22/14488164.html"}, {"chapter": "第138章 突破", "href": "http://www.hatxt.com//0_22/14488165.html"}, {"chapter": "第139章 梦", "href": "http://www.hatxt.com//0_22/14488166.html"}, {"chapter": "第140章 凑齐材料", "href": "http://www.hatxt.com//0_22/14488167.html"}, {"chapter": "第141章 赌丹台炼丹", "href": "http://www.hatxt.com//0_22/14488168.html"}, {"chapter": "第142章 阴谋", "href": "http://www.hatxt.com//0_22/14488169.html"}, {"chapter": "第143章 夜色袭杀", "href": "http://www.hatxt.com//0_22/14488170.html"}, {"chapter": "第144章 生死危机", "href": "http://www.hatxt.com//0_22/14488171.html"}, {"chapter": "第145章 成魔", "href": "http://www.hatxt.com//0_22/14488172.html"}, {"chapter": "第146章 吴道陨落?", "href": "http://www.hatxt.com//0_22/14488173.html"}, {"chapter": "第147章 灵变皆现", "href": "http://www.hatxt.com//0_22/14488174.html"}, {"chapter": "第148章 对峙", "href": "http://www.hatxt.com//0_22/14488175.html"}, {"chapter": "第149章 秘辛", "href": "http://www.hatxt.com//0_22/14488176.html"}, {"chapter": "第150章 养剑之地", "href": "http://www.hatxt.com//0_22/14488177.html"}, {"chapter": "第151章 剑名天残", "href": "http://www.hatxt.com//0_22/14488178.html"}, {"chapter": "第152章 归来", "href": "http://www.hatxt.com//0_22/14488179.html"}, {"chapter": "第153章 柔情", "href": "http://www.hatxt.com//0_22/14488180.html"}, {"chapter": "第154章 安排", "href": "http://www.hatxt.com//0_22/14488181.html"}, {"chapter": "第155章 深山", "href": "http://www.hatxt.com//0_22/14488182.html"}, {"chapter": "第156章 遗迹开启", "href": "http://www.hatxt.com//0_22/14488183.html"}, {"chapter": "第157章 再见龙涎花", "href": "http://www.hatxt.com//0_22/14488184.html"}, {"chapter": "第158章 地魔", "href": "http://www.hatxt.com//0_22/14488185.html"}, {"chapter": "第159章 收服", "href": "http://www.hatxt.com//0_22/14488186.html"}, {"chapter": "第160章 筑基六重", "href": "http://www.hatxt.com//0_22/14488187.html"}, {"chapter": "第161章 天才军团", "href": "http://www.hatxt.com//0_22/14488188.html"}, {"chapter": "第162章 强势出手", "href": "http://www.hatxt.com//0_22/14488189.html"}, {"chapter": "第163章 路遇韩冲", "href": "http://www.hatxt.com//0_22/14488190.html"}, {"chapter": "第164章 击杀", "href": "http://www.hatxt.com//0_22/14488191.html"}, {"chapter": "第165章 扔出去", "href": "http://www.hatxt.com//0_22/14488192.html"}, {"chapter": "第166章 针对", "href": "http://www.hatxt.com//0_22/14488193.html"}, {"chapter": "第167章 战群狼", "href": "http://www.hatxt.com//0_22/14488194.html"}, {"chapter": "第168章 击杀", "href": "http://www.hatxt.com//0_22/14488195.html"}, {"chapter": "第169章 吴磊和朱建峰", "href": "http://www.hatxt.com//0_22/14488196.html"}, {"chapter": "第170章 危机四伏", "href": "http://www.hatxt.com//0_22/14488197.html"}, {"chapter": "第171章 四翼炎龙", "href": "http://www.hatxt.com//0_22/14488198.html"}, {"chapter": "第172章 合作", "href": "http://www.hatxt.com//0_22/14488199.html"}, {"chapter": "第173章 一把钥匙", "href": "http://www.hatxt.com//0_22/14488200.html"}, {"chapter": "第174章 琳琅满目", "href": "http://www.hatxt.com//0_22/14488201.html"}, {"chapter": "第175章 妖兽化形", "href": "http://www.hatxt.com//0_22/14488202.html"}, {"chapter": "第176章 石飞云重创", "href": "http://www.hatxt.com//0_22/14488203.html"}, {"chapter": "第177章 我是老二", "href": "http://www.hatxt.com//0_22/14488204.html"}, {"chapter": "第178章 坦白", "href": "http://www.hatxt.com//0_22/14488205.html"}, {"chapter": "第179章 魔晶", "href": "http://www.hatxt.com//0_22/14488206.html"}, {"chapter": "第180章 大婚", "href": "http://www.hatxt.com//0_22/14488207.html"}, {"chapter": "第181章 大闹婚礼", "href": "http://www.hatxt.com//0_22/14488208.html"}, {"chapter": "第182章 睥睨", "href": "http://www.hatxt.com//0_22/14488209.html"}, {"chapter": "第183章 替死鬼", "href": "http://www.hatxt.com//0_22/14488210.html"}, {"chapter": "第184章 四翼炎龙现身", "href": "http://www.hatxt.com//0_22/14488211.html"}, {"chapter": "第185章 欺人太甚", "href": "http://www.hatxt.com//0_22/14488212.html"}, {"chapter": "第186章 战容风", "href": "http://www.hatxt.com//0_22/14488213.html"}, {"chapter": "第187章 通心花换命", "href": "http://www.hatxt.com//0_22/14488214.html"}, {"chapter": "第188章 地龙谷", "href": "http://www.hatxt.com//0_22/14488215.html"}, {"chapter": "第189章 鬼眼尸蛇", "href": "http://www.hatxt.com//0_22/14488216.html"}, {"chapter": "第190章 猎龙者", "href": "http://www.hatxt.com//0_22/14488217.html"}, {"chapter": "第191章 刚出龙潭,又陷虎穴", "href": "http://www.hatxt.com//0_22/14841327.html"}, {"chapter": "第192章 鬼眼尸蛇王", "href": "http://www.hatxt.com//0_22/14841328.html"}, {"chapter": "第193章 至阳之地", "href": "http://www.hatxt.com//0_22/14841329.html"}, {"chapter": "第194章 远古战场", "href": "http://www.hatxt.com//0_22/14841330.html"}, {"chapter": "第195章 龙血池", "href": "http://www.hatxt.com//0_22/14841331.html"}, {"chapter": "第196章 天残出世", "href": "http://www.hatxt.com//0_22/14841332.html"}, {"chapter": "第197章 突破", "href": "http://www.hatxt.com//0_22/14841333.html"}, {"chapter": "第198章 变强的四翼炎龙", "href": "http://www.hatxt.com//0_22/14841334.html"}, {"chapter": "第199章 赤阳果", "href": "http://www.hatxt.com//0_22/14841335.html"}, {"chapter": "第200章 坐山观虎斗", "href": "http://www.hatxt.com//0_22/14841336.html"}, {"chapter": "第201章 虚与委蛇", "href": "http://www.hatxt.com//0_22/14841337.html"}, {"chapter": "第202章 出手", "href": "http://www.hatxt.com//0_22/14841338.html"}, {"chapter": "第203章 合作", "href": "http://www.hatxt.com//0_22/14841339.html"}, {"chapter": "第204章 赤龙峰", "href": "http://www.hatxt.com//0_22/14841340.html"}, {"chapter": "第205章 刺杀", "href": "http://www.hatxt.com//0_22/14841341.html"}, {"chapter": "第206章 南山", "href": "http://www.hatxt.com//0_22/14841342.html"}, {"chapter": "第207章 聒噪的南家", "href": "http://www.hatxt.com//0_22/14841343.html"}, {"chapter": "第208章 暗中的敌人", "href": "http://www.hatxt.com//0_22/14841344.html"}, {"chapter": "第209章 上山", "href": "http://www.hatxt.com//0_22/14911080.html"}, {"chapter": "第210章 恐怖围杀", "href": "http://www.hatxt.com//0_22/14911081.html"}, {"chapter": "第211章 莫道", "href": "http://www.hatxt.com//0_22/14911082.html"}, {"chapter": "第212章 死亡危机", "href": "http://www.hatxt.com//0_22/14911083.html"}, {"chapter": "第213章 送尔等往生", "href": "http://www.hatxt.com//0_22/15036048.html"}, {"chapter": "第214章 结丹境", "href": "http://www.hatxt.com//0_22/15036049.html"}, {"chapter": "第215章 太初魔经", "href": "http://www.hatxt.com//0_22/15036050.html"}, {"chapter": "第216章 叶婷有难", "href": "http://www.hatxt.com//0_22/15036051.html"}, {"chapter": "第217章 跋扈", "href": "http://www.hatxt.com//0_22/15036052.html"}, {"chapter": "第218章 教训", "href": "http://www.hatxt.com//0_22/15036053.html"}, {"chapter": "第219章 叶家危机", "href": "http://www.hatxt.com//0_22/15036054.html"}, {"chapter": "第220章 欺人太甚", "href": "http://www.hatxt.com//0_22/15036055.html"}, {"chapter": "第221章 赤焰鼎", "href": "http://www.hatxt.com//0_22/15105903.html"}, {"chapter": "第222章 丹成", "href": "http://www.hatxt.com//0_22/15105904.html"}, {"chapter": "第223章 焚灵丹", "href": "http://www.hatxt.com//0_22/15105905.html"}, {"chapter": "第224章 南如山", "href": "http://www.hatxt.com//0_22/15105906.html"}, {"chapter": "第225章 诸敌联手", "href": "http://www.hatxt.com//0_22/15105907.html"}, {"chapter": "第226章 灭族危机", "href": "http://www.hatxt.com//0_22/15105908.html"}, {"chapter": "第227章 大战爆发", "href": "http://www.hatxt.com//0_22/17399273.html"}, {"chapter": "第228章 长剑所向", "href": "http://www.hatxt.com//0_22/17399276.html"}, {"chapter": "第229章 落幕", "href": "http://www.hatxt.com//0_22/17399278.html"}, {"chapter": "第230章 仆从?", "href": "http://www.hatxt.com//0_22/17399280.html"}, {"chapter": "第231章 无耻之尤", "href": "http://www.hatxt.com//0_22/17399282.html"}, {"chapter": "第232章 无情杀戮", "href": "http://www.hatxt.com//0_22/17399284.html"}, {"chapter": "第233章 何叶的机缘", "href": "http://www.hatxt.com//0_22/17399286.html"}, {"chapter": "第234章 太清玉体的传承", "href": "http://www.hatxt.com//0_22/17399289.html"}, {"chapter": "第235章 很亲近?", "href": "http://www.hatxt.com//0_22/17399291.html"}, {"chapter": "第236章 无耻不要脸", "href": "http://www.hatxt.com//0_22/17399293.html"}, {"chapter": "第237章 出手", "href": "http://www.hatxt.com//0_22/17399295.html"}, {"chapter": "第238章 梦情入邪道?", "href": "http://www.hatxt.com//0_22/17399297.html"}, {"chapter": "第239章 梦魔", "href": "http://www.hatxt.com//0_22/17399299.html"}, {"chapter": "第240章 梦魇之法", "href": "http://www.hatxt.com//0_22/17399301.html"}, {"chapter": "第241章 杀戮", "href": "http://www.hatxt.com//0_22/17399304.html"}, {"chapter": "第242章 陨邪岛", "href": "http://www.hatxt.com//0_22/17399306.html"}, {"chapter": "第243章 三眼黑鲸", "href": "http://www.hatxt.com//0_22/17399309.html"}, {"chapter": "第244章 乌鸦嘴", "href": "http://www.hatxt.com//0_22/17399312.html"}, {"chapter": "第245章 佛度有缘人,魔诛无心者", "href": "http://www.hatxt.com//0_22/17399314.html"}, {"chapter": "第246章 养尸", "href": "http://www.hatxt.com//0_22/17399317.html"}, {"chapter": "第247章 尸邪", "href": "http://www.hatxt.com//0_22/17399319.html"}, {"chapter": "第248章 死不瞑目的容风", "href": "http://www.hatxt.com//0_22/17399322.html"}, {"chapter": "第249章 战尸邪", "href": "http://www.hatxt.com//0_22/17399324.html"}, {"chapter": "第250章 第二颗黑石", "href": "http://www.hatxt.com//0_22/17399326.html"}, {"chapter": "第251章 噩梦", "href": "http://www.hatxt.com//0_22/17399329.html"}, {"chapter": "第252章 诛仙剑法", "href": "http://www.hatxt.com//0_22/17399332.html"}, {"chapter": "第二百五十三章 怒火", "href": "http://www.hatxt.com//0_22/17399335.html"}, {"chapter": "第二百五十四章 主动出击", "href": "http://www.hatxt.com//0_22/17399338.html"}, {"chapter": "第二百五十五章 血漫戴家", "href": "http://www.hatxt.com//0_22/17399341.html"}, {"chapter": "第二百五十六章 强绝", "href": "http://www.hatxt.com//0_22/17399344.html"}, {"chapter": "第二百五十七章 尸道戴雄天", "href": "http://www.hatxt.com//0_22/17399346.html"}, {"chapter": "第二百五十八章 分赃", "href": "http://www.hatxt.com//0_22/17399349.html"}, {"chapter": "第二百五十九章 万兽相送", "href": "http://www.hatxt.com//0_22/17399351.html"}, {"chapter": "第二百六十章 风波动", "href": "http://www.hatxt.com//0_22/17399353.html"}, {"chapter": "第二百六十一章 王者归来", "href": "http://www.hatxt.com//0_22/17399356.html"}, {"chapter": "第二百六十二章 要灭袁氏宗族", "href": "http://www.hatxt.com//0_22/17399358.html"}, {"chapter": "第二百六十三章 一家团聚", "href": "http://www.hatxt.com//0_22/17399360.html"}, {"chapter": "第二百六十四章 跳梁小丑", "href": "http://www.hatxt.com//0_22/17399362.html"}, {"chapter": "第二百六十五章 搜魂术", "href": "http://www.hatxt.com//0_22/17399364.html"}, {"chapter": "第二百六十六章 问罪秋兰", "href": "http://www.hatxt.com//0_22/17399367.html"}, {"chapter": "第二百六十七章 帝都世家来人", "href": "http://www.hatxt.com//0_22/17399369.html"}, {"chapter": "第二百六十八章 羞辱天才", "href": "http://www.hatxt.com//0_22/17399372.html"}, {"chapter": "第二百六十九章 自寻死路", "href": "http://www.hatxt.com//0_22/17399374.html"}, {"chapter": "第270章 大战将起", "href": "http://www.hatxt.com//0_22/17399376.html"}, {"chapter": "第271章 白峰战莫循", "href": "http://www.hatxt.com//0_22/17399379.html"}, {"chapter": "第二百七十二章 乱战", "href": "http://www.hatxt.com//0_22/17399381.html"}, {"chapter": "第二百七十三章 下一个", "href": "http://www.hatxt.com//0_22/17399384.html"}, {"chapter": "第二百七十四章 杀戮修罗", "href": "http://www.hatxt.com//0_22/17399386.html"}, {"chapter": "第二百七十五章 莫藏锋", "href": "http://www.hatxt.com//0_22/17399388.html"}, {"chapter": "第二百七十六章 戏弄", "href": "http://www.hatxt.com//0_22/17399390.html"}, {"chapter": "第277章 斩尸魁", "href": "http://www.hatxt.com//0_22/17399392.html"}, {"chapter": "第278章 火焰巨手", "href": "http://www.hatxt.com//0_22/17399394.html"}, {"chapter": "第279章 皇子传话", "href": "http://www.hatxt.com//0_22/17399396.html"}, {"chapter": "第280章 黑暗后手", "href": "http://www.hatxt.com//0_22/17399398.html"}, {"chapter": "第二百八十一章 收服天地灵火", "href": "http://www.hatxt.com//0_22/17399400.html"}, {"chapter": "第二百八十二章 改造修炼圣地", "href": "http://www.hatxt.com//0_22/17399402.html"}, {"chapter": "第二百八十三章 赏赐", "href": "http://www.hatxt.com//0_22/17399404.html"}, {"chapter": "第二百八十四章 帝都皇子", "href": "http://www.hatxt.com//0_22/17399406.html"}, {"chapter": "第二百八十五章 一招败群敌", "href": "http://www.hatxt.com//0_22/17399407.html"}, {"chapter": "第二百八十六章 鬼王丹", "href": "http://www.hatxt.com//0_22/17399408.html"}, {"chapter": "第二百八十七章 石飞云的真正身份", "href": "http://www.hatxt.com//0_22/17399410.html"}, {"chapter": "第二百八十八章 石家忠烈", "href": "http://www.hatxt.com//0_22/17399412.html"}, {"chapter": "第二百八十九章 分配天血池", "href": "http://www.hatxt.com//0_22/17399414.html"}, {"chapter": "第二百九十章 天石帝国的皇子 第一更", "href": "http://www.hatxt.com//0_22/17399416.html"}, {"chapter": "第二百九十一章 再入青石秘境 第二更!", "href": "http://www.hatxt.com//0_22/17399418.html"}, {"chapter": "第二百九十二章 神兽金翅大鹏 第三更!!", "href": "http://www.hatxt.com//0_22/17399420.html"}, {"chapter": "第二百九十三章 鲲鹏凌霄 第四更!!!", "href": "http://www.hatxt.com//0_22/17399422.html"}, {"chapter": "第二百九十四章 以身饲魔 第一更!", "href": "http://www.hatxt.com//0_22/17399424.html"}, {"chapter": "第二百九十五章 帝都 第二更!", "href": "http://www.hatxt.com//0_22/17399426.html"}, {"chapter": "第二百九十六章 青石路 第三更!", "href": "http://www.hatxt.com//0_22/17399428.html"}, {"chapter": "第二百九十七章 全部拍翻 第四更!!!", "href": "http://www.hatxt.com//0_22/17399430.html"}, {"chapter": "第二百九十八章 玉玲珑 第一更!", "href": "http://www.hatxt.com//0_22/17399432.html"}, {"chapter": "第二百九十九章 打赌 第二更!", "href": "http://www.hatxt.com//0_22/17399434.html"}, {"chapter": "第三百章 幻魔果 第三更!", "href": "http://www.hatxt.com//0_22/17399436.html"}, {"chapter": "第三百零一章 杨无双 第四更!", "href": "http://www.hatxt.com//0_22/17399438.html"}, {"chapter": "第三百零二章 谈笑对敌 第一更!", "href": "http://www.hatxt.com//0_22/17399440.html"}, {"chapter": "第三百零三章 翻手为云 第二更!", "href": "http://www.hatxt.com//0_22/17399442.html"}, {"chapter": "第三百零四章 镇压天才 第三更!", "href": "http://www.hatxt.com//0_22/17399445.html"}, {"chapter": "第三百零五章 闯青石路 第四更!", "href": "http://www.hatxt.com//0_22/17399447.html"}, {"chapter": "第三百零六章 堵天才之路 第一更!", "href": "http://www.hatxt.com//0_22/17399451.html"}, {"chapter": "第三百零七章 石灵 第二更!", "href": "http://www.hatxt.com//0_22/17399454.html"}, {"chapter": "第三百零八章 学院老祖 第一更!", "href": "http://www.hatxt.com//0_22/17399457.html"}, {"chapter": "第三百零九章 指点老祖? 第二更!", "href": "http://www.hatxt.com//0_22/17399460.html"}, {"chapter": "第三百一十章 各方反应 第三更!", "href": "http://www.hatxt.com//0_22/17399463.html"}, {"chapter": "第三百一十一章 解决梦魔 第四更!", "href": "http://www.hatxt.com//0_22/17399466.html"}, {"chapter": "第三百一十二章 冲突 第一更!", "href": "http://www.hatxt.com//0_22/17399469.html"}, {"chapter": "第三百一十三章 他是吴道! 第二更!", "href": "http://www.hatxt.com//0_22/17399471.html"}, {"chapter": "第三百一十四章 脚踩天才 第三更!", "href": "http://www.hatxt.com//0_22/17399472.html"}, {"chapter": "第三百一十五章 背后阴谋 第四更!", "href": "http://www.hatxt.com//0_22/17399473.html"}, {"chapter": "第三百一十六章 打废与收服", "href": "http://www.hatxt.com//0_22/17399476.html"}, {"chapter": "第三百一十七章 指点你们", "href": "http://www.hatxt.com//0_22/17399478.html"}, {"chapter": "第三百一十八章 老祖的震惊", "href": "http://www.hatxt.com//0_22/17399480.html"}, {"chapter": "第三百一十九章 逼上门来", "href": "http://www.hatxt.com//0_22/17399482.html"}, {"chapter": "第三百二十章 针锋相对", "href": "http://www.hatxt.com//0_22/17399484.html"}, {"chapter": "第三百二十一章 吴道大师?", "href": "http://www.hatxt.com//0_22/17399486.html"}, {"chapter": "第三百二十二章 破天戟与青铜战戈", "href": "http://www.hatxt.com//0_22/17399487.html"}, {"chapter": "第三百二十三章 当年凶手", "href": "http://www.hatxt.com//0_22/17399490.html"}, {"chapter": "第三百二十四章 花家", "href": "http://www.hatxt.com//0_22/17399492.html"}, {"chapter": "第三百二十五章 无人可为难你", "href": "http://www.hatxt.com//0_22/17399494.html"}, {"chapter": "第三百二十六章 想要切磋?", "href": "http://www.hatxt.com//0_22/17399496.html"}, {"chapter": "第327章 逐出家族", "href": "http://www.hatxt.com//0_22/17399498.html"}, {"chapter": "第三百二十八章 大闹花家 今天四更", "href": "http://www.hatxt.com//0_22/17399500.html"}, {"chapter": "第三百二十九章 御兽山庄 第二更了", "href": "http://www.hatxt.com//0_22/17399502.html"}, {"chapter": "第三百三十章 大长老的威名 第三更!", "href": "http://www.hatxt.com//0_22/17399504.html"}, {"chapter": "第三百三十一章 我不喜欢开玩笑 第四更!", "href": "http://www.hatxt.com//0_22/17399506.html"}, {"chapter": "第三百三十二章 说废就废", "href": "http://www.hatxt.com//0_22/17399508.html"}, {"chapter": "第三百三十三章 强势到底", "href": "http://www.hatxt.com//0_22/17399510.html"}, {"chapter": "第三百三十四章 花家诸祖", "href": "http://www.hatxt.com//0_22/17399512.html"}, {"chapter": "第三百三十五章 花满园", "href": "http://www.hatxt.com//0_22/17399514.html"}, {"chapter": "第三百三十六章 皇甫剑殇的故友?", "href": "http://www.hatxt.com//0_22/17399516.html"}, {"chapter": "第三百三十七章 风雨欲来 补更", "href": "http://www.hatxt.com//0_22/17399518.html"}, {"chapter": "第三百三十八章 堕落之城", "href": "http://www.hatxt.com//0_22/17399520.html"}, {"chapter": "第三百三十九章 暗影", "href": "http://www.hatxt.com//0_22/17399522.html"}, {"chapter": "第三百四十章 为我效命", "href": "http://www.hatxt.com//0_22/17399524.html"}, {"chapter": "第三百四十一章 堕落古堡", "href": "http://www.hatxt.com//0_22/17399526.html"}, {"chapter": "第三百四十二章 逼你让路", "href": "http://www.hatxt.com//0_22/17399527.html"}, {"chapter": "第三百四十三章 卑劣的执法者", "href": "http://www.hatxt.com//0_22/17399528.html"}, {"chapter": "第三百四十四章 石桌与石棺", "href": "http://www.hatxt.com//0_22/17399529.html"}, {"chapter": "第三百四十五章 石棺老魔", "href": "http://www.hatxt.com//0_22/17399530.html"}, {"chapter": "第三百四十六章 石棺内", "href": "http://www.hatxt.com//0_22/17399531.html"}, {"chapter": "第三百四十七章 执掌杀伐 今天爆发", "href": "http://www.hatxt.com//0_22/17399532.html"}, {"chapter": "第三百四十八章 全部诛杀 第二更", "href": "http://www.hatxt.com//0_22/17399533.html"}, {"chapter": "第三百四十九章 死亡鬼蛛、幽冥血蝠 第三更", "href": "http://www.hatxt.com//0_22/17399534.html"}, {"chapter": "第三百五十章 无视规则 第四更", "href": "http://www.hatxt.com//0_22/17399535.html"}, {"chapter": "第三百五十一章 萧家 第五更", "href": "http://www.hatxt.com//0_22/17399536.html"}, {"chapter": "第三百五十二章 谈笑间对敌 第六更", "href": "http://www.hatxt.com//0_22/17399537.html"}, {"chapter": "第三百五十三章 打脸 第七更", "href": "http://www.hatxt.com//0_22/17399538.html"}, {"chapter": "第三百五十四章 与萧家清算", "href": "http://www.hatxt.com//0_22/17399539.html"}, {"chapter": "第三百五十五章 风暴降临", "href": "http://www.hatxt.com//0_22/17399540.html"}, {"chapter": "第三百五十六章 小友请留步", "href": "http://www.hatxt.com//0_22/17399541.html"}, {"chapter": "第三百五十七章 事了拂衣去", "href": "http://www.hatxt.com//0_22/17399542.html"}, {"chapter": "第三百五十八章 怒云鲤", "href": "http://www.hatxt.com//0_22/17399543.html"}, {"chapter": "第三百五十九章 司马玉儿", "href": "http://www.hatxt.com//0_22/17399544.html"}, {"chapter": "第三百六十章 噬心蛊", "href": "http://www.hatxt.com//0_22/17399545.html"}, {"chapter": "第三百六十一章 拦路丑男", "href": "http://www.hatxt.com//0_22/17399546.html"}, {"chapter": "第三百六十二章 魔道纪涛 今日十更爆发!!!", "href": "http://www.hatxt.com//0_22/17399547.html"}, {"chapter": "第三百六十三章 一指废一人 第二更了", "href": "http://www.hatxt.com//0_22/17399548.html"}, {"chapter": "第三百六十四章 再入花家", "href": "http://www.hatxt.com//0_22/17399549.html"}, {"chapter": "第三百六十五章 滔天怒火 第四更", "href": "http://www.hatxt.com//0_22/17399550.html"}, {"chapter": "第三百六十六章 用毒的老祖 第五更", "href": "http://www.hatxt.com//0_22/17399551.html"}, {"chapter": "第三百六十七章 石战 第六更了", "href": "http://www.hatxt.com//0_22/17399552.html"}, {"chapter": "第三百六十八章 上门逼迫 第七更", "href": "http://www.hatxt.com//0_22/17399553.html"}, {"chapter": "第三百六十九章 生死由我掌,天地奈我何 第八更", "href": "http://www.hatxt.com//0_22/17399554.html"}, {"chapter": "第三百七十章 何为天才? 第九更", "href": "http://www.hatxt.com//0_22/17399555.html"}, {"chapter": "第三百七十一章 苦毒老人 第十更", "href": "http://www.hatxt.com//0_22/17399556.html"}, {"chapter": "第三百七十二章 毒蟒老鬼 除夕依旧爆发", "href": "http://www.hatxt.com//0_22/17399557.html"}, {"chapter": "第三百七十三章 普通的石战 第二更", "href": "http://www.hatxt.com//0_22/17399558.html"}, {"chapter": "第三百七十四章 元婴境? 第三更", "href": "http://www.hatxt.com//0_22/17399559.html"}, {"chapter": "第三百七十五章 巨大震动 第四更", "href": "http://www.hatxt.com//0_22/17399560.html"}, {"chapter": "第三百七十六章 杨家的困境 第五更", "href": "http://www.hatxt.com//0_22/17399561.html"}, {"chapter": "第三百七十七章 逼迫 第六更", "href": "http://www.hatxt.com//0_22/17399562.html"}, {"chapter": "第三百七十八章 嚣张到底 第七更", "href": "http://www.hatxt.com//0_22/17399563.html"}, {"chapter": "第三百七十九章 唯战而已", "href": "http://www.hatxt.com//0_22/17399564.html"}, {"chapter": "第三百八十章 元婴大阵", "href": "http://www.hatxt.com//0_22/17399565.html"}, {"chapter": "第三百八十一章 平定杨家", "href": "http://www.hatxt.com//0_22/17399566.html"}, {"chapter": "第三百八十二章 与你结盟", "href": "http://www.hatxt.com//0_22/17399567.html"}, {"chapter": "第三百八十三章 声势浩荡", "href": "http://www.hatxt.com//0_22/17399569.html"}, {"chapter": "第三百八十四章 堕落之城大乱", "href": "http://www.hatxt.com//0_22/17399571.html"}, {"chapter": "第三百八十五章 暗影的困境", "href": "http://www.hatxt.com//0_22/17399574.html"}, {"chapter": "第三百八十六章 收服", "href": "http://www.hatxt.com//0_22/17399576.html"}, {"chapter": "第三百八十七章 木盒之中", "href": "http://www.hatxt.com//0_22/17399578.html"}, {"chapter": "第三百八十八章 修炼室之争", "href": "http://www.hatxt.com//0_22/17399580.html"}, {"chapter": "第三百八十九章 恶毒", "href": "http://www.hatxt.com//0_22/17399582.html"}, {"chapter": "第三百九十章 杀", "href": "http://www.hatxt.com//0_22/17399585.html"}, {"chapter": "第三百九十一章 五皇子有请", "href": "http://www.hatxt.com//0_22/17399587.html"}, {"chapter": "第三百九十二章 九贤皇", "href": "http://www.hatxt.com//0_22/17399589.html"}, {"chapter": "第三百九十三章 林雷", "href": "http://www.hatxt.com//0_22/17399591.html"}, {"chapter": "第三百九十四章 扔你下去", "href": "http://www.hatxt.com//0_22/17399593.html"}, {"chapter": "第三百九十五章 群英荟萃", "href": "http://www.hatxt.com//0_22/17399595.html"}, {"chapter": "第三百九十六章 五皇子赵天涯", "href": "http://www.hatxt.com//0_22/17399597.html"}, {"chapter": "第三百九十七章 挑衅", "href": "http://www.hatxt.com//0_22/17399599.html"}, {"chapter": "第三百九十八章 只手镇压", "href": "http://www.hatxt.com//0_22/17399601.html"}, {"chapter": "第三百九十九章 讽刺五皇子", "href": "http://www.hatxt.com//0_22/17399603.html"}, {"chapter": "第四百章 掌掴天才", "href": "http://www.hatxt.com//0_22/17399605.html"}, {"chapter": "第四百零一章 到底是谁?", "href": "http://www.hatxt.com//0_22/17399607.html"}, {"chapter": "第四百零二章 暴风雨来临前", "href": "http://www.hatxt.com//0_22/17399609.html"}, {"chapter": "第四百零三章 死神的等待", "href": "http://www.hatxt.com//0_22/17399611.html"}, {"chapter": "第四百零四章 杀阵", "href": "http://www.hatxt.com//0_22/17399613.html"}, {"chapter": "第四百零五章 剑魔之道", "href": "http://www.hatxt.com//0_22/17399615.html"}, {"chapter": "第四百零六章 大开杀戒", "href": "http://www.hatxt.com//0_22/17399616.html"}, {"chapter": "第四百零七章 血染山谷", "href": "http://www.hatxt.com//0_22/17399619.html"}, {"chapter": "第四百零八章 轩然大波", "href": "http://www.hatxt.com//0_22/17399621.html"}, {"chapter": "第四百零九章 杨家和花家的恐惧", "href": "http://www.hatxt.com//0_22/17399622.html"}, {"chapter": "第四百一十章 追风书生", "href": "http://www.hatxt.com//0_22/17399624.html"}, {"chapter": "第四百一十一章 白鹤的消息", "href": "http://www.hatxt.com//0_22/17399626.html"}, {"chapter": "第四百一十二章 不欢迎?", "href": "http://www.hatxt.com//0_22/17399628.html"}, {"chapter": "第四百一十三章 密谋", "href": "http://www.hatxt.com//0_22/17399630.html"}, {"chapter": "第414章 选石", "href": "http://www.hatxt.com//0_22/17399632.html"}, {"chapter": "第415章 抢石?", "href": "http://www.hatxt.com//0_22/17803877.html"}, {"chapter": "第416章 鬼碑", "href": "http://www.hatxt.com//0_22/17803878.html"}, {"chapter": "第417章 鬼冢", "href": "http://www.hatxt.com//0_22/17803879.html"}, {"chapter": "第418章 非凡尸体", "href": "http://www.hatxt.com//0_22/17803880.html"}, {"chapter": "第四百一十九章 冥将乾戈", "href": "http://www.hatxt.com//0_22/17803881.html"}, {"chapter": "第四百二十章 九阴灵泉水", "href": "http://www.hatxt.com//0_22/17803882.html"}, {"chapter": "第四百二十一章 魂印", "href": "http://www.hatxt.com//0_22/17803883.html"}, {"chapter": "第四百二十二章 封印魂冢", "href": "http://www.hatxt.com//0_22/17803884.html"}, {"chapter": "第四百二十三章 魔头归来", "href": "http://www.hatxt.com//0_22/18229440.html"}, {"chapter": "第四百二十四章 斗石大会", "href": "http://www.hatxt.com//0_22/18229442.html"}, {"chapter": "第四百二十五章 石中蕴魔气", "href": "http://www.hatxt.com//0_22/18229445.html"}, {"chapter": "第四百二十六章 元婴境的希望", "href": "http://www.hatxt.com//0_22/18229447.html"}, {"chapter": "第四百二十七章 翻脸", "href": "http://www.hatxt.com//0_22/18229450.html"}, {"chapter": "第四百二十八章 炙手可热 补更", "href": "http://www.hatxt.com//0_22/18229453.html"}, {"chapter": "第四百二十九章 皇族的条件", "href": "http://www.hatxt.com//0_22/18229456.html"}, {"chapter": "第四百三十章 万古魔体突破", "href": "http://www.hatxt.com//0_22/18229458.html"}, {"chapter": "第四百三十一章 陈浩山", "href": "http://www.hatxt.com//0_22/18229461.html"}, {"chapter": "第四百三十二章 石飞云的悲伤", "href": "http://www.hatxt.com//0_22/18229463.html"}, {"chapter": "第四百三十三章 血武果", "href": "http://www.hatxt.com//0_22/18229465.html"}, {"chapter": "第四百三十四章 罗刹血脉", "href": "http://www.hatxt.com//0_22/18229467.html"}, {"chapter": "第四百三十五章 赤炎虎贲军", "href": "http://www.hatxt.com//0_22/18229469.html"}, {"chapter": "第四百三十六章 什么才叫草率", "href": "http://www.hatxt.com//0_22/18229470.html"}, {"chapter": "第四百三十七章 如此草率", "href": "http://www.hatxt.com//0_22/18229472.html"}, {"chapter": "第四百三十八章 展露獠牙", "href": "http://www.hatxt.com//0_22/18420655.html"}, {"chapter": "第四百三十九章 炼药杀伐术", "href": "http://www.hatxt.com//0_22/18420657.html"}, {"chapter": "第四百四十章 嗜血丧神丹", "href": "http://www.hatxt.com//0_22/18420660.html"}, {"chapter": "第四百四十一章 帝都之外", "href": "http://www.hatxt.com//0_22/18420663.html"}, {"chapter": "第四百四十二章 大战开始", "href": "http://www.hatxt.com//0_22/18420664.html"}]}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

越来越胖的GuanRunwei

祝老板们身体健康,财源广进!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值