[
  {
    "path": ".gitignore",
    "content": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packaging\n.Python\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\npip-wheel-metadata/\nshare/python-wheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.nox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*.cover\n*.py,cover\n.hypothesis/\n.pytest_cache/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\n*.log\nlocal_settings.py\ndb.sqlite3\ndb.sqlite3-journal\n\n# Flask stuff:\ninstance/\n.webassets-cache\n\n# Scrapy stuff:\n.scrapy\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\ntarget/\n\n# Jupyter Notebook\n.ipynb_checkpoints\n\n# IPython\nprofile_default/\nipython_config.py\n\n# pyenv\n.python-version\n\n# pipenv\n#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.\n#   However, in case of collaboration, if having platform-specific dependencies or dependencies\n#   having no cross-platform support, pipenv may install dependencies that don't work, or not\n#   install all needed dependencies.\n#Pipfile.lock\n\n# PEP 582; used by e.g. github.com/David-OConnor/pyflow\n__pypackages__/\n\n# Celery stuff\ncelerybeat-schedule\ncelerybeat.pid\n\n# SageMath parsed files\n*.sage.py\n\n# Environments\n.env\n.venv\nenv/\nvenv/\nENV/\nenv.bak/\nvenv.bak/\n\n# Spyder project settings\n.spyderproject\n.spyproject\n\n# Rope project settings\n.ropeproject\n\n# mkdocs documentation\n/site\n\n# mypy\n.mypy_cache/\n.dmypy.json\ndmypy.json\n\n# Pyre type checker\n.pyre/\n"
  },
  {
    "path": "12director.py",
    "content": "# -*- coding: utf-8 -*\r\nimport numpy as np\r\nimport pandas as pd\r\nimport matplotlib.pyplot as plt\r\nimport re\r\nfrom sklearn.linear_model import LinearRegression\r\nfrom matplotlib.pyplot import MultipleLocator\r\n#绘图部分\r\ndata = pd.read_csv(r'lianxi/film-csv.txt',encoding = 'utf-8',delimiter = ';') #读取文件\r\ndata = data.iloc[:,:-1]   #去除文件中的非法数据\r\ndata = data.drop(0).drop_duplicates().reset_index().drop('index',axis = 1)    #由于第一行为空数据 去除 并去重 重置索引\r\n\r\nt = []  #将电影类型按多种分割符切分\r\nfor i in range(len(data)):\r\n    a = re.split(u' / |/|，|、| | ',data[u'影片类型'][i])\r\n    for j in a:\r\n        t.append(j)\r\nt = set(t)  #将重复的类型去掉\r\ntt = []\r\nfor i in t: #将不规范的类型去除 得出所有存在的类型\r\n    if (len(i)<=2)|(i==u'合家欢'):\r\n        tt.append(i)\r\n\r\nf = plt.figure(figsize=(10,5))\r\nax2 = f.add_subplot(1,1,1)\r\nplt.rcParams['font.sans-serif']=['simhei']   #绘图中文设置\r\nplt.rcParams['axes.unicode_minus'] = False\r\n\r\nlst = []\r\nlsd = []\r\nfor i in range(len(data)):\r\n    for j in tt:\r\n        if j in data[u'影片类型'][i]:#按照导演进行切分出电影类型\r\n            d = re.split(u'，|、|/| ',data[u'导演'][i])\r\n            for k in d:\r\n                lsd.append(k.replace(u' ',u''))\r\n                lst.append(j.replace(u' ',u''))\r\n\r\nlsd1 = list(set(lsd))\r\ndict_t = {}\r\ndict_d = {}\r\nfor i in range(len(lsd1)):  #将导演和电影类型转成连续量 进行绘图\r\n    for j in range(len(lsd)):\r\n        if lsd1[i] == lsd[j]:\r\n            dict_d[i+1] = lsd[j]\r\n            lsd[j] = i+1\r\nfor i in range(len(tt)):\r\n    for j in range(len(lst)):\r\n        if tt[i] == lst[j]:\r\n            dict_t[i + 1] = lst[j]\r\n            lst[j] = i+1\r\nlsd = pd.DataFrame(lsd,columns=[u'导演']) #转成Dataframe类型\r\nlst = pd.DataFrame(lst,columns=[u'影片类型'])\r\ndftd = pd.concat([lsd,lst],axis = 1)\r\nfor i in range(len(dftd)):\r\n    ax2.scatter(dftd[u'导演'][i], dftd[u'影片类型'][i])   #循环绘图\r\n\r\nxl = '' #x轴 y轴给予提示\r\nyl = ''\r\nfor i in range(1,4):\r\n    xl+= 'i'+u'是'+dict_d[i]+u','\r\n    yl+= 'i'+ u'是' + dict_t[i] + u','\r\nax2.set_xlabel(xl[:-1])\r\nax2.set_ylabel(yl[:-1])\r\nax2.set_title(u'导演执导过的影片类型')\r\nplt.show()\r\n\r\n\r\n\r\n"
  },
  {
    "path": "13movietype.py",
    "content": "# -*- coding: utf-8 -*\r\nimport numpy as np\r\nimport pandas as pd\r\nimport matplotlib.pyplot as plt\r\nimport re\r\nfrom sklearn.linear_model import LinearRegression\r\nfrom matplotlib.pyplot import MultipleLocator\r\n\r\ndata = pd.read_csv('lianxi/film-csv.txt',encoding = 'utf-8',delimiter = ';') #读取文件\r\n# print ans0400\r\n#数据清洗\r\ndata = data.iloc[:,:-1]   #去除文件中的非法数据\r\ndata = data.drop(0).drop_duplicates().reset_index().drop('index',axis = 1)    #由于第一行为空数据 去除 并去重 重置索引\r\n\r\nt = []  #将电影类型按多种分割符切分\r\nfor i in range(len(data)):\r\n    a = re.split(u' / |/|，|、| | ',data[u'影片类型'][i])\r\n    for j in a:\r\n        t.append(j)\r\nt = set(t)  #将重复的类型去掉\r\ntt = []\r\nfor i in t: #将不规范的类型去除 得出所有存在的类型\r\n    if (len(i)<=2)|(i==u'合家欢'):\r\n        tt.append(i)\r\n\r\nf = plt.figure(figsize=(10,5))\r\nax0 = f.add_subplot(1,1,1)\r\nplt.rcParams['font.sans-serif']=['simhei']   #绘图中文设置\r\nplt.rcParams['axes.unicode_minus'] = False\r\n\r\nlst = []\r\nlsb = []\r\nfor i in range(len(data)):   #按照电影类型进行切分出票房\r\n    for j in tt:\r\n        if j in data[u'影片类型'][i]:\r\n            lst.append(j.replace(u' ',u''))\r\n            lsb.append(data[u'票房/万'][i])\r\n\r\nlst = pd.DataFrame(lst,columns=[u'影片类型'])   #转成Dataframe类型\r\nlsb = pd.DataFrame(lsb,columns=[u'票房'])\r\nx_major_locator=MultipleLocator(0.05)\r\n#x轴刻度间隔设置为1，并存在变量里\r\nax0.xaxis.set_major_locator(x_major_locator)\r\ndftb = pd.concat([lst,lsb],axis = 1)    #将电影类型和票房进行合并\r\ndftb = dftb.groupby(u'影片类型').sum().sort_values(u'票房')   #分组求和按票房排序\r\ndftb.plot(kind = 'bar',title = u'各种类型片票房收入比较',ax = ax0) #绘图\r\nplt.xlabel('影片类型',fontsize=14)\r\nplt.legend()\r\nplt.show()\r\n\r\n"
  },
  {
    "path": "14movierank.py",
    "content": "# -*- coding: utf-8 -*\r\nimport pandas as pd\r\nimport numpy as np\r\nimport datetime\r\nimport matplotlib.pyplot as plt\r\n#读入数据\r\ndf=pd.read_csv('lianxi/movie.csv',encoding='utf-8')\r\nplt.rcParams['font.sans-serif']=['SimHei'] #用来正常显示中文标签\r\nplt.rcParams['axes.unicode_minus']=False #用来正常显示负号\r\ndata_week = pd.read_csv(r'lianxi/movie.csv',nrows=50)['总票房（万）'].T.values\r\nplt.figure(figsize=(10, 6))\r\nxweek=range(0,len(data_week))\r\n# xweek1=[i+0.3 for i in xweek]\r\nplt.bar(xweek,data_week,color='g',width = 0.3,alpha=0.6,label=u'总票房')\r\nplt.xticks(range(0,50),df['name'],rotation=90,fontsize=8)\r\nplt.xlabel(u'电影名称')\r\nplt.ylabel(u'票房收入')\r\nplt.title(u'2009-2019中国电影票房综合排名')\r\nplt.legend(loc='upper right')\r\nplt.show()"
  },
  {
    "path": "3pachong.py",
    "content": "# -*- coding:utf8 -*-\r\nimport pymysql\r\nimport requests\r\nimport re\r\nimport pandas as pd\r\nfrom bs4 import BeautifulSoup\r\n\r\ndef get_movies(start):\r\n    url = \"https://movie.douban.com/top250?start=%d&filter=\" % start\r\n    lists = []\r\n    headers = {\r\n        \"User-Agent\": \"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\"}\r\n    html = requests.get(url,headers=headers)\r\n    soup = BeautifulSoup(html.content, \"html.parser\")\r\n    items = soup.find(\"ol\", class_=\"grid_view\").find_all(\"li\")\r\n    for i in items:\r\n        movie = {}\r\n        movie[\"rank\"] = i.find(\"em\").text\r\n        movie[\"link\"] = i.find(\"div\",\"pic\").find(\"a\").get(\"href\")\r\n        movie[\"mdirecter\"]=re.findall(re.compile(r'<p class=\"\">(.*?)</p>',re.S),str(i))[0].replace(\"...<br/>\",\"\").replace(\"\\n                            \",\"\")\r\n        movie[\"name\"] = i.find(\"span\", \"title\").text\r\n        movie[\"score\"] = i.find(\"span\", \"rating_num\").text\r\n        movie[\"quote\"] = i.find(\"span\", \"inq\").text if(i.find(\"span\", \"inq\")) else \"\"\r\n        lists.append(movie)\r\n    return lists\r\n\r\nif __name__ == \"__main__\":\r\n    db = pymysql.connect(host=\"localhost\",user=\"root\",password=\"123456\",db=\"maoyan\",charset=\"utf8\",port = 3306)\r\n    cursor = db.cursor()\r\n    cursor.execute(\"DROP TABLE IF EXISTS movies\")\r\n    createTab = \"\"\"CREATE TABLE movies(\r\n        id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,\r\n        name VARCHAR(20) NOT NULL,\r\n        link VARCHAR(50) NOT NULL,\r\n        score VARCHAR(4) NOT NULL,\r\n        descr VARCHAR(50),\r\n        directer VARCHAR(100),\r\n        timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP\r\n    )\"\"\"\r\n    cursor.execute(createTab)\r\n    #采集到的数据循环插入数据中\r\n    start = 0\r\n    while (start < 250):\r\n        lists = get_movies(start)\r\n        for i in lists:\r\n            sql = \"INSERT INTO `movies`(`name`,`link`,`score`,`descr`,`directer`) VALUES(%s,%s,%s,%s,%s)\"\r\n            try:\r\n                cursor.execute(sql, (i[\"name\"], i[\"link\"] , i[\"score\"], i[\"quote\"],i[\"mdirecter\"]))\r\n                db.commit()\r\n                print(i[\"name\"]+\"...成功插入到数据库中\")\r\n            except:\r\n                db.rollback()\r\n        start += 25\r\n    db.close()\r\n\r\n    cursor = db.cursor()\r\n    conn = pymysql.connect(host='localhost', user='root', password='123456', port=3306, db='maoyan',\r\n                           charset='utf8mb4')\r\n    cursor = conn.cursor()\r\n    #输出评分top10\r\n    sql = \"select * from movies limit 10\"\r\n    db = pd.read_sql(sql, conn)\r\n    df = db.sort_values(by=\"score\", ascending=False)\r\n    print(df[['name', 'score']])"
  },
  {
    "path": "4douanscore.py",
    "content": "# -*- coding:utf8 -*-\r\n#首先用于确定编码，加上这句\r\nimport pymysql\r\nimport pandas as pd\r\nimport matplotlib.pyplot as plt\r\nfrom matplotlib.pyplot import MultipleLocator\r\nconn = pymysql.connect(host=\"localhost\", user=\"root\", password=\"123456\", db=\"maoyan\", charset=\"utf8\", port=3306)\r\ncursor = conn.cursor()\r\nsql = \"select * from movies limit 20\"\r\ndata = pd.read_sql(sql, conn)\r\ndf = data.sort_values(by=\"score\", ascending=1)\r\na = df[['name', 'score']]\r\n\r\nplt.rcParams['font.sans-serif'] = ['SimHei']  # 用来正常显示中文标签\r\nplt.rcParams['axes.unicode_minus'] = False  # 用来正常显示负号\r\nplt.figure(figsize=(10, 6))\r\nxweek = range(0, len(df['name']))\r\nplt.bar(df['name'], df['score'], color='g', width=0.3, alpha=0.6, label=u'截取数据前20')\r\nplt.xticks(xweek, df['name'], rotation=90, fontsize=8)\r\nplt.xlabel(u'电影名称')\r\nplt.ylabel(u'电影评分')\r\nplt.title(u'豆瓣电影高分top20')\r\nplt.legend(loc='upper right')\r\nplt.show()"
  },
  {
    "path": "5Echarts最近上映电影/movie.html",
    "content": "<!DOCTYPE html>\r\n<html>\r\n<head>\r\n    <meta charset=\"utf-8\" />\r\n    <!-- ����첽���󶹰�ͼƬ����Error 403��ԭ�򣺶�����з����� -->\r\n    <meta name=\"referrer\" content=\"never\" />\r\n    <title>最近上映电影</title>\r\n    <!-- 1. ����Echarts.js�����JS -->\r\n    <script src=\"https://libs.cdnjs.net/jquery/3.4.1/jquery.js\"></script>\r\n    <script src=\"js/echarts.min.js\"></script>\r\n</head>\r\n<body>\r\n    <!-- 2. ΪECharts׼��һ���߱���С����ߣ���Dom -->\r\n    <div id=\"main\" style=\"width: 900px;height:600px;\"></div>\r\n    <script type=\"text/javascript\">\r\n        // 3. ��ʼ��echartsʵ��\r\n        var myChart = echarts.init(document.getElementById(\"main\"));\r\n        // 4. ����Echarts option������\r\n        myChart.showLoading();  // ��ʾloading���ض���\r\n        // setData��������myChart��option�������ã�����ʾͼ��\r\n        var setData = (function(){\r\n            var option = {\r\n                title: {\r\n                    text: \"最近上映电影\",\r\n                    left: \"50%\",\r\n                    textAlign: 'center'\r\n                },\r\n                // grid�����ֱ������ϵ�ڻ�ͼ�������ڶ�λͼƬ�����λ��\r\n                grid: {\r\n                    left: 0,\r\n                    right: 20,\r\n                    bottom: 100,\r\n                    top: 30\r\n                },\r\n                // ��괥����ʾ��Ϣ��ʽ\r\n                tooltip: {\r\n                    formatter: function(params) {\r\n                        // pictorialBar���жϴ����������Ϊ��pictureͼƬ\r\n                        if (params.componentSubType == \"pictorialBar\") {\r\n                            return \"电影：\" + params.name + \"</br> 豆瓣评分\" + (params.value * 1 + 10).toFixed(1);\r\n                        }\r\n                    }\r\n                },\r\n                xAxis: {\r\n                    data: []\r\n                },\r\n                yAxis: {\r\n                    // ����y����ʾ\r\n                    splitLine: {\r\n                        show: false\r\n                    },\r\n                    axisLine: {\r\n                        show: false\r\n                    }\r\n                },\r\n                series: [\r\n                    // �����������\r\n                    {\r\n                        type: 'bar',\r\n                        barWidth: 1,\r\n                        data: [],\r\n                        // ��Ч����\r\n                        animationDelay: function(ids) {     // ��ʱ��ʾ�Ķ���Ч����idsΪ��Ŀ������\r\n                            return ids * 100;\r\n                        }\r\n                    },\r\n                    // ͼƬ�������\r\n                    {\r\n                        type: 'pictorialBar',\r\n                        symbolPosition: 'end',\r\n                        symbolRotate: 165,\r\n                        symbolOffset: ['20%', '100%'],      // ͼƬˮƽƫ�ƽǶ�\r\n                        data: [],                           // ����api���ص�pic_url��̬���ͼƬ\r\n                        animationDelay: function(ids) {    // ��ʱ��ʾ�Ķ���Ч����idsΪ��Ŀ������\r\n                            return ids * 100 + 500;\r\n                        }\r\n                    },\r\n                    // graph����ϵͼ������չ�ֽڵ��Լ��ڵ�֮��Ĺ�ϵ���ݣ������γ�һ���ڵ㰴ť��ʵ���������\r\n                    {\r\n                        type: 'graph',\r\n                        data: [{\r\n                            X: 0,\r\n                            Y: 0,\r\n                            symbolSize: 0                   // ��ϵͼ�ڵ��ǵĴ�С\r\n                        },{\r\n                            // ����ť��λ�ü���С\r\n                            name: '����',\r\n                            x: 550,\r\n                            y: 25,\r\n                            symbolSize: 30\r\n                        }],\r\n                        // �ڵ����ʽ\r\n                        itemStyle: {\r\n                            normal: {\r\n                                // color: 'transparent',   // ͸��Ч��\r\n                                color: '#282923',\r\n                                borderWidth: 1,\r\n                                borderColor: '#555'\r\n                            }\r\n                        }\r\n                    }\r\n                ]\r\n            };\r\n            var mark = 1;\r\n            // �������\r\n            return function(){\r\n                var pics = [];\r\n                var d = JSON.parse(localStorage.getItem('data'));\r\n                for (var i = 0; i < d.subjects.length; i++) {\r\n                    // ˵����d.subjects[i].images.small = https://img3.doubanio.com/view/photo/s_ratio_poster/public/p2576090251.webp\r\n                    var img = d.subjects[i].images.medium;\r\n                    console.log(img)\r\n                    pics.push({\r\n                        value: ((d.subjects[i].rating.average || 0.1) - 10).toFixed(1),\r\n                        symbol: 'image://' + img,    // ��image��//���onlineͼƬ\r\n                        symbolSize: ['48.75', '75'],\r\n                        name: d.subjects[i].title,   // ��Ӱ������\r\n                        id: d.subjects[i].id         // ��Ӱ��id\r\n                    })\r\n                }\r\n                // ���򷽷�\r\n                if (mark % 2 == 0) {\r\n                    pics.sort(function(a, b) {\r\n                        return (mark / 2 | 0) % 2 == 0 ? (b.value - a.value) : (a.value - b.value)\r\n                    })\r\n                }\r\n                option.series[0].data = pics;\r\n                option.series[1].data = pics;\r\n                myChart.hideLoading();\r\n                // ʹ������ָ�����������������ʾͼ��\r\n                myChart.setOption(option);\r\n                mark++;\r\n            }\r\n        })();   // ֱ�ӵ�����������������ֵ��һ��function��ֵ������setData\r\n        // localStorage���ã��ȴӱ��ػ����л�ȡdata����������ݾ͵���setData����������Ӷ���api�첽���ȡ����\r\n        if (localStorage.getItem(\"data\")) {\r\n            setData();\r\n        } else {\r\n            $.ajax({\r\n                type: \"GET\",\r\n                url: \"https://douban.uieee.com/v2/movie/in_theaters\",   // ������ӳ�ĵ�Ӱ��ϸ\r\n                dataType: \"jsonp\",      // jsonp��������첽��ȡ��Դ�Ŀ�������\r\n                success: function(d) {\r\n                    localStorage.data = JSON.stringify(d);  // ���Ӷ���API��ȡ������ת��ΪJSON��ʽ�Ķ���󣬱����ڱ��ػ�����\r\n                    console.log(localStorage.data);\r\n                    setData();\r\n                }\r\n            });\r\n        }\r\n        // ʵ�ָ�myChartͼ����ʱ���õ���ǰ��Ӱ����Ӧ�ĵ�ӰID������ת����Ӧ��url�鿴��ǰ��Ӱ������\r\n        myChart.on(\"click\", function(params) {\r\n            console.log(params);\r\n            if (params.name == \"����\") {\r\n                setData();\r\n            }else if (params.componentSubType == \"pictorialBar\") {\r\n                window.open(\"https://movie.douban.com/subject/\" + params.data.id + \"?date=\" + new Date().getTime())\r\n            }\r\n        })\r\n    </script>\r\n</body>\r\n</html>\r\n"
  },
  {
    "path": "7cituyun.py",
    "content": "# -*- coding:utf-8 -*-\r\nimport jieba\r\nimport numpy as np\r\nfrom matplotlib import pyplot as plt\r\nfrom scipy.misc import imread\r\nimport wordcloud\r\n# 设置词云路径\r\nWC_FONT_PATH = 'C:/Windows/Fonts/simkai.ttf'\r\n\r\ndef cut_word():\r\n    with open(r'lianxi/result.txt', 'r', encoding='utf8') as file:\r\n        # 读取文件里面的全部内容\r\n        comment_txt = file.read()\r\n        # 使用jieba进行分割\r\n        wordlist = jieba.cut(comment_txt)\r\n        print('***********',wordlist)\r\n        wl = \"/\".join(wordlist)\r\n        # print(wl)\r\n        return wl\r\n\r\ndef create_word_cloud():\r\n    # 设置词云形状图片,numpy+PIL方式读取图片\r\n    # 数据清洗词列表\r\n    stop_words = ['就是', '不是', '但是', '还是', '只是', '这样', '这个', '一个', '什么', '电影', '没有']\r\n    # 设置词云的一些配置，如：字体，背景色，词云形状，大小,生成词云对象\r\n    wc = wordcloud.WordCloud(mask=imread('lianxi/background1.png'), background_color=None,stopwords=stop_words, max_words=250, scale=4,mode='RGBA',\r\n                   min_font_size=10,max_font_size=70, random_state=42,font_path=\"C:\\\\Windows\\\\Fonts\\\\SimHei.TTF\")\r\n    # 生成词云\r\n    wc.generate(cut_word())\r\n    img = imread('lianxi/color.jpg')\r\n    cloud_colors = wordcloud.ImageColorGenerator(np.array(img))\r\n    wc.recolor(color_func=cloud_colors)\r\n    plt.figure(figsize=(20, 20))\r\n    plt.rcParams['font.family'] = 'SimHei'\r\n    # 开始画图\r\n    plt.imshow(wc)\r\n    # 为云图去掉坐标轴\r\n    plt.axis(\"off\")\r\n    plt.savefig('dataout/图7豆瓣电影词语云.png')\r\n\r\nif __name__ == '__main__':\r\n    create_word_cloud()\r\n"
  },
  {
    "path": "8emotion.py",
    "content": "# -*- coding:utf-8 -*-\n\nimport jieba\nimport numpy as np\nfrom PIL import Image\nfrom matplotlib import pyplot as plt\nfrom snownlp import SnowNLP\nfrom scipy.misc import imread\nimport wordcloud\n# 设置词云路径\n\ndef data_show():\n    f = open(r'lianxi/result.txt', 'r', encoding='utf-8')\n    list = f.readlines()\n    sentimentslist = []\n    for i in list:\n        s = SnowNLP(i)\n        sentimentslist.append(s.sentiments)\n    print(sentimentslist)\n    # print(len(sentimentslist))\n    plt.style.use(\"ggplot\")\n    plt.rcParams['font.family'] = 'SimHei'\n    plt.hist(sentimentslist, bins=10,color='b')\n    plt.xlabel('情感概率')\n    plt.ylabel('数量')\n    plt.title('《囧妈》短评情感分析')\n    plt.savefig('dataout/8情感分析.png')\n\nif __name__ == '__main__':\n    # create_word_cloud()\n    data_show()"
  },
  {
    "path": "9wordcount.py",
    "content": "import numpy as np\r\nimport pandas as pd\r\nimport jieba\r\nimport wordcloud\r\nfrom scipy.misc import imread\r\nimport matplotlib.pyplot as plt\r\nfrom pylab import mpl\r\nimport seaborn as sns  # 导入seaborn\r\n\r\nmpl.rcParams['font.sans-serif'] = ['SimHei'] # 指定默认字体\r\nmpl.rcParams['axes.unicode_minus']\r\n# 设置风格\r\nimport matplotlib.style as psl\r\npsl.use('bmh')\r\n\r\nimport warnings\r\nwarnings.filterwarnings('ignore') \r\n\r\ndata = pd.read_csv('lianxi/中国票房数据.csv',engine='python')\r\ndata.head()\r\n\r\n# 词频分析\r\nstop_word = pd.read_csv('lianxi/tyc.txt', encoding='utf-8')\r\nstop_word.columns = ['key', '']\r\nstop_list = stop_word['key'].tolist()\r\nprint(stop_list[:5])\r\n\r\n#停用词读取\r\n\r\ndef txt_cut(f):\r\n    return [w for w in jieba.cut(f) if w not in stop_list]  # 创建函数\r\nword_list = []\r\nfor line in data[data['电影名'].notnull()]['电影名'].tolist():\r\n    for word in txt_cut(line):\r\n        word_list.append(word)\r\nprint(word_list[:5])\r\n#分词\r\n\r\nword_count = pd.Series(word_list).value_counts().sort_values(ascending=False)[0:20]\r\n# print(word_count)\r\n# 分析词频\r\n# 出图\r\nfig = plt.figure(figsize=(12,5))\r\nx = word_count.index.tolist()\r\ny = word_count.values.tolist()\r\n#sns.barplot(x, y, palette=\"BuPu_r\")\r\nsns.barplot(x, y, palette=\"Set3\")\r\nplt.title('电影数据词频Top20')\r\nplt.ylabel('count')\r\nsns.despine(bottom=True)\r\nplt.savefig('dataout/图9词频分析.png')\r\n\r\n\r\n\r\n"
  },
  {
    "path": "README.md",
    "content": "# Bigdata-movie\n\n本项目以电影数据为主题，以数据采集、处理、分析及数据可视化为项目流程，可实现百万级电影数据离线处理与计算。  \n\n项目详解：https://blog.csdn.net/qq_36816848/article/details/112861158.\n\n开发环境：IDEA+Pycharm+Python3+hadoop2.8+hive2.3.0+mysql5.7+sqoop+spark  \n\n1.数据采集(pachong.py)、预处理：\n采集豆瓣电影top250电影信息，采集电影名称、电影简介、电影评分、其他信息、电影连接等字段，抓取电影票房总收入排名情况（取前20），删除冗余和空值字，利用Python的PyMysql库连接本地Mysql数据库并导入movies表，可以将数据保存到本地，从而进行数据可视化展示，也可将数据导入到大数据的Hive数仓工具中，用于大数据分析。\n\n采集数据展示：\n排序\t影片名称\t类型\t总票房（万）\t场均人次\t上映日期\n1\t战狼2\t动作\t567928\t38\t2017/7/27\n2\t哪吒之魔童降世\t动画\t501324\t24\t2019/7/26\n3\t流浪地球\t科幻\t468433\t29\t2019/2/5\n4\t复仇者联盟4：终局之战\t动作\t425024\t23\t2019/4/24\n5\t红海行动\t动作\t365079\t33\t2018/2/16\n6\t唐人街探案2\t喜剧\t339769\t39\t2018/2/16\n7\t美人鱼\t喜剧\t339211\t44\t2016/2/8\n8\t我和我的祖国\t剧情\t317152\t36\t2019/9/30\n9\t我不是药神\t剧情\t309996\t27\t2018/7/5\n10\t中国机长\t剧情\t291229\t27\t2019/9/30\n2.数据统计及可视化：\n数据可视化能使数据更加直观，更有利于分析，可以说可视化技术是数据分析与挖掘最重要的内容。Matplotlib作为基于Python语言的开源项目，旨在为Python提供一个数据绘图包，实现专业丰富的绘图功能。\n\n（1）电影票房排名\n\n利用Python中Matplotlib绘图库及Pandas中的pd.readcsv()方法读取Excel电影数据文件，读取每列数据进行，设置参数将结果绘制成折线图。\n\n（2）电影评分排名douanscore.py\n\n利用Python的Request、Beautifulsoup库进行爬虫，模拟请求获取网页数据，结合正则表达式匹配提取数据，并将豆瓣电影top250电影数据存储到Mysql数据库中,通过数据库语句使用order by实现电影top评分统计。\n\nmovie表结构：\n\n属性\t字段命名\t类型\t约束\nid\t序号\tint\tprimary key\nname\t电影名称\tVARCHAR(20)\tnot null\nLink\t电影连接\tVARCHAR(100)\tnot null\nscore\t评分\tVARCHAR(5)\tnot null\ndescr\t电影概述\tVARCHAR(50)\t \ndirecter\t导演及其他\tVARCHAR(100)\t \n最终电影数据结果如下：\n\n利用数据库语句统计movies进行电影评分top20，并将结果通过Python的Matplotlib库进行数据可视化，绘图结果如下：\n\n(3)Echarts最近上映电影\n\nEcharts 主要用于数据可视化展示，是一个开源的JavaScript库，兼容现有绝大部分浏览器。在Python中，Echarts被包装成数据可视化工具库Pyecharts。它提供直观、丰富、可个性化定制的数据可视化图表，包括常规的折线图、柱状图、散点图、饼图等。\n\n\n（4）影片《囧妈》短评信息\n\n大年初一电影《囧妈》网络首映映，截止目前其豆瓣电影评分6.0分，通过电影《囧妈》的豆瓣热门短评进行案例分析，以八爪鱼软件为数据采集工具进行数据爬虫，采集字段有用户名、评级、点赞数和评论内容等信息，利用正则表达式匹配字段标签，根据豆瓣电影提供的评级星数系统显示力荐、推荐、还行、较差、很差等五个评级，满分为五星，数据格式如下：\n \n（5）词图云cituyun.py\n\n利用Python的jieba分词工具以及wordcloud库实现词云展示，截取电影《囧妈》评论一列，按照规定的停用词切割每行语句，实现分词功能。通过词图云展示可以直观地看出用户对电影的态度情况，数据展示结果如下：\n\n\n（6）情感分析emotion.py\n\n运用Python机器学习中的情感分析库Snownlp和绘图库pyplot挖掘囧妈短评数据，做出情感分析并展示。利用Snownlp中s.sentiments方法计算情感分数，分数在0.5以上判断为是好评，可以看到电影的评论差距明显。情感分析效果图如下：\n\n\n\n（7）python词频统计wordcount.py\n\n \n3.大数据分析：\n大数据处理最重要的环节就是数据分析，数据分析通常分为两种：批处理和流处理。批处理是对一段时间内海量的离线数据进行统一处理，对应的处理框架Mapreduce、Spark等；流处理则是针对动态实时的数据处理，即在接收数据的同时就对其进行处理，对应的处理框架有 Storm、Spark Streaming、Flink等。本文以离线计算为主，介绍电影数据分析。\n\n（1）Mapreduce离线计算(mapreduce_hive文件)\n\nMapreduce编程词频统计主要利用wordcount思想，通过按规定格式分割词句，实现单词统计词频。其统计数据为历史电影的上映信息，map阶段主要负责单词分割统计，map阶段把每个字符串映射成键、值对，按行将单词映射成（单词，1）形式，Shuffle过程会对map的结果进行分区排序，然后按照同一分区的输出合并在一起写入到磁盘中，最终得到一个分区有序的文件，最后reduce阶段会汇总统计出每个词对应个数，数据最终会存储在HDFS上。本文以电影词作为统计对象，实现单词统计词频功能。词频统计流程图如下：\n\n\n\nmap阶段会把每个字符串映射成键、值对，按行将单词映射成（单词，1）形式输出，其中shuffle过程会对map的结果进行分区排序，然后按照同一分区的输出合并在一起写入到磁盘中，最终得到一个分区有序的文件。通过Python编程实现Map阶段代码如下：\n\nMap阶段代码：\n\nimport sys\n\nfor line in sys.stdin:\nss = line.strip().split(' ')\nfor s in ss:\nif s.strip() != \"\":\nprint \"%s\\t%s\" % (s, 1)\n\n（2）reduce阶段\n\nreduce阶段会汇总map阶段结果每个词对应个数，数据最终会存储在HDFS上。本文通过统计《哈利波特》英文电影文本，实现词频统计功能。实现Reduce阶段代码如下：\n\nReduce阶段代码：\n\nimport sys\ncurrent_word = None\ncount_pool = []\nsum = 0\n\nfor line in sys.stdin:\nword, val = line.strip().split('\\t')\nif current_word == None:\ncurrent_word = word\nif current_word != word:\nfor count in count_pool:\nsum += count\nprint \"%s\\t%s\" % (current_word, sum)\ncurrent_word = word\ncount_pool = []\nsum = 0\ncount_pool.append(int(val))\nfor count in count_pool:\nsum += count\nprint \"%s\\t%s\" % (current_word, str(sum))\n\n利用Hadoop Streaming可以使用任何可运行程序或语言作为Map和Reduce的创建和执行MapReduce作业，通过编写shell脚本执行wordcount统计结果如下：\n\n（2）Hive数据仓库\n\nHive是一个基于Hadoop的数据仓库工具,主要用于解决海量结构化日志的数据统计，可以将结构化的数据文件映射成一张表，通过类SQL语句的方式对表内数据进行查询、统计分析。利用Sqoop数据传输工具可以将Mysql数据库信息导入到Hive数仓。\n\n运用Hive可以实现海量数据分析，并且支持自定义函数，省去MapReduce编程。本文针对历史豆瓣电影数据进行统计，数据经过清洗，删除空值、多余项，得到大约100000多条电影数据，部分数据格式如下：\n\n\n\n（1）建表\n\nHive建表分为内部表和外部表两种。创建内部表，表内数据将会移动到数据仓库指向的路径，删除表时，数据会随之删除；而外部表在删除时，不会删除数据表原有信息，相对更加安全。\n\n本文电影表包括电影名称、评分、评论人数、类型、上映年份，以及总分等字段，数据默认逗号分隔，其中总分=电影评分*评论人数，数据创建命令如下：\n\ncreate table IF NOT EXISTS movie1(name string,\n\nscore double,\n\npeople int,\n\ntype string,\n\naddress string,\n\ntime int,\n\nsum float)\n\nROW FORMAT DELIMITED FIELDS TERMINATED BY ',';\n\n（2）导入数据\n\nHadoop支持各类型文件上传到HDFS，可以通过本地命令直接上传到Hive中，也可以利用Sqoop数据传输工具实现将Mysql数据库与Hive数据库互传。本地导入命令如下：\n\nload data local inpath '/douban/movie.csv' into table movie1;\n\n（3）统计分析\n\nHive底层基于Mapreduce执行，利用distribute by和sort by命令可以实现分组排序，统计总分在1000000分以上电影数据，并按照评分、总得分降序顺序排列，优化后命令如下：\n\nselect name,score,sum,time\n\nfrom movie1\n\nwhere sum > 1000000\n\ndistribute by score sort by score desc,sum desc\n\nlimit 20;\n\n（3）影片类型与票房统计图movietype.py\n\n（5）导演与影片类型关系图director.py\n\n（6）电影票房预测（电票票房预测.xls）\n\n（7）电影评分预测scorepredict.py\n\n额外电影数据集链接：https://pan.baidu.com/s/1ji3YIjCSGXbvFh7swiWdFg 提取码：1234 \n实现更多电影数据维度分析，后期更新。\n\nSpark电影数据分析实战：https://github.com/GoAlers/Spark-Movie\n"
  },
  {
    "path": "lianxi/6囧妈电影短评.csv",
    "content": "﻿点赞数,评级,用户名,用户链接,评论\r\n7877,还行,yoyo,https://www.douban.com/people/2707932/,后半段垮的妈都不认识\r\n2723,力荐,djfish,https://www.douban.com/people/djfish/,笑中有泪的贺岁片，母子关系的处理，夫妻关系的和解，爱的表达方式有好多种，而我们对于最亲的人往往是用了争吵这种最糟糕的方式，带着妈妈来看这部片子，看后要给她一个大大的拥抱啊。最后彩蛋别错过哦，有大腕。\r\n6541,还行,阿花花的sp,https://www.douban.com/people/99047089/,有点理解为啥首映卖竖屏视媒了，毕竟这部可以算是系列最差了…真的线下上映会被同期打得非常惨痛…卖给专业视频平台还要通过收点播费啥的才能回本，但给了竖屏就等于给了流量，你点一下，我点一下，人均成本降低，这人数可是指数型增长…影片植入渐多，无用配角疯狂添加，造成主线故事，即母子关系与夫妻关系完全破碎割裂，过渡僵硬，一个简单故事展现成了超长扁平叙事结构，令关系发生转折的故事设定怕不是把自己当成了英雄（对我说的是那只熊，对我说的是背妈奔跑横穿带有多条裂纹的冰面，多哥都没你能！对我说的是这电影时长我看了一眼咯噔了一下）。基于这所有，彻头彻尾体会了导演和商人的本质不同。\r\n6487,还行,阿暖,https://www.douban.com/people/phoenix43/,很平庸，很无趣，既不好笑，对于原生家庭的探讨也只是隔靴搔痒而已。\r\n1292,力荐,小飞象,https://www.douban.com/people/clmhlbt/,天呐我看那些差评 根本没道理阿 我太喜欢了 感触很深 很好笑 很好哭 很多地方感同身受 不知道差评里隔谁的靴搔谁的痒了 反正我这是袜子都脱了挠哭我了 我是真的爱公路片 我觉得徐峥作为导演掌控力已经完全 不能说炉火纯青 反正是很可以了 异国风情 很美的风景配乐也好听 完美 就是完美 演员选的也好 郭京飞活着也就是一乐儿 总之 爱了\r\n3115,很差,匿名用户123,https://www.douban.com/people/deepriest/,又尬又假。\r\n4156,较差,马 夋,https://www.douban.com/people/june.q/,我讨厌这部电影，甚至作呕，强行灌鸡汤，强行要把所谓的黑暗面撕出来，然后结尾强行煽情和解。没有人没和解，只是徐峥自己没和解吧！\r\n5897,还行,曹犟,https://www.douban.com/people/37191765/,平庸的电影，多亏找到人接盘了，如果真上映估计得亏。\r\n2933,还行,麦小白,https://www.douban.com/people/MagicK/,这种强迫煽情的拍法跟春晚小品最后万年不变的“拔高度”套路没什么分别，注定大多数人不喜欢。现在赚个吆喝，提升下股价已经很好了，线下上映估计跟《攀登者》差不多下场，可能更差。2.5\r\n3682,推荐,亵渎电影,https://www.douban.com/people/zhangzongqian/,骨子里还是囧系列那种公路喜剧片，这次用母子关系制造一系列的笑点，代入感非常好，果然是“同一个世界，同一个妈妈”。从创作的心态上讲，我一直很喜欢徐峥，愿意走出创作的舒适区，去做点不一样的尝试，讲和上一辈人亲情的故事，讲中国家庭亲子关系的和解。从编剧技巧上看，徐峥还是那个最懂类型片技巧的人，他一开始就用对白铺垫的那些细节，每一次用都在强化电影的节奏，划分剧作的大框架，让电影的主题表达更进一步。这个剧本有一个非常好的故事框架，在K3火车上和老妈互虐的六天六夜，一路去往莫斯科，所有的冲突和解都要在这个固定的时间内完成。夫妻和母子两条线彼此关照互为镜像，很喜欢最后夫妻线的处理，与时俱进不落俗套。\r\n1591,还行,伪会计,https://www.douban.com/people/fuzuyi/,还能更无聊吗\r\n1113,还行,大奇特(Grinch),https://www.douban.com/people/grinch/,“囧”系列里有人情味的一部，之前的夸张闹剧和直男思维有很大收敛，但是熊、热气球这种情节是脱离现实的，有些客串角色也仅仅是为“客串”而存在的。除了“囧途”的主线，精神内核其实在过去的两部囧片里都有所提及：如同样以离婚开场的《泰囧》，妻子想要离婚，而男主想的只有生意（油霸变暖霸），男主在结尾时必然会在婚姻中学会成长；以及《港囧》对于女性改变男性和对女性长辈烦扰的宣泄。对苏联老片的致敬： ①伊万的名字来自徐爸给她放过的苏联老片《伊万的童年》；②徐伊万在火车上说了一句《办公室的故事》的台词“…就这么残酷无情无理取闹；”③热气球时有个动作模仿了“莫斯科电影制片厂”的厂标；④徐妈及姐妹们唱的《红梅花儿开》是《幸福生活》插曲，原片也是几个姑娘登台表演唱的这首歌。\r\n1239,推荐,gwei,https://www.douban.com/people/gwei6585119/,7.2分《囧妈》首映礼，有深度有温度！管虎导演说到徐峥导演在不失囧事的前提下，做出更有深意的展现！洽也是当下需要的！不是一味的娱乐，更促进家庭和谐，都夸徐峥成长了，那是必须的，金马影帝呢！《囧妈》与系列前作大有不同，更接近《药神》，而且有欢笑有泪水，有痛楚有温暖！值得嘉奖！黄梅莹老师扮演的囧妈，其实并不囧，很真实，超一流的棒！中年男子徐伊万，才是囧！贾冰插科打诨并不突兀，囧图中的调剂品，袁泉在纽约走来走去太美了！欧丽娅在车厢里搬箱子的桥段超绝，唐季礼导演说徐峥这一定是本色演出！都表现很棒，K3也是很有吸引力，再有些美景就更完美了，冰上背着妈妈奔跑那段即温暖，又很美！相信徐峥未来在导演奖项上一定大有作为！\r\n1197,推荐,秋库布里克,https://www.douban.com/people/straightman/,徐峥进步好大，相对前作品味和审美整个 飞越了几个档次，蒙太奇用的非常娴熟，对异国的美景展现系列最佳，甚至还致敬了塔可夫斯基的《伊万的童年》，故事也更走心和正经许多。有趣的是，作为讲母子关系的电影，它同时站在了两个人的角度去叙述，如果你是家长，你可能会意识到自己作为父母掌控欲的过分，如果你是孩子，你可能会发觉自己身为子女对父母付出的忽视。可以说是春节档最适合全家来看的电影了\r\n663,推荐,搪昂昂昂瓷,https://www.douban.com/people/BOLABA/,年龄一大眼窝子就浅，听到《红莓花儿开》的时候就不明所以的唰唰掉眼泪。虽然整部电影依旧是徐峥以往的商业片套路，但少了聒噪的“专职喜剧角色”，影片自然了不少。要是没有宋小宝那段太过胡逼的剧情可能会更好。前面无数的铺垫都敌不够片尾妈妈镜子前的一个动作，这种代入感应该是其他同档影片无法带来的吧。\r\n2794,较差,正义B胜,https://www.douban.com/people/imoviekobe/,承认吧，作为创作者的那个徐峥，已经过时了\r\n2283,较差,舒农,https://www.douban.com/people/shunong/,还真的是和预告一样难看啊……40奔50的人来演一个20奔30的人和自己妈的关系真的很错位。编剧们感觉像是年轻到没有任何生活体验，大家随便吐槽下自己的妈妈，就把剧本攒出来了，大概还挺得意。\r\n943,还行,rrrockbear,https://www.douban.com/people/52152655/,低于预期，不喜欢俄罗斯妹子和熊出没这两段，妹子尬，熊很凶。唯一的泪点是妈妈在台上唱歌。和妈妈和解的故事没讲好，无法共情，并不合适带妈妈一起观影。彩蛋黄渤还不如拍摄花絮有趣。结尾剧组员工和妈妈的合影很温馨。歌曲好听。囧系列里比较差的一部，俄罗斯风光片。片头看到高以翔的名字被框住，特别难受。\r\n609,推荐,二月鸟语,https://www.douban.com/people/p2165/,7.7/10，徐峥终于真诚的面对了自己和母亲的关系，本片在主题探讨和人物的刻画上做的都很好，且表现形式也比较轻松幽默。把一趟连续开六天的火车上发生的故事拍成一部电影其实很考验编剧功力和导演调度，徐峥和导演团队完成的都很好。事实上本片可以归为现实主义喜剧，创作还是戏剧为底，在台词对白上做足功课。虽然一些事件用了戏剧化处理但探讨的内核非常当下也很普世，不管是和母亲和解也好还是和妻子和解也好，本质上还是和自己和解，在老塔眼里，童年的伊万不愿意和自己和解，《囧妈》里母亲大半辈子也不愿意与自己和解。徐峥到底还是让长大的伊万与自己和解了。但是否真正的和解了，也许要问徐峥了。另外演员选的都特别到位，不管是黄梅莹还是袁泉表现力都非常好！\r\n2011,较差,梅什金,https://www.douban.com/people/justbeyond/,编剧真的想不到办法把母子俩弄上同一列火车了吗?\r\n251,还行,邓安庆,https://www.douban.com/people/renjiananhuo/,很合格的商业片。其实能感受到人到中年后的“疲惫感”，一切都是紧紧揪着的，尤其是涉及到人生情感最重要的婚姻关系、母子关系，经常毫无道理可讲，只能互相埋怨互相憎恨，所以这部电影“疏解”成了戏剧的动力。徐峥与黄梅莹真是好演员，我觉得他们把母子之间解不断理还乱的复杂感情状态表演了出来。另外很想很想坐一次北京到莫斯科的火车。\r\n1413,力荐,好好地,https://www.douban.com/people/144889235/,万万没想到，徐峥做导演的能力是倒着发展的，一部不如一部。也不知道他对母亲、妻子和中年男人到底是有什么误解。\r\n775,还行,施施小洛,https://www.douban.com/people/ssxl/,很差了。强行煽情，强行上升高度，强行搞笑，强行接续剧情，强行中年婚姻危机。这么有钱危机个p啊！凭啥他妈不守规则迟到了就能得个好结局？那守规矩的算啥？还在俄罗斯野外求生？还热气球？？？两万块钱买个演出机会居然是正式的？？？为啥要强行他妈的爱情故事？？？总之一切都很差。\r\n204,还行,一口吃掉小蛋糕,https://www.douban.com/people/cheesecakehouse/,从吃我吧就开始哭唧唧的，最后哭了一整首歌。亲情线真的太好了，可是爱情线就……袁泉可以，但是没必要。高以翔也是很好哭，看着就想哭了。不同于以往的囧系列，但依旧好笑，只不过并没有成为我心目中的黑马，略遗憾。\r\n446,力荐,影子的影子,https://www.douban.com/people/yfqc24pippo/,真的好无聊啊，各种为了剧情强凑梗，可以说是非常无趣了。开场非常牵强地努力让母子俩上了同一趟火车，从俄罗斯女孩出来就开始一路垮掉，被熊袭击遇到猎户到热气球一段我仿佛看到了《断片》......最后还要强行煽情，真的不必这样的。\r\n781,很差,那个与这个,https://www.douban.com/people/184337410/,基本没有爆点。卖掉真是明智的选择。 还有《一出好戏》里，黄渤剪掉了徐峥的戏，这部徐峥就把黄渤的剪掉了，真记仇哈哈哈哈\r\n145,较差,奇爱博士,https://www.douban.com/people/shadanbbi/,四星 ，超出预期的优秀。徐峥的“囧”系列电影，实际上就是一整套喜剧包装的“中年危机”故事，而这一次更有成长。你会大笑，你更能看出现实中发生在我们每个人身上的代际沟通危机、情感表达无能以及成长衰老的烦恼。事实上，我在观看徐峥和黄梅莹“做戏”的同时（这部前半段故事大都发生在通往莫斯科火车上的电影，很像是一出舞台剧），似乎就像看到现实中我和老妈的翻版——我又有多少时间没有好好地拥抱这位生我养我、却又不时吵吵嚷嚷的人呢？沟通，理解，放下，陪伴。徐峥这部用喜感包裹的温情主义电影，值得我们每个人好好品味。\r\n339,还行,东北洪常秀,https://www.douban.com/people/Zazai/,这个故事最大的卖点是“跟母亲和解”，卖点清晰，春节怕家长唠叨的朋友可以给老妈买单票，让阿姨自己去看看，因为俩人去看我怕在影厅里就吵起来；最大的问题是不像电影，缺乏现实层面逻辑，相当于设计一趟必须出发的旅行将母子绑定，给空间和时间造戏。故事的丰富性与笑点程度相当于［泰囧］的一半儿，袁泉线十分功能性。说《半个喜剧》是话剧电影、说《两只老虎》是小品电影的观众除非被卖点精确打击了，不然依然对这部电影无感。 给两星的原因是觉得这部电影虽然主打母子感情，可既不真诚，也不深刻。故事里成功又盲目的伊万离我太遥远。不过不会妨碍电影大卖，原因嘿嘿嘿，目测春节档《囧妈》票房三甲。\r\n155,还行,伤逝,https://www.douban.com/people/17851257/,徐峥的囧之系列来到第四部，泰囧是巅峰，港囧有点强颜欢笑，看之前很好奇徐峥这一部“母子”间的囧态是要怎么搞笑，徐峥一脸憨态其实还蛮适合演喜剧片的，大家也看得可爱，母子间的搞笑间也有温馨路线，总的来说比上一部好很多，彩蛋还有意外惊喜呢。\r\n264,推荐,柯诺,https://www.douban.com/people/43338884/,妈-我-妻子，这三者不应是你幻想我，我幻想你的控制关系，退一步海阔天空吧，徐峥要说的事就这么简单。说到一半已无话可说，剧作也陷落在那，停滞不前。拍熊出没，拍热气球，拍煽情的夕阳红，靠巧合行进，靠大场面虚掩撑场，最后在陈旧的闪回里总结陈词。中年男人撒娇搔痒，对俄罗斯风情也是刻板印象。最好的是那两头熊，特效做得真好。\r\n292,还行,鹿鹿,https://www.douban.com/people/187976697/,这波操作厉害，赚了人设卖了好感还有话题，如果搁电影院同期票房估计不行，片子很一般，但徐峥的做法很聪明\r\n308,还行,Quester,https://www.douban.com/people/Quester/,真的看不下去，10分钟就想关了。全是违背我三观的内容和画面，小到吃东西打电话，大到不顾他人安危硬上火车，我都有搧他母子俩的冲动，绝对祸害社会的负面榜样。你俩爱吵吵自己窝家里吵就行了，不要出来祸害全人类好吗！ps：这片子创造了太多的没想到，没想到大过年看了个这么闹心的“洗具”，没想到便宜无好货是真的，没想到……\r\n136,推荐,澈南,https://www.douban.com/people/48544555/,北京到莫斯科，有三个半小时的直飞航班，也有六天六夜漫长旅途的T3/4列车，白雪覆盖的西伯利亚平原，阴差阳错的母子意外之旅酝酿在滚滚车轮上的绿皮包厢。是母子间家常便饭的絮絮叨叨还是患难后的冰释前嫌，是老塔的男孩伊万和母亲解心结；是夫妻间背道而驰的情迷意乱还是放下后的坦诚相待，是婚姻故事里最后的美好祝愿。在合家欢庆的日子里，导演在欢笑之余讨论了当代疏远的亲子关系和时下男女婚姻价值观问题，是新潮又大胆的，细节的细腻抓取和卡司选角讨喜观众，这绝对会是春节档的大热门。\r\n495,推荐,Jothea,https://www.douban.com/people/eilyying/,第一次感觉把成年人之间的突然崩溃表现出来了，处理家庭关系，一度成为焦虑的根源，电影里说，我们都希望别人成为自己希望的样子，要求，质疑，批判……可真的忽略了好多东西。她也年轻过，也有自己喜欢的，也想自由自在，可她因为有你。后悔没带我妈来今天。\r\n249,推荐,麻团,https://www.douban.com/people/141909990/,看完不知道说什么。就很一般吧。没新意的套路。想搞笑又不想做无脑喜剧，揉杂进来又是中年危机，和母亲的代沟，但又不够。就感觉都想抓一把，但又都做不到位。看下来蛮平庸的吧。\r\n2187,较差,细水儿长流,https://www.douban.com/people/102078175/,它是中国影史投资最大的网络电影\r\n161,较差,喵老师2333,https://www.douban.com/people/York29/,郭京飞说世界已经做太多加法了，就想给大家春节的时候做做减法。好就姑且不讨论电影里的各种不合理性。核心感情戏看似好像多感人但是完全经不起推敲，最后沦为假大空的鸡汤，满屏幕都是徐峥自我满足与自我陶醉，还不如老老实实的拍老年妇女追梦合唱团，都远比现在充满设计感的感情戏来得感人。\r\n676,还行,西楼尘,https://www.douban.com/people/xilouchen/,婚姻比黑熊还危险，不知不觉就变成敝屣。母爱比奶糖还甜蜜，像硬塞的番茄般密集。曾经少年放的塔科夫斯基，忘记电影里的小男孩，只记得他的眼睛闪光。当年错过的红莓花儿开，忘记当时有多沮丧，只记得此刻没升起的幕布。我们是怎样忘记了爱的感觉，不能跟她共处同一车厢，也忘记了曾经依偎彼此的心房。\r\n453,推荐,此木为柴,https://www.douban.com/people/157826087/,三星给《红莓花儿开》，一方面诧异于徐峥对赌协议24亿的自信，一方面又惊叹于徐峥后知后觉的魄力，网播绝对是明智之举，这要是按期上映别说杠《唐探3》，估计连《急先锋》都够呛!\r\n97,较差,一个裤头的诞生,https://www.douban.com/people/aRayn/,一部工整优质的喜剧片，有些硬伤但瑕不掩瑜，仍然是徐峥一脸人畜无害的喜剧风格，俄罗斯姑娘一套成语直接笑喷「兴风作浪、瓮中捉鳖、露水姻缘、一丘之貉」，终于不再看到王宝强疯魔鬼畜的死样子了\r\n269,还行,Joe,https://www.douban.com/people/nonoknows/,作\r\n138,力荐,居无间,https://www.douban.com/people/juwujian/,一部看得出处处用力，又处处无聊的的电影。徐峥在庄与谐之间进退失据。看来“囧系列”要关张了。\r\n96,还行,还有谁,https://www.douban.com/people/163772931/,铁  铁道游击队？？   这一部挺尬的  温馨主题不错\r\n103,还行,Ben,https://www.douban.com/people/bensmt/,浪费两个多小时，全剧只有列车员有逻辑\r\n199,力荐,一〇一,https://www.douban.com/people/estelleyx/,中年人的生活就是糖衣包裹的苦味丸，工作，婚姻都让人喘不过气，妈妈很真实，是每家每户都会有的妈妈，逼你吃番茄，怕你不穿秋裤，不听你说话，但是熊（生死）面前能为你挡死，痛苦时候可以依靠，虽然永远也别指望她们能理解，甚至能改变。但不妨碍她嫌弃你的眼神里都是爱。\r\n100,很差,暖,https://www.douban.com/people/m19900714/,妈妈和儿子之间的互动细节真实到处处都能引发观者共鸣，中国式母亲+中国式儿子+中国式情感绑缚的难以厘清感，其背后是根深蒂固几个时代的传统家庭观，徐峥和黄梅莹的表演在火车的封闭空间中碰撞出了这个母子关系几十年来的症结。部分地方为了喜剧效果有些稍过于戏剧化，但总体而言，《囧妈》已经足够有现实意义。\r\n104,较差,BAzINGA,https://www.douban.com/people/155729531/,名为囧妈，但是这片里妈妈那里让他囧了？囧妈完全失去了前面三部的囧味，枯燥又冗长的剧情。真够让人囧的😁。可能也是由于剧情场景(火车)的限定，很难写出段子吧。至于主题，还是老一套。还好没上院线，不然真的要亏死哦，徐峥精明。(俄罗斯风景挺美，想去)\r\n85,还行,麻绳,https://www.douban.com/people/ma-sheng/,其实是一个和解的故事，相比起的母子间的拥抱式和解，更喜欢这里夫妻间的放手式和解，一个是妥协，一个是成长。\r\n1002,还行,想放下一切,https://www.douban.com/people/67843034/,本以为只是如港囧一样烂，把喜剧冲突和所谓包袱建立在奇葩上。看到最后发现比港囧还烂，强行输出毫无逻辑毫无意义的lowB价值观。\r\n80,推荐,杜小德,https://www.douban.com/people/lanedo/,今天有幸可以提前看到徐峥导演的新作——《囧妈》。个人认为，从剧情上讲，这部已不像之前的「囧」系列，故事的重点不再是旅途中遇到的各种「囧」事上，而是借了「囧」喜剧这样一个切口，多通过些许荒诞和戏谑的方式，道出了一个现实生活中母子、夫妻之间真的会面临的在相处上可能会出现的问题。整体搞笑，却也不乏温馨，是截止目前看过的今年春节档电影中最喜欢的一部。推荐！\r\n124,还行,晚不安,https://www.douban.com/people/yellowmoonbird/,依然是徐峥喜剧的三板斧，继续输出中产阶级焦虑，所有所剩无几的现实基底和诉求，都在民族奇观式的符号里挥发殆尽。基本叙事模式还是事业有成的男人陷入一次意外的旅程，并在最后获得顿悟和救赎，除此以外，不提供一丁点深入的路径。但是，当妈妈在大剧院一展歌喉的时候，我还是情不自禁地代入了，最后拿下头套更是止不住的泪流。必须承认，这是在囧系列里第一次被感动，突然体会到徐峥在咆哮演技之余一丝微弱的真诚。尤其在这个恐慌蔓延的当下，在家里陪父母看完，心底真的会升起一点生之幸福。伊万扒火车的时候我想，徐峥不是成龙，更成不了基顿，可他还是以先驱或叛徒之名被写入电影产业史了。明面上致敬《伊万的童年》，私下里重现《暖暖内含光》，他是多么想拍出一部好电影啊。\r\n114,还行,BCHH,https://www.douban.com/people/186449010/,大胆预测上院线六亿都卖不到，囧系列最差不为过。\r\n102,推荐,海月梦香,https://www.douban.com/people/154620886/,应该是系列里笑点最少的一部了，前半段虽是喜剧但穿插了些令人不愉快的设定，后半段则是走严肃催泪向――比较有问题的点在于，这算不上是定位在春节档适合亲子一同观看的喜剧片吧，能够感到欢喜的地方实在是太少了，论搞笑和剧情的结合不如原本的竞争对手唐探系列，作为正经片又显得太乏味，定位混乱。\r\n381,推荐,Marni,https://www.douban.com/people/marnic/,整段垮掉，比港囧还难看。\r\n107,推荐,奥兰多·塘夏,https://www.douban.com/people/169381736/,烂也不至于，但真的平庸，强行融入一些刻板化的元素，杂糅起来效果很一般。\r\n62,较差,桃子假象,https://www.douban.com/people/103113112/,确实挺尬的，笑点也不是很多，属于自嗨型“囧途”，强行用爱和解。\r\n72,较差,水浒三国金刚,https://www.douban.com/people/3322566/,囧系列还不停止更待何时\r\n78,还行,萨拉邦德,https://www.douban.com/people/116402157/,这大概是老塔被黑的最惨的一次！\r\n242,推荐,👩🏻🌾💃🏃🏻♀️,https://www.douban.com/people/61029261/,真的很难看，看到高以翔的时候很难受。不得不佩服徐导有头脑，六亿真的很回本了。最好的只有泰囧，本来挺喜欢徐峥，但是你看看拍的什么东西。\r\n64,较差,不良生,https://www.douban.com/people/angle223/,或许因为是在单亲家庭长大的男孩子，对于电影里母与子的彼此争吵、相爱、磨折、心疼、埋怨、牺牲、和解，似乎更能够多一些感同身受。这些过程，好的坏的，都是羁绊。母亲已经不在了的第五个春节，欣慰仍能见到电影里的母子俩最终相拥回家。\r\n62,还行,刘在石的妈妈粉,https://www.douban.com/people/150543635/,下了火车之后便全垮掉了。\r\n62,力荐,杨小乱,https://www.douban.com/people/luan/,生硬，刻意，廉价，也就图个乐。\r\n47,还行,比多,https://www.douban.com/people/yangui/,较差。不是囧妈是尬妈。\r\n104,还行,爱玩电影的人,https://www.douban.com/people/142084334/,\"至少比《港囧》强，个人给7.5分。本片在中国式亲情中讨论母子之间的情感与隔阂的深度是有的。母亲与儿子之间所产生的矛盾，来自长久以来的缺乏沟通与信任，这次把主人公安排在火车上进行一连串的囧事，更能将一个中年男人的窘迫描写至极点。没有哪个母亲是不爱自己的儿子的，而这次两人不仅互相理解起了对方，甚至儿子最后还替母亲坚守住了她的梦想。温情式的中国电影。\n另说一句，其实徐峥把版权卖给网络，我个人认为，有些许不妥。不说影院为其宣传下的成本直接蒸发，但显然一部院线电影撤档后变成一部网大，为了捞本直接跳过电影院，这其实多多少少影响了院线行业。如果徐峥这一次成功了，也不知道会有多少院线电影重复这一套。\n\"\r\n53,力荐,禾田小意达,https://www.douban.com/people/115812510/,最后张璐和徐伊万没有在一起，就凭这一点，多给一分。\r\n24,很差,Z星驰007,https://www.douban.com/people/Zxingchi007/,后面真的垮得稀烂啊，估计是完全不知道怎么编了，瞎搞乱凑，俄罗斯弊履女是什么鬼？？熊出没是什么鬼？？婚礼是什么鬼？？开口跪就把已经离场的观众都拉回来最后还掌声雷动是什么鬼？？所有的情感分崩离析都只要在煽情音乐里回忆诉说过去就能和解是什么鬼？？？？？？？\r\n48,较差,∑×pe℃t.,https://www.douban.com/people/asdzheng/,电影2.5星，但是现实中的商业操作加一星\r\n79,还行,奈斯Biu,https://www.douban.com/people/misakiller/,一般的不能再一般了，对于徐峥来说就是差\r\n6,还行,影志,https://www.douban.com/people/tjz230/,50秒语音方阵、喂吃的、爱看鸡汤公号…关于妈囧的部分，不如预期饱满。袁泉台词尴尬，高以翔出镜还是略感慨。亲情有时候就是一种控制和压力，父母管我们，催抱孙子也不过想继续管孙子…长辈们理解的爱就是如此简单粗暴，我们能理解，但无法改变，唯有包容和接纳。“在感情里讲道理就是最大的不讲道理” \r\n19,推荐,桃桃林林,https://www.douban.com/people/qijiuzhiyue/,主要问题还是太长了，前面太久了。喜剧部分没有那么突出，熊出没也很奇怪。反倒是后面煽情那部分，更能触动到我，尤其是最后黄梅莹摘假发那场戏。徐峥拍拍电影，总是在解决自己的困惑，这部其实也是。\r\n166,还行,abcdnarration,https://www.douban.com/people/cyns17/,钱不是这样赚法啊山争哥哥。这啥玩意？是不是自己心里也明白这玩意要是错过了贺岁档连6.3亿都拿不到？倒是很符合在什么西瓜视频上看的气质，植入广告又多又尬，直直地捅到观众脸前面来，姿态太难看了。这不配叫电影。这剧本也不配叫剧本。毕志飞拍个这玩意我也不说啥了，徐峥两个字的份量你自己就这么糟践。我刚才想到一句更难听的现在忘了。真失望我还不如花钱去看熊出没。\r\n100,还行,二火山,https://www.douban.com/people/51016659/,\"在囧系列类型片上做得更加扎实与成熟，笑料的抖包袱形式都很奏效，情感上，徐峥铺设两条线讲述当代人婚姻与亲情的双重错位，利用前后段空间的变换来挤压和释放角色的情绪，处在这个阶段的人多少都能感同身受。\n\n同样的主角帮助配角实现旅程愿望，但配上母亲这个身份，无疑加深了多层含义，对儿子事无巨细地管制，同时又不忘初心追梦。因为爱情结缘的夫妻也成了彼此制约的捆绑。无论什么形式的关系，彼此都是独立的个体，我们往往因为关系里的身份，陷入主观臆愿去束缚对方，忽略了理解和尊重。特别喜欢最后三方的放手，每个人都有了新的开始，反套路的合家欢，更迎合当下。\n\n三部下来感受到徐峥更加深耕情感和社会议题的讨论与挖掘，不再是追求闹腾的感官喜剧那么简单，感情也是愈加浓厚。徐峥正处在自己创作的黄金期，也很期待他未来的发挥。\"\r\n38,推荐,南蛮,https://www.douban.com/people/htwdyg/,一江春水向东流的翻译原来是hakuna Matata...\r\n97,推荐,张华弥,https://www.douban.com/people/54056542/,看出了徐峥的进步，甚至加入了动作戏的尝试。把母子情深和苏联情结合在一起这一招相当聪明，就连一到抒情段落就开始慢镜围着人转的段落，也显得异常可爱，最可爱的居然还是一个塔可夫斯基的梗，让人重新审视片中回忆叠化的部分。\r\n19,推荐,巴鸡！,https://www.douban.com/people/yangchangyi520/,中年男人与母亲之间的那些细节 还是很到位的 毕竟是取自徐峥自身的真实经验 也许只有到了四十来岁才能体会到与母亲的那种微妙关系吧 把莫斯科拍得很美 …但往往你记住一部电影里的风景超过内容本身时 就说明 电影内核还是有点问题的 但我还是相信徐峥能再出佳作的 。\r\n14,较差,陆支羽,https://www.douban.com/people/luzhiyu/,1.这个集体撤档、足不出户的魔幻春节，所幸还有这部囧途喜剧，能让我们陪家人一起宅。2.徐伊万与母亲相爱相杀的亲子模式，既有对现实中母子关系的准确印刻，如语音方阵、食物投喂等；又不乏对理想化母子关系的诗意建构，如熊出没那一刻的护犊情深，以及热气球的凭空亮相等。相比以往只遵循现实主义的徐峥而言，这其实是一种难得的进步，而并非有人所谓的编不下去。3.当然，“囧途”系列从其诞生之初便注定了商业属性，但这并不妨碍徐峥对老塔的致敬；显然，在剥开商业外壳后，徐峥也有一颗艺术之心，这也是为什么徐峥会在《十三邀》里说出那句：“我好想跟娄烨合作一部电影，但是我很担心，他是不是觉得我太商业了，看不上我。”\r\n49,较差,光与影,https://www.douban.com/people/yookoarlin/,挺好玩的合家欢电影，头条系好厉害，清晰度和流畅度100分\r\n150,还行,予己一书🤓,https://www.douban.com/people/141115309/,比港囧还难看。。。 人物立不住，喜剧变闹剧，整部电影从头到尾演员都在嘶吼，让人听着很头疼。 各种转变又显得特别做作，贾冰一出来就出戏，节奏也像拉长的小品。。。 我和我的祖国，女排拍得挺好，怎么这部这么烂。。。\r\n62,推荐,鲸鱼君,https://www.douban.com/people/4370686/,《囧妈》：尽管跟妈妈吵得不可开交，还总不在一个频段上，但在“过度关心”之下是强力释放的关怀和近乎本能的爱，专治各种中年危机。剧本模式跟囧途前作无异，吵闹出的笑点屡试不爽，公路冒险也花样翻新，熊都出没了。结尾虽然俗套，但母亲晚年追梦的纯粹执着还是能把人小感动一下。提名：最佳女主角(黄梅莹)。★★★☆\r\n36,较差,老罗Lazzaro,https://www.douban.com/people/lazzaro/,徐峥囧系列之三已然强行把自然喜剧往无端亲情上靠，甚至堆砌各种无脑无笑点所谓的“喜剧”元素，后半段一路尬闹尬煽。但不得不说贺岁档线下转线上，类“流媒体”这波操作还是挺高的。\r\n17,还行,冰镇西瓜橘子水,https://www.douban.com/people/65400706/,和妈妈火车上吵来吵去那几段还挺真实的 回家过年就是一直在你耳边叨叨叨叨\r\n116,力荐,有心打扰,https://www.douban.com/people/kejinlong/,我甚至都不知道要不要标上「喜剧」这个标签，从头到尾让人难以发笑。而亲情和爱情的内容，太可怕了，这是什么傻逼剧情，大过年的，别恶心人了，好吗？！\r\n23,还行,沉默,https://www.douban.com/people/180520941/,太烂，把观众当傻子。\r\n9,还行,王小叶儿,https://www.douban.com/people/wangxiaoyeer/,7分。本片没有像人在囧途将春运、泰囧将泰国风情文化吃透一样，将俄罗斯真正的文化内涵和妈囧主线相结合。用火车替代了传统的公路，受到一定限制，但也带来了列车上独特的情节展现方式，并不是完全的弱点。但不同于前几部，这部将当地文化极度地弱化，成了电影故事背景而不是故事场景，无形中极大削减了戏剧性和戏剧趣味。所以虽然有遇见熊、船上婚礼、遇见俄罗斯女孩等戏份，但因为对俄罗斯的理解过于符号化，情节衔接和节奏都远不如之前几部顺畅且自然。而代替文化风情，电影将更多的笔墨放在了自己和母亲关系的细腻处，从一开始拒绝沟通粗暴反抗控制到被迫接受再到崩溃争吵再到心疼服软再到和解升华，节点清晰，说明影片一直试图向更深的地方挖掘。所以片子最大的问题恰恰不是太过追求商业，而是太执着于艺术性，反而没有处理好和商业性之间的平衡。\r\n34,力荐,拔鳝射水,https://www.douban.com/people/166015195/,很想多打点分，但是真的不好看\r\n5,很差,汪金卫,https://www.douban.com/people/longzheking/,一部非常拧巴的电影。一面是贺岁喜剧，一面处处讲母子关系、夫妻关系的大道理；一面致敬塔可夫斯基，一面又安插低俗桥段洒狗血鸡汤；一面在K3国际列车背景调查、美术布景等下足功夫贴近真实，一面极尽夸张之能事搞扒火车熊出没热气球。都21世纪20年代了，摄影特效技术如此发达，做喜剧还如此不思进取。已经分不清袁泉黄渤俄女郎尴尬的台词文本与乌兰巴托打电话、棕熊热气球相比哪个更扯淡、更灾难。P.S.1.K3国际列车停张家口，男主可以在那下车。2.电影上线前，高以翔去世，即刻APP死掉。3.电影上线一周后，开行六十年来哪怕中苏破裂都无间断运行的K3国际列车，因肺炎疫情而在俄方命令下首次停运\r\n48,较差,killer CAT,https://www.douban.com/people/momomosuck/,看了前5分钟台词就尴尬癌发作，没想到还会全程尴尬。我的2020第一烂片，囧妈，谢谢。感谢没有上院线祸害观众，让我在电脑面前有了免费快进的机会，真的还不如网络大电影。之前徐峥采访说怕娄烨看不上自己，终于明白为什么了。\r\n13,还行,远子,https://www.douban.com/people/xiaoxiaodeyuanz/,本想看部“喜剧”放松下，看完更气了……可能就是徐峥这帮中老年人一天到晚喊着应该和父母和解，我们的“精神弑父”才会变得如此艰难吧……好吧，我可能又太苛刻了。但看到有人说因为《伊万的童年》多加一星，就真的不太懂了。是不是再在火车车厢上贴上伯格曼、费里尼、安东尼奥尼的电影海报，就可以打五星啦？别这样，我们要做就做最文艺、最持久的文艺青年，不要像徐峥这样半途而废，好吗？\r\n25,还行,刘小流,https://www.douban.com/people/yingpingduli/,比起以往的囧系列，忽然发现即便是包贝尔那样蠢蛋存在的意义……\r\n8,推荐,安东,https://www.douban.com/people/smokey/,怪不得有底气让免费观看呢，光那些铺天盖地的植入广告就能盈利了吧？\r\n16,还行,凌睿,https://www.douban.com/people/lingrui1995/,系列最差，这质量就算上映也不会大卖。难怪不换个日子上映，而是在网上播出。 俄罗斯美女和伊万第一次见面就和他在火车尾独处，还要和他接吻。 伊万是魅力十足还是风流倜傥？是风靡万千少女还是全天下女人都喜欢他？ 这不是YY吗？ 还没有签离婚协议，他就想出轨。如果列车员没有及时阻止，他可能已经出轨了。 后来他看见娜塔莎和男友复合，他脸上写满了羡慕嫉妒恨。 你才是小三，怎么搞得好像别人是小三一样。 你们之间本来就不应该发生什么，你竟然还觉得不甘心？ 还有伊万“不小心”钻进女乘客的裙子里，后来又“不小心”看见女乘客没穿裤子……这些笑点都很低级，甚至低俗。 伊万和母亲的亲情线、伊万和张璐的爱情线也是讲了半天讲不到重点。隔靴搔痒，无病呻吟。 每个人在亲情和爱情方面都有过非常艰难的经历，伊万面临的问题还是太小儿科了。\r\n18,还行,胖官赵,https://www.douban.com/people/122454843/,又一个“妈都是为你好”的中华pua家庭片，套路和前面几部如出一辙啦，全程冷漠看完，没笑点没泪点，曲曲折折的探险都在意料之中，最终还俗套地沦落为俄罗斯风情片。《伊万的童年》和《红莓花开》算小亮点。这片是跟《熊出没》有合作吗？\r\n22,推荐,still ysys,https://www.douban.com/people/161796163/,披着喜剧外表的家庭纠纷剧，没有任何笑点。。。我都不知道我是怎么看完的\r\n15,推荐,SleepWalker,https://www.douban.com/people/44564069/,母爱如狂奔的俄罗斯棕熊般凶猛，母爱似手中的大白兔奶糖般甜蜜，该抱着怎样的期待面对自己的子女，这是世上所有母亲共同的难题。比《港囧》强，角度找的不错，核心主题能引起大众共鸣，进而产生煽情攻势，但在剧作层面徐峥仍然不思进取，做作、矫情、偷懒、狗血，怎么方便怎么来，主要体现在鸡肋的双线叙事，庸俗的旅途艳遇，和毫无诚意的鸡汤逆转上，而且台词也欠打磨，尤其是开场袁泉对徐峥义正言辞的尬聊式说教，我在看教育频道吗。这片子最大的功臣是黄梅莹，无论是和徐峥的对手戏还是solo，几段高光表现都挺打动人，这大概也是这片子还值得一看的原因。Ps:结尾首彩蛋够意思，虽然不知道是不是真的。\r\n71,推荐,小牛魔王,https://www.douban.com/people/nmw/,西瓜鲜时光\r\n35,较差,zhang 2nd,https://www.douban.com/people/zhanger/,还不如前两部，从头吵到尾，但是没有一场够劲儿的，很可惜\r\n30,较差,降落伞,https://www.douban.com/people/Hepburng/,三星，笑点最多的居然是俄罗斯姑娘。\r\n18,还行,梅岭藏殊梅长苏,https://www.douban.com/people/54153810/,剧情比较一般\r\n17,推荐,Enjolras,https://www.douban.com/people/Enjolras0712/,1，意料之中的水准，我本就觉得徐峥的“囧”系列难以再创新高。诚然《泰囧》开启了中国喜剧的黄金时代，但在“开心麻花”都已经后继乏力的今天，传统的喜剧确实很难再给人惊喜了。 2，所以我们在《囧妈》中所看到的，都是一些“暮气沉沉”的包袱的桥段，甚至在形式上，依然还是照着《泰囧》的模式在构建剧本，毫无尝试突破的意图，可能徐峥觉得这样“稳”，但同时也失去了出彩的可能。 3，徐峥对于男人中年危机的刻画倒真是一部接一部，一部比一部刻画得更多，以前可能只是在夫妻关系上略作点缀，这次则更多代入了中年人和父母的代沟，其实这个视角拿来做一些更现实主义的题材很好，未必欢笑就是一切问题的解药。\r\n28,较差,Yangleiww,https://www.douban.com/people/60911277/,虽然喜剧前段我只有冻成冰雕那段找了，但却也没有忽略对观众内心的照拂，很明显导演并不是想简单的拍喜剧，更多的是想探讨妈妈与婚姻的巧妙关系上，而在内容上直视了亲子和夫妻关系中的无助和孤独，但却并不是用各种平淡如水的台词和道貌岸然的荣誉去建立人物动机。影片有几段的表演有着非常惊人的情感能量，有着一种从简单故事中挖掘并呈现影像的能力，这种力量足以让观众对主角所经历的情感感同身受。欢快的前半段以及温暖而又柔情的后半段之间巧妙的搭配让整部影片有笑有泪。\r\n"
  },
  {
    "path": "lianxi/film-csv.txt",
    "content": "﻿电影名称;上映时间;闭映时间;出品公司;导演;主角;影片类型;票房/万;评分;\r《熊出没之夺宝熊兵》;2014.1.17;2014.2.23;深圳华强数字动漫有限公司;丁亮;熊大，熊二，;\r《菜鸟》;2015.3.27;2015.4.12;麒麟影业公司;项华祥;柯有伦，崔允素，张艾青，刘亚鹏，张星宇;爱情/动作/喜剧;192.0 ;4.5 ;\r《栀子花开》;2015.7.10;2015.8.23;世纪百年影业，文投基金，华谊兄弟，千和影业，剧角映画，合一影业等;何炅;李易峰，张慧雯，蒋劲夫，张予曦，魏大勋，李心艾，杜天皓，宋轶，王佑硕，柴格，张云龙;青春，校园，爱情;37900.8 ;4.0 ;\r《我是大明星》;2015.12.20;2016.1.31;北京中艺博悦传媒;张艺飞;高天，刘波，谭皓，龙梅子;爱情 励志 喜剧;9.8 ;2.5 ;\r《天将雄师》;2015.2.19;2015.4.6;耀莱文化，华谊兄弟，上海电影集团;李仁港;成龙，约翰·库萨克，阿德里安·布劳迪，崔始源 ，林鹏，王若心，筷子兄弟，西蒙子，冯绍峰，朱佳煜;动作，古装，剧情，历史;74430.2 ;5.9 ;\r《简单爱》;2015.7.3;2015.7.19;中视合利（北京）文化投资有限公司一鸣影业公司（美国）;崔龄燕;许绍洋，张琳，谢雨芩，石铭熙;都市浪漫爱情喜剧;21.7 ;2.9 ;\r《全能_爸》;2015.3.5;2015.3.22;河南弘星、北京弘星、杭州寰耀;董春泽;罗京民，孙波，于非，马燕，赵丽，卢思佚，米明杰，贾志;亲情励志喜剧;83.0 ;7.5 ;\r《恶棍天使》;2015.12.24;2016.2.13;天津橙子映像传媒有限公司、北京光线影业有限公司;邓超、俞白眉;邓超，孙俪，梁超，代乐乐;喜剧/荒诞/爱情;64959.0 ;4.0 ;\r《冲上云霄》;2015.2.19;2015.3.29;寰亚电影制作有限公司;叶伟信，邹凯光;古天乐，郑秀文，吴镇宇，张智霖，佘诗曼，郭采洁;剧情，爱情;15631.3 ;4.4 ;\r《少年班》;2015.6.19;2015.7.19;工夫影业；华谊兄弟;肖洋;孙红雷，周冬雨，董子健，王栎鑫，李佳奇，夏天，王森;青春、校园、喜剧;5068.7 ;5.7 ;\r《最美的时候遇见你》;2015.12.11;2015.12.27;广州遐迩文化传播有限公司;吴娜;谭松韵，罗云熙;校园，爱情，喜剧;156.2 ;5.5 ;\r《百团大战》;2015.8.28;2015.10.11;八一电影制片厂；中国电影股份有限公司；北京紫禁城影业公司;宁海强，张玉中;陶泽如，刘之冰，印小天，吴越，唐国强，王伍福;战争/历史;41367.3 ;4.7 ;\r《怦然星动》;2015.12.3;2016.1.10;欢瑞世纪，嘉行传媒，青春光线;陈国辉;杨幂，李易峰，陈数，王耀庆，迪丽热巴，张云龙;都市，爱情，喜剧;15973.9 ;4.3 ;\r《万物生长》;2015.4.17;2015.5.24;北京劳雷影业、杭州果麦文化传媒、北京联瑞影业;李玉;范冰冰，韩庚，沙溢，吴莫愁，杨迪，齐溪，张博宇，沈婷婷，李梦，雷恪生，吕行;爱情、剧情、校园、喜剧;14831.8 ;5.8 ;\r《一念天堂》;2015.12.31;2016.2.13;天河盛宴，凯德盛世（北京）投资管理有限公司，和云筹(北京)网络科技有限公司;张承;沈腾，马丽，林雪，杜晓宇，王子子，李元鹏;喜剧;8279.5 ;5.2 ;\r《闯入者》;2015.4.30;2015.5.24;冬春文化、银润传媒、合润传媒、安乐电影、引力影视投资、重庆电影集团;王小帅;吕中，秦海璐，冯远征，秦昊，石榴;剧情、犯罪;1003.6 ;7.6 ;\r《一路惊喜》;2015.2.6;2015.3.8;万达影视传媒有限公司;金依萌/潘安子/章家瑞/宋迪;郭采洁，萧敬腾，赵丽颖，凤小岳，夏雨，梅婷，蓝燕，林家栋，张译，大鹏，蒋劲夫，孙艺洲，张辛苑，阚清子，刘维，乔杉;喜剧/爱情/家庭;6974.6 ;5.0 ;\r《既然青春留不住》;2015.10.23;2015.11.22;杭州和润影视有限公司;田蒙;张翰，陈乔恩，王啸坤，施予斐，贾盛强，廖娟;喜剧、爱情;5020.3 ;4.5 ;\r《破风》;2015.8.7;2015.9.13;恒大影视文化有限公司;林超贤;彭于晏，窦骁，崔始源，王珞丹，陈家乐，欧阳娜娜，连凯;剧情、运动、爱情;14529.1 ;7.2 ;\r《浪漫天降》;2015.10.23;2015.11.8;;宁瀛;夏雨，关晓彤，邱泽;浪漫，爱情，喜剧;785.2 ;4.1 ;\r《将错就错》;2015.3.5;2015.3.29;中国电影股份有限公司等;王宁;小沈阳，田亮，陈小春，熊黛林;爱情、喜剧;3937.4 ;3.8 ;\r《探灵档案》;2015.3.7;2015.3.22;壹马时代文化传媒（北京）有限公司、北京盛唐时代文化传播有限公司;彭发;马浴柯，吴昕，潘粤明，王景春，莫小棋，朱雨辰，洪天明，陈国坤，刘颖仪;悬疑，惊悚;334.1 ;5.6 ;\r《分手再说我爱你》;2015.12.24;2016.1.17;爱奇艺影业（北京）有限公司、太阳娱乐文化有限公司、无限动力实业有限公司;叶念琛;方力申，邓丽欣;爱情、剧情;1273.2 ;6.5 ;\r《失孤》;2015.3.20;2015.5.3;华谊兄弟传媒集团、源合圣影视、映艺娱乐;彭三源;刘德华，井柏然，梁家辉，吴君如;剧情、社会;21617.9 ;6.4 ;\r《坏蛋必须死》;2015.11.27;2015.12.20;北京新力量、华谊兄弟、南京大道行知;孙皓;陈柏霖，孙艺珍，乔振宇，申贤俊，张光，杨旭文，丁文博，朴哲民;喜剧，悬疑，旅行，爱情;4705.4 ;6.0 ;\r《紫霞》;2015.12.11;2015.12.27;映代码公司;苗述;徐洁儿，袁晓超，刘承俊，洪天照，刘永健，谭赫，肖红，金晶，谢沅江;爱情，奇幻;49.1 ;2.4 ;\r《爱情魔发师》;2015.7.17;2015.8.2;北京仁和博纳文化传媒有限公司;倾海;游游，张燃，朱咪咪，黄一飞，崔浩博，王子轩;喜剧 / 爱情;20.3 ;3.8 ;\r《爱之初体验》;2015.8.7;2015.8.23;上海锦瑟天下影视有限公司;海涛;张超，李晓峰，张瑶，吴大维，屈菁菁，刘雅瑟，乔曦;喜剧/爱情;321.7 ;4.7 ;\r《前任2：备胎反击战》;2015.11.6;2015.12.20;华谊兄弟传媒股份有限公司、新圣堂影业;田羽生;郑恺，郭采洁，张艺兴，王传君;爱情，喜剧;25200.2 ;5.0 ;\r《可爱的你》;2015.3.20;2015.4.12;银都机构、寰宇娱乐、剧魔影业、精鹰传媒等;关信辉;古天乐，杨千_，姜皓文，刘玉翠;剧情;2221.7 ;7.8 ;\r《不可思异》;2015.12.4;2016.1.10;星汇天姬、中影、珠影、华策影业、合肥广电;孙周;王宝强，小沈阳，大鹏，辛芷蕾;3D/科幻/喜剧/剧情;11190.9 ;3.8 ;\r《一路向前》;2015.8.6;2015.8.22;深圳市华影投资有限公司;侯亮;陈赫，姚星彤，常远，张颂文，陆海涛;喜剧、爱情;571.0 ;3.6 ;\r《天各一方》;2015.10.9;2015.10.25;广东广视传媒有限公司，梧州市西江在线影视传播有限公司;云山;潘辰，郑凯，苏妙玲，金丰;言情;2.9 ;5.0 ;\r《魔卡行动》;2015.10.16;2015.10.31;上海华宇电影股份有限公司;姜国民;乔任梁，张馨予，任达华;动作，喜剧，爱情;282.7 ;3.4 ;\r《拳霸风云》;2015.6.26;2015.7.12;中视尚影（北京）国际文化传媒有限公司;臧溪川;谷尚蔚，崔允素，杜海涛，梁家仁;动作 / 爱情 / 剧情;133.7 ;3.3 ;\r《守梦者》;2015.7.24;2015.8.16;河北同华影视公司、唐山新天地公司;张力;温兆伦，连晋，张潮，林鹏;悬疑;31.3 ;5.4 ;\r《大变局之梦回甲午》;2015.9.1;2015.9.20;北京金亿乾坤影视文化传媒有限公司;刘全玮;赵育莹，吴云飞，韩一菲，冯兵;剧情，爱情，战争;31.8 ;3.1 ;\r《不能错过》;2015.12.10;2015.12.27;北京奇百奇文化传媒有限公司、北京国龙影业发行股份有限公司;杜奇泉、祁子轩;曾虹畅，吕卓燃，崔航，马藜，郄路通（晓凡），郑媛元，赵冉;青春、爱情、时尚;14.3 ;2.7 ;\r《封门诡影》;2015.3.13;2015.4.6;北京思泽汇通影视有限公司;王孟圆;葛天 ，隋咏良，小张铎，杜语庭 ，钱思_，刘滢，屠育玮，尉迟少南，张铎;惊悚 恐怖 悬疑;2581.7 ;4.6 ;\r《吉星高照2015》;2015.3.1;2015.3.22;珠江影业传媒有限公司;晴朗;王祖蓝，陈嘉桦，曾志伟，陈静，苑琼丹，温超，湛琪清，元秋，杨奇煜，黄一山，刘俊纬，黄一飞，廖亦_，田启文，冯勉恒，郑文辉，阮兆祥，刘以达，施明，古明华;爱情，喜剧;1529.7 ;3.1 ;\r《枪过境》;2015.4.16;2015.5.3;北京盛世翔和国际影视文化传播有限公司;梁杰;安泽豪，方力申，王双宝，计春华，焦恩俊，闫婕;动作、悬疑、犯罪;137.0 ;5.3 ;\r《兔侠之青黎传说》;2015.2.21;2015.3.15;天津北方电影集团有限公司;马元 董大可;黄磊，杨子姗，何云伟，王劲松，马元，王_波;动画;2973.5 ;6.3 ;\r《小门神》;2016.1.1;2016.1.24;追光人动画设计（北京）有限公司;王微;高晓松，白客，于心怡，毕啸岚，易小星，季冠霖;剧情;7868.5 ;6.8 ;\r《美人鱼》;2016.2.8;2016.3.27;中国电影股份有限公司、星辉海外有限公司、和和(上海)影业有限公司;周星驰;邓超，罗志祥，张雨绮，林允;爱情/喜剧/科幻;339212.8 ;6.8 ;\r《西游记之孙悟空三打白骨精》;2016.2.8;2016.3.27;星皓影业有限公司;郑保瑞;郭富城，巩俐，冯绍峰，小沈阳，罗仲谦，陈慧琳，费翔;动作、魔幻;120101.7 ;5.7 ;\r《年兽大作战》;2016.2.8;2016.3.6;东阳坏猴子影视文化传播有限公司;张扬;雷佳音，周冬雨，陈赫，陶虹，郭涛，郭子睿，刘仪伟，沈腾，张一白，王迅，郝云，谢娜，熊乃瑾;动画喜剧、奇幻冒险;3451.2 ;5.7 ;\r《澳门风云3》;2016.2.8;2016.3.27;博纳影业集团;刘伟强、王晶;周润发，刘德华，张学友，张家辉，向华强，向佐，李宇春，刘嘉玲，王诗龄，余文乐;动作、冒险、喜剧;111818.8 ;4.0 ;\r《卧虎藏龙：青冥宝剑》;2016.2.19;2016.4.4;韦恩斯坦国际影业公司（美国）;袁和平;甄子丹，杨紫琼，岑勇康，刘承羽，贾森·斯科特·李;武侠、动作、剧情;25625.3 ;4.7 ;\r《叶问3》;2016.3.4;2016.4.17;东方电影制作有限公司;叶伟信;甄子丹，张晋，熊黛林，迈克·泰森，谭耀文;武术、动作、剧情;77028.9 ;6.3 ;\r《火锅英雄》;2016.4.1;2016.5.15;新丽传媒股份有限公司、工夫影业股份有限公司、万达影视传媒有限公司等;杨庆;陈坤，白百何，秦昊，喻恩泰;剧情、动作、爱情;37054.2 ;7.2 ;\r《熊出没之熊心归来》;2016.1.16;2016.2.28;深圳华强、优扬传媒、乐视影业、珠江影业、大地发行、猫眼影视;丁亮、林永长;张伟（配），张秉君（配），谭笑（配），赵肖宇（配），万丹青（配），孟雨田（配）;动画、冒险、喜剧、合家欢;28775.4 ;6.2 ;\r《睡在我上铺的兄弟》;2016.4.1;2016.5.8;乐视影业;张琦;陈晓，杜天皓，刘芮麟，李现，吴优，蓝盈莹;青春、校园、爱情;12782.3 ;5.0 ;\r《陆_知马俐》;2016.7.15;2016.8.21;宸铭影业、海宁壹线影视、君竹影视、华谊兄弟、旗舰影业;文章;包贝尔，宋佳，朱亚文，焦俊艳;喜剧、爱情;19206.6 ;5.3 ;\r《微微一笑很倾城》;2016.8.12;2016.9.17;上海剧酷文化传播有限公司;林玉芬 ;郑爽，杨洋，毛晓彤，白宇，牛骏峰，郑业成，宋欣佳怡，秦语，张赫，崔航，张彬彬，马春瑞;纯爱、青春、偶像;27583.5 ;5.1 ;\r《谁的青春不迷茫》;2016.4.22;2016.5.29;光线传媒;姚婷婷;白敬亭，郭姝彤，李宏毅，王鹤润，丁冠森;青春、校园;17990.4 ;6.4 ;\r《夏有乔木雅望天堂》;2016.8.5;2016.9.11;福建恒业电影发行有限公司;赵真奎;吴亦凡，韩庚，卢杉，周元;爱情、青春、犯罪;15640.7 ;4.7 ;\r《不朽的时光》;2016.4.15;2016.5.2;欣欣然（北京）文化传媒有限公司、浙江王马影视传媒有限公司;闫然;黄恺杰，爱新觉罗·启星，耿一智，张逗逗，王紫逸，许正庭，焦刚，李易祥;剧情;72.8 ;4.5 ;\r《我们的十年》;2016.9.2;2016.9.25;湖南楚人传媒有限公司;马伟豪、刘海;赵丽颖，乔任梁，吴映洁，范逸臣，班嘉佳，冯铭潮;青春、怀旧、爱情;4408.5 ;4.8 ;\r《大话西游3》;2016.9.14;2016.10.30;春秋时代影业、乐华娱乐、星光联盟;刘镇伟;韩庚，唐嫣，吴京，张瑶，张超，谢楠，王一博，黄征，莫文蔚，胡静，何炅，钟欣潼，曹承衍，周艺轩;动作、奇幻、爱情、喜剧;36593.3 ;3.7 ;\r《致青春·原来你还在这里》;2016.7.8;2016.8.21;北京儒意欣欣文化发展有限公司;周拓如;吴亦凡，刘亦菲，金世佳，李沁，李梦，郝邵文;爱情、青春、剧情;33679.1 ;4.1 ;\r《寒战2》;2016.7.8;2016.8.21;;陆剑青、梁乐民;郭富城，梁家辉，杨采妮，文咏珊，周润发，彭于晏，李治廷，杨_宁;剧情、动作、犯罪;67820.3 ;6.9 ;\r《危城》;2016.8.12;2016.9.17;伯纳影业、寰宇娱乐、爱奇艺影业、太阳娱乐文化、英明文化、长长影视等;陈木胜;刘青云，古天乐，彭于晏，袁泉，江疏影，吴京;动作、武侠;16737.4 ;5.6 ;\r《盗墓笔记》;2016.8.5;2016.9.17;上海电影（集团）有限公司、乐视影业、南派泛娱有限公司;李仁港;鹿晗，井柏然，马思纯，王景春，张博宇，涂圣成;冒险、动作、悬疑;100441.4 ;4.7 ;\r《封神传奇》;2016.7.29;2016.9.11;中国星电影有限公司、博纳影业集团;许安、杨龙澄;李连杰，范冰冰，黄晓明，Angelababy，古天乐，梁家辉，向佐，许晴;奇幻、动作、古装;28394.3 ;2.9 ;\r《百鸟朝凤》;2016.5.6;2016.6.5;北京聚合影联文化传媒有限公司;吴天明;陶泽如，李岷城;剧情;8692.2 ;8.0 ;\r《惊天大逆转》;2016.7.15;2016.8.14;中国电影股份公司、北京海润影业有限公司;李骏;钟汉良，李政宰，郎月婷;动作、悬疑、犯罪;7864.8 ;7.1 ;\r《赏金猎人》;2016.7.1;2016.8.14;香港天马电影、上海欣亿传媒、Starhaus Entertainment、Union investment Partners;申太罗;李敏镐，钟汉良，唐嫣，吴千语，樊少皇，徐正曦;动作、喜剧、推理、悬疑;21346.3 ;5.0 ;\r《功夫熊猫3》;2016.1.29;2016.3.13;中国电影股份有限公司、梦工场动画影片公司、上海东方梦工厂文化传播有限公司;吕寅荣、亚历山德罗·卡罗尼;（英文版）杰克·布莱克，凯特·哈德森，布莱恩·科兰斯顿，（中文版）成龙，黄磊，白百合，王志文，周杰伦，杨幂;动画，喜剧，动作，家庭，冒险;100200.4 ;7.7 ;\r《独立日：卷土重来》;2016.6.24;2016.8.7;二十世纪福斯电影公司;罗兰·艾默里奇;利亚姆·海姆斯沃斯，麦卡·梦露，杰西·厄舍，杰夫·高布伦，夏洛特·甘斯布，杨颖，雪拉·渥德;科幻、动作、冒险;50320.6 ;5.7 ;\r《X战警：天启》;2016.6.3;2016.7.17;二十世纪福斯电影公司（美国）;布莱恩·辛格;詹姆斯·麦卡沃伊，迈克尔·法斯宾德，詹妮弗·劳伦斯，尼古拉斯·霍尔特，伊万·彼得斯，索菲·特纳，泰尔·谢里丹，亚历山德拉·西普，柯蒂·斯密特-麦菲，奥斯卡·伊萨克，奥立薇娅·玛恩，本·哈迪;动作、冒险、科幻;80284.1 ;7.8 ;\r《美国队长3》;2016.5.6;2016.6.11;美国漫威影业公司（美国）;安东尼·罗素、乔·罗素;克里斯·埃文斯，小罗伯特·唐尼，塞巴斯蒂安·斯坦，斯嘉丽·约翰逊，伊丽莎白·奥尔森，查德维克·博斯曼，安东尼·麦凯，保罗·贝坦尼，保罗·路德，唐·钱德尔，杰瑞米·雷纳，汤姆·赫兰德，丹尼尔·布鲁赫;动作、科幻、冒险;124626.6 ;7.7 ;\r《蝙蝠侠大战超人：正义黎明》;2016.3.25;2016.5.15;华纳兄弟影片公司（美国）;扎克·施奈德;本·阿弗莱克，亨利·卡维尔，盖尔·加朵，杰西·艾森伯格，艾米·亚当斯，杰瑞米·艾恩斯;动作、科幻、冒险;61908.2 ;6.6 ;\r《魔兽》;2016.6.8;2016.7.16;暴雪娱乐（美国）;邓肯·琼斯;崔维斯·费米尔，托比·凯贝尔，宝拉·巴顿，本·施耐泽，本·福斯特，吴彦祖，多米尼克·库珀，罗伯特·卡辛斯基;动作、冒险、奇幻;147214.9 ;7.8 ;\r《忍者神龟2：破影而出》;2016.7.2;2016.8.14;派拉蒙影业公司（美国）、美国尼克影业（美国）、阿里巴巴影业集团有限公司   ;戴夫·格林;梅根·福克斯，斯蒂芬·阿梅尔，阿伦·瑞奇森，威尔·阿奈特，诺尔·费舍，皮特·普劳泽克，弗莱德·阿米森;喜剧、动作、科幻、冒险;39356.3 ;6.3 ;\r《疯狂动物城》;2016.3.4;2016.4.17;迪士尼影业;拜恩·霍华德、里奇·摩尔、杰拉德·布什;金妮弗·古德温，杰森·贝特曼，夏奇拉，伊德里斯·艾尔巴，艾伦·图代克，J·K·西蒙斯;动画、动作、冒险;153033.6 ;9.2 ;\r《爱宠大机密》;2016.8.2;2016.9.17;环球影业、照明娱乐;亚罗·切尼、克里斯·雷纳德;艾丽·坎伯尔，凯文·哈特 ，蕾克·贝尔 ，艾伯特·布鲁克斯 ，鲍比·莫伊尼汉;动画、喜剧;38923.5 ;7.5 ;\r《超脑48小时》;2016.5.13;2016.6.19;千年影业;阿里尔·弗罗门;凯文·科斯特纳，加里·奥德曼，盖尔·加朵 ，汤米·李·琼斯，瑞安·雷诺兹，迈克尔·皮特;剧情、动作、犯罪;10355.2 ;6.4 ;\r《猎神：冬日之战》;2016.4.22;2016.5.29;环球影业（美国）;塞德里克·萨科;克里斯·海姆斯沃斯，查理兹·塞隆，艾米莉·布朗特，杰西卡·查斯坦;动作、科幻、剧情;10632.2 ;5.4 ;\r《神战：权力之眼》;2016.3.11;2016.4.24;顶峰娱乐;亚历克斯·普罗亚斯;杰拉德·巴特勒，尼古拉·科斯特-瓦尔道，杰弗里·拉什，布兰顿·思怀兹，科特妮·伊顿;冒险、奇幻、动作;23541.9 ;6.5 ;\r《惊天魔盗团2》;2016.6.24;2016.8.7;狮门影业;朱浩伟;杰西·艾森伯格，伍迪·哈里森，戴夫·弗兰科，马克·鲁法洛，丹尼尔·雷德克里夫，周杰伦，丽兹·卡潘，迈克尔·凯恩，摩根·弗里曼;动作、喜剧、惊悚;63891.4 ;6.5 ;\r《巴黎危机》;2016.9.20;2016.10.7; 法国第4电视台（法国）;詹姆斯·瓦特金斯;伊德瑞斯·艾尔巴，理查德·麦登，凯利·蕾莉，夏洛特·莱本，何塞·加西亚;动作、剧情、悬疑;1446.2 ;6.4 ;\r《伦敦陷落》;2016.4.8;2016.5.22;焦点电影公司（美国）;巴巴克·纳加非;杰拉德·巴特勒，艾伦·艾克哈特，摩根·弗里曼，阿隆·阿布布尔，安吉拉·贝塞特;动作、犯罪、惊悚;33981.0 ;6.1 ;\r《巴霍巴利王：开端》;2016.7.22;2016.8.7;Arka Mediaworks;S·S·拉贾穆里;帕拉巴斯，特曼娜·巴蒂亚，安努舒卡·谢蒂，纳赛尔;动作、冒险、历史、战争;749.7 ;7.2 ;\r《哆啦A梦：新·大雄的日本诞生》;2016.7.22;2016.8.28;哆啦A梦制作委员会;八锹新之介;水田山葵，大原惠美，嘉数由美，关智一，木村昴，白石凉子，大冢芳忠;动画电影（科幻，冒险）;10361.0 ;7.1 ;\r《寄生兽》;2016.9.2;2016.9.25;电影《寄生兽》制作委员会;山崎贵;染谷将太，深津绘里，阿部贞夫，桥本爱;血腥;4834.4 ;7.4 ;\r《谍影重重5》;2016.8.23;2016.10.7;环球影业;保罗·格林格拉斯;马特·达蒙，汤米·李·琼斯，艾丽西卡·维坎德，朱丽娅·斯蒂尔斯，文森·卡索;动作、惊悚;44710.7 ;7.3 ;\r《星际迷航：超越星辰》;2016.9.2;2016.10.16;派拉蒙影业公司;林诣彬;克里斯·派恩，扎克瑞·昆图，佐伊·索尔达娜，西蒙·佩吉;科幻、动作;44097.9 ;7.3 ;\r《鲨滩》;2016.9.9;2016.10.16;哥伦比亚电影公司（美国）;佐米·希尔拉;布蕾克·莱弗利;剧情、恐怖、惊悚;10171.7 ;7.1 ;\r《九条命》;2016.9.9;2016.10.16;法国欧罗巴电影公司、上海基美影业股份有限公司联合出品;巴里·索南菲尔德;凯文·史派西，詹妮弗·加纳，克里斯托弗·沃肯，罗比·阿梅尔;喜剧、家庭、奇幻;11204.3 ;6.9 ;\r《冰川时代5：星际碰撞》;2016.8.23;2016.10.7;蓝天工作室（美国）;盖伦 T·楚、麦克·特米尔;雷·罗马诺，丹尼斯·利瑞，约翰·雷吉扎莫，柯柯·帕尔莫;动画、喜剧、冒险;44727.7 ;6.6 ;"
  },
  {
    "path": "lianxi/movie.csv",
    "content": "﻿name,类型,总票房（万）,平均票价,场均人次,国家及地区,上映日期\r\n战狼2,动作,567928,36,38,中国,2017/7/27\r\n哪吒之魔童降世,动画,501324,36,24,中国,2019/7/26\r\n流浪地球,科幻,468433,45,29,中国,2019/2/5\r\n复仇者联盟4：终局之战,动作,425024,49,23,美国,2019/4/24\r\n红海行动,动作,365079,39,33,中国/中国香港,2018/2/16\r\n唐人街探案2,喜剧,339769,39,39,中国,2018/2/16\r\n美人鱼,喜剧,339211,37,44,中国/中国香港,2016/2/8\r\n我和我的祖国,剧情,317152,39,36,中国/中国香港,2019/9/30\r\n我不是药神,剧情,309996,35,27,中国,2018/7/5\r\n中国机长,剧情,291229,38,27,中国,2019/9/30\r\n速度与激情8,动作,267096,37,30,美国,2017/4/14\r\n西虹市首富,喜剧,254757,35,28,中国,2018/7/27\r\n捉妖记,奇幻,244002,37,42,中国香港/中国,2015/7/16\r\n速度与激情7,动作,242659,39,42,美国/日本,2015/4/12\r\n复仇者联盟3：无限战争,动作,239054,38,19,美国,2018/5/11\r\n捉妖记2,喜剧,223708,38,44,中国香港/中国,2018/2/16\r\n疯狂的外星人,喜剧,221365,42,30,中国,2019/2/5\r\n羞羞的铁拳,喜剧,220175,33,25,中国,2017/9/30\r\n海王,动作,201321,36,18,美国,2018/12/7\r\n变形金刚4：绝迹重生,科幻,197752,42,50,美国/中国,2014/6/27\r\n前任3：再见前任,喜剧,194174,35,29,中国,2017/12/29\r\n毒液：致命守护者,动作,187068,36,17,美国,2018/11/9\r\n功夫瑜伽,喜剧,175260,38,33,印度/中国,2017/1/28\r\n飞驰人生,喜剧,172854,42,25,中国,2019/2/5\r\n烈火英雄,灾难,170659,36,19,中国,2019/8/1\r\n侏罗纪世界2,动作,169588,36,19,美国,2018/6/15\r\n寻龙诀,动作,168274,36,40,中国香港/中国,2015/12/18\r\n西游伏妖篇,奇幻,165593,39,36,中国香港/中国,2017/1/28\r\n港囧,喜剧,161410,33,40,中国,2015/9/25\r\n少年的你,剧情,155830,36,16,中国,2019/10/25\r\n变形金刚5：最后的骑士,动作,155124,37,23,美国,2017/6/23\r\n疯狂动物城,动画,153036,34,29,美国,2016/3/4\r\n魔兽,动作,147230,37,25,美国,2016/6/8\r\n复仇者联盟2：奥创纪元,科幻,146439,40,29,美国,2015/5/12\r\n夏洛特烦恼,喜剧,144161,32,34,中国,2015/9/30\r\n速度与激情：特别行动,动作,143464,36,15,美国,2019/8/23\r\n芳华,战争,142258,34,25,中国,2017/12/15\r\n侏罗纪世界,动作,142073,38,33,美国,2015/6/10\r\n蜘蛛侠：英雄远征,动作,141774,36,17,美国,2019/6/28\r\n头号玩家,科幻,139666,36,18,美国,2018/3/30\r\n后来的我们,爱情,136153,34,21,中国,2018/4/28\r\n一出好戏,喜剧,135505,35,26,中国,2018/8/10\r\n阿凡达,科幻/动作,133986,50,72,美国,2010/1/4\r\n扫毒2：天地对决,剧情,131254,36,17,中国香港/中国,2019/7/5\r\n摔跤吧！爸爸 ,喜剧,129918,30,22,印度,2017/5/5\r\n无双,动作,127377,36,15,中国/中国香港,2018/9/30\r\n人再囧途之泰囧,喜剧,127195,32,45,中国,2012/12/12\r\n西游降魔篇,奇幻,124699,40,41,中国/中国香港,2013/2/10\r\n美国队长3：英雄内战,动作,124635,35,25,美国,2016/5/6\r\n碟中谍6：全面瓦解,动作,124522,37,15,美国,2018/8/31\r\n寻梦环游记,动画,121186,34,18,美国,2017/11/24\r\n误杀,剧情,120880,34,12,中国,2019/12/13\r\n西游记之孙悟空三打白骨精,动作,120101,37,36,中国,2016/2/8\r\n湄公河行动,动作,118820,30,25,中国香港/中国,2016/9/30\r\n叶问4：完结篇,动作,118581,36,12,中国/中国香港,2019/12/20\r\n加勒比海盗5：死无对证,动作,117991,36,22,美国,2017/5/26\r\n长城,奇幻,117457,35,21,美国/中国,2016/12/16\r\n心花路放,喜剧,116934,34,36,中国,2014/9/30\r\n煎饼侠,喜剧,116276,33,39,中国,2015/7/17\r\n金刚：骷髅岛,动作,116050,35,20,美国,2017/3/24\r\n大黄蜂,动作,114973,36,11,美国,2019/1/4\r\n极限特工：终极回归,动作,112741,36,23,美国,2017/2/10\r\n澳门风云3,喜剧,111821,36,36,中国/中国香港,2016/2/8\r\n生化危机：终章 ,科幻,111182,35,20,美国/德国,2017/2/24\r\n攀登者,剧情,109748,37,22,中国,2019/9/30\r\n变形金刚3,科幻,107157,42,54,美国,2011/7/21\r\n巨齿鲨,动作,105178,38,22,美国,2018/8/10\r\n乘风破浪,剧情,104853,36,27,中国,2017/1/28\r\n西游记之大闹天宫,魔幻,104550,42,40,中国/中国香港,2014/1/31\r\n神偷奶爸3,动画,103781,34,20,美国,2017/7/7\r\n惊奇队长,动作,103536,37,14,美国,2019/3/8\r\n盗墓笔记,奇幻,100453,35,27,中国,2016/8/5\r\n狂暴巨兽,动作,100395,35,13,美国,2018/4/13\r\n功夫熊猫3,动画,100200,36,25,中国/美国,2016/1/29\r\n奇幻森林,奇幻,97939,34,24,美国,2016/4/15\r\n澳门风云2,喜剧,97486,39,36,中国香港/中国,2015/2/19\r\n比悲伤更悲伤的故事,爱情,95844,31,15,中国台湾,2019/3/14\r\n西游记之大圣归来,动画,95657,35,34,中国,2015/7/10\r\n泰坦尼克号3D,爱情,94621,45,54,美国,2012/4/10\r\n哥斯拉2：怪兽之王,科幻,93750,37,15,美国,2019/5/31\r\n老炮儿,剧情,90280,31,38,中国,2015/12/24\r\n超时空同居,奇幻,89988,33,12,中国,2018/5/18\r\n阿丽塔：战斗天使,动作,89711,38,14,美国/加拿大/阿根廷,2019/2/22\r\n绝地逃亡,动作,88950,35,25,美国/中国香港/中国,2016/7/21\r\n智取威虎山,动作,88419,41,28,中国/中国香港,2014/12/23\r\n十二生肖,动作,88118,40,37,中国/中国香港,2012/12/20\r\n银河补习班,剧情,87838,34,16,中国,2019/7/18\r\n碟中谍5：神秘国度,动作,86977,33,26,美国/中国,2015/9/8\r\n冰雪奇缘2,动画,86100,35,11,美国,2019/11/22\r\n狮子王,剧情,83177,37,16,美国,2019/7/12\r\n蚁人2：黄蜂女现身,动作,83156,36,15,美国/英国,2018/8/24\r\n星球大战：原力觉醒,科幻,82558,37,24,美国,2016/1/9\r\n唐人街探案,喜剧,82442,32,33,中国,2015/12/31\r\n从你的全世界路过,爱情,81423,31,22,中国,2016/9/29\r\nX战警：天启,动作,80292,34,23,美国,2016/6/3\r\n反贪风暴4,动作,79886,35,11,中国/中国香港,2019/4/4\r\n无名之辈,剧情,79454,35,12,中国,2018/11/16\r\n北京遇上西雅图之不二情书,爱情,78680,34,24,中国/中国香港,2016/4/29\r\n蜘蛛侠：英雄归来,动作,77414,35,16,美国,2017/9/8\r\n叶问3,动作,77031,39,23,中国/中国香港,2016/3/4\r\n"
  },
  {
    "path": "lianxi/pfpredict.py",
    "content": "import pandas as pd\r\nimport numpy as np\r\nfrom scipy import stats\r\nimport matplotlib.pyplot as plt\r\nimport statsmodels.api as sm\r\nfrom statsmodels.graphics.api import qqplot\r\n\r\n\r\n#读取数据，进行处理\r\ndta = [10930,10318,10595,10972,7706,6756,9092,10551,9722,10913,11151,8186,6422,6337,11649,11652,10310,12043,7937,6476,9662,9570,9981,9331,9449,6773,6304,9355, 10477,10148,10395,11261,8713,7299,10424,10795,11069,11602,11427,9095,7707,10767,12136,12812,12006,12528,10329,7818,11719,11683,12603,11495,13670,11337,10232, 13261,13230,15535,16837,19598,14823,11622,19391,18177,19994,14723,15694,13248, 9543,12872,13101,15053,12619,13749,10228,9725,14729,12518,14564,15085,14722, 11999,9390,13481,14795,15845,15271,14686,11054,10395]\r\ndta = np.array(dta,dtype=np.float)\r\ndta = pd.Series(dta)\r\n\r\n#对数据进行绘图，观测是否是平稳时间序列\r\ndta.index = pd.Index(sm.tsa.datetools.dates_from_range('1927','2016'))\r\n# dta.plot(figsize=(12,8))\r\n# plt.show()\r\n\r\n# fig = plt.figure(figsize=(12,8))\r\n# ax1 = fig.add_subplot(111)\r\n# diff1 = dta.diff(1)\r\n# diff1.plot(ax=ax1)\r\n# plt.show()\r\n\r\n#选择合适的p,q\r\ndiff1 = dta.diff(1)\r\nfig = plt.figure(figsize=(12,8))\r\nax1 = fig.add_subplot(211)\r\nfig = sm.graphics.tsa.plot_acf(dta,lags=40,ax=ax1)\r\nax2 = fig.add_subplot(212)\r\nfig = sm.graphics.tsa.plot_acf(dta,lags=40,ax=ax2)\r\n# plt.show()\r\n\r\n#获取最佳模型\r\narma_mod70 = sm.tsa.ARMA(dta,(7,0)).fit()\r\nprint(arma_mod70.aic,arma_mod70.bic,arma_mod70.hqic)\r\narma_mod30 = sm.tsa.ARMA(dta,(0,1)).fit()\r\nprint(arma_mod30.aic,arma_mod30.bic,arma_mod30.hqic)\r\narma_mod71 = sm.tsa.ARMA(dta,(7,1)).fit()\r\nprint(arma_mod71.aic,arma_mod71.bic,arma_mod71.hqic)\r\narma_mod80 = sm.tsa.ARMA(dta,(8,0)).fit()\r\nprint(arma_mod80.aic,arma_mod80.bic,arma_mod80.hqic)\r\n\r\n#模型检验\r\nresid = arma_mod80.resid\r\nfig = plt.figure(figsize=(12,8))\r\nax1 = fig.add_subplot(211)\r\nfig = sm.graphics.tsa.plot_acf(dta,lags=40,ax=ax1)\r\nax2 = fig.add_subplot(212)\r\nfig = sm.graphics.tsa.plot_acf(dta,lags=40,ax=ax2)\r\nplt.show()\r\n\r\n\r\nprint(sm.stats.durbin_watson(arma_mod80.resid.values))\r\n\r\nfig = plt.figure(figsize=(12,8))\r\nax = fig.add_subplot(111)\r\nfig = qqplot(resid,line='q',ax=ax,fit=True)\r\nplt.show()\r\n\r\nr,q,p = sm.tsa.acf(resid.values.squeeze(),qstat=True)\r\ndata = np.c_[range(1,41),r[1:],q,p]\r\ntable = pd.DataFrame(data,columns=['lag','AC','Q','Prob(>Q)'])\r\nprint(table.set_index('lag'))\r\n\r\n#模型预测\r\npredict_sunspots = arma_mod80.predict('2016','2026',dynamic=True)\r\nprint(predict_sunspots)\r\nfig,ax = plt.subplots(figsize=(12,8))\r\nax = dta.ix['1927':].plot(ax=ax)\r\nfig = arma_mod80.plot_predict('2016','2026',dynamic=True,ax=ax,plot_insample=False)\r\nplt.show()\r\n\r\n"
  },
  {
    "path": "lianxi/result.txt",
    "content": "后半段垮的妈都不认识\r\n笑中有泪的贺岁片，母子关系的处理，夫妻关系的和解，爱的表达方式有好多种，而我们对于最亲的人往往是用了争吵这种最糟糕的方式，带着妈妈来看这部片子，看后要给她一个大大的拥抱啊。最后彩蛋别错过哦，有大腕。\r\n有点理解为啥首映卖竖屏视媒了，毕竟这部可以算是系列最差了…真的线下上映会被同期打得非常惨痛…卖给专业视频平台还要通过收点播费啥的才能回本，但给了竖屏就等于给了流量，你点一下，我点一下，人均成本降低，这人数可是指数型增长…影片植入渐多，无用配角疯狂添加，造成主线故事，即母子关系与夫妻关系完全破碎割裂，过渡僵硬，一个简单故事展现成了超长扁平叙事结构，令关系发生转折的故事设定怕不是把自己当成了英雄（对我说的是那只熊，对我说的是背妈奔跑横穿带有多条裂纹的冰面，多哥都没你能！对我说的是这电影时长我看了一眼咯噔了一下）。基于这所有，彻头彻尾体会了导演和商人的本质不同。\r\n很平庸，很无趣，既不好笑，对于原生家庭的探讨也只是隔靴搔痒而已。\r\n天呐我看那些差评 根本没道理阿 我太喜欢了 感触很深 很好笑 很好哭 很多地方感同身受 不知道差评里隔谁的靴搔谁的痒了 反正我这是袜子都脱了挠哭我了 我是真的爱公路片 我觉得徐峥作为导演掌控力已经完全 不能说炉火纯青 反正是很可以了 异国风情 很美的风景配乐也好听 完美 就是完美 演员选的也好 郭京飞活着也就是一乐儿 总之 爱了\r\n又尬又假。\r\n我讨厌这部电影，甚至作呕，强行灌鸡汤，强行要把所谓的黑暗面撕出来，然后结尾强行煽情和解。没有人没和解，只是徐峥自己没和解吧！\r\n平庸的电影，多亏找到人接盘了，如果真上映估计得亏。\r\n这种强迫煽情的拍法跟春晚小品最后万年不变的“拔高度”套路没什么分别，注定大多数人不喜欢。现在赚个吆喝，提升下股价已经很好了，线下上映估计跟《攀登者》差不多下场，可能更差。2.5\r\n骨子里还是囧系列那种公路喜剧片，这次用母子关系制造一系列的笑点，代入感非常好，果然是“同一个世界，同一个妈妈”。从创作的心态上讲，我一直很喜欢徐峥，愿意走出创作的舒适区，去做点不一样的尝试，讲和上一辈人亲情的故事，讲中国家庭亲子关系的和解。从编剧技巧上看，徐峥还是那个最懂类型片技巧的人，他一开始就用对白铺垫的那些细节，每一次用都在强化电影的节奏，划分剧作的大框架，让电影的主题表达更进一步。这个剧本有一个非常好的故事框架，在K3火车上和老妈互虐的六天六夜，一路去往莫斯科，所有的冲突和解都要在这个固定的时间内完成。夫妻和母子两条线彼此关照互为镜像，很喜欢最后夫妻线的处理，与时俱进不落俗套。\r\n还能更无聊吗\r\n“囧”系列里有人情味的一部，之前的夸张闹剧和直男思维有很大收敛，但是熊、热气球这种情节是脱离现实的，有些客串角色也仅仅是为“客串”而存在的。除了“囧途”的主线，精神内核其实在过去的两部囧片里都有所提及：如同样以离婚开场的《泰囧》，妻子想要离婚，而男主想的只有生意（油霸变暖霸），男主在结尾时必然会在婚姻中学会成长；以及《港囧》对于女性改变男性和对女性长辈烦扰的宣泄。对苏联老片的致敬： ①伊万的名字来自徐爸给她放过的苏联老片《伊万的童年》；②徐伊万在火车上说了一句《办公室的故事》的台词“…就这么残酷无情无理取闹；”③热气球时有个动作模仿了“莫斯科电影制片厂”的厂标；④徐妈及姐妹们唱的《红梅花儿开》是《幸福生活》插曲，原片也是几个姑娘登台表演唱的这首歌。\r\n7.2分《囧妈》首映礼，有深度有温度！管虎导演说到徐峥导演在不失囧事的前提下，做出更有深意的展现！洽也是当下需要的！不是一味的娱乐，更促进家庭和谐，都夸徐峥成长了，那是必须的，金马影帝呢！《囧妈》与系列前作大有不同，更接近《药神》，而且有欢笑有泪水，有痛楚有温暖！值得嘉奖！黄梅莹老师扮演的囧妈，其实并不囧，很真实，超一流的棒！中年男子徐伊万，才是囧！贾冰插科打诨并不突兀，囧图中的调剂品，袁泉在纽约走来走去太美了！欧丽娅在车厢里搬箱子的桥段超绝，唐季礼导演说徐峥这一定是本色演出！都表现很棒，K3也是很有吸引力，再有些美景就更完美了，冰上背着妈妈奔跑那段即温暖，又很美！相信徐峥未来在导演奖项上一定大有作为！\r\n徐峥进步好大，相对前作品味和审美整个 飞越了几个档次，蒙太奇用的非常娴熟，对异国的美景展现系列最佳，甚至还致敬了塔可夫斯基的《伊万的童年》，故事也更走心和正经许多。有趣的是，作为讲母子关系的电影，它同时站在了两个人的角度去叙述，如果你是家长，你可能会意识到自己作为父母掌控欲的过分，如果你是孩子，你可能会发觉自己身为子女对父母付出的忽视。可以说是春节档最适合全家来看的电影了\r\n年龄一大眼窝子就浅，听到《红莓花儿开》的时候就不明所以的唰唰掉眼泪。虽然整部电影依旧是徐峥以往的商业片套路，但少了聒噪的“专职喜剧角色”，影片自然了不少。要是没有宋小宝那段太过胡逼的剧情可能会更好。前面无数的铺垫都敌不够片尾妈妈镜子前的一个动作，这种代入感应该是其他同档影片无法带来的吧。\r\n承认吧，作为创作者的那个徐峥，已经过时了\r\n还真的是和预告一样难看啊……40奔50的人来演一个20奔30的人和自己妈的关系真的很错位。编剧们感觉像是年轻到没有任何生活体验，大家随便吐槽下自己的妈妈，就把剧本攒出来了，大概还挺得意。\r\n低于预期，不喜欢俄罗斯妹子和熊出没这两段，妹子尬，熊很凶。唯一的泪点是妈妈在台上唱歌。和妈妈和解的故事没讲好，无法共情，并不合适带妈妈一起观影。彩蛋黄渤还不如拍摄花絮有趣。结尾剧组员工和妈妈的合影很温馨。歌曲好听。囧系列里比较差的一部，俄罗斯风光片。片头看到高以翔的名字被框住，特别难受。\r\n7.7/10，徐峥终于真诚的面对了自己和母亲的关系，本片在主题探讨和人物的刻画上做的都很好，且表现形式也比较轻松幽默。把一趟连续开六天的火车上发生的故事拍成一部电影其实很考验编剧功力和导演调度，徐峥和导演团队完成的都很好。事实上本片可以归为现实主义喜剧，创作还是戏剧为底，在台词对白上做足功课。虽然一些事件用了戏剧化处理但探讨的内核非常当下也很普世，不管是和母亲和解也好还是和妻子和解也好，本质上还是和自己和解，在老塔眼里，童年的伊万不愿意和自己和解，《囧妈》里母亲大半辈子也不愿意与自己和解。徐峥到底还是让长大的伊万与自己和解了。但是否真正的和解了，也许要问徐峥了。另外演员选的都特别到位，不管是黄梅莹还是袁泉表现力都非常好！\r\n编剧真的想不到办法把母子俩弄上同一列火车了吗?\r\n很合格的商业片。其实能感受到人到中年后的“疲惫感”，一切都是紧紧揪着的，尤其是涉及到人生情感最重要的婚姻关系、母子关系，经常毫无道理可讲，只能互相埋怨互相憎恨，所以这部电影“疏解”成了戏剧的动力。徐峥与黄梅莹真是好演员，我觉得他们把母子之间解不断理还乱的复杂感情状态表演了出来。另外很想很想坐一次北京到莫斯科的火车。\r\n万万没想到，徐峥做导演的能力是倒着发展的，一部不如一部。也不知道他对母亲、妻子和中年男人到底是有什么误解。\r\n很差了。强行煽情，强行上升高度，强行搞笑，强行接续剧情，强行中年婚姻危机。这么有钱危机个p啊！凭啥他妈不守规则迟到了就能得个好结局？那守规矩的算啥？还在俄罗斯野外求生？还热气球？？？两万块钱买个演出机会居然是正式的？？？为啥要强行他妈的爱情故事？？？总之一切都很差。\r\n从吃我吧就开始哭唧唧的，最后哭了一整首歌。亲情线真的太好了，可是爱情线就……袁泉可以，但是没必要。高以翔也是很好哭，看着就想哭了。不同于以往的囧系列，但依旧好笑，只不过并没有成为我心目中的黑马，略遗憾。\r\n真的好无聊啊，各种为了剧情强凑梗，可以说是非常无趣了。开场非常牵强地努力让母子俩上了同一趟火车，从俄罗斯女孩出来就开始一路垮掉，被熊袭击遇到猎户到热气球一段我仿佛看到了《断片》......最后还要强行煽情，真的不必这样的。\r\n基本没有爆点。卖掉真是明智的选择。 还有《一出好戏》里，黄渤剪掉了徐峥的戏，这部徐峥就把黄渤的剪掉了，真记仇哈哈哈哈\r\n四星 ，超出预期的优秀。徐峥的“囧”系列电影，实际上就是一整套喜剧包装的“中年危机”故事，而这一次更有成长。你会大笑，你更能看出现实中发生在我们每个人身上的代际沟通危机、情感表达无能以及成长衰老的烦恼。事实上，我在观看徐峥和黄梅莹“做戏”的同时（这部前半段故事大都发生在通往莫斯科火车上的电影，很像是一出舞台剧），似乎就像看到现实中我和老妈的翻版——我又有多少时间没有好好地拥抱这位生我养我、却又不时吵吵嚷嚷的人呢？沟通，理解，放下，陪伴。徐峥这部用喜感包裹的温情主义电影，值得我们每个人好好品味。\r\n这个故事最大的卖点是“跟母亲和解”，卖点清晰，春节怕家长唠叨的朋友可以给老妈买单票，让阿姨自己去看看，因为俩人去看我怕在影厅里就吵起来；最大的问题是不像电影，缺乏现实层面逻辑，相当于设计一趟必须出发的旅行将母子绑定，给空间和时间造戏。故事的丰富性与笑点程度相当于［泰囧］的一半儿，袁泉线十分功能性。说《半个喜剧》是话剧电影、说《两只老虎》是小品电影的观众除非被卖点精确打击了，不然依然对这部电影无感。 给两星的原因是觉得这部电影虽然主打母子感情，可既不真诚，也不深刻。故事里成功又盲目的伊万离我太遥远。不过不会妨碍电影大卖，原因嘿嘿嘿，目测春节档《囧妈》票房三甲。\r\n徐峥的囧之系列来到第四部，泰囧是巅峰，港囧有点强颜欢笑，看之前很好奇徐峥这一部“母子”间的囧态是要怎么搞笑，徐峥一脸憨态其实还蛮适合演喜剧片的，大家也看得可爱，母子间的搞笑间也有温馨路线，总的来说比上一部好很多，彩蛋还有意外惊喜呢。\r\n妈-我-妻子，这三者不应是你幻想我，我幻想你的控制关系，退一步海阔天空吧，徐峥要说的事就这么简单。说到一半已无话可说，剧作也陷落在那，停滞不前。拍熊出没，拍热气球，拍煽情的夕阳红，靠巧合行进，靠大场面虚掩撑场，最后在陈旧的闪回里总结陈词。中年男人撒娇搔痒，对俄罗斯风情也是刻板印象。最好的是那两头熊，特效做得真好。\r\n这波操作厉害，赚了人设卖了好感还有话题，如果搁电影院同期票房估计不行，片子很一般，但徐峥的做法很聪明\r\n真的看不下去，10分钟就想关了。全是违背我三观的内容和画面，小到吃东西打电话，大到不顾他人安危硬上火车，我都有搧他母子俩的冲动，绝对祸害社会的负面榜样。你俩爱吵吵自己窝家里吵就行了，不要出来祸害全人类好吗！ps：这片子创造了太多的没想到，没想到大过年看了个这么闹心的“洗具”，没想到便宜无好货是真的，没想到……\r\n北京到莫斯科，有三个半小时的直飞航班，也有六天六夜漫长旅途的T3/4列车，白雪覆盖的西伯利亚平原，阴差阳错的母子意外之旅酝酿在滚滚车轮上的绿皮包厢。是母子间家常便饭的絮絮叨叨还是患难后的冰释前嫌，是老塔的男孩伊万和母亲解心结；是夫妻间背道而驰的情迷意乱还是放下后的坦诚相待，是婚姻故事里最后的美好祝愿。在合家欢庆的日子里，导演在欢笑之余讨论了当代疏远的亲子关系和时下男女婚姻价值观问题，是新潮又大胆的，细节的细腻抓取和卡司选角讨喜观众，这绝对会是春节档的大热门。\r\n第一次感觉把成年人之间的突然崩溃表现出来了，处理家庭关系，一度成为焦虑的根源，电影里说，我们都希望别人成为自己希望的样子，要求，质疑，批判……可真的忽略了好多东西。她也年轻过，也有自己喜欢的，也想自由自在，可她因为有你。后悔没带我妈来今天。\r\n看完不知道说什么。就很一般吧。没新意的套路。想搞笑又不想做无脑喜剧，揉杂进来又是中年危机，和母亲的代沟，但又不够。就感觉都想抓一把，但又都做不到位。看下来蛮平庸的吧。\r\n它是中国影史投资最大的网络电影\r\n郭京飞说世界已经做太多加法了，就想给大家春节的时候做做减法。好就姑且不讨论电影里的各种不合理性。核心感情戏看似好像多感人但是完全经不起推敲，最后沦为假大空的鸡汤，满屏幕都是徐峥自我满足与自我陶醉，还不如老老实实的拍老年妇女追梦合唱团，都远比现在充满设计感的感情戏来得感人。\r\n婚姻比黑熊还危险，不知不觉就变成敝屣。母爱比奶糖还甜蜜，像硬塞的番茄般密集。曾经少年放的塔科夫斯基，忘记电影里的小男孩，只记得他的眼睛闪光。当年错过的红莓花儿开，忘记当时有多沮丧，只记得此刻没升起的幕布。我们是怎样忘记了爱的感觉，不能跟她共处同一车厢，也忘记了曾经依偎彼此的心房。\r\n三星给《红莓花儿开》，一方面诧异于徐峥对赌协议24亿的自信，一方面又惊叹于徐峥后知后觉的魄力，网播绝对是明智之举，这要是按期上映别说杠《唐探3》，估计连《急先锋》都够呛!\r\n一部工整优质的喜剧片，有些硬伤但瑕不掩瑜，仍然是徐峥一脸人畜无害的喜剧风格，俄罗斯姑娘一套成语直接笑喷「兴风作浪、瓮中捉鳖、露水姻缘、一丘之貉」，终于不再看到王宝强疯魔鬼畜的死样子了\r\n作\r\n一部看得出处处用力，又处处无聊的的电影。徐峥在庄与谐之间进退失据。看来“囧系列”要关张了。\r\n铁  铁道游击队？？   这一部挺尬的  温馨主题不错\r\n浪费两个多小时，全剧只有列车员有逻辑\r\n中年人的生活就是糖衣包裹的苦味丸，工作，婚姻都让人喘不过气，妈妈很真实，是每家每户都会有的妈妈，逼你吃番茄，怕你不穿秋裤，不听你说话，但是熊（生死）面前能为你挡死，痛苦时候可以依靠，虽然永远也别指望她们能理解，甚至能改变。但不妨碍她嫌弃你的眼神里都是爱。\r\n妈妈和儿子之间的互动细节真实到处处都能引发观者共鸣，中国式母亲+中国式儿子+中国式情感绑缚的难以厘清感，其背后是根深蒂固几个时代的传统家庭观，徐峥和黄梅莹的表演在火车的封闭空间中碰撞出了这个母子关系几十年来的症结。部分地方为了喜剧效果有些稍过于戏剧化，但总体而言，《囧妈》已经足够有现实意义。\r\n名为囧妈，但是这片里妈妈那里让他囧了？囧妈完全失去了前面三部的囧味，枯燥又冗长的剧情。真够让人囧的😁。可能也是由于剧情场景(火车)的限定，很难写出段子吧。至于主题，还是老一套。还好没上院线，不然真的要亏死哦，徐峥精明。(俄罗斯风景挺美，想去)\r\n其实是一个和解的故事，相比起的母子间的拥抱式和解，更喜欢这里夫妻间的放手式和解，一个是妥协，一个是成长。\r\n本以为只是如港囧一样烂，把喜剧冲突和所谓包袱建立在奇葩上。看到最后发现比港囧还烂，强行输出毫无逻辑毫无意义的lowB价值观。\r\n今天有幸可以提前看到徐峥导演的新作——《囧妈》。个人认为，从剧情上讲，这部已不像之前的「囧」系列，故事的重点不再是旅途中遇到的各种「囧」事上，而是借了「囧」喜剧这样一个切口，多通过些许荒诞和戏谑的方式，道出了一个现实生活中母子、夫妻之间真的会面临的在相处上可能会出现的问题。整体搞笑，却也不乏温馨，是截止目前看过的今年春节档电影中最喜欢的一部。推荐！\r\n依然是徐峥喜剧的三板斧，继续输出中产阶级焦虑，所有所剩无几的现实基底和诉求，都在民族奇观式的符号里挥发殆尽。基本叙事模式还是事业有成的男人陷入一次意外的旅程，并在最后获得顿悟和救赎，除此以外，不提供一丁点深入的路径。但是，当妈妈在大剧院一展歌喉的时候，我还是情不自禁地代入了，最后拿下头套更是止不住的泪流。必须承认，这是在囧系列里第一次被感动，突然体会到徐峥在咆哮演技之余一丝微弱的真诚。尤其在这个恐慌蔓延的当下，在家里陪父母看完，心底真的会升起一点生之幸福。伊万扒火车的时候我想，徐峥不是成龙，更成不了基顿，可他还是以先驱或叛徒之名被写入电影产业史了。明面上致敬《伊万的童年》，私下里重现《暖暖内含光》，他是多么想拍出一部好电影啊。\r\n大胆预测上院线六亿都卖不到，囧系列最差不为过。\r\n应该是系列里笑点最少的一部了，前半段虽是喜剧但穿插了些令人不愉快的设定，后半段则是走严肃催泪向――比较有问题的点在于，这算不上是定位在春节档适合亲子一同观看的喜剧片吧，能够感到欢喜的地方实在是太少了，论搞笑和剧情的结合不如原本的竞争对手唐探系列，作为正经片又显得太乏味，定位混乱。\r\n整段垮掉，比港囧还难看。\r\n烂也不至于，但真的平庸，强行融入一些刻板化的元素，杂糅起来效果很一般。\r\n确实挺尬的，笑点也不是很多，属于自嗨型“囧途”，强行用爱和解。\r\n囧系列还不停止更待何时\r\n这大概是老塔被黑的最惨的一次！\r\n真的很难看，看到高以翔的时候很难受。不得不佩服徐导有头脑，六亿真的很回本了。最好的只有泰囧，本来挺喜欢徐峥，但是你看看拍的什么东西。\r\n或许因为是在单亲家庭长大的男孩子，对于电影里母与子的彼此争吵、相爱、磨折、心疼、埋怨、牺牲、和解，似乎更能够多一些感同身受。这些过程，好的坏的，都是羁绊。母亲已经不在了的第五个春节，欣慰仍能见到电影里的母子俩最终相拥回家。\r\n下了火车之后便全垮掉了。\r\n生硬，刻意，廉价，也就图个乐。\r\n较差。不是囧妈是尬妈。\r\n\"至少比《港囧》强，个人给7.5分。本片在中国式亲情中讨论母子之间的情感与隔阂的深度是有的。母亲与儿子之间所产生的矛盾，来自长久以来的缺乏沟通与信任，这次把主人公安排在火车上进行一连串的囧事，更能将一个中年男人的窘迫描写至极点。没有哪个母亲是不爱自己的儿子的，而这次两人不仅互相理解起了对方，甚至儿子最后还替母亲坚守住了她的梦想。温情式的中国电影。\r\n另说一句，其实徐峥把版权卖给网络，我个人认为，有些许不妥。不说影院为其宣传下的成本直接蒸发，但显然一部院线电影撤档后变成一部网大，为了捞本直接跳过电影院，这其实多多少少影响了院线行业。如果徐峥这一次成功了，也不知道会有多少院线电影重复这一套。\r\n\"\r\n最后张璐和徐伊万没有在一起，就凭这一点，多给一分。\r\n后面真的垮得稀烂啊，估计是完全不知道怎么编了，瞎搞乱凑，俄罗斯弊履女是什么鬼？？熊出没是什么鬼？？婚礼是什么鬼？？开口跪就把已经离场的观众都拉回来最后还掌声雷动是什么鬼？？所有的情感分崩离析都只要在煽情音乐里回忆诉说过去就能和解是什么鬼？？？？？？？\r\n电影2.5星，但是现实中的商业操作加一星\r\n一般的不能再一般了，对于徐峥来说就是差\r\n50秒语音方阵、喂吃的、爱看鸡汤公号…关于妈囧的部分，不如预期饱满。袁泉台词尴尬，高以翔出镜还是略感慨。亲情有时候就是一种控制和压力，父母管我们，催抱孙子也不过想继续管孙子…长辈们理解的爱就是如此简单粗暴，我们能理解，但无法改变，唯有包容和接纳。“在感情里讲道理就是最大的不讲道理”\r\n主要问题还是太长了，前面太久了。喜剧部分没有那么突出，熊出没也很奇怪。反倒是后面煽情那部分，更能触动到我，尤其是最后黄梅莹摘假发那场戏。徐峥拍拍电影，总是在解决自己的困惑，这部其实也是。\r\n钱不是这样赚法啊山争哥哥。这啥玩意？是不是自己心里也明白这玩意要是错过了贺岁档连6.3亿都拿不到？倒是很符合在什么西瓜视频上看的气质，植入广告又多又尬，直直地捅到观众脸前面来，姿态太难看了。这不配叫电影。这剧本也不配叫剧本。毕志飞拍个这玩意我也不说啥了，徐峥两个字的份量你自己就这么糟践。我刚才想到一句更难听的现在忘了。真失望我还不如花钱去看熊出没。\r\n\"在囧系列类型片上做得更加扎实与成熟，笑料的抖包袱形式都很奏效，情感上，徐峥铺设两条线讲述当代人婚姻与亲情的双重错位，利用前后段空间的变换来挤压和释放角色的情绪，处在这个阶段的人多少都能感同身受。\r\n\r\n同样的主角帮助配角实现旅程愿望，但配上母亲这个身份，无疑加深了多层含义，对儿子事无巨细地管制，同时又不忘初心追梦。因为爱情结缘的夫妻也成了彼此制约的捆绑。无论什么形式的关系，彼此都是独立的个体，我们往往因为关系里的身份，陷入主观臆愿去束缚对方，忽略了理解和尊重。特别喜欢最后三方的放手，每个人都有了新的开始，反套路的合家欢，更迎合当下。\r\n\r\n三部下来感受到徐峥更加深耕情感和社会议题的讨论与挖掘，不再是追求闹腾的感官喜剧那么简单，感情也是愈加浓厚。徐峥正处在自己创作的黄金期，也很期待他未来的发挥。\"\r\n一江春水向东流的翻译原来是hakuna Matata...\r\n看出了徐峥的进步，甚至加入了动作戏的尝试。把母子情深和苏联情结合在一起这一招相当聪明，就连一到抒情段落就开始慢镜围着人转的段落，也显得异常可爱，最可爱的居然还是一个塔可夫斯基的梗，让人重新审视片中回忆叠化的部分。\r\n中年男人与母亲之间的那些细节 还是很到位的 毕竟是取自徐峥自身的真实经验 也许只有到了四十来岁才能体会到与母亲的那种微妙关系吧 把莫斯科拍得很美 …但往往你记住一部电影里的风景超过内容本身时 就说明 电影内核还是有点问题的 但我还是相信徐峥能再出佳作的 。\r\n1.这个集体撤档、足不出户的魔幻春节，所幸还有这部囧途喜剧，能让我们陪家人一起宅。2.徐伊万与母亲相爱相杀的亲子模式，既有对现实中母子关系的准确印刻，如语音方阵、食物投喂等；又不乏对理想化母子关系的诗意建构，如熊出没那一刻的护犊情深，以及热气球的凭空亮相等。相比以往只遵循现实主义的徐峥而言，这其实是一种难得的进步，而并非有人所谓的编不下去。3.当然，“囧途”系列从其诞生之初便注定了商业属性，但这并不妨碍徐峥对老塔的致敬；显然，在剥开商业外壳后，徐峥也有一颗艺术之心，这也是为什么徐峥会在《十三邀》里说出那句：“我好想跟娄烨合作一部电影，但是我很担心，他是不是觉得我太商业了，看不上我。”\r\n挺好玩的合家欢电影，头条系好厉害，清晰度和流畅度100分\r\n比港囧还难看。。。 人物立不住，喜剧变闹剧，整部电影从头到尾演员都在嘶吼，让人听着很头疼。 各种转变又显得特别做作，贾冰一出来就出戏，节奏也像拉长的小品。。。 我和我的祖国，女排拍得挺好，怎么这部这么烂。。。\r\n《囧妈》：尽管跟妈妈吵得不可开交，还总不在一个频段上，但在“过度关心”之下是强力释放的关怀和近乎本能的爱，专治各种中年危机。剧本模式跟囧途前作无异，吵闹出的笑点屡试不爽，公路冒险也花样翻新，熊都出没了。结尾虽然俗套，但母亲晚年追梦的纯粹执着还是能把人小感动一下。提名：最佳女主角(黄梅莹)。★★★☆\r\n徐峥囧系列之三已然强行把自然喜剧往无端亲情上靠，甚至堆砌各种无脑无笑点所谓的“喜剧”元素，后半段一路尬闹尬煽。但不得不说贺岁档线下转线上，类“流媒体”这波操作还是挺高的。\r\n和妈妈火车上吵来吵去那几段还挺真实的 回家过年就是一直在你耳边叨叨叨叨\r\n我甚至都不知道要不要标上「喜剧」这个标签，从头到尾让人难以发笑。而亲情和爱情的内容，太可怕了，这是什么傻逼剧情，大过年的，别恶心人了，好吗？！\r\n太烂，把观众当傻子。\r\n7分。本片没有像人在囧途将春运、泰囧将泰国风情文化吃透一样，将俄罗斯真正的文化内涵和妈囧主线相结合。用火车替代了传统的公路，受到一定限制，但也带来了列车上独特的情节展现方式，并不是完全的弱点。但不同于前几部，这部将当地文化极度地弱化，成了电影故事背景而不是故事场景，无形中极大削减了戏剧性和戏剧趣味。所以虽然有遇见熊、船上婚礼、遇见俄罗斯女孩等戏份，但因为对俄罗斯的理解过于符号化，情节衔接和节奏都远不如之前几部顺畅且自然。而代替文化风情，电影将更多的笔墨放在了自己和母亲关系的细腻处，从一开始拒绝沟通粗暴反抗控制到被迫接受再到崩溃争吵再到心疼服软再到和解升华，节点清晰，说明影片一直试图向更深的地方挖掘。所以片子最大的问题恰恰不是太过追求商业，而是太执着于艺术性，反而没有处理好和商业性之间的平衡。\r\n很想多打点分，但是真的不好看\r\n一部非常拧巴的电影。一面是贺岁喜剧，一面处处讲母子关系、夫妻关系的大道理；一面致敬塔可夫斯基，一面又安插低俗桥段洒狗血鸡汤；一面在K3国际列车背景调查、美术布景等下足功夫贴近真实，一面极尽夸张之能事搞扒火车熊出没热气球。都21世纪20年代了，摄影特效技术如此发达，做喜剧还如此不思进取。已经分不清袁泉黄渤俄女郎尴尬的台词文本与乌兰巴托打电话、棕熊热气球相比哪个更扯淡、更灾难。P.S.1.K3国际列车停张家口，男主可以在那下车。2.电影上线前，高以翔去世，即刻APP死掉。3.电影上线一周后，开行六十年来哪怕中苏破裂都无间断运行的K3国际列车，因肺炎疫情而在俄方命令下首次停运\r\n看了前5分钟台词就尴尬癌发作，没想到还会全程尴尬。我的2020第一烂片，囧妈，谢谢。感谢没有上院线祸害观众，让我在电脑面前有了免费快进的机会，真的还不如网络大电影。之前徐峥采访说怕娄烨看不上自己，终于明白为什么了。\r\n本想看部“喜剧”放松下，看完更气了……可能就是徐峥这帮中老年人一天到晚喊着应该和父母和解，我们的“精神弑父”才会变得如此艰难吧……好吧，我可能又太苛刻了。但看到有人说因为《伊万的童年》多加一星，就真的不太懂了。是不是再在火车车厢上贴上伯格曼、费里尼、安东尼奥尼的电影海报，就可以打五星啦？别这样，我们要做就做最文艺、最持久的文艺青年，不要像徐峥这样半途而废，好吗？\r\n比起以往的囧系列，忽然发现即便是包贝尔那样蠢蛋存在的意义……\r\n怪不得有底气让免费观看呢，光那些铺天盖地的植入广告就能盈利了吧？\r\n系列最差，这质量就算上映也不会大卖。难怪不换个日子上映，而是在网上播出。 俄罗斯美女和伊万第一次见面就和他在火车尾独处，还要和他接吻。 伊万是魅力十足还是风流倜傥？是风靡万千少女还是全天下女人都喜欢他？ 这不是YY吗？ 还没有签离婚协议，他就想出轨。如果列车员没有及时阻止，他可能已经出轨了。 后来他看见娜塔莎和男友复合，他脸上写满了羡慕嫉妒恨。 你才是小三，怎么搞得好像别人是小三一样。 你们之间本来就不应该发生什么，你竟然还觉得不甘心？ 还有伊万“不小心”钻进女乘客的裙子里，后来又“不小心”看见女乘客没穿裤子……这些笑点都很低级，甚至低俗。 伊万和母亲的亲情线、伊万和张璐的爱情线也是讲了半天讲不到重点。隔靴搔痒，无病呻吟。 每个人在亲情和爱情方面都有过非常艰难的经历，伊万面临的问题还是太小儿科了。\r\n又一个“妈都是为你好”的中华pua家庭片，套路和前面几部如出一辙啦，全程冷漠看完，没笑点没泪点，曲曲折折的探险都在意料之中，最终还俗套地沦落为俄罗斯风情片。《伊万的童年》和《红莓花开》算小亮点。这片是跟《熊出没》有合作吗？\r\n披着喜剧外表的家庭纠纷剧，没有任何笑点。。。我都不知道我是怎么看完的\r\n母爱如狂奔的俄罗斯棕熊般凶猛，母爱似手中的大白兔奶糖般甜蜜，该抱着怎样的期待面对自己的子女，这是世上所有母亲共同的难题。比《港囧》强，角度找的不错，核心主题能引起大众共鸣，进而产生煽情攻势，但在剧作层面徐峥仍然不思进取，做作、矫情、偷懒、狗血，怎么方便怎么来，主要体现在鸡肋的双线叙事，庸俗的旅途艳遇，和毫无诚意的鸡汤逆转上，而且台词也欠打磨，尤其是开场袁泉对徐峥义正言辞的尬聊式说教，我在看教育频道吗。这片子最大的功臣是黄梅莹，无论是和徐峥的对手戏还是solo，几段高光表现都挺打动人，这大概也是这片子还值得一看的原因。Ps:结尾首彩蛋够意思，虽然不知道是不是真的。\r\n西瓜鲜时光\r\n还不如前两部，从头吵到尾，但是没有一场够劲儿的，很可惜\r\n三星，笑点最多的居然是俄罗斯姑娘。\r\n剧情比较一般\r\n1，意料之中的水准，我本就觉得徐峥的“囧”系列难以再创新高。诚然《泰囧》开启了中国喜剧的黄金时代，但在“开心麻花”都已经后继乏力的今天，传统的喜剧确实很难再给人惊喜了。 2，所以我们在《囧妈》中所看到的，都是一些“暮气沉沉”的包袱的桥段，甚至在形式上，依然还是照着《泰囧》的模式在构建剧本，毫无尝试突破的意图，可能徐峥觉得这样“稳”，但同时也失去了出彩的可能。 3，徐峥对于男人中年危机的刻画倒真是一部接一部，一部比一部刻画得更多，以前可能只是在夫妻关系上略作点缀，这次则更多代入了中年人和父母的代沟，其实这个视角拿来做一些更现实主义的题材很好，未必欢笑就是一切问题的解药。\r\n虽然喜剧前段我只有冻成冰雕那段找了，但却也没有忽略对观众内心的照拂，很明显导演并不是想简单的拍喜剧，更多的是想探讨妈妈与婚姻的巧妙关系上，而在内容上直视了亲子和夫妻关系中的无助和孤独，但却并不是用各种平淡如水的台词和道貌岸然的荣誉去建立人物动机。影片有几段的表演有着非常惊人的情感能量，有着一种从简单故事中挖掘并呈现影像的能力，这种力量足以让观众对主角所经历的情感感同身受。欢快的前半段以及温暖而又柔情的后半段之间巧妙的搭配让整部影片有笑有泪。\r\n"
  },
  {
    "path": "lianxi/stopwords.txt",
    "content": "!\r\n\"\r\n#\r\n$\r\n%\r\n&\r\n'\r\n(\r\n)\r\n*\r\n+\r\n,\r\n-\r\n--\r\n.\r\n..\r\n...\r\n......\r\n...................\r\n./\r\n.一\r\n记者\r\n数\r\n年\r\n月\r\n日\r\n时\r\n分\r\n秒\r\n/\r\n//\r\n0\r\n1\r\n2\r\n3\r\n4\r\n5\r\n6\r\n7\r\n8\r\n9\r\n:\r\n://\r\n::\r\n;\r\n<\r\n=\r\n>\r\n>>\r\n?\r\n@\r\nA\r\nLex\r\n[\r\n\\\r\n]\r\n【\r\n】\r\n^\r\n_\r\n`\r\nexp\r\nsub\r\nsup\r\n|\r\n}\r\n~\r\n~~~~\r\n·\r\n×\r\n×××\r\nΔ\r\nΨ\r\nγ\r\nμ\r\nφ\r\nφ．\r\nВ\r\n—\r\n——\r\n———\r\n‘\r\n’\r\n’‘\r\n“\r\n”\r\n”，\r\n…\r\n……\r\n…………………………………………………③\r\n′∈\r\n′｜\r\n℃\r\nⅢ\r\n↑\r\n→\r\n∈［\r\n∪φ∈\r\n≈\r\n①\r\n②\r\n②ｃ\r\n③\r\n③］\r\n④\r\n⑤\r\n⑥\r\n⑦\r\n⑧\r\n⑨\r\n⑩\r\n──\r\n■\r\n▲\r\n　\r\n、\r\n。\r\n〈\r\n〉\r\n《\r\n》\r\n》），\r\n」\r\n『\r\n』\r\n〔\r\n〕\r\n〕〔\r\n㈧\r\n一\r\n一.\r\n一一\r\n一下\r\n一个\r\n一些\r\n一何\r\n一切\r\n一则\r\n一则通过\r\n一天\r\n一定\r\n一方面\r\n一旦\r\n一时\r\n一来\r\n一样\r\n一次\r\n一片\r\n一番\r\n一直\r\n一致\r\n一般\r\n一起\r\n一转眼\r\n一边\r\n一面\r\n七\r\n万一\r\n三\r\n三天两头\r\n三番两次\r\n三番五次\r\n上\r\n上下\r\n上升\r\n上去\r\n上来\r\n上述\r\n上面\r\n下\r\n下列\r\n下去\r\n下来\r\n下面\r\n不\r\n不一\r\n不下\r\n不久\r\n不了\r\n不亦乐乎\r\n不仅\r\n不仅...而且\r\n不仅仅\r\n不仅仅是\r\n不会\r\n不但\r\n不但...而且\r\n不光\r\n不免\r\n不再\r\n不力\r\n不单\r\n不变\r\n不只\r\n不可\r\n不可开交\r\n不可抗拒\r\n不同\r\n不外\r\n不外乎\r\n不够\r\n不大\r\n不如\r\n不妨\r\n不定\r\n不对\r\n不少\r\n不尽\r\n不尽然\r\n不巧\r\n不已\r\n不常\r\n不得\r\n不得不\r\n不得了\r\n不得已\r\n不必\r\n不怎么\r\n不怕\r\n不惟\r\n不成\r\n不拘\r\n不择手段\r\n不敢\r\n不料\r\n不断\r\n不日\r\n不时\r\n不是\r\n不曾\r\n不止\r\n不止一次\r\n不比\r\n不消\r\n不满\r\n不然\r\n不然的话\r\n不特\r\n不独\r\n不由得\r\n不知不觉\r\n不管\r\n不管怎样\r\n不经意\r\n不胜\r\n不能\r\n不能不\r\n不至于\r\n不若\r\n不要\r\n不论\r\n不起\r\n不足\r\n不过\r\n不迭\r\n不问\r\n不限\r\n与\r\n与其\r\n与其说\r\n与否\r\n与此同时\r\n专门\r\n且\r\n且不说\r\n且说\r\n两者\r\n严格\r\n严重\r\n个\r\n个人\r\n个别\r\n中小\r\n中间\r\n丰富\r\n串行\r\n临\r\n临到\r\n为\r\n为主\r\n为了\r\n为什么\r\n为什麽\r\n为何\r\n为止\r\n为此\r\n为着\r\n主张\r\n主要\r\n举凡\r\n举行\r\n乃\r\n乃至\r\n乃至于\r\n么\r\n之\r\n之一\r\n之前\r\n之后\r\n之後\r\n之所以\r\n之类\r\n乌乎\r\n乎\r\n乒\r\n乘\r\n乘势\r\n乘机\r\n乘胜\r\n乘虚\r\n乘隙\r\n九\r\n也\r\n也好\r\n也就是说\r\n也是\r\n也罢\r\n了\r\n了解\r\n争取\r\n二\r\n二来\r\n二话不说\r\n二话没说\r\n于\r\n于是\r\n于是乎\r\n云云\r\n云尔\r\n互\r\n互相\r\n五\r\n些\r\n交口\r\n亦\r\n产生\r\n亲口\r\n亲手\r\n亲眼\r\n亲自\r\n亲身\r\n人\r\n人人\r\n人们\r\n人家\r\n人民\r\n什么\r\n什么样\r\n什麽\r\n仅\r\n仅仅\r\n今\r\n今后\r\n今天\r\n今年\r\n今後\r\n介于\r\n仍\r\n仍旧\r\n仍然\r\n从\r\n从不\r\n从严\r\n从中\r\n从事\r\n从今以后\r\n从优\r\n从古到今\r\n从古至今\r\n从头\r\n从宽\r\n从小\r\n从新\r\n从无到有\r\n从早到晚\r\n从未\r\n从来\r\n从此\r\n从此以后\r\n从而\r\n从轻\r\n从速\r\n从重\r\n他\r\n他人\r\n他们\r\n他是\r\n他的\r\n代替\r\n以\r\n以上\r\n以下\r\n以为\r\n以便\r\n以免\r\n以前\r\n以及\r\n以后\r\n以外\r\n以後\r\n以故\r\n以期\r\n以来\r\n以至\r\n以至于\r\n以致\r\n们\r\n任\r\n任何\r\n任凭\r\n任务\r\n企图\r\n伙同\r\n会\r\n伟大\r\n传\r\n传说\r\n传闻\r\n似乎\r\n似的\r\n但\r\n但凡\r\n但愿\r\n但是\r\n何\r\n何乐而不为\r\n何以\r\n何况\r\n何处\r\n何妨\r\n何尝\r\n何必\r\n何时\r\n何止\r\n何苦\r\n何须\r\n余外\r\n作为\r\n你\r\n你们\r\n你是\r\n你的\r\n使\r\n使得\r\n使用\r\n例如\r\n依\r\n依据\r\n依照\r\n依靠\r\n便\r\n便于\r\n促进\r\n保持\r\n保管\r\n保险\r\n俺\r\n俺们\r\n倍加\r\n倍感\r\n倒不如\r\n倒不如说\r\n倒是\r\n倘\r\n倘使\r\n倘或\r\n倘然\r\n倘若\r\n借\r\n借以\r\n借此\r\n假使\r\n假如\r\n假若\r\n偏偏\r\n做到\r\n偶尔\r\n偶而\r\n傥然\r\n像\r\n儿\r\n允许\r\n元／吨\r\n充其极\r\n充其量\r\n充分\r\n先不先\r\n先后\r\n先後\r\n先生\r\n光\r\n光是\r\n全体\r\n全力\r\n全年\r\n全然\r\n全身心\r\n全部\r\n全都\r\n全面\r\n八\r\n八成\r\n公然\r\n六\r\n兮\r\n共\r\n共同\r\n共总\r\n关于\r\n其\r\n其一\r\n其中\r\n其二\r\n其他\r\n其余\r\n其后\r\n其它\r\n其实\r\n其次\r\n具体\r\n具体地说\r\n具体来说\r\n具体说来\r\n具有\r\n兼之\r\n内\r\n再\r\n再其次\r\n再则\r\n再有\r\n再次\r\n再者\r\n再者说\r\n再说\r\n冒\r\n冲\r\n决不\r\n决定\r\n决非\r\n况且\r\n准备\r\n凑巧\r\n凝神\r\n几\r\n几乎\r\n几度\r\n几时\r\n几番\r\n几经\r\n凡\r\n凡是\r\n凭\r\n凭借\r\n出\r\n出于\r\n出去\r\n出来\r\n出现\r\n分别\r\n分头\r\n分期\r\n分期分批\r\n切\r\n切不可\r\n切切\r\n切勿\r\n切莫\r\n则\r\n则甚\r\n刚\r\n刚好\r\n刚巧\r\n刚才\r\n初\r\n别\r\n别人\r\n别处\r\n别是\r\n别的\r\n别管\r\n别说\r\n到\r\n到了儿\r\n到处\r\n到头\r\n到头来\r\n到底\r\n到目前为止\r\n前后\r\n前此\r\n前者\r\n前进\r\n前面\r\n加上\r\n加之\r\n加以\r\n加入\r\n加强\r\n动不动\r\n动辄\r\n勃然\r\n匆匆\r\n十分\r\n千\r\n千万\r\n千万千万\r\n半\r\n单\r\n单单\r\n单纯\r\n即\r\n即令\r\n即使\r\n即便\r\n即刻\r\n即如\r\n即将\r\n即或\r\n即是说\r\n即若\r\n却\r\n却不\r\n历\r\n原来\r\n去\r\n又\r\n又及\r\n及\r\n及其\r\n及时\r\n及至\r\n双方\r\n反之\r\n反之亦然\r\n反之则\r\n反倒\r\n反倒是\r\n反应\r\n反手\r\n反映\r\n反而\r\n反过来\r\n反过来说\r\n取得\r\n取道\r\n受到\r\n变成\r\n古来\r\n另\r\n另一个\r\n另一方面\r\n另外\r\n另悉\r\n另方面\r\n另行\r\n只\r\n只当\r\n只怕\r\n只是\r\n只有\r\n只消\r\n只要\r\n只限\r\n叫\r\n叫做\r\n召开\r\n叮咚\r\n叮当\r\n可\r\n可以\r\n可好\r\n可是\r\n可能\r\n可见\r\n各\r\n各个\r\n各人\r\n各位\r\n各地\r\n各式\r\n各种\r\n各级\r\n各自\r\n合理\r\n同\r\n同一\r\n同时\r\n同样\r\n后\r\n后来\r\n后者\r\n后面\r\n向\r\n向使\r\n向着\r\n吓\r\n吗\r\n否则\r\n吧\r\n吧哒\r\n吱\r\n呀\r\n呃\r\n呆呆地\r\n呐\r\n呕\r\n呗\r\n呜\r\n呜呼\r\n呢\r\n周围\r\n呵\r\n呵呵\r\n呸\r\n呼哧\r\n呼啦\r\n咋\r\n和\r\n咚\r\n咦\r\n咧\r\n咱\r\n咱们\r\n咳\r\n哇\r\n哈\r\n哈哈\r\n哉\r\n哎\r\n哎呀\r\n哎哟\r\n哗\r\n哗啦\r\n哟\r\n哦\r\n哩\r\n哪\r\n哪个\r\n哪些\r\n哪儿\r\n哪天\r\n哪年\r\n哪怕\r\n哪样\r\n哪边\r\n哪里\r\n哼\r\n哼唷\r\n唉\r\n唯有\r\n啊\r\n啊呀\r\n啊哈\r\n啊哟\r\n啐\r\n啥\r\n啦\r\n啪达\r\n啷当\r\n喀\r\n喂\r\n喏\r\n喔唷\r\n喽\r\n嗡\r\n嗡嗡\r\n嗬\r\n嗯\r\n嗳\r\n嘎\r\n嘎嘎\r\n嘎登\r\n嘘\r\n嘛\r\n嘻\r\n嘿\r\n嘿嘿\r\n四\r\n因\r\n因为\r\n因了\r\n因此\r\n因着\r\n因而\r\n固\r\n固然\r\n在\r\n在下\r\n在于\r\n地\r\n均\r\n坚决\r\n坚持\r\n基于\r\n基本\r\n基本上\r\n处在\r\n处处\r\n处理\r\n复杂\r\n多\r\n多么\r\n多亏\r\n多多\r\n多多少少\r\n多多益善\r\n多少\r\n多年前\r\n多年来\r\n多数\r\n多次\r\n够瞧的\r\n大\r\n大不了\r\n大举\r\n大事\r\n大体\r\n大体上\r\n大凡\r\n大力\r\n大多\r\n大多数\r\n大大\r\n大家\r\n大张旗鼓\r\n大批\r\n大抵\r\n大概\r\n大略\r\n大约\r\n大致\r\n大都\r\n大量\r\n大面儿上\r\n失去\r\n奇\r\n奈\r\n奋勇\r\n她\r\n她们\r\n她是\r\n她的\r\n好\r\n好在\r\n好的\r\n好象\r\n如\r\n如上\r\n如上所述\r\n如下\r\n如今\r\n如何\r\n如其\r\n如前所述\r\n如同\r\n如常\r\n如是\r\n如期\r\n如果\r\n如次\r\n如此\r\n如此等等\r\n如若\r\n始而\r\n姑且\r\n存在\r\n存心\r\n孰料\r\n孰知\r\n宁\r\n宁可\r\n宁愿\r\n宁肯\r\n它\r\n它们\r\n它们的\r\n它是\r\n它的\r\n安全\r\n完全\r\n完成\r\n定\r\n实现\r\n实际\r\n宣布\r\n容易\r\n密切\r\n对\r\n对于\r\n对应\r\n对待\r\n对方\r\n对比\r\n将\r\n将才\r\n将要\r\n将近\r\n小\r\n少数\r\n尔\r\n尔后\r\n尔尔\r\n尔等\r\n尚且\r\n尤其\r\n就\r\n就地\r\n就是\r\n就是了\r\n就是说\r\n就此\r\n就算\r\n就要\r\n尽\r\n尽可能\r\n尽如人意\r\n尽心尽力\r\n尽心竭力\r\n尽快\r\n尽早\r\n尽然\r\n尽管\r\n尽管如此\r\n尽量\r\n局外\r\n居然\r\n届时\r\n属于\r\n屡\r\n屡屡\r\n屡次\r\n屡次三番\r\n岂\r\n岂但\r\n岂止\r\n岂非\r\n川流不息\r\n左右\r\n巨大\r\n巩固\r\n差一点\r\n差不多\r\n己\r\n已\r\n已矣\r\n已经\r\n巴\r\n巴巴\r\n带\r\n帮助\r\n常\r\n常常\r\n常言说\r\n常言说得好\r\n常言道\r\n平素\r\n年复一年\r\n并\r\n并不\r\n并不是\r\n并且\r\n并排\r\n并无\r\n并没\r\n并没有\r\n并肩\r\n并非\r\n广大\r\n广泛\r\n应当\r\n应用\r\n应该\r\n庶乎\r\n庶几\r\n开外\r\n开始\r\n开展\r\n引起\r\n弗\r\n弹指之间\r\n强烈\r\n强调\r\n归\r\n归根到底\r\n归根结底\r\n归齐\r\n当\r\n当下\r\n当中\r\n当儿\r\n当前\r\n当即\r\n当口儿\r\n当地\r\n当场\r\n当头\r\n当庭\r\n当时\r\n当然\r\n当真\r\n当着\r\n形成\r\n彻夜\r\n彻底\r\n彼\r\n彼时\r\n彼此\r\n往\r\n往往\r\n待\r\n待到\r\n很\r\n很多\r\n很少\r\n後来\r\n後面\r\n得\r\n得了\r\n得出\r\n得到\r\n得天独厚\r\n得起\r\n心里\r\n必\r\n必定\r\n必将\r\n必然\r\n必要\r\n必须\r\n快\r\n快要\r\n忽地\r\n忽然\r\n怎\r\n怎么\r\n怎么办\r\n怎么样\r\n怎奈\r\n怎样\r\n怎麽\r\n怕\r\n急匆匆\r\n怪\r\n怪不得\r\n总之\r\n总是\r\n总的来看\r\n总的来说\r\n总的说来\r\n总结\r\n总而言之\r\n恍然\r\n恐怕\r\n恰似\r\n恰好\r\n恰如\r\n恰巧\r\n恰恰\r\n恰恰相反\r\n恰逢\r\n您\r\n您们\r\n您是\r\n惟其\r\n惯常\r\n意思\r\n愤然\r\n愿意\r\n慢说\r\n成为\r\n成年\r\n成年累月\r\n成心\r\n我\r\n我们\r\n我是\r\n我的\r\n或\r\n或则\r\n或多或少\r\n或是\r\n或曰\r\n或者\r\n或许\r\n战斗\r\n截然\r\n截至\r\n所\r\n所以\r\n所在\r\n所幸\r\n所有\r\n所谓\r\n才\r\n才能\r\n扑通\r\n打\r\n打从\r\n打开天窗说亮话\r\n扩大\r\n把\r\n抑或\r\n抽冷子\r\n拦腰\r\n拿\r\n按\r\n按时\r\n按期\r\n按照\r\n按理\r\n按说\r\n挨个\r\n挨家挨户\r\n挨次\r\n挨着\r\n挨门挨户\r\n挨门逐户\r\n换句话说\r\n换言之\r\n据\r\n据实\r\n据悉\r\n据我所知\r\n据此\r\n据称\r\n据说\r\n掌握\r\n接下来\r\n接着\r\n接著\r\n接连不断\r\n放量\r\n故\r\n故意\r\n故此\r\n故而\r\n敞开儿\r\n敢\r\n敢于\r\n敢情\r\n数/\r\n整个\r\n断然\r\n方\r\n方便\r\n方才\r\n方能\r\n方面\r\n旁人\r\n无\r\n无宁\r\n无法\r\n无论\r\n既\r\n既...又\r\n既往\r\n既是\r\n既然\r\n日复一日\r\n日渐\r\n日益\r\n日臻\r\n日见\r\n时候\r\n昂然\r\n明显\r\n明确\r\n是\r\n是不是\r\n是以\r\n是否\r\n是的\r\n显然\r\n显著\r\n普通\r\n普遍\r\n暗中\r\n暗地里\r\n暗自\r\n更\r\n更为\r\n更加\r\n更进一步\r\n曾\r\n曾经\r\n替\r\n替代\r\n最\r\n最后\r\n最大\r\n最好\r\n最後\r\n最近\r\n最高\r\n有\r\n有些\r\n有关\r\n有利\r\n有力\r\n有及\r\n有所\r\n有效\r\n有时\r\n有点\r\n有的\r\n有的是\r\n有着\r\n有著\r\n望\r\n朝\r\n朝着\r\n末##末\r\n本\r\n本人\r\n本地\r\n本着\r\n本身\r\n权时\r\n来\r\n来不及\r\n来得及\r\n来看\r\n来着\r\n来自\r\n来讲\r\n来说\r\n极\r\n极为\r\n极了\r\n极其\r\n极力\r\n极大\r\n极度\r\n极端\r\n构成\r\n果然\r\n果真\r\n某\r\n某个\r\n某些\r\n某某\r\n根据\r\n根本\r\n格外\r\n梆\r\n概\r\n次第\r\n欢迎\r\n欤\r\n正值\r\n正在\r\n正如\r\n正巧\r\n正常\r\n正是\r\n此\r\n此中\r\n此后\r\n此地\r\n此处\r\n此外\r\n此时\r\n此次\r\n此间\r\n殆\r\n毋宁\r\n每\r\n每个\r\n每天\r\n每年\r\n每当\r\n每时每刻\r\n每每\r\n每逢\r\n比\r\n比及\r\n比如\r\n比如说\r\n比方\r\n比照\r\n比起\r\n比较\r\n毕竟\r\n毫不\r\n毫无\r\n毫无例外\r\n毫无保留地\r\n汝\r\n沙沙\r\n没\r\n没奈何\r\n没有\r\n沿\r\n沿着\r\n注意\r\n活\r\n深入\r\n清楚\r\n满\r\n满足\r\n漫说\r\n焉\r\n然\r\n然则\r\n然后\r\n然後\r\n然而\r\n照\r\n照着\r\n牢牢\r\n特别是\r\n特殊\r\n特点\r\n犹且\r\n犹自\r\n独\r\n独自\r\n猛然\r\n猛然间\r\n率尔\r\n率然\r\n现代\r\n现在\r\n理应\r\n理当\r\n理该\r\n瑟瑟\r\n甚且\r\n甚么\r\n甚或\r\n甚而\r\n甚至\r\n甚至于\r\n用\r\n用来\r\n甫\r\n甭\r\n由\r\n由于\r\n由是\r\n由此\r\n由此可见\r\n略\r\n略为\r\n略加\r\n略微\r\n白\r\n白白\r\n的\r\n的确\r\n的话\r\n皆可\r\n目前\r\n直到\r\n直接\r\n相似\r\n相信\r\n相反\r\n相同\r\n相对\r\n相对而言\r\n相应\r\n相当\r\n相等\r\n省得\r\n看\r\n看上去\r\n看出\r\n看到\r\n看来\r\n看样子\r\n看看\r\n看见\r\n看起来\r\n真是\r\n真正\r\n眨眼\r\n着\r\n着呢\r\n矣\r\n矣乎\r\n矣哉\r\n知道\r\n砰\r\n确定\r\n碰巧\r\n社会主义\r\n离\r\n种\r\n积极\r\n移动\r\n究竟\r\n穷年累月\r\n突出\r\n突然\r\n窃\r\n立\r\n立刻\r\n立即\r\n立地\r\n立时\r\n立马\r\n竟\r\n竟然\r\n竟而\r\n第\r\n第二\r\n等\r\n等到\r\n等等\r\n策略地\r\n简直\r\n简而言之\r\n简言之\r\n管\r\n类如\r\n粗\r\n精光\r\n紧接着\r\n累年\r\n累次\r\n纯\r\n纯粹\r\n纵\r\n纵令\r\n纵使\r\n纵然\r\n练习\r\n组成\r\n经\r\n经常\r\n经过\r\n结合\r\n结果\r\n给\r\n绝\r\n绝不\r\n绝对\r\n绝非\r\n绝顶\r\n继之\r\n继后\r\n继续\r\n继而\r\n维持\r\n综上所述\r\n缕缕\r\n罢了\r\n老\r\n老大\r\n老是\r\n老老实实\r\n考虑\r\n者\r\n而\r\n而且\r\n而况\r\n而又\r\n而后\r\n而外\r\n而已\r\n而是\r\n而言\r\n而论\r\n联系\r\n联袂\r\n背地里\r\n背靠背\r\n能\r\n能否\r\n能够\r\n腾\r\n自\r\n自个儿\r\n自从\r\n自各儿\r\n自后\r\n自家\r\n自己\r\n自打\r\n自身\r\n臭\r\n至\r\n至于\r\n至今\r\n至若\r\n致\r\n般的\r\n良好\r\n若\r\n若夫\r\n若是\r\n若果\r\n若非\r\n范围\r\n莫\r\n莫不\r\n莫不然\r\n莫如\r\n莫若\r\n莫非\r\n获得\r\n藉以\r\n虽\r\n虽则\r\n虽然\r\n虽说\r\n蛮\r\n行为\r\n行动\r\n表明\r\n表示\r\n被\r\n要\r\n要不\r\n要不是\r\n要不然\r\n要么\r\n要是\r\n要求\r\n见\r\n规定\r\n觉得\r\n譬喻\r\n譬如\r\n认为\r\n认真\r\n认识\r\n让\r\n许多\r\n论\r\n论说\r\n设使\r\n设或\r\n设若\r\n诚如\r\n诚然\r\n话说\r\n该\r\n该当\r\n说明\r\n说来\r\n说说\r\n请勿\r\n诸\r\n诸位\r\n诸如\r\n谁\r\n谁人\r\n谁料\r\n谁知\r\n谨\r\n豁然\r\n贼死\r\n赖以\r\n赶\r\n赶快\r\n赶早不赶晚\r\n起\r\n起先\r\n起初\r\n起头\r\n起来\r\n起见\r\n起首\r\n趁\r\n趁便\r\n趁势\r\n趁早\r\n趁机\r\n趁热\r\n趁着\r\n越是\r\n距\r\n跟\r\n路经\r\n转动\r\n转变\r\n转贴\r\n轰然\r\n较\r\n较为\r\n较之\r\n较比\r\n边\r\n达到\r\n达旦\r\n迄\r\n迅速\r\n过\r\n过于\r\n过去\r\n过来\r\n运用\r\n近\r\n近几年来\r\n近年来\r\n近来\r\n还\r\n还是\r\n还有\r\n还要\r\n这\r\n这一来\r\n这个\r\n这么\r\n这么些\r\n这么样\r\n这么点儿\r\n这些\r\n这会儿\r\n这儿\r\n这就是说\r\n这时\r\n这样\r\n这次\r\n这点\r\n这种\r\n这般\r\n这边\r\n这里\r\n这麽\r\n进入\r\n进去\r\n进来\r\n进步\r\n进而\r\n进行\r\n连\r\n连同\r\n连声\r\n连日\r\n连日来\r\n连袂\r\n连连\r\n迟早\r\n迫于\r\n适应\r\n适当\r\n适用\r\n逐步\r\n逐渐\r\n通常\r\n通过\r\n造成\r\n逢\r\n遇到\r\n遭到\r\n遵循\r\n遵照\r\n避免\r\n那\r\n那个\r\n那么\r\n那么些\r\n那么样\r\n那些\r\n那会儿\r\n那儿\r\n那时\r\n那末\r\n那样\r\n那般\r\n那边\r\n那里\r\n那麽\r\n部分\r\n都\r\n鄙人\r\n采取\r\n里面\r\n重大\r\n重新\r\n重要\r\n鉴于\r\n针对\r\n长期以来\r\n长此下去\r\n长线\r\n长话短说\r\n问题\r\n间或\r\n防止\r\n阿\r\n附近\r\n陈年\r\n限制\r\n陡然\r\n除\r\n除了\r\n除却\r\n除去\r\n除外\r\n除开\r\n除此\r\n除此之外\r\n除此以外\r\n除此而外\r\n除非\r\n随\r\n随后\r\n随时\r\n随着\r\n随著\r\n隔夜\r\n隔日\r\n难得\r\n难怪\r\n难说\r\n难道\r\n难道说\r\n集中\r\n零\r\n需要\r\n非但\r\n非常\r\n非徒\r\n非得\r\n非特\r\n非独\r\n靠\r\n顶多\r\n顷\r\n顷刻\r\n顷刻之间\r\n顷刻间\r\n顺\r\n顺着\r\n顿时\r\n颇\r\n风雨无阻\r\n饱\r\n首先\r\n马上\r\n高低\r\n高兴\r\n默然\r\n默默地\r\n齐\r\n︿\r\n！\r\n＃\r\n＄\r\n％\r\n＆\r\n＇\r\n（\r\n）\r\n）÷（１－\r\n）、\r\n＊\r\n＋\r\n＋ξ\r\n＋＋\r\n，\r\n，也\r\n－\r\n－β\r\n－－\r\n－［＊］－\r\n．\r\n／\r\n０\r\n０：２\r\n１\r\n１．\r\n１２％\r\n２\r\n２．３％\r\n３\r\n４\r\n５\r\n５：０\r\n６\r\n７\r\n８\r\n９\r\n：\r\n；\r\n＜\r\n＜±\r\n＜Δ\r\n＜λ\r\n＜φ\r\n＜＜\r\n＝\r\n＝″\r\n＝☆\r\n＝（\r\n＝－\r\n＝［\r\n＝｛\r\n＞\r\n＞λ\r\n？\r\n＠\r\nＡ\r\nＬＩ\r\nＲ．Ｌ．\r\nＺＸＦＩＴＬ\r\n\r\n［＊］\r\n［－\r\n［］\r\n］\r\n］∧′＝［\r\n］［\r\n＿\r\nａ］\r\nｂ］\r\nｃ］\r\nｅ］\r\nｆ］\r\nｎｇ昉\r\n｛\r\n｛－\r\n｜\r\n｝\r\n｝＞\r\n～\r\n～±\r\n～＋\r\n￥\r\nsecondly\r\nall\r\nwhose\r\nunder\r\nsorry\r\nfour\r\nwe'll\r\nsomewhere\r\nlikely\r\neven\r\nabove\r\never\r\nnever\r\nZZ\r\nhers\r\ni'd\r\nhowbeit\r\ni'm\r\ntheres\r\nchanges\r\nanyhow\r\nwould\r\ntherefore\r\nis\r\nhereby\r\nmust\r\nme\r\nmy\r\nindicated\r\nindicates\r\nkeep\r\nfar\r\nafter\r\nhereupon\r\nkeeps\r\nevery\r\nover\r\nbefore\r\nbetter\r\nthen\r\nthem\r\nthey\r\nreasonably\r\neach\r\nwent\r\nmean\r\nwe'd\r\nrd\r\nre\r\ngot\r\nforth\r\nyou're\r\nlittle\r\nwhereupon\r\nuses\r\nalready\r\nanother\r\ntook\r\nsecond\r\nseen\r\nseem\r\nrelatively\r\nthoroughly\r\nlatter\r\nthat\r\nthorough\r\nnobody\r\ndefinitely\r\ncame\r\nsaying\r\nspecify\r\ndo\r\nnext\r\ndespite\r\nunfortunately\r\ntwice\r\nbest\r\nsaid\r\naway\r\nthere's\r\nunto\r\nhopefully\r\nseven\r\nwe\r\nltd\r\nhere\r\nagainst\r\ncom\r\nZT\r\naren't\r\nbeen\r\nmuch\r\nconcerning\r\nwish\r\nsay\r\nnear\r\nunlikely\r\ncant\r\nin\r\nie\r\nif\r\ncontaining\r\nbeside\r\nseveral\r\nkept\r\nwhereby\r\nwhoever\r\nthe\r\nyours\r\njust\r\nyes\r\nyet\r\nhad\r\nhas\r\nt's\r\npossible\r\napart\r\nright\r\nold\r\nsomehow\r\nfor\r\neverything\r\nasking\r\nwho\r\nof\r\ntheirs\r\nplus\r\nformerly\r\ndown\r\nc's\r\naccordingly\r\nway\r\nwas\r\nbecoming\r\ntell\r\nsometime\r\nno\r\nwhereas\r\nnd\r\nwelcome\r\nlet's\r\ncertainly\r\na's\r\ndid\r\nit'll\r\nsays\r\nappear\r\nalone\r\nwherever\r\nexample\r\nusually\r\nnowhere\r\nhither\r\nregardless\r\neverybody\r\nthru\r\neverywhere\r\ncan\r\nfollowing\r\nwant\r\ndidn't\r\nmay\r\nsuch\r\nwhenever\r\nmaybe\r\nones\r\nso\r\nseeing\r\nindeed\r\ncourse\r\nstill\r\nthank\r\nhe's\r\nselves\r\nours\r\noutside\r\nnon\r\nwithin\r\nthereby\r\nnot\r\nnow\r\nnor\r\nentirely\r\neg\r\nex\r\net\r\nhadn't\r\nfurthermore\r\nlooking\r\nseriously\r\nshouldn't\r\nshe\r\nquite\r\nbesides\r\nthink\r\nfirst\r\nignored\r\nawfully\r\ngiven\r\nanyone\r\nindicate\r\ngives\r\nmostly\r\nthan\r\nhere's\r\nwere\r\nand\r\nappreciate\r\nhimself\r\nsaw\r\nany\r\ndownwards\r\ntake\r\nsure\r\nespecially\r\nlater\r\nthat's\r\nfifth\r\ndon't\r\naside\r\nonly\r\ngoing\r\nget\r\ntruly\r\ncannot\r\nnearly\r\nregarding\r\nus\r\nwhere\r\nup\r\nnamely\r\nanyways\r\nwonder\r\nbehind\r\nbetween\r\nit\r\nacross\r\ncome\r\nmany\r\nwhereafter\r\naccording\r\ncomes\r\nafterwards\r\ncouldn't\r\nmoreover\r\nconsidering\r\nsensible\r\nhardly\r\nwants\r\nformer\r\nthose\r\nthese\r\n [\r\nsomebody\r\ndifferent\r\netc\r\ninsofar\r\nsame\r\nwithout\r\ncan't\r\nvery\r\nyou've\r\namong\r\nbeing\r\nwe've\r\nseems\r\naround\r\nusing\r\nspecified\r\non\r\nok\r\noh\r\nwhence\r\nit's\r\nor\r\neveryone\r\nyour\r\nher\r\nthere\r\namongst\r\ntrying\r\nwith\r\nthey're\r\nwasn't\r\ngone\r\ncertain\r\nam\r\nan\r\nas\r\nat\r\nagain\r\nserious\r\nhello\r\nsince\r\nconsider\r\ncauses\r\nto\r\nth\r\nmyself\r\ni'll\r\nzero\r\nfurther\r\nwhat\r\nbrief\r\nseemed\r\nc'mon\r\nallows\r\nfollowed\r\nask\r\nviz\r\ncontains\r\ntwo\r\ntaken\r\nmore\r\nknows\r\nain't\r\nparticular\r\nknown\r\nnone\r\nnine\r\nneeds\r\nrather\r\n［\r\nokay\r\ntried\r\ntries\r\nonto\r\nperhaps\r\nspecifying\r\n ]\r\nhelp\r\nsoon\r\nthrough\r\nits\r\nseeming\r\ninward\r\nactually\r\nmight\r\nhaven't\r\nsomeone\r\nhereafter\r\nalways\r\nisn't\r\nbeyond\r\nreally\r\nthey'll\r\nenough\r\nthereafter\r\ndone\r\ntogether\r\nleast\r\ntoo\r\nimmediate\r\nbelieve\r\ngotten\r\ntoward\r\nself\r\nalso\r\ntowards\r\nmost\r\nnothing\r\nthey'd\r\nsometimes\r\nlest\r\nparticularly\r\nsomewhat\r\nhis\r\ngoes\r\nmeanwhile\r\nduring\r\nhim\r\ngreetings\r\nsee\r\nare\r\ncurrently\r\nplease\r\nvarious\r\nprobably\r\navailable\r\nboth\r\nlast\r\nwouldn't\r\nbecame\r\nwhole\r\nliked\r\nwhatever\r\nexcept\r\nthroughout\r\nalong\r\ndescribed\r\nthough\r\nwhom\r\nbeforehand\r\nwhat's\r\nnew\r\nelse\r\nlook\r\nwhile\r\nherein\r\nitself\r\nwherein\r\nused\r\nanybody\r\nobviously\r\nthats\r\nfrom\r\nuseful\r\nmerely\r\nfollows\r\noften\r\nsome\r\nourselves\r\nshall\r\nper\r\ntends\r\neither\r\nbe\r\nby\r\nanything\r\nconsequently\r\ninto\r\nappropriate\r\nwe're\r\nelsewhere\r\nhasn't\r\nun\r\nnoone\r\nassociated\r\nthanks\r\nhaving\r\nonce\r\nedu\r\ngo\r\nsent\r\nprovides\r\nyourselves\r\nthey've\r\ntry\r\nthis\r\nyou'd\r\nyourself\r\nzz\r\nzt\r\nrespectively\r\nlet\r\nothers\r\nuntil\r\nweren't\r\nuse\r\nfew\r\nthemselves\r\nbecomes\r\nanywhere\r\nsomething\r\nsix\r\nallow\r\nwon't\r\nthence\r\nwilling\r\ninstead\r\nwhither\r\ndoing\r\nhow\r\ncause\r\nthereupon\r\nque\r\nvia\r\ncould\r\nhence\r\nthird\r\ndoesn't\r\ntheir\r\nexactly\r\nregards\r\nherself\r\nhave\r\nneed\r\nclearly\r\ni've\r\nable\r\nwhich\r\nunless\r\nwhere's\r\neight\r\nwhy\r\nyou'll\r\nnormally\r\nanyway\r\none\r\nshould\r\nmainly\r\noverall\r\nqv\r\ncontain\r\nlooks\r\nneither\r\nhowever\r\notherwise\r\nco\r\nit'd\r\ncorresponding\r\nthanx\r\nnovel\r\nvalue\r\nwill\r\nalmost\r\nthus\r\nvs\r\nwhen\r\ngets\r\nupon\r\noff\r\nnevertheless\r\nwell\r\nless\r\npresumably\r\nought\r\nwho's\r\nfive\r\nknow\r\nyou\r\nname\r\nnecessary\r\nlike\r\nbecome\r\ntherein\r\nbecause\r\nhappens\r\ndoes\r\nalthough\r\nabout\r\ngetting\r\nown\r\nthree\r\ninasmuch\r\ninner\r\nbut\r\nhi\r\nhe\r\nwhether\r\nplaced\r\nbelow\r\nour\r\n上去--\r\ninc\r\nlately\r\nother\r\nlatterly\r\nout\r\n是什么\r\n什么时候\r\n是什么意思\r\n什么意思\r\n多少钱\r\n有没有\r\n更有趣\r\n更有甚者\r\n更有效\r\n更有意义\r\n更远的\r\n更重要的是\r\n正确\r\n错误\r\n第二把\r\n第二波\r\n第二大节\r\n第二单元\r\n第二关\r\n第二行\r\n第二集\r\n第二讲\r\n第二款\r\n第二类\r\n第二盘\r\n第二任\r\n第二声\r\n第二十\r\n第二首\r\n第二项\r\n第三遍\r\n第三册\r\n第三层\r\n第三产业\r\n第三大\r\n第三单元\r\n第三行\r\n第三回\r\n第三集\r\n第三件\r\n第三句\r\n第三卷\r\n第三课\r\n第三类\r\n第三篇\r\n第三期\r\n第三日\r\n第三声\r\n地三鲜\r\n第三项\r\n第三站\r\n第三张\r\n第十八\r\n第十次\r\n第十二\r\n的士高\r\n第十集\r\n第十届\r\n第十九\r\n第十六\r\n第十名\r\n第十三\r\n第十四\r\n第十天\r\n第十一\r\n第十一个\r\n第四版\r\n第四册\r\n第四场\r\n第四代\r\n第四单元\r\n第四集\r\n第四届\r\n第四年\r\n第四期\r\n第四声\r\n第四套\r\n第四位\r\n第四张\r\n第四者\r\n第四种\r\n第五部\r\n第五大道\r\n第五单元\r\n第五集\r\n第五卷\r\n第五课\r\n第五年\r\n第五期\r\n第五位\r\n第五元素\r\n第五组\r\n召唤\r\n最后一班\r\n最后一遍\r\n最后一关\r\n最后一集\r\n最后一科\r\n最后一颗子弹\r\n最后一派\r\n最后一题\r\n最后一眼\r\n最后一页\r\n10\r\n11\r\n12\r\n35\r\n25\r\n2016\r\n2015\r\n2014\r\n又为什么\r\n有问题吗\r\n有问题么\r\n又喜欢\r\n有喜欢\r\n又小\r\n又笑\r\n有笑\r\n有效地\r\n有一百\r\n又一遍\r\n有一部\r\n又一城\r\n又一村\r\n有一道\r\n有意的\r\n有一堆\r\n有一对\r\n有一方\r\n有一根\r\n有一会了\r\n有一批\r\n有一片\r\n有一期\r\n有一起\r\n有一群\r\n又又\r\n由由\r\n财新网\r\n上午\r\n下午\r\nNULL\r\n新华社\r\n消息\r\n13\r\n14\r\n15\r\n16\r\n17\r\n18\r\n19\r\n20\r\n21\r\n22\r\n23\r\n24\r\n26\r\n27\r\n28\r\n29\r\n30\r\n31\r\n32\r\n33\r\n34\r\n36\r\n37\r\n38\r\n39\r\n40\r\n41\r\n42\r\n43\r\n44\r\n45\r\n46\r\n47\r\n48\r\n49\r\n50\r\n51\r\n52\r\n53\r\n54\r\n55\r\n56\r\n57\r\n58\r\n59\r\n60\r\n61\r\n62\r\n63\r\n64\r\n65\r\n66\r\n67\r\n68\r\n69\r\n70\r\n71\r\n72\r\n73\r\n74\r\n75\r\n76\r\n77\r\n78\r\n79\r\n80\r\n81\r\n82\r\n83\r\n84\r\n85\r\n86\r\n87\r\n88\r\n89\r\n90\r\n91\r\n92\r\n93\r\n94\r\n95\r\n96\r\n97\r\n98\r\n99\r\n100\r\n01\r\n02\r\n03\r\n04\r\n05\r\n06\r\n07\r\n08\r\n09\r\n"
  },
  {
    "path": "lianxi/tyc.txt",
    "content": "﻿,\r\n，\r\n、\r\n；\r\n:\r\n：\r\n!\r\n！\r\n？\r\n.\r\n。\r\n“\r\n”\r\n[\r\n［\r\n［］\r\n［＊］\r\n［①］\r\n［⑩］\r\n［①①］\r\n［①②］\r\n［①③］\r\n［①④］\r\n［①⑤］\r\n［①⑥］\r\n［①⑦］\r\n［①⑧］\r\n［①⑨］\r\n［①ａ］\r\n［①Ａ］\r\n［①Ｂ］\r\n［①ｃ］\r\n［①Ｃ］\r\n［①ｄ］\r\n［①Ｄ］\r\n［①ｅ］\r\n［①Ｅ］\r\n［①ｇ］\r\n［①ｈ］\r\n［①ｉ］\r\n［①ｏ］\r\n［②\r\n［②］\r\n［②①］\r\n［②⑩］\r\n［②②］\r\n［②③］\r\n［②④\r\n［②⑤］\r\n［②⑥］\r\n［②⑦］\r\n［②⑧］\r\n［②ａ］\r\n［②ｂ］\r\n［②Ｂ］\r\n［②ｃ］\r\n［②ｄ］\r\n［②ｅ］\r\n［②ｆ］\r\n［②ｇ］\r\n［②ｈ］\r\n［②ｊ］\r\n［③］\r\n［③①］\r\n［③ａ］\r\n［③ｂ］\r\n［③ｃ］\r\n［③ｄ］\r\n［③ｅ］\r\n［③Ｆ］\r\n［③ｇ］\r\n［③ｈ］\r\n［④］\r\n［④ａ］\r\n［④ｂ］\r\n［④ｃ］\r\n［④ｄ］\r\n［④ｅ］\r\n［⑤］\r\n［⑤］］\r\n［⑤ａ］\r\n［⑤ｂ］\r\n［⑤ｅ］\r\n［⑥］\r\n［⑦］\r\n［⑧］\r\n［⑨］\r\n]\r\n］\r\n］［\r\n］∧′＝［\r\n｛－\r\n｝\r\n｝＞\r\n《\r\n》\r\n@\r\n~\r\n──\r\n阿\r\n呵\r\n呵呵\r\n啊\r\n啊哈\r\n啊呀\r\n啊哟\r\n哎\r\n哎呀\r\n哎哟\r\n唉\r\n挨次\r\n挨个\r\n挨家挨户\r\n挨门挨户\r\n挨门逐户\r\n挨着\r\n嗳\r\n安全\r\n俺\r\n俺们\r\n按\r\n按理\r\n按期\r\n按时\r\n按说\r\n按照\r\n暗地里\r\n暗中\r\n暗自\r\n昂然\r\n八成\r\n把\r\n巴\r\n巴巴\r\n吧\r\n吧哒\r\n罢了\r\n般的\r\n帮助\r\n保持\r\n背地里\r\n背靠背\r\n倍感\r\n倍加\r\n被\r\n呗\r\n本\r\n本地\r\n本人\r\n本身\r\n本着\r\n甭\r\n比\r\n比方\r\n比及\r\n比较\r\n比起\r\n比如\r\n比如说\r\n比照\r\n彼\r\n彼此\r\n彼时\r\n鄙人\r\n必定\r\n必将\r\n必然\r\n必须\r\n必要\r\n毕竟\r\n避免\r\n边\r\n变成\r\n便于\r\n表明\r\n表示\r\n别\r\n别处\r\n别的\r\n别管\r\n别人\r\n别是\r\n别说\r\n并\r\n并不\r\n并不是\r\n并非\r\n并肩\r\n并没\r\n并没有\r\n并排\r\n并且\r\n并无\r\n勃然\r\n不\r\n不比\r\n不必\r\n不变\r\n不曾\r\n不常\r\n不成\r\n不大\r\n不单\r\n不但\r\n不得\r\n不得不\r\n不得了\r\n不得已\r\n不迭\r\n不定\r\n不独\r\n不断\r\n不对\r\n不妨\r\n不敢\r\n不够\r\n不管\r\n不管怎样\r\n不光\r\n不过\r\n不会\r\n不仅\r\n不仅仅\r\n不仅仅是\r\n不尽\r\n不尽然\r\n不经意\r\n不久\r\n不拘\r\n不可\r\n不可开交\r\n不可抗拒\r\n不了\r\n不力\r\n不料\r\n不论\r\n不满\r\n不免\r\n不能\r\n不能不\r\n不怕\r\n不起\r\n不巧\r\n不然\r\n不然的话\r\n不日\r\n不如\r\n不若\r\n不少\r\n不胜\r\n不时\r\n不是\r\n不特\r\n不同\r\n不外\r\n不外乎\r\n不惟\r\n不问\r\n不下\r\n不限\r\n不消\r\n不要\r\n不一\r\n不已\r\n不亦乐乎\r\n不由得\r\n不再\r\n不择手段\r\n不怎么\r\n不知不觉\r\n不止\r\n不止一次\r\n不只\r\n不至于\r\n不足\r\n部分\r\n才\r\n才能\r\n采取\r\n策略地\r\n曾\r\n曾经\r\n差不多\r\n差一点\r\n产生\r\n常常\r\n常言道\r\n常言说\r\n常言说得好\r\n敞开儿\r\n朝\r\n朝着\r\n彻底\r\n彻夜\r\n趁\r\n趁便\r\n趁机\r\n趁热\r\n趁势\r\n趁早\r\n趁着\r\n成年累月\r\n成为\r\n成心\r\n诚然\r\n诚如\r\n乘\r\n乘机\r\n乘势\r\n乘隙\r\n乘虚\r\n迟早\r\n充分\r\n充其极\r\n充其量\r\n冲\r\n抽冷子\r\n出来\r\n出去\r\n出现\r\n出于\r\n除\r\n除此\r\n除此而外\r\n除此以外\r\n除此之外\r\n除非\r\n除开\r\n除了\r\n除去\r\n除却\r\n除外\r\n处处\r\n处理\r\n处在\r\n川流不息\r\n传说\r\n传闻\r\n纯粹\r\n此\r\n此处\r\n此次\r\n此地\r\n此后\r\n此间\r\n此时\r\n此外\r\n此中\r\n次第\r\n匆匆\r\n从\r\n从不\r\n从此\r\n从此以后\r\n从而\r\n从古到今\r\n从古至今\r\n从今以后\r\n从宽\r\n从来\r\n从轻\r\n从事\r\n从速\r\n从头\r\n从未\r\n从无到有\r\n从小\r\n从新\r\n从严\r\n从优\r\n从早到晚\r\n从中\r\n从重\r\n凑巧\r\n促进\r\n啐\r\n存心\r\n存在\r\n达旦\r\n达到\r\n打\r\n打从\r\n打开天窗说亮话\r\n大\r\n大不了\r\n大大\r\n大抵\r\n大都\r\n大多\r\n大多数\r\n大略\r\n大凡\r\n大概\r\n大家\r\n大举\r\n大力\r\n大量\r\n大面儿上\r\n大批\r\n大体上\r\n大约\r\n大张旗鼓\r\n大致\r\n呆呆地\r\n代替\r\n待\r\n待到\r\n单纯\r\n单单\r\n但\r\n但凡\r\n但是\r\n但愿\r\n弹指之间\r\n当\r\n当场\r\n当地\r\n当儿\r\n当即\r\n当口儿\r\n当前\r\n当然\r\n当时\r\n当庭\r\n当头\r\n当下\r\n当着\r\n当真\r\n当中\r\n到\r\n到处\r\n到底\r\n到了儿\r\n到目前为止\r\n到头\r\n到头来\r\n倒不如\r\n倒不如说\r\n倒是\r\n地\r\n的\r\n的话\r\n的确\r\n得\r\n得出\r\n得到\r\n得了\r\n得起\r\n得天独厚\r\n等\r\n等到\r\n等等\r\n第\r\n叮咚\r\n顶多\r\n咚\r\n动不动\r\n动辄\r\n都\r\n陡然\r\n独自\r\n断然\r\n对\r\n对比\r\n对待\r\n对方\r\n对应\r\n对于\r\n顿时\r\n多\r\n多次\r\n多多\r\n多多少少\r\n多多益善\r\n多亏\r\n多么\r\n多年来\r\n多年前\r\n多少\r\n多数\r\n呃\r\n略加\r\n略微\r\n略为\r\n儿\r\n而\r\n而后\r\n而况\r\n而论\r\n而且\r\n而是\r\n而外\r\n而言\r\n而已\r\n而又\r\n尔\r\n尔等\r\n尔尔\r\n尔后\r\n二话不说\r\n二话没说\r\n二来\r\n凡\r\n凡是\r\n反倒\r\n反倒是\r\n反而\r\n反过来\r\n反过来说\r\n反手\r\n反应\r\n反映\r\n反之\r\n反之亦然\r\n反之则\r\n范围\r\n方便\r\n方才\r\n方面\r\n方能\r\n防止\r\n非常\r\n非但\r\n非得\r\n非独\r\n非特\r\n非徒\r\n分别\r\n分期分批\r\n分头\r\n奋勇\r\n愤然\r\n丰富\r\n风雨无阻\r\n否则\r\n附近\r\n复杂\r\n嘎\r\n嘎登\r\n嘎嘎\r\n该\r\n该当\r\n赶\r\n赶快\r\n赶早不赶晚\r\n敢情\r\n敢于\r\n刚才\r\n刚好\r\n刚巧\r\n高低\r\n高兴\r\n格外\r\n隔日\r\n隔夜\r\n个\r\n个别\r\n个人\r\n各\r\n各地\r\n各个\r\n各级\r\n各人\r\n各式\r\n各位\r\n各种\r\n各自\r\n给\r\n根本\r\n根据\r\n跟\r\n更加\r\n更进一步\r\n更为\r\n公然\r\n巩固\r\n共同\r\n共总\r\n构成\r\n够瞧的\r\n姑且\r\n固然\r\n故\r\n故此\r\n故而\r\n故意\r\n怪不得\r\n关于\r\n管\r\n惯常\r\n光是\r\n广大\r\n广泛\r\n归\r\n归根到底\r\n归根结底\r\n归齐\r\n规定\r\n果然\r\n果真\r\n过\r\n过来\r\n过去\r\n过于\r\n哈\r\n哈哈\r\n咳\r\n还\r\n还是\r\n还要\r\n还有\r\n毫不\r\n毫无\r\n毫无保留地\r\n毫无例外\r\n好\r\n好的\r\n好象\r\n好在\r\n嗬\r\n合理\r\n何\r\n何必\r\n何尝\r\n何处\r\n何妨\r\n何苦\r\n何况\r\n何乐而不为\r\n何时\r\n何须\r\n何以\r\n何止\r\n和\r\n嘿\r\n嘿嘿\r\n很\r\n很多\r\n很少\r\n哼\r\n哼唷\r\n轰然\r\n后\r\n后来\r\n后面\r\n后者\r\n後来\r\n後面\r\n呼哧\r\n呼啦\r\n忽地\r\n忽然\r\n互相\r\n乎\r\n哗\r\n哗啦\r\n话说\r\n换句话说\r\n换言之\r\n欢迎\r\n恍然\r\n会\r\n豁然\r\n伙同\r\n或\r\n或多或少\r\n或是\r\n或许\r\n或曰\r\n或则\r\n或者\r\n获得\r\n积极\r\n基本\r\n基本上\r\n基于\r\n及\r\n及其\r\n及时\r\n及至\r\n即\r\n即便\r\n即或\r\n即将\r\n即刻\r\n即令\r\n即如\r\n即若\r\n即使\r\n即是说\r\n极大\r\n极度\r\n极端\r\n极了\r\n极力\r\n极其\r\n极为\r\n急匆匆\r\n集中\r\n藉以\r\n几\r\n几度\r\n几番\r\n几乎\r\n几经\r\n几时\r\n己\r\n既\r\n既然\r\n既是\r\n既往\r\n继而\r\n继后\r\n继续\r\n继之\r\n加强\r\n加入\r\n加上\r\n加以\r\n加之\r\n假如\r\n假若\r\n假使\r\n坚持\r\n坚决\r\n间或\r\n兼之\r\n简而言之\r\n简言之\r\n简直\r\n鉴于\r\n将\r\n将才\r\n将近\r\n将要\r\n交口\r\n叫\r\n叫做\r\n较\r\n较比\r\n较为\r\n较之\r\n皆可\r\n接连不断\r\n接下来\r\n接着\r\n接著\r\n结果\r\n结合\r\n截然\r\n截至\r\n介于\r\n届时\r\n借\r\n借此\r\n借以\r\n今\r\n今后\r\n今後\r\n今年\r\n今天\r\n尽\r\n尽管\r\n尽管如此\r\n尽可能\r\n尽快\r\n尽量\r\n尽然\r\n尽如人意\r\n尽心竭力\r\n尽心尽力\r\n尽早\r\n紧接着\r\n近几年来\r\n近来\r\n近年来\r\n进步\r\n进而\r\n进来\r\n进去\r\n进入\r\n进行\r\n经\r\n经常\r\n经过\r\n精光\r\n竟而\r\n竟然\r\n究竟\r\n就\r\n就此\r\n就地\r\n就是\r\n就是了\r\n就是说\r\n就算\r\n就要\r\n居然\r\n局外\r\n举凡\r\n举行\r\n巨大\r\n具体\r\n具体地说\r\n具体来说\r\n具体说来\r\n具有\r\n据\r\n据称\r\n据此\r\n据实\r\n据说\r\n据我所知\r\n据悉\r\n距\r\n决不\r\n决定\r\n决非\r\n绝不\r\n绝顶\r\n绝对\r\n绝非\r\n觉得\r\n开始\r\n开外\r\n开展\r\n看\r\n看出\r\n看到\r\n看见\r\n看看\r\n看来\r\n看起来\r\n看上去\r\n看样子\r\n考虑\r\n靠\r\n可\r\n可好\r\n可见\r\n可能\r\n可是\r\n可以\r\n恐怕\r\n快要\r\n况且\r\n扩大\r\n啦\r\n来\r\n来不及\r\n来得及\r\n来讲\r\n来看\r\n来说\r\n来着\r\n来自\r\n赖以\r\n拦腰\r\n啷当\r\n牢牢\r\n老老实实\r\n老是\r\n了\r\n了解\r\n类如\r\n累次\r\n累年\r\n离\r\n里面\r\n理当\r\n理该\r\n理应\r\n立地\r\n立即\r\n立刻\r\n立马\r\n立时\r\n例如\r\n哩\r\n连\r\n连连\r\n连袂\r\n连日\r\n连日来\r\n连声\r\n连同\r\n联袂\r\n联系\r\n练习\r\n良好\r\n两者\r\n咧\r\n临\r\n临到\r\n另\r\n另方面\r\n另外\r\n另悉\r\n另行\r\n另一方面\r\n另一个\r\n喽\r\n路经\r\n屡次\r\n屡次三番\r\n屡屡\r\n缕缕\r\n率尔\r\n率然\r\n论\r\n论说\r\n马上\r\n吗\r\n嘛\r\n满足\r\n慢说\r\n漫说\r\n冒\r\n么\r\n没奈何\r\n没有\r\n每\r\n每当\r\n每逢\r\n每个\r\n每每\r\n每年\r\n每时每刻\r\n每天\r\n们\r\n猛然\r\n猛然间\r\n密切\r\n明确\r\n明显\r\n末##末\r\n莫不\r\n莫不然\r\n莫非\r\n莫如\r\n莫若\r\n默默地\r\n默然\r\n某\r\n某个\r\n某某\r\n某些\r\n目前\r\n嗯\r\n拿\r\n哪\r\n哪边\r\n哪儿\r\n哪个\r\n哪里\r\n哪年\r\n哪怕\r\n哪天\r\n哪些\r\n哪样\r\n那\r\n那般\r\n那边\r\n那儿\r\n那个\r\n那会儿\r\n那里\r\n那么\r\n那么些\r\n那么样\r\n那麽\r\n那末\r\n那时\r\n那些\r\n那样\r\n乃\r\n乃至\r\n乃至于\r\n难道\r\n难道说\r\n难得\r\n难怪\r\n难说\r\n呢\r\n内\r\n能\r\n能否\r\n能够\r\n你\r\n你的\r\n你们\r\n你是\r\n年复一年\r\n您\r\n您们\r\n您是\r\n宁\r\n宁可\r\n宁肯\r\n宁愿\r\n凝神\r\n喏\r\n喔唷\r\n哦\r\n呕\r\n偶而\r\n偶尔\r\n啪达\r\n旁人\r\n呸\r\n砰\r\n碰巧\r\n譬如\r\n譬喻\r\n偏偏\r\n平素\r\n凭\r\n凭借\r\n迫于\r\n扑通\r\n普遍\r\n普通\r\n其\r\n其次\r\n其二\r\n其后\r\n其实\r\n其他\r\n其它\r\n其一\r\n其余\r\n其中\r\n企图\r\n岂但\r\n岂非\r\n岂止\r\n起\r\n起初\r\n起见\r\n起来\r\n起首\r\n起头\r\n起先\r\n恰逢\r\n恰好\r\n恰恰\r\n恰恰相反\r\n恰巧\r\n恰如\r\n恰似\r\n千万千万\r\n前此\r\n前后\r\n前进\r\n前面\r\n前者\r\n强调\r\n强烈\r\n且\r\n且不说\r\n且说\r\n切不可\r\n切莫\r\n切切\r\n切勿\r\n亲口\r\n亲身\r\n亲手\r\n亲眼\r\n亲自\r\n清楚\r\n顷刻\r\n顷刻间\r\n顷刻之间\r\n请勿\r\n穷年累月\r\n取道\r\n取得\r\n去\r\n全部\r\n全都\r\n全力\r\n全面\r\n全年\r\n全然\r\n全身心\r\n全体\r\n权时\r\n却\r\n却不\r\n确定\r\n然而\r\n然后\r\n然後\r\n然则\r\n让\r\n人\r\n人家\r\n人们\r\n人民\r\n人人\r\n认识\r\n认为\r\n认真\r\n任\r\n任何\r\n任凭\r\n任务\r\n仍\r\n仍旧\r\n仍然\r\n日复一日\r\n日见\r\n日渐\r\n日益\r\n日臻\r\n容易\r\n如\r\n如常\r\n如此\r\n如此等等\r\n如次\r\n如果\r\n如何\r\n如今\r\n如期\r\n如其\r\n如前所述\r\n如若\r\n如上\r\n如上所述\r\n如是\r\n如同\r\n如下\r\n若\r\n若非\r\n若夫\r\n若果\r\n若是\r\n三番两次\r\n三番五次\r\n三天两头\r\n瑟瑟\r\n沙沙\r\n啥\r\n上\r\n上来\r\n上面\r\n上去\r\n上升\r\n上述\r\n上下\r\n尚且\r\n少数\r\n设或\r\n设若\r\n设使\r\n深入\r\n什么\r\n什么样\r\n什麽\r\n甚而\r\n甚或\r\n甚么\r\n甚且\r\n甚至\r\n甚至于\r\n省得\r\n失去\r\n十分\r\n时候\r\n实际\r\n实现\r\n使\r\n使得\r\n使用\r\n始而\r\n似的\r\n似乎\r\n是\r\n是不是\r\n是的\r\n是否\r\n是以\r\n适当\r\n适应\r\n适用\r\n首先\r\n受到\r\n孰料\r\n孰知\r\n属于\r\n庶乎\r\n庶几\r\n数/\r\n双方\r\n谁\r\n谁料\r\n谁人\r\n谁知\r\n顺\r\n顺着\r\n说来\r\n说明\r\n说说\r\n虽\r\n虽然\r\n虽说\r\n虽则\r\n随\r\n随后\r\n随时\r\n随着\r\n随著\r\n所\r\n所谓\r\n所幸\r\n所以\r\n所有\r\n所在\r\n他\r\n他的\r\n他们\r\n他人\r\n他是\r\n它\r\n它的\r\n它们\r\n它们的\r\n它是\r\n她\r\n她的\r\n她们\r\n她是\r\n倘\r\n倘或\r\n倘然\r\n倘若\r\n倘使\r\n傥然\r\n特别是\r\n特点\r\n特殊\r\n腾\r\n替\r\n替代\r\n通常\r\n通过\r\n同\r\n同时\r\n同样\r\n同一\r\n突出\r\n突然\r\n哇\r\n完成\r\n完全\r\n万一\r\n往\r\n往往\r\n望\r\n唯有\r\n惟其\r\n维持\r\n伟大\r\n为\r\n为此\r\n为何\r\n为了\r\n为什么\r\n为什麽\r\n为着\r\n为止\r\n为主\r\n喂\r\n问题\r\n嗡\r\n嗡嗡\r\n我\r\n我的\r\n我们\r\n我是\r\n乌乎\r\n呜\r\n呜呼\r\n无\r\n无法\r\n无论\r\n无宁\r\n毋宁\r\n兮\r\n嘻\r\n下\r\n下来\r\n下列\r\n下面\r\n下去\r\n吓\r\n先不先\r\n先后\r\n先後\r\n先生\r\n显然\r\n显著\r\n现代\r\n现在\r\n限制\r\n相当\r\n相等\r\n相对\r\n相对而言\r\n相反\r\n相似\r\n相同\r\n相信\r\n相应\r\n向\r\n向使\r\n向着\r\n像\r\n小\r\n些\r\n心里\r\n行动\r\n行为\r\n形成\r\n嘘\r\n需要\r\n许多\r\n宣布\r\n迅速\r\n呀\r\n焉\r\n严格\r\n严重\r\n沿\r\n沿着\r\n要\r\n要不\r\n要不然\r\n要不是\r\n要么\r\n要求\r\n要是\r\n也\r\n也罢\r\n也好\r\n也是\r\n一\r\n一.\r\n一般\r\n一边\r\n一次\r\n一旦\r\n一定\r\n一方面\r\n一何\r\n一来\r\n一面\r\n一片\r\n一起\r\n一切\r\n一时\r\n一天\r\n一下\r\n一些\r\n一样\r\n一一\r\n一则\r\n一则通过\r\n一直\r\n一致\r\n一转眼\r\n依\r\n依据\r\n依靠\r\n依照\r\n咦\r\n移动\r\n已\r\n已经\r\n已矣\r\n以\r\n以便\r\n以故\r\n以后\r\n以後\r\n以及\r\n以来\r\n以免\r\n以期\r\n以前\r\n以上\r\n以外\r\n以为\r\n以下\r\n以至\r\n以至于\r\n以致\r\n矣\r\n矣乎\r\n矣哉\r\n亦\r\n抑或\r\n意思\r\n因\r\n因此\r\n因而\r\n因了\r\n因为\r\n因着\r\n引起\r\n应当\r\n应该\r\n应用\r\n哟\r\n用\r\n用来\r\n尤其\r\n由\r\n由此\r\n由此可见\r\n由是\r\n由于\r\n犹且\r\n犹自\r\n有\r\n有的\r\n有点\r\n有关\r\n有及\r\n有力\r\n有利\r\n有时\r\n有所\r\n有效\r\n有些\r\n有着\r\n有著\r\n又\r\n又及\r\n于\r\n于是\r\n于是乎\r\n余外\r\n欤\r\n与\r\n与此同时\r\n与否\r\n与其\r\n与其说\r\n遇到\r\n元／吨\r\n原来\r\n愿意\r\n越是\r\n云尔\r\n云云\r\n允许\r\n运用\r\n咋\r\n哉\r\n再\r\n再次\r\n再其次\r\n再说\r\n再有\r\n再则\r\n再者\r\n再者说\r\n在\r\n在下\r\n在于\r\n咱\r\n咱们\r\n遭到\r\n造成\r\n则\r\n则甚\r\n贼死\r\n怎\r\n怎么\r\n怎么办\r\n怎么样\r\n怎麽\r\n怎奈\r\n怎样\r\n眨眼\r\n战斗\r\n长此下去\r\n长话短说\r\n长期以来\r\n掌握\r\n召开\r\n照\r\n照着\r\n者\r\n这\r\n这般\r\n这边\r\n这次\r\n这点\r\n这儿\r\n这个\r\n这会儿\r\n这就是说\r\n这里\r\n这么\r\n这么点儿\r\n这么些\r\n这么样\r\n这麽\r\n这时\r\n这些\r\n这样\r\n这一来\r\n这种\r\n着\r\n着呢\r\n针对\r\n真是\r\n真正\r\n争取\r\n整个\r\n正常\r\n正巧\r\n正如\r\n正是\r\n正在\r\n正值\r\n之\r\n之后\r\n之後\r\n之类\r\n之前\r\n之所以\r\n之一\r\n吱\r\n知道\r\n直到\r\n直接\r\n只\r\n只当\r\n只怕\r\n只是\r\n只限\r\n只消\r\n只要\r\n只有\r\n至\r\n至今\r\n至若\r\n至于\r\n致\r\n中间\r\n中小\r\n重大\r\n重新\r\n重要\r\n周围\r\n诸\r\n诸如\r\n诸位\r\n逐步\r\n逐渐\r\n主要\r\n主张\r\n注意\r\n专门\r\n转变\r\n转动\r\n转贴\r\n准备\r\n自\r\n自从\r\n自打\r\n自个儿\r\n自各儿\r\n自后\r\n自己\r\n自家\r\n自身\r\n综上所述\r\n总的来看\r\n总的来说\r\n总的说来\r\n总而言之\r\n总结\r\n总是\r\n总之\r\n纵\r\n纵令\r\n纵然\r\n纵使\r\n组成\r\n最\r\n最大\r\n最高\r\n最好\r\n最后\r\n最後\r\n最近\r\n遵循\r\n遵照\r\n左右\r\n作为\r\n做到\r\na\r\nＡ\r\na's\r\nａ］\r\nable\r\naboard\r\nabout\r\nabove\r\naccording\r\naccording to\r\naccordingly\r\nacross\r\nactually\r\nafore\r\nafter\r\nafterwards\r\nagain\r\nagainst\r\nagin\r\nain't\r\nall\r\nallow\r\nallows\r\nalmost\r\nalone\r\nalong\r\nalongside\r\nalready\r\nalso\r\nalthough\r\nalways\r\nam\r\namid\r\namidst\r\namong\r\namongst\r\namoungst\r\namount\r\nan\r\nand\r\nanent\r\nanother\r\nany\r\nanybody\r\nanyhow\r\nanyone\r\nanything\r\nanyway\r\nanyways\r\nanywhere\r\napart\r\nappear\r\nappreciate\r\nappropriate\r\napproximately\r\nare\r\naren't\r\naround\r\nas\r\naside\r\nask\r\nasked\r\nasking\r\naslant\r\nassociated\r\nastride\r\nat\r\nathwart\r\navailable\r\naway\r\nawfully\r\nｂ］\r\nback\r\nbar\r\nbe\r\nbecame\r\nbecause\r\nbecause of\r\nbecome\r\nbecomes\r\nbecoming\r\nbeen\r\nbefore\r\nbeforehand\r\nbehind\r\nbeing\r\nbelieve\r\nbelow\r\nbeneath\r\nbeside\r\nbesides\r\nbest\r\nbetter\r\nbetween\r\nbetwixt\r\nbeyond\r\nbill\r\nboth\r\nbottom\r\nbrief\r\nbut\r\nby\r\nc'mon\r\nc's\r\nｃ］\r\ncall\r\ncalled\r\ncame\r\ncan\r\ncan't\r\ncannot\r\ncant\r\ncause\r\ncauses\r\ncertain\r\ncertainly\r\nchanges\r\ncirca\r\nclearly\r\nco\r\ncom\r\ncome\r\ncomes\r\ncomputer\r\ncon\r\nconcerning\r\nconsequently\r\nconsider\r\nconsidering\r\ncontain\r\ncontaining\r\ncontains\r\ncorresponding\r\ncould\r\ncouldn't\r\ncouldnt\r\ncourse\r\ncry\r\ncurrently\r\ndare\r\nde\r\ndefinitely\r\ndescribe\r\ndescribed\r\ndespite\r\ndetail\r\ndid\r\ndidn't\r\ndifferent\r\ndo\r\ndoes\r\ndoesn't\r\ndoing\r\ndon't\r\ndone\r\ndown\r\ndownwards\r\ndr\r\ndue\r\ndue to\r\nduring\r\nｅ］\r\neach\r\nearlier\r\nedu\r\neg\r\neight\r\neither\r\neleven\r\nelse\r\nelsewhere\r\nempty\r\nenough\r\nentirely\r\nere\r\nespecially\r\net\r\netc\r\neven\r\neventually\r\never\r\nevery\r\neverybody\r\neveryone\r\neverything\r\neverywhere\r\nex\r\nexactly\r\nexample\r\nexcept\r\nｆ］\r\nfar\r\nfew\r\nfifteen\r\nfifth\r\nfify\r\nfill\r\nfind\r\nfire\r\nfirst\r\nfive\r\nfollowed\r\nfollowing\r\nfollows\r\nfor\r\nformer\r\nformerly\r\nforth\r\nforty\r\nfound\r\nfour\r\nfrom\r\nfront\r\nfull\r\nfurther\r\nfurthermore\r\nget\r\ngets\r\ngetting\r\ngive\r\ngiven\r\ngives\r\ngo\r\ngoes\r\ngoing\r\ngone\r\ngot\r\ngotten\r\ngreetings\r\nhad\r\nhadn't\r\nhappens\r\nhardly\r\nhas\r\nhasn't\r\nhasnt\r\nhave\r\nhaven't\r\nhaving\r\nhe\r\nhe's\r\nhello\r\nhelp\r\nhence\r\nher\r\nhere\r\nhere's\r\nhereafter\r\nhereby\r\nherein\r\nhereupon\r\nhers\r\nherself\r\nhi\r\nhim\r\nhimself\r\nhis\r\nhither\r\nhopefully\r\nhow\r\nhowbeit\r\nhowever\r\nhundred\r\ni\r\ni'd\r\ni'll\r\ni'm\r\ni've\r\nie\r\nif\r\nignored\r\nimmediate\r\nin\r\ninasmuch\r\ninc\r\nindeed\r\nindicate\r\nindicated\r\nindicates\r\ninner\r\ninside\r\ninsofar\r\ninstead\r\ninterest\r\ninto\r\ninward\r\nis\r\nisn't\r\nit\r\nit'd\r\nit'll\r\nit's\r\nits\r\nitself\r\njust\r\nkeep\r\nkeeps\r\nkept\r\nknow\r\nknown\r\nknows\r\nlast\r\nlately\r\nlater\r\nlatter\r\nlatterly\r\nleast\r\nless\r\nlest\r\nlet\r\nlet's\r\nlike\r\nliked\r\nlikely\r\nlittle\r\nlook\r\nlooking\r\nlooks\r\nltd\r\nmade\r\nmainly\r\nmajor\r\nmany\r\nmay\r\nmaybe\r\nme\r\nmean\r\nmeanwhile\r\nmerely\r\nmid\r\nmidst\r\nmight\r\nmill\r\nmine\r\nminus\r\nmore\r\nmoreover\r\nmost\r\nmostly\r\nmove\r\nmr\r\nmrs\r\nms\r\nmuch\r\nmust\r\nmy\r\nmyself\r\nna\r\nname\r\nnamely\r\nnd\r\nnear\r\nnearly\r\nnecessary\r\nneed\r\nneeds\r\nneither\r\nnet\r\nnever\r\nnevertheless\r\nnew\r\nnext\r\nｎｇ昉\r\nnigh\r\nnigher\r\nnighest\r\nnine\r\nno\r\nnobody\r\nnon\r\nnone\r\nnoone\r\nnor\r\nnormally\r\nnot\r\nnothing\r\nnotwithstanding\r\nnovel\r\nnow\r\nnowhere\r\nobviously\r\nof\r\noff\r\noften\r\noh\r\nok\r\nokay\r\nold\r\non\r\non to\r\nonce\r\none\r\nones\r\nonly\r\nonto\r\nor\r\nother\r\nothers\r\notherwise\r\nought\r\nour\r\nours\r\nourselves\r\nout\r\nout of\r\noutside\r\nover\r\noverall\r\nown\r\npart\r\nparticular\r\nparticularly\r\npartly\r\npast\r\npending\r\nper\r\nperhaps\r\nplaced\r\nplease\r\nplus\r\npossible\r\npresumably\r\nprior\r\nprobably\r\nprovides\r\nput\r\nqua\r\nque\r\nquite\r\nqv\r\nＲ．Ｌ．\r\nrather\r\nrd\r\nre\r\nreally\r\nreasonably\r\nregarding\r\nregardless\r\nregards\r\nrelatively\r\nrespectively\r\nright\r\nround\r\nsaid\r\nsame\r\nsans\r\nsave\r\nsaw\r\nsay\r\nsaying\r\nsays\r\nsecond\r\nsecondly\r\nsee\r\nseeing\r\nseem\r\nseemed\r\nseeming\r\nseems\r\nseen\r\nself\r\nselves\r\nsensible\r\nsent\r\nseparately\r\nserious\r\nseriously\r\nseven\r\nseveral\r\nshall\r\nshe\r\nshould\r\nshouldn't\r\nshow\r\nside\r\nsimilarly\r\nsince\r\nsincere\r\nsix\r\nsixty\r\nso\r\nsome\r\nsomebody\r\nsomehow\r\nsomeone\r\nsomething\r\nsometime\r\nsometimes\r\nsomewhat\r\nsomewhere\r\nsoon\r\nsorry\r\nspecified\r\nspecify\r\nspecifying\r\nstill\r\nsub\r\nsuch\r\nsup\r\nsure\r\nsystem\r\nt's\r\ntake\r\ntaken\r\ntell\r\nten\r\ntends\r\nth\r\nthan\r\nthank\r\nthanks\r\nthanx\r\nthat\r\nthat's\r\nthats\r\nthe\r\ntheir\r\ntheirs\r\nthem\r\nthemselves\r\nthen\r\nthence\r\nthere\r\nthere's\r\nthereafter\r\nthereby\r\ntherefore\r\ntherein\r\ntheres\r\nthereupon\r\nthese\r\nthey\r\nthey'd\r\nthey'll\r\nthey're\r\nthey've\r\nthick\r\nthin\r\nthink\r\nthird\r\nthis\r\nthorough\r\nthoroughly\r\nthose\r\nthough\r\nthree\r\nthrough\r\nthroughout\r\nthru\r\nthus\r\ntill\r\nto\r\ntogether\r\ntoo\r\ntook\r\ntop\r\ntoward\r\ntowards\r\ntried\r\ntries\r\ntruly\r\ntry\r\ntrying\r\ntwelve\r\ntwenty\r\ntwice\r\ntwo\r\nun\r\nunder\r\nunderneath\r\nunfortunately\r\nunless\r\nunlike\r\nunlikely\r\nuntil\r\nunto\r\nup\r\nupon\r\nus\r\nuse\r\nused\r\nuseful\r\nuses\r\nusing\r\nusually\r\nvalue\r\nvarious\r\nversus\r\nvery\r\nvia\r\nｖｉａ\r\nvice\r\nviz\r\nvolume\r\nvs\r\nwant\r\nwants\r\nwas\r\nwasn't\r\nway\r\nwe\r\nwe'd\r\nwe'll\r\nwe're\r\nwe've\r\nwelcome\r\nwell\r\nwent\r\nwere\r\nweren't\r\nwhat\r\nwhat's\r\nwhatever\r\nwhats\r\nwhen\r\nwhence\r\nwhenever\r\nwhere\r\nwhere's\r\nwhereafter\r\nwhereas\r\nwhereby\r\nwherein\r\nwhereupon\r\nwherever\r\nwhether\r\nwhich\r\nwhile\r\nwhither\r\nwho\r\nwho's\r\nwhoever\r\nwhole\r\nwhom\r\nwhose\r\nwhy\r\nwill\r\nwilling\r\nwish\r\nwith\r\nwithin\r\nwithout\r\nwon't\r\nwonder\r\nwould\r\nwouldn't\r\nyes\r\nyesterday\r\nyet\r\nyou\r\nyou'd\r\nyou'll\r\nyou're\r\nyou've\r\nyour\r\nyours\r\nyourself\r\nyourselves\r\nzero\r\nzt\r\nzz\r\nΨ\r\nВ\r\n一个\r\n两个\r\n一点\r\n却是\r\n2\r\n3\r\n.\r\n4\r\n5\r\n·"
  },
  {
    "path": "lianxi/中国票房数据.csv",
    "content": ",MovieID,Ӱ,Ʊ,Ʊ,˴,ӳ,Ʊ۾,ƽ,Ʊȱ仯,λȱ仯,Ӱ˴λȱ仯,仯,ڱָ,Ʊ,Ʊ,ܳ,˴,ҳַ,ǰʱ\r\n1,306285,սʹ,32340,75918,863,10,37,12,-26,76,-23,1,,2019/2/252019-03-03,95884,2375134,2665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/25,30:45.9\r\n2,678868,ѱ3,21805,22116,606,3,36,19,0,0,0,0,,2019/2/252019-03-03,95884,2375134,2665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/25,30:46.1\r\n3,642412,˵,17852,452299,503,27,36,10,-68,-37,-63,-2,,2019/2/252019-03-03,95884,2375134,2665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/25,30:46.1\r\n4,684562,Ƥ,11459,11570,344,3,33,20,0,0,0,0,,2019/2/252019-03-03,95884,2375134,2665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/25,30:46.1\r\n5,676018,ɳ,4724,169407,129,27,37,6,-71,-45,-71,-1,,2019/2/252019-03-03,95884,2375134,2665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/25,30:46.1\r\n6,638300,,3986,218886,110,27,36,6,-76,-51,-76,-3,,2019/2/252019-03-03,95884,2375134,2665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/25,30:46.2\r\n7,683172,ܳûԭʼʱ,975,70556,29,27,33,5,-82,-63,-81,-2,,2019/2/252019-03-03,95884,2375134,2665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/25,30:46.2\r\n8,684093,һǶ,603,17143,17,18,37,5,-83,-69,-82,-2,,2019/2/252019-03-03,95884,2375134,2665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/25,30:46.2\r\n9,675370,Ϧģ֮Լ֮,567,1663,19,10,31,4,-47,-5,-46,-1,,2019/2/252019-03-03,95884,2375134,2665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/25,30:46.2\r\n10,683395,ϲ֮,429,62002,12,27,36,3,-79,-59,-78,-3,,2019/2/252019-03-03,95884,2375134,2665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/25,30:46.3\r\n1,642412,˵,56565,434447,1352,20,42,16,-68,-17,-66,9999,,2019/2/182019-02-24,148659,2510379,3791,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/18,30:47.6\r\n2,306285,սʹ,43578,43578,1125,3,39,27,0,0,0,0,,2019/2/182019-02-24,148659,2510379,3791,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/18,30:47.6\r\n3,638300,,16898,214900,452,20,37,12,-68,-26,-66,-1,,2019/2/182019-02-24,148659,2510379,3791,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/18,30:47.7\r\n4,676018,ɳ,16531,164683,438,20,38,12,-62,-19,-60,-1,,2019/2/182019-02-24,148659,2510379,3791,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/18,30:47.7\r\n5,683172,ܳûԭʼʱ,5357,69581,154,20,35,10,-70,-34,-68,-1,,2019/2/182019-02-24,148659,2510379,3791,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/18,30:47.7\r\n6,684093,һǶ,3505,16540,94,11,37,10,-73,-39,-72,-1,,2019/2/182019-02-24,148659,2510379,3791,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/18,30:47.7\r\n7,683395,ϲ֮,2063,61573,55,20,38,6,-67,-36,-66,-1,,2019/2/182019-02-24,148659,2510379,3791,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/18,30:47.8\r\n8,675370,Ϧģ֮Լ֮,1071,1096,34,3,31,8,0,0,0,0,,2019/2/182019-02-24,148659,2510379,3791,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/18,30:47.8\r\n9,671904,̽,614,15109,17,20,37,5,-62,-28,-61,-2,,2019/2/182019-02-24,148659,2510379,3791,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/18,30:47.8\r\n10,672831,,538,11192,15,20,36,5,-54,-20,-50,-2,,2019/2/182019-02-24,148659,2510379,3791,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/18,30:47.8\r\n1,642412,˵,176756,377882,3992,13,44,39,-12,48,-5,9999,,2019/2/112019-02-17,318134,2708738,7605,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/11,30:49.4\r\n2,638300,,53111,198002,1343,13,40,26,-63,-14,-59,9999,,2019/2/112019-02-17,318134,2708738,7605,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/11,30:49.4\r\n3,676018,ɳ,43830,148152,1099,13,40,24,-58,-13,-54,9999,,2019/2/112019-02-17,318134,2708738,7605,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/11,30:49.4\r\n4,683172,ܳûԭʼʱ,18122,64224,489,13,37,21,-57,-2,-52,1,,2019/2/112019-02-17,318134,2708738,7605,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/11,30:49.4\r\n5,684093,һǶ,13034,13034,337,4,39,21,0,0,0,0,,2019/2/112019-02-17,318134,2708738,7605,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/11,30:49.4\r\n6,683395,ϲ֮,6342,59511,161,13,39,12,-88,-60,-87,-2,,2019/2/112019-02-17,318134,2708738,7605,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/11,30:49.5\r\n7,671904,̽,1626,14495,42,13,38,9,-87,-63,-86,-1,,2019/2/112019-02-17,318134,2708738,7605,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/11,30:49.5\r\n8,672831,,1160,10654,30,13,38,9,-88,-68,-86,9999,,2019/2/112019-02-17,318134,2708738,7605,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/11,30:49.5\r\n9,677272,ҹ糡,997,997,28,4,35,9,0,0,0,0,,2019/2/112019-02-17,318134,2708738,7605,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/11,30:49.6\r\n10,681380,С,969,12174,25,13,38,7,-91,-67,-90,-3,,2019/2/112019-02-17,318134,2708738,7605,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/11,30:49.6\r\n1,642412,˵,201068,201126,4224,6,48,62,0,0,0,0,,2019/2/42019-02-10,584400,2893298,13091,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/4,30:51.0\r\n2,638300,,144887,144890,3308,6,44,54,0,0,0,0,,2019/2/42019-02-10,584400,2893298,13091,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/4,30:51.1\r\n3,676018,ɳ,104312,104322,2397,6,44,47,0,0,0,0,,2019/2/42019-02-10,584400,2893298,13091,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/4,30:51.1\r\n4,683395,ϲ֮,53169,53169,1229,6,43,36,0,0,0,0,,2019/2/42019-02-10,584400,2893298,13091,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/4,30:51.1\r\n5,683172,ܳûԭʼʱ,42129,46103,1013,6,42,42,0,0,0,0,,2019/2/42019-02-10,584400,2893298,13091,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/4,30:51.1\r\n6,671904,̽,12868,12869,300,6,43,24,0,0,0,0,,2019/2/42019-02-10,584400,2893298,13091,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/4,30:51.2\r\n7,681380,С,11193,11205,262,6,43,25,0,0,0,0,,2019/2/42019-02-10,584400,2893298,13091,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/4,30:51.2\r\n8,672831,,9494,9494,215,6,44,20,0,0,0,0,,2019/2/42019-02-10,584400,2893298,13091,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/4,30:51.2\r\n9,682701,ߣԵ,1036,44335,29,31,36,8,-92,-92,-93,-8,,2019/2/42019-02-10,584400,2893298,13091,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/4,30:51.2\r\n10,589526,,856,2939,23,3328,37,244,1856,42,1376,14,,2019/2/42019-02-10,584400,2893298,13091,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/2/4,30:51.3\r\n1,682701,ߣԵ,13246,43297,389,24,34,9,-1,21,0,1,,2019/1/282019-02-03,51257,2325047,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/28,30:52.0\r\n2,657841,2ҰҼ,12668,28013,393,10,32,6,-17,72,-15,-1,,2019/1/282019-02-03,51257,2325047,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/28,30:52.1\r\n3,678494,Ʒ,8111,114153,239,31,34,7,-32,-17,-31,9999,,2019/1/282019-02-03,51257,2325047,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/28,30:52.1\r\n4,685233,,7483,22693,233,17,32,8,-20,3,-20,9999,,2019/1/282019-02-03,51257,2325047,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/28,30:52.1\r\n5,675107,,4182,37743,116,25,36,6,-35,-26,-35,9999,,2019/1/282019-02-03,51257,2325047,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/28,30:52.1\r\n6,676520,֮,697,2889,21,17,34,3,-9,-8,-14,4,,2019/1/282019-02-03,51257,2325047,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/28,30:52.1\r\n7,665526,,681,201173,20,59,34,7,7,4,9,6,,2019/1/282019-02-03,51257,2325047,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/28,30:52.2\r\n8,685259,Һ¾,643,3247,14,17,46,24,-51,-84,-54,9999,,2019/1/282019-02-03,51257,2325047,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/28,30:52.2\r\n9,684800,ʳ,459,5019,13,17,35,4,-73,-67,-73,-2,,2019/1/282019-02-03,51257,2325047,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/28,30:52.2\r\n10,685290,һĻؼ·,453,3602,15,17,31,5,-60,-61,-61,-1,,2019/1/282019-02-03,51257,2325047,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/28,30:52.3\r\n1,657841,2ҰҼ,15188,15218,460,3,33,12,0,0,0,0,,2019/1/212019-01-27,69000,2425884,2037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/21,30:53.5\r\n2,682701,ߣԵ,13356,29901,389,17,34,11,11,30,12,1,,2019/1/212019-01-27,69000,2425884,2037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/21,30:53.5\r\n3,678494,Ʒ,11895,105946,345,24,35,8,-41,-32,-39,-2,,2019/1/212019-01-27,69000,2425884,2037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/21,30:53.5\r\n4,685233,,9325,15124,290,10,32,10,63,169,65,9999,,2019/1/212019-01-27,69000,2425884,2037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/21,30:53.5\r\n5,675107,,6437,33513,179,18,36,7,-54,-41,-53,-3,,2019/1/212019-01-27,69000,2425884,2037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/21,30:53.6\r\n6,683172,ܳûԭʼʱ,2458,3969,73,-8,34,12,0,0,0,0,,2019/1/212019-01-27,69000,2425884,2037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/21,30:53.6\r\n7,684800,ʳ,1716,4553,49,10,35,5,-39,21,-37,-1,,2019/1/212019-01-27,69000,2425884,2037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/21,30:53.6\r\n8,685259,Һ¾,1323,2604,30,10,44,8,5,-48,-18,3,,2019/1/212019-01-27,69000,2425884,2037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/21,30:53.6\r\n9,685290,һĻؼ·,1143,3143,38,10,30,5,-43,-9,-41,-2,,2019/1/212019-01-27,69000,2425884,2037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/21,30:53.7\r\n10,676520,֮,762,2185,24,10,32,4,-34,48,-34,2,,2019/1/212019-01-27,69000,2425884,2037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/21,30:53.7\r\n1,678494,Ʒ,20329,94036,568,17,36,9,-38,-29,-38,9999,7.37,2019/1/142019-01-20,71435,2363268,2052,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/14,30:54.6\r\n2,675107,,13856,27070,383,11,36,9,11,77,11,9999,6.7,2019/1/142019-01-20,71435,2363268,2052,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/14,30:54.6\r\n3,682701,ߣԵ,12034,16528,346,10,35,12,172,95,168,1,7.75,2019/1/142019-01-20,71435,2363268,2052,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/14,30:54.6\r\n4,685233,,5709,5792,176,3,32,17,0,0,0,0,0,2019/1/142019-01-20,71435,2363268,2052,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/14,30:54.7\r\n5,684192,,2942,62982,86,24,34,5,-66,-54,-65,-2,6,2019/1/142019-01-20,71435,2363268,2052,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/14,30:54.7\r\n6,684800,ʳ,2832,2836,77,3,37,9,0,0,0,0,0,2019/1/142019-01-20,71435,2363268,2052,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/14,30:54.7\r\n7,685290,һĻؼ·,1994,2000,64,3,31,7,0,0,0,0,0,2019/1/142019-01-20,71435,2363268,2052,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/14,30:54.7\r\n8,665526,,1521,199849,44,45,35,7,-50,-47,-50,-3,7.97,2019/1/142019-01-20,71435,2363268,2052,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/14,30:54.8\r\n9,683172,ܳûԭʼʱ,1503,1506,45,-15,33,15,0,0,0,0,0,2019/1/142019-01-20,71435,2363268,2052,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/14,30:54.8\r\n10,684774,Ե,1360,1365,45,3,30,6,0,0,0,0,0,2019/1/142019-01-20,71435,2363268,2052,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/14,30:54.8\r\n1,678494,Ʒ,32960,73678,912,10,36,10,-19,73,-18,9999,7.47,2019/1/72019-01-13,71990,2298268,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/7,30:55.7\r\n2,675107,,12466,13197,345,4,36,15,0,0,0,0,0,2019/1/72019-01-13,71990,2298268,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/7,30:55.7\r\n3,684192,,8599,60036,248,17,35,7,-75,-38,-75,-1,6,2019/1/72019-01-13,71990,2298268,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/7,30:55.7\r\n4,682701,ߣԵ,4417,4482,129,3,34,9,0,0,0,0,0,2019/1/72019-01-13,71990,2298268,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/7,30:55.7\r\n5,665526,,3056,198326,88,38,35,7,-80,-52,-79,-1,7.97,2019/1/72019-01-13,71990,2298268,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/7,30:55.7\r\n6,670088,֮ҹ֮֮,2454,2473,77,3,32,7,0,0,0,0,0,2019/1/72019-01-13,71990,2298268,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/7,30:55.8\r\n7,675900,·,1169,1911,28,23,42,63,81,65,86,5,0,2019/1/72019-01-13,71990,2298268,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/7,30:55.8\r\n8,680396,֩ƽ,1013,42090,28,24,37,4,-89,-66,-90,-3,8.35,2019/1/72019-01-13,71990,2298268,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/7,30:55.8\r\n9,675569,³,702,703,23,3,30,6,0,0,0,0,0,2019/1/72019-01-13,71990,2298268,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/7,30:55.8\r\n10,679229,ϣӢ,487,1674,16,10,31,3,-58,-31,-58,1,7.66,2019/1/72019-01-13,71990,2298268,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2019/1/7,30:55.9\r\n1,678494,Ʒ,40672,40675,1110,3,37,22,0,0,0,0,0,2018/12/312019-01-06,145652,2341017,4031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/31,30:57.2\r\n2,684192,,34445,51424,982,10,35,18,103,159,103,9999,6.1,2018/12/312019-01-06,145652,2341017,4031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/31,30:57.2\r\n3,642519,ҹ,27810,28113,736,7,38,35,0,0,0,12,7.3,2018/12/312019-01-06,145652,2341017,4031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/31,30:57.2\r\n4,665526,,15392,195267,421,31,37,16,-18,-38,-18,-3,7.97,2018/12/312019-01-06,145652,2341017,4031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/31,30:57.2\r\n5,680396,֩ƽ,9593,41076,264,17,36,14,-29,-52,-29,-2,8.45,2018/12/312019-01-06,145652,2341017,4031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/31,30:57.3\r\n6,672799,ϳ,4777,14676,131,9,37,8,-52,-15,-50,-2,4.62,2018/12/312019-01-06,145652,2341017,4031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/31,30:57.3\r\n7,684208,ӡȱͽ,2605,5887,84,10,31,10,-21,-7,-21,1,6.45,2018/12/312019-01-06,145652,2341017,4031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/31,30:57.3\r\n8,654922,è,1633,17072,51,24,32,14,1,-48,-1,2,8.75,2018/12/312019-01-06,145652,2341017,4031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/31,30:57.3\r\n9,660756,Ҷ⴫־,1587,12823,45,17,35,10,-77,-79,-78,-4,6.4,2018/12/312019-01-06,145652,2341017,4031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/31,30:57.3\r\n10,666460,Ƭ֮;ᱦ,1323,4988,38,9,34,6,-64,-42,-63,-3,4.15,2018/12/312019-01-06,145652,2341017,4031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/31,30:57.4\r\n1,665526,,18794,179875,517,24,36,12,-38,-37,-39,9999,7.99,2018/12/242018-12-30,86962,2267767,2461,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/24,30:58.1\r\n2,684192,,16979,16979,485,3,35,23,0,0,0,0,0,2018/12/242018-12-30,86962,2267767,2461,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/24,30:58.1\r\n3,680396,֩ƽ,13424,31484,370,10,36,9,-25,66,-28,-1,8.45,2018/12/242018-12-30,86962,2267767,2461,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/24,30:58.2\r\n4,672799,ϳ,9899,9899,261,2,38,14,0,0,0,0,0,2018/12/242018-12-30,86962,2267767,2461,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/24,30:58.2\r\n5,660756,Ҷ⴫־,7016,11236,204,10,34,9,67,112,66,1,6.4,2018/12/242018-12-30,86962,2267767,2461,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/24,30:58.2\r\n6,682647,Ԥ,3725,12271,105,10,36,5,-56,-11,-56,-3,6.26,2018/12/242018-12-30,86962,2267767,2461,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/24,30:58.2\r\n7,666460,Ƭ֮;ᱦ,3664,3665,105,2,35,9,0,0,0,0,0,2018/12/242018-12-30,86962,2267767,2461,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/24,30:58.2\r\n8,684208,ӡȱͽ,3282,3282,107,3,31,12,0,0,0,0,0,2018/12/242018-12-30,86962,2267767,2461,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/24,30:58.3\r\n9,656597,ֹ,2606,7858,80,10,33,5,-50,9,-50,-5,5.55,2018/12/242018-12-30,86962,2267767,2461,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/24,30:58.3\r\n10,654922,è,1615,15440,51,17,32,7,-67,-69,-68,-5,8.75,2018/12/242018-12-30,86962,2267767,2461,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/24,30:58.3\r\n1,665526,,30338,161081,842,17,36,13,-54,-35,-53,9999,7.99,2018/12/172018-12-23,80399,2162094,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/17,30:59.8\r\n2,680396,֩ƽ,17948,18060,513,3,35,21,0,0,0,0,0,2018/12/172018-12-23,80399,2162094,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/17,30:59.8\r\n3,682647,Ԥ,8545,8545,238,3,36,11,0,0,0,0,0,2018/12/172018-12-23,80399,2162094,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/17,30:59.8\r\n4,656597,ֹ,5253,5253,161,3,33,10,0,0,0,0,0,2018/12/172018-12-23,80399,2162094,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/17,30:59.8\r\n5,654922,è,4844,13825,157,10,31,7,-46,22,-47,-3,8.75,2018/12/172018-12-23,80399,2162094,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/17,30:59.8\r\n6,660756,Ҷ⴫־,4209,4220,123,3,34,12,0,0,0,0,0,2018/12/172018-12-23,80399,2162094,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/17,30:59.9\r\n7,677239,ӡȺϻ,2443,6069,80,10,31,6,-32,8,-32,-3,7.53,2018/12/172018-12-23,80399,2162094,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/17,30:59.9\r\n8,682061,,955,2819,28,10,34,4,-48,-3,-49,-1,8.24,2018/12/172018-12-23,80399,2162094,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/17,30:59.9\r\n9,638435,йϻ2,861,861,27,6,31,3,0,0,0,0,0,2018/12/172018-12-23,80399,2162094,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/17,30:59.9\r\n10,678587,֮,797,79174,27,38,30,5,-79,-71,-76,-7,7.85,2018/12/172018-12-23,80399,2162094,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/17,30:59.9\r\n1,665526,,65528,130744,1805,10,36,18,0,98,1,9999,8.1,2018/12/102018-12-16,91450,2061982,2621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/10,31:01.2\r\n2,654922,è,8973,8981,296,3,30,16,0,0,0,0,0,2018/12/102018-12-16,91450,2061982,2621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/10,31:01.3\r\n3,678587,֮,3739,78377,110,31,34,6,-69,-58,-69,-1,7.85,2018/12/102018-12-16,91450,2061982,2621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/10,31:01.3\r\n4,677239,ӡȺϻ,3608,3626,118,3,31,10,0,0,0,0,0,2018/12/102018-12-16,91450,2061982,2621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/10,31:01.3\r\n5,619583,ʮ,2073,4092,63,10,33,6,7,7,6,1,8.4,2018/12/102018-12-16,91450,2061982,2621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/10,31:01.3\r\n6,682648,ëָ,1951,1951,58,3,34,9,0,0,0,0,0,2018/12/102018-12-16,91450,2061982,2621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/10,31:01.3\r\n7,682061,,1829,1864,56,3,33,8,0,0,0,0,0,2018/12/102018-12-16,91450,2061982,2621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/10,31:01.3\r\n8,662209,Һػ,827,186661,25,38,33,4,-81,-75,-80,-5,7.3,2018/12/102018-12-16,91450,2061982,2621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/10,31:01.4\r\n9,678471,޵ƻ2ֻ,406,27070,11,24,35,3,-86,-79,-86,-5,8.2,2018/12/102018-12-16,91450,2061982,2621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/10,31:01.4\r\n10,682016,ع3,307,17188,10,24,30,3,-86,-77,-85,-5,6.7,2018/12/102018-12-16,91450,2061982,2621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/10,31:01.4\r\n1,665526,,65215,65215,1779,3,37,34,0,0,0,0,0,2018/12/32018-12-09,93524,2172164,2626,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/3,31:03.0\r\n2,678587,֮,12197,74638,354,24,34,8,-56,-22,-56,-1,7.85,2018/12/32018-12-09,93524,2172164,2626,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/3,31:03.0\r\n3,662209,Һػ,4294,185834,125,31,34,4,-69,-37,-68,-1,7.39,2018/12/32018-12-09,93524,2172164,2626,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/3,31:03.0\r\n4,678471,޵ƻ2ֻ,2943,26664,84,17,35,5,-71,-49,-70,-1,8.21,2018/12/32018-12-09,93524,2172164,2626,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/3,31:03.1\r\n5,682016,ع3,2127,16881,69,17,31,4,-69,-46,-69,-1,6.7,2018/12/32018-12-09,93524,2172164,2626,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/3,31:03.1\r\n6,619583,ʮ,1942,2019,59,3,33,6,0,0,0,0,0,2018/12/32018-12-09,93524,2172164,2626,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/3,31:03.1\r\n7,678481,,804,804,27,3,30,3,0,0,0,0,0,2018/12/32018-12-09,93524,2172164,2626,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/3,31:03.1\r\n8,677543,ϰ102,714,2984,25,10,29,2,-68,-4,-68,-2,7.65,2018/12/32018-12-09,93524,2172164,2626,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/3,31:03.2\r\n9,671046,涯ֵ֮,682,39815,18,24,38,3,-77,-56,-77,-4,7.2,2018/12/32018-12-09,93524,2172164,2626,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/3,31:03.2\r\n10,657107,ժԵ,317,1116,9,10,35,2,-60,-32,-62,-2,6.55,2018/12/32018-12-09,93524,2172164,2626,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/12/3,31:03.2\r\n1,678587,֮,27802,62441,802,17,35,14,0,18,0,9999,7.87,2018/11/262018-12-02,68630,2289099,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/26,31:04.4\r\n2,662209,Һػ,13634,181540,394,24,35,9,-46,-31,-46,9999,7.39,2018/11/262018-12-02,68630,2289099,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/26,31:04.4\r\n3,678471,޵ƻ2ֻ,10153,23721,285,10,36,9,-25,46,-25,9999,8.23,2018/11/262018-12-02,68630,2289099,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/26,31:04.4\r\n4,682016,ع3,6801,14754,223,10,31,8,-14,61,-15,1,6.71,2018/11/262018-12-02,68630,2289099,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/26,31:04.4\r\n5,671046,涯ֵ֮,2935,39133,76,17,39,6,-71,-68,-72,-1,7.2,2018/11/262018-12-02,68630,2289099,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/26,31:04.5\r\n6,677543,ϰ102,2234,2270,77,3,29,6,0,0,0,0,0,2018/11/262018-12-02,68630,2289099,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/26,31:04.5\r\n7,655975,,1135,1136,38,3,29,4,0,0,0,0,0,2018/11/262018-12-02,68630,2289099,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/26,31:04.5\r\n8,657107,ժԵ,799,799,24,3,33,4,0,0,0,0,0,2018/11/262018-12-02,68630,2289099,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/26,31:04.5\r\n9,663152,й,504,1548,17,10,29,3,-52,-9,-51,-3,3.89,2018/11/262018-12-02,68630,2289099,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/26,31:04.5\r\n10,683620,,289,334,8,6,36,9,0,0,0,0,0,2018/11/262018-12-02,68630,2289099,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/26,31:04.6\r\n1,678587,֮,27901,34639,799,10,35,16,314,321,310,2,7.97,2018/11/192018-11-25,88926,2227289,2571,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/19,31:05.5\r\n2,662209,Һػ,25242,167906,725,17,35,11,-62,-35,-61,-1,7.4,2018/11/192018-11-25,88926,2227289,2571,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/19,31:05.6\r\n3,678471,޵ƻ2ֻ,13566,13568,382,3,36,17,0,0,0,0,0,2018/11/192018-11-25,88926,2227289,2571,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/19,31:05.6\r\n4,671046,涯ֵ֮,10111,36198,269,10,38,7,-61,8,-61,-2,7.29,2018/11/192018-11-25,88926,2227289,2571,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/19,31:05.6\r\n5,682016,ع3,7953,7953,262,3,30,15,0,0,0,0,0,2018/11/192018-11-25,88926,2227289,2571,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/19,31:05.6\r\n6,663152,й,1044,1045,35,3,29,5,0,0,0,0,0,2018/11/192018-11-25,88926,2227289,2571,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/19,31:05.6\r\n7,677066,̽ϣִ,559,12583,18,17,31,3,-86,-77,-86,-3,6.32,2018/11/192018-11-25,88926,2227289,2571,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/19,31:05.7\r\n8,677693,ã֮,479,7907,13,17,37,3,-86,-77,-86,-3,7.1,2018/11/192018-11-25,88926,2227289,2571,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/19,31:05.7\r\n9,681602,,326,2506,11,16,30,6,-73,-55,-72,-3,0,2018/11/192018-11-25,88926,2227289,2571,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/19,31:05.7\r\n10,631011,¡,290,290,10,3,30,4,0,0,0,0,0,2018/11/192018-11-25,88926,2227289,2571,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/19,31:05.7\r\n1,662209,Һػ,65802,142664,1872,10,35,18,-14,86,-11,9999,7.4,2018/11/122018-11-18,110030,2210737,3115,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/12,31:07.0\r\n2,671046,涯ֵ֮,26087,26087,695,3,38,20,0,0,0,0,0,2018/11/122018-11-18,110030,2210737,3115,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/12,31:07.1\r\n3,678587,֮,6738,6738,195,3,35,16,0,0,0,0,0,2018/11/122018-11-18,110030,2210737,3115,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/12,31:07.1\r\n4,677066,̽ϣִ,3928,12025,128,10,31,5,-51,28,-52,-2,6.33,2018/11/122018-11-18,110030,2210737,3115,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/12,31:07.1\r\n5,677693,ã֮,3385,7428,94,10,36,5,-16,47,-16,-1,7.72,2018/11/122018-11-18,110030,2210737,3115,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/12,31:07.1\r\n6,681602,,1194,2181,39,9,31,9,21,64,22,2,0,2018/11/122018-11-18,110030,2210737,3115,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/12,31:07.1\r\n7,675591,쫷,438,9476,15,17,30,3,-89,-81,-89,-4,6.07,2018/11/122018-11-18,110030,2210737,3115,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/12,31:07.2\r\n8,681172,ҼӺĸ,285,11213,8,17,34,3,-89,-89,-89,-3,6.36,2018/11/122018-11-18,110030,2210737,3115,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/12,31:07.2\r\n9,682896,è,252,5266,8,17,32,4,-88,-85,-88,-3,7.65,2018/11/122018-11-18,110030,2210737,3115,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/12,31:07.2\r\n10,682895,ѩִð,226,7508,7,31,32,9,-46,-71,-44,2,7.6,2018/11/122018-11-18,110030,2210737,3115,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/12,31:07.2\r\n1,662209,Һػ,76679,76862,2112,3,36,38,0,0,0,0,0,2018/11/52018-11-11,105810,2298546,3020,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/5,31:09.7\r\n2,677066,̽ϣִ,8088,8097,266,3,30,14,0,0,0,0,0,2018/11/52018-11-11,105810,2298546,3020,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/5,31:09.7\r\n3,675591,쫷,4147,9038,135,10,31,5,-15,91,-16,1,6.16,2018/11/52018-11-11,105810,2298546,3020,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/5,31:09.7\r\n4,677693,ã֮,4036,4043,112,3,36,9,0,0,0,0,0,2018/11/52018-11-11,105810,2298546,3020,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/5,31:09.8\r\n5,681172,ҼӺĸ,2673,10928,77,10,35,3,-68,13,-68,-4,6.7,2018/11/52018-11-11,105810,2298546,3020,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/5,31:09.8\r\n6,682896,è,2114,5014,66,10,32,5,-27,64,-26,-1,7.65,2018/11/52018-11-11,105810,2298546,3020,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/5,31:09.8\r\n7,678141,˫,1590,127167,49,43,32,5,-70,-53,-69,-4,7.84,2018/11/52018-11-11,105810,2298546,3020,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/5,31:09.8\r\n8,681602,,986,986,32,2,31,12,0,0,0,0,0,2018/11/52018-11-11,105810,2298546,3020,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/5,31:09.9\r\n9,657847,Ѫսʿ,983,21647,27,17,36,2,-86,-73,-86,-7,5.88,2018/11/52018-11-11,105810,2298546,3020,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/5,31:09.9\r\n10,616870,:ʱ,702,3421,22,10,32,2,-74,-16,-74,-3,3.9,2018/11/52018-11-11,105810,2298546,3020,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/11/5,31:09.9\r\n1,681172,ҼӺĸ,8255,8255,239,3,35,10,0,0,0,0,0,2018/10/292018-11-04,44999,2299903,1373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/29,31:12.3\r\n2,657847,Ѫսʿ,7052,20664,201,10,35,4,-48,32,-48,-1,5.79,2018/10/292018-11-04,44999,2299903,1373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/29,31:12.3\r\n3,678141,˫,5257,125577,160,36,33,7,-45,-42,-45,-1,7.84,2018/10/292018-11-04,44999,2299903,1373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/29,31:12.3\r\n4,675591,쫷,4890,4890,161,3,30,12,0,0,0,0,0,2018/10/292018-11-04,44999,2299903,1373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/29,31:12.3\r\n5,682896,è,2888,2900,88,3,33,10,0,0,0,0,0,2018/10/292018-11-04,44999,2299903,1373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/29,31:12.4\r\n6,631038,,2827,8023,89,10,32,4,-43,31,-42,-3,6.1,2018/10/292018-11-04,44999,2299903,1373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/29,31:12.4\r\n7,616870,:ʱ,2719,2719,85,3,32,6,0,0,0,0,0,2018/10/292018-11-04,44999,2299903,1373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/29,31:12.4\r\n8,677241,ʦ,2380,14123,78,24,31,7,-37,-31,-38,-3,7.85,2018/10/292018-11-04,44999,2299903,1373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/29,31:12.4\r\n9,675304,ҵ,1741,28102,55,31,32,6,-56,-51,-56,-5,7.49,2018/10/292018-11-04,44999,2299903,1373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/29,31:12.5\r\n10,682341,δ,1655,1655,51,4,32,4,0,0,0,0,0,2018/10/292018-11-04,44999,2299903,1373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/29,31:12.5\r\n1,657847,Ѫսʿ,13604,13611,387,3,35,11,0,0,0,0,0,2018/10/222018-10-28,48065,2214024,1454,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/22,31:14.0\r\n2,678141,˫,9546,120320,290,29,33,8,-42,-24,-41,-1,7.84,2018/10/222018-10-28,48065,2214024,1454,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/22,31:14.0\r\n3,631038,,4919,5196,154,3,32,9,0,0,0,0,0,2018/10/222018-10-28,48065,2214024,1454,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/22,31:14.0\r\n4,675304,ҵ,3932,26362,124,24,32,6,-44,-29,-44,-2,7.49,2018/10/222018-10-28,48065,2214024,1454,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/22,31:14.1\r\n5,677241,ʦ,3801,11743,125,17,30,8,-24,-19,-24,-2,7.85,2018/10/222018-10-28,48065,2214024,1454,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/22,31:14.1\r\n6,682895,ѩִð,2770,5485,84,10,33,8,2,51,2,9999,7.6,2018/10/222018-10-28,48065,2214024,1454,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/22,31:14.1\r\n7,680979,ҵļǰ,1950,5991,62,10,31,3,-51,17,-52,-2,6.31,2018/10/222018-10-28,48065,2214024,1454,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/22,31:14.2\r\n8,589352,Ӱ,1762,62398,49,29,36,4,-64,-52,-64,-4,7.4,2018/10/222018-10-28,48065,2214024,1454,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/22,31:14.2\r\n9,666952,,1266,1266,39,3,33,4,0,0,0,0,0,2018/10/222018-10-28,48065,2214024,1454,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/22,31:14.2\r\n10,673542,Ϊдʫ,987,987,30,3,33,5,0,0,0,0,0,2018/10/222018-10-28,48065,2214024,1454,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/22,31:14.2\r\n1,678141,˫,16508,110774,492,22,34,10,-36,-12,-31,9999,7.84,2018/10/152018-10-21,49405,2171566,1503,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/15,31:15.6\r\n2,675304,ҵ,7077,22430,223,17,32,8,-24,10,-24,1,7.49,2018/10/152018-10-21,49405,2171566,1503,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/15,31:15.6\r\n3,677241,ʦ,4990,7941,165,10,30,9,70,92,70,3,7.86,2018/10/152018-10-21,49405,2171566,1503,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/15,31:15.6\r\n4,589352,Ӱ,4889,60636,136,22,36,6,-53,-35,-53,-2,7.49,2018/10/152018-10-21,49405,2171566,1503,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/15,31:15.7\r\n5,680979,ҵļǰ,4009,4041,130,3,31,8,0,0,0,0,0,2018/10/152018-10-21,49405,2171566,1503,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/15,31:15.7\r\n6,682895,ѩִð,2714,2715,82,3,33,11,0,0,0,0,0,2018/10/152018-10-21,49405,2171566,1503,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/15,31:15.7\r\n7,629824,,2156,2157,62,3,35,4,0,0,0,0,0,2018/10/152018-10-21,49405,2171566,1503,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/15,31:15.7\r\n8,672319,Ĺ,2057,59642,60,22,34,4,-65,-53,-65,-4,6.05,2018/10/152018-10-21,49405,2171566,1503,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/15,31:15.8\r\n9,669661,ж,1629,25469,48,22,34,5,-58,-47,-58,-4,5.51,2018/10/152018-10-21,49405,2171566,1503,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/15,31:15.8\r\n10,672933,ɺ,1138,34937,34,31,33,5,-54,-35,-54,-3,6.05,2018/10/152018-10-21,49405,2171566,1503,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/15,31:15.8\r\n1,678141,˫,25796,94266,712,15,36,12,-59,1,-59,9999,7.93,2018/10/82018-10-14,65296,2194636,1893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/8,31:17.2\r\n2,589352,Ӱ,10349,55747,289,15,36,8,-73,-26,-73,1,7.67,2018/10/82018-10-14,65296,2194636,1893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/8,31:17.2\r\n3,675304,ҵ,9364,15352,293,10,32,11,72,142,72,5,7.57,2018/10/82018-10-14,65296,2194636,1893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/8,31:17.2\r\n4,672319,Ĺ,5874,57585,170,15,35,6,-86,-48,-86,-2,6.05,2018/10/82018-10-14,65296,2194636,1893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/8,31:17.2\r\n5,669661,ж,3904,23840,114,15,34,6,-77,-33,-76,-1,5.51,2018/10/82018-10-14,65296,2194636,1893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/8,31:17.3\r\n6,677241,ʦ,2927,2951,97,3,30,10,0,0,0,0,0,2018/10/82018-10-14,65296,2194636,1893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/8,31:17.3\r\n7,672933,ɺ,2496,33798,74,24,34,7,-73,-18,-73,-2,6.06,2018/10/82018-10-14,65296,2194636,1893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/8,31:17.3\r\n8,682120,̩̹,1207,1207,40,3,30,3,0,0,0,0,0,2018/10/82018-10-14,65296,2194636,1893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/8,31:17.3\r\n9,679295,֮Ե,679,7309,20,14,34,5,-90,-65,-89,-3,6.08,2018/10/82018-10-14,65296,2194636,1893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/8,31:17.4\r\n10,629432,۷ռ,589,589,19,3,31,6,0,0,0,0,0,2018/10/82018-10-14,65296,2194636,1893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/8,31:17.4\r\n1,678141,˫,62988,68470,1721,8,37,30,1049,779,1042,5,7.57,2018/10/12018-10-07,190832,2467848,5408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/1,31:18.7\r\n2,672319,Ĺ,40958,51711,1176,8,35,21,281,347,276,1,6.06,2018/10/12018-10-07,190832,2467848,5408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/1,31:18.7\r\n3,589352,Ӱ,38734,45398,1078,8,36,22,481,519,467,2,7.77,2018/10/12018-10-07,190832,2467848,5408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/1,31:18.7\r\n4,669661,ж,16666,19936,484,8,34,18,410,308,415,4,5.69,2018/10/12018-10-07,190832,2467848,5408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/1,31:18.7\r\n5,672933,ɺ,9230,31303,275,17,34,20,-35,-68,-35,-3,5.96,2018/10/12018-10-07,190832,2467848,5408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/1,31:18.8\r\n6,679295,֮Ե,6614,6631,190,7,35,16,0,0,0,40,0,2018/10/12018-10-07,190832,2467848,5408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/1,31:18.8\r\n7,682164,»ҹ,5498,5501,174,7,32,17,0,0,0,76,0,2018/10/12018-10-07,190832,2467848,5408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/1,31:18.8\r\n8,675304,ҵ,5453,5988,171,3,32,16,0,0,0,0,0,2018/10/12018-10-07,190832,2467848,5408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/1,31:18.8\r\n9,653406,Ž̷֮,1328,1332,38,7,35,7,0,0,0,64,0,2018/10/12018-10-07,190832,2467848,5408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/1,31:18.9\r\n10,680427,ƽֵ,1076,31476,31,17,35,15,-93,-96,-93,-9,5.98,2018/10/12018-10-07,190832,2467848,5408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/10/1,31:18.9\r\n1,680427,ƽֵ,14594,30399,426,10,34,8,-8,68,-7,1,5.98,2018/9/242018-09-30,74995,2204799,2166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/24,31:20.4\r\n2,672933,ɺ,14238,22073,423,10,34,10,82,165,81,2,5.99,2018/9/242018-09-30,74995,2204799,2166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/24,31:20.5\r\n3,672319,Ĺ,10753,10753,313,1,34,25,0,0,0,0,0,2018/9/242018-09-30,74995,2204799,2166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/24,31:20.5\r\n4,668657,̰籩3,6811,43931,189,17,36,7,-59,-54,-59,-3,6.15,2018/9/242018-09-30,74995,2204799,2166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/24,31:20.5\r\n5,589352,Ӱ,6663,6665,190,1,35,24,0,0,0,0,0,2018/9/242018-09-30,74995,2204799,2166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/24,31:20.5\r\n6,678141,˫,5482,5482,151,1,36,23,0,0,0,0,0,2018/9/242018-09-30,74995,2204799,2166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/24,31:20.6\r\n7,657756,е6ȫ߽,4919,124521,133,31,37,7,-44,-39,-44,-4,8.03,2018/9/242018-09-30,74995,2204799,2166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/24,31:20.6\r\n8,669661,ж,3270,3270,94,1,35,14,0,0,0,0,0,2018/9/242018-09-30,74995,2204799,2166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/24,31:20.6\r\n9,672829,Ů,2590,6718,77,10,34,4,-37,22,-37,-4,7.89,2018/9/242018-09-30,74995,2204799,2166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/24,31:20.6\r\n10,675234,,1378,3604,41,9,34,6,-24,46,-25,-4,0,2018/9/242018-09-30,74995,2204799,2166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/24,31:20.7\r\n1,668657,̰籩3,16621,37120,460,10,36,8,-19,52,-20,9999,6.15,2018/9/172018-09-23,63248,2165141,1815,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/17,31:22.2\r\n2,680427,ƽֵ,15805,15805,457,3,35,15,0,0,0,0,0,2018/9/172018-09-23,63248,2165141,1815,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/17,31:22.2\r\n3,657756,е6ȫ߽,8760,119602,235,24,37,8,-48,-47,-50,-1,8.03,2018/9/172018-09-23,63248,2165141,1815,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/17,31:22.2\r\n4,672933,ɺ,7835,7835,234,3,34,14,0,0,0,0,0,2018/9/172018-09-23,63248,2165141,1815,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/17,31:22.2\r\n5,672829,Ů,4113,4129,122,3,34,8,0,0,0,0,0,2018/9/172018-09-23,63248,2165141,1815,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/17,31:22.2\r\n6,675234,,1815,2226,54,2,34,11,0,0,0,0,0,2018/9/172018-09-23,63248,2165141,1815,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/17,31:22.3\r\n7,671969,,1754,4281,55,10,32,4,-31,17,-32,-3,6.9,2018/9/172018-09-23,63248,2165141,1815,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/17,31:22.3\r\n8,323025,׷,1340,1341,43,3,31,5,0,0,0,0,0,2018/9/172018-09-23,63248,2165141,1815,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/17,31:22.3\r\n9,681012,ǰ;,717,11262,21,17,34,3,-80,-73,-80,-6,6.76,2018/9/172018-09-23,63248,2165141,1815,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/17,31:22.3\r\n10,676247,2ƷŮ,700,83155,20,31,36,4,-70,-65,-70,-5,7.41,2018/9/172018-09-23,63248,2165141,1815,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/17,31:22.4\r\n1,668657,̰籩3,20469,20500,574,3,36,15,0,0,0,0,0,2018/9/102018-09-16,53633,2066641,1537,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/10,31:23.3\r\n2,657756,е6ȫ߽,16989,110842,468,17,36,8,-58,-29,-58,-1,8.04,2018/9/102018-09-16,53633,2066641,1537,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/10,31:23.3\r\n3,681012,ǰ;,3505,10545,102,10,34,4,-50,26,-51,-1,6.76,2018/9/102018-09-16,53633,2066641,1537,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/10,31:23.3\r\n4,671969,,2525,2526,81,3,31,8,0,0,0,0,0,2018/9/102018-09-16,53633,2066641,1537,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/10,31:23.3\r\n5,676247,2ƷŮ,2294,82455,65,24,35,5,-62,-42,-62,-2,7.41,2018/9/102018-09-16,53633,2066641,1537,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/10,31:23.4\r\n6,636161,ĵ,931,2675,31,10,31,4,-46,-2,-46,-1,7.6,2018/9/102018-09-16,53633,2066641,1537,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/10,31:23.4\r\n7,654239,Ҹ,917,37265,29,31,32,4,-62,-41,-62,-3,7.52,2018/9/102018-09-16,53633,2066641,1537,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/10,31:23.4\r\n8,642601,˵߾֮˵ټ,703,710,24,3,30,6,0,0,0,0,0,2018/9/102018-09-16,53633,2066641,1537,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/10,31:23.4\r\n9,671983,׸,602,254146,18,52,33,5,-38,-15,-38,1,6.7,2018/9/102018-09-16,53633,2066641,1537,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/10,31:23.5\r\n10,677028,һϷ,564,135280,17,38,34,5,-60,-45,-59,-4,7.56,2018/9/102018-09-16,53633,2066641,1537,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/10,31:23.5\r\n1,657756,е6ȫ߽,40752,93853,1116,10,37,14,-23,82,-22,9999,8.04,2018/9/32018-09-09,68684,2009610,1947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/3,31:25.8\r\n2,681012,ǰ;,7023,7040,207,3,34,11,0,0,0,0,0,2018/9/32018-09-09,68684,2009610,1947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/3,31:25.9\r\n3,676247,2ƷŮ,6042,80161,173,17,35,7,-78,-61,-78,-1,7.67,2018/9/32018-09-09,68684,2009610,1947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/3,31:25.9\r\n4,654239,Ҹ,2429,36348,75,24,32,7,-67,-37,-67,-1,7.52,2018/9/32018-09-09,68684,2009610,1947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/3,31:25.9\r\n5,636161,ĵ,1734,1744,57,3,31,7,0,0,0,0,0,2018/9/32018-09-09,68684,2009610,1947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/3,31:25.9\r\n6,677028,һϷ,1414,134716,41,31,34,6,-71,-51,-71,9999,7.56,2018/9/32018-09-09,68684,2009610,1947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/3,31:25.9\r\n7,646917,յ,1320,3383,44,10,30,5,-36,-2,-35,3,7.03,2018/9/32018-09-09,68684,2009610,1947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/3,31:26.0\r\n8,644333,޳,1020,104636,28,31,36,5,-80,-59,-81,-3,6.86,2018/9/32018-09-09,68684,2009610,1947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/3,31:26.0\r\n9,641617,һ,973,977,30,4,32,4,0,0,0,0,0,2018/9/32018-09-09,68684,2009610,1947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/3,31:26.0\r\n10,671983,׸,972,253544,29,45,34,7,-55,-22,-55,-2,6.7,2018/9/32018-09-09,68684,2009610,1947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/9/3,31:26.0\r\n1,657756,е6ȫ߽,53100,53102,1430,3,37,33,0,0,0,0,0,2018/8/272018-09-02,117680,2144482,3314,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/27,31:27.5\r\n2,676247,2ƷŮ,27618,74119,781,10,35,12,-41,42,-38,-1,7.59,2018/8/272018-09-02,117680,2144482,3314,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/27,31:27.6\r\n3,654239,Ҹ,7394,33919,231,17,32,13,-47,-37,-47,1,7.52,2018/8/272018-09-02,117680,2144482,3314,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/27,31:27.6\r\n4,674426,ʦ,5276,14235,162,10,33,9,-41,5,-40,1,5.66,2018/8/272018-09-02,117680,2144482,3314,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/27,31:27.6\r\n5,644333,޳,5210,103616,144,24,36,10,-71,-56,-70,-3,6.86,2018/8/272018-09-02,117680,2144482,3314,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/27,31:27.6\r\n6,677028,һϷ,4845,133302,141,24,34,10,-71,-62,-71,-3,7.56,2018/8/272018-09-02,117680,2144482,3314,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/27,31:27.7\r\n7,679654,3,2875,20776,87,17,33,11,-54,-56,-54,-1,7.16,2018/8/272018-09-02,117680,2144482,3314,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/27,31:27.7\r\n8,671983,׸,2180,252572,64,38,34,12,-54,-50,-53,-1,6.7,2018/8/272018-09-02,117680,2144482,3314,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/27,31:27.7\r\n9,674343,֣һе,2136,4030,65,10,33,21,13,123,14,9999,0,2018/8/272018-09-02,117680,2144482,3314,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/27,31:27.7\r\n10,646917,յ,2051,2063,68,3,30,8,0,0,0,0,0,2018/8/272018-09-02,117680,2144482,3314,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/27,31:27.7\r\n1,676247,2ƷŮ,46499,46501,1268,3,37,28,0,0,0,0,0,2018/8/202018-08-26,127364,2272525,3619,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/20,31:29.2\r\n2,644333,޳,17689,98406,471,17,38,15,-61,-30,-61,9999,6.88,2018/8/202018-08-26,127364,2272525,3619,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/20,31:29.3\r\n3,677028,һϷ,16587,128457,480,17,35,13,-72,-43,-71,-2,7.56,2018/8/202018-08-26,127364,2272525,3619,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/20,31:29.3\r\n4,654239,Ҹ,13924,26525,433,10,32,16,11,101,14,9999,7.53,2018/8/202018-08-26,127364,2272525,3619,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/20,31:29.3\r\n5,674426,ʦ,8959,8959,270,3,33,16,0,0,0,0,0,2018/8/202018-08-26,127364,2272525,3619,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/20,31:29.3\r\n6,679654,3,6273,17901,187,10,34,10,-46,15,-45,-1,7.17,2018/8/202018-08-26,127364,2272525,3619,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/20,31:29.3\r\n7,671983,׸,4778,250392,138,31,35,13,-59,-40,-59,-1,6.7,2018/8/202018-08-26,127364,2272525,3619,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/20,31:29.4\r\n8,637873,Ժ֮Цֽ,2572,12817,83,10,31,7,-75,-15,-74,-1,4.48,2018/8/202018-08-26,127364,2272525,3619,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/20,31:29.4\r\n9,674343,֣һе,1887,1895,57,3,33,42,0,0,0,0,0,2018/8/202018-08-26,127364,2272525,3619,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/20,31:29.4\r\n10,672442,ԡѪ,1706,6325,38,26,45,79,5,-5,3,-1,0,2018/8/202018-08-26,127364,2272525,3619,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/20,31:29.4\r\n1,677028,һϷ,58367,111871,1677,10,35,27,9,117,9,9999,7.57,2018/8/132018-08-19,176978,2257253,5013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/13,31:30.7\r\n2,644333,޳,45900,80717,1193,10,38,26,32,117,33,1,6.45,2018/8/132018-08-19,176978,2257253,5013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/13,31:30.8\r\n3,637824,ŷ޹,13630,13631,395,3,34,20,0,0,0,0,0,2018/8/132018-08-19,176978,2257253,5013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/13,31:30.8\r\n4,654239,Ҹ,12560,12601,381,3,33,27,0,0,0,0,0,2018/8/132018-08-19,176978,2257253,5013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/13,31:30.8\r\n5,679654,3,11624,11628,341,3,34,21,0,0,0,0,0,2018/8/132018-08-19,176978,2257253,5013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/13,31:30.8\r\n6,671983,׸,11568,245614,332,24,35,19,-63,-70,-63,-2,6.7,2018/8/132018-08-19,176978,2257253,5013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/13,31:30.9\r\n7,637873,Ժ֮Цֽ,10245,10246,323,3,32,24,0,0,0,0,0,2018/8/132018-08-19,176978,2257253,5013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/13,31:30.9\r\n8,612645,鹫Ԣ,6084,55199,174,10,35,9,-88,-42,-87,-6,2.89,2018/8/132018-08-19,176978,2257253,5013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/13,31:30.9\r\n9,672442,ԡѪ,1623,4619,37,19,44,72,4,-13,2,1,0,2018/8/132018-08-19,176978,2257253,5013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/13,31:30.9\r\n10,673286,ռ4,1247,9669,40,17,31,9,-65,-64,-65,-3,6.1,2018/8/132018-08-19,176978,2257253,5013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/13,31:31.0\r\n1,677028,һϷ,53494,53504,1540,3,35,53,0,0,0,0,0,2018/8/62018-08-12,194867,2239981,5469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/6,31:32.3\r\n2,612645,鹫Ԣ,49115,49115,1387,3,35,40,0,0,0,0,0,2018/8/62018-08-12,194867,2239981,5469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/6,31:32.4\r\n3,644333,޳,34818,34818,895,3,39,42,0,0,0,0,0,2018/8/62018-08-12,194867,2239981,5469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/6,31:32.4\r\n4,671983,׸,31664,234046,906,17,35,15,-72,-44,-72,-3,6.7,2018/8/62018-08-12,194867,2239981,5469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/6,31:32.4\r\n5,660451,ʽ֮Ĵ,6659,59301,172,17,39,10,-71,-56,-71,-3,7.02,2018/8/62018-08-12,194867,2239981,5469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/6,31:32.4\r\n6,678454,С͵,3639,8528,110,10,33,10,-26,26,-25,-1,8.71,2018/8/62018-08-12,194867,2239981,5469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/6,31:32.4\r\n7,673286,ռ4,3555,8422,114,10,31,10,-19,52,-18,-1,0,2018/8/62018-08-12,194867,2239981,5469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/6,31:32.4\r\n8,677201,,3539,10800,102,10,35,7,-43,16,-42,-5,7.36,2018/8/62018-08-12,194867,2239981,5469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/6,31:32.5\r\n9,662063,ĦӪ,2249,66785,65,24,34,11,-62,-52,-62,-5,6.93,2018/8/62018-08-12,194867,2239981,5469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/6,31:32.5\r\n10,672442,ԡѪ,1566,2995,36,12,43,62,33,-22,45,-1,0,2018/8/62018-08-12,194867,2239981,5469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/8/6,31:32.5\r\n1,671983,׸,111996,202382,3195,10,35,30,24,127,25,9999,6.8,2018/7/302018-08-05,168384,2221571,4765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/30,31:33.0\r\n2,660451,ʽ֮Ĵ,22919,52642,588,10,39,15,-23,27,-22,9999,7.03,2018/7/302018-08-05,168384,2221571,4765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/30,31:33.0\r\n3,677201,,6211,7261,176,3,35,15,0,0,0,0,0,2018/7/302018-08-05,168384,2221571,4765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/30,31:33.1\r\n4,662063,ĦӪ,5932,64535,171,17,35,14,-77,-77,-77,-1,6.95,2018/7/302018-08-05,168384,2221571,4765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/30,31:33.1\r\n5,678454,С͵,4887,4889,147,3,33,17,0,0,0,0,0,2018/7/302018-08-05,168384,2221571,4765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/30,31:33.1\r\n6,673286,ռ4,4362,4867,139,3,31,18,0,0,0,0,0,2018/7/302018-08-05,168384,2221571,4765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/30,31:33.1\r\n7,676313,Ҳҩ,3989,308159,117,32,34,11,-71,-73,-72,-3,8.81,2018/7/302018-08-05,168384,2221571,4765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/30,31:33.1\r\n8,676843,ʿٵ5,2312,2312,76,3,31,10,0,0,0,0,0,2018/7/302018-08-05,168384,2221571,4765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/30,31:33.2\r\n9,672442,ԡѪ,1177,1430,25,5,47,33,0,0,0,0,0,2018/7/302018-08-05,168384,2221571,4765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/30,31:33.2\r\n10,677231,Ϸ,1016,5703,26,16,39,9,-52,-72,-58,-4,6.54,2018/7/302018-08-05,168384,2221571,4765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/30,31:33.2\r\n1,671983,׸,90386,90386,2565,3,35,54,0,0,0,0,0,2018/7/232018-07-29,172100,2216609,4828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/23,31:34.0\r\n2,660451,ʽ֮Ĵ,29722,29724,758,3,39,25,0,0,0,0,0,2018/7/232018-07-29,172100,2216609,4828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/23,31:34.0\r\n3,662063,ĦӪ,25681,58604,734,10,35,14,-22,48,-21,-1,6.95,2018/7/232018-07-29,172100,2216609,4828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/23,31:34.0\r\n4,676313,Ҳҩ,13988,304170,412,25,34,10,-68,-50,-68,-3,8.81,2018/7/232018-07-29,172100,2216609,4828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/23,31:34.0\r\n5,638109,аѹ,4544,57854,128,17,36,7,-79,-63,-79,-2,7.27,2018/7/232018-07-29,172100,2216609,4828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/23,31:34.0\r\n6,677231,Ϸ,2111,4687,62,9,34,6,-16,63,-18,-2,6.52,2018/7/232018-07-29,172100,2216609,4828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/23,31:34.1\r\n7,672751,´ͷӺСͷְ3˹,1216,15137,35,24,34,8,-42,-50,-43,-1,4.85,2018/7/232018-07-29,172100,2216609,4828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/23,31:34.1\r\n8,667168,٪޼2,685,169367,21,45,33,8,-64,-52,-64,-1,7.16,2018/7/232018-07-29,172100,2216609,4828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/23,31:34.1\r\n9,678162,Ե,611,1432,21,10,30,6,-26,-10,-25,9999,6.06,2018/7/232018-07-29,172100,2216609,4828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/23,31:34.1\r\n10,673286,ռ4,505,505,16,-4,31,26,0,0,0,0,0,2018/7/232018-07-29,172100,2216609,4828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/23,31:34.2\r\n1,676313,Ҳҩ,43434,290182,1274,18,34,15,-62,-26,-61,9999,8.81,2018/7/162018-07-22,112052,2174560,3229,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/16,31:35.2\r\n2,662063,ĦӪ,32923,32923,927,3,36,26,0,0,0,0,0,2018/7/162018-07-22,112052,2174560,3229,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/16,31:35.2\r\n3,638109,аѹ,21772,53310,614,10,35,13,-31,49,-31,-1,7.29,2018/7/162018-07-22,112052,2174560,3229,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/16,31:35.2\r\n4,677231,Ϸ,2527,2576,75,2,34,12,0,0,0,0,0,2018/7/162018-07-22,112052,2174560,3229,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/16,31:35.2\r\n5,660959,,2331,50533,64,24,36,9,-56,-50,-56,-2,7.3,2018/7/162018-07-22,112052,2174560,3229,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/16,31:35.2\r\n6,672751,´ͷӺСͷְ3˹,2106,13921,62,17,34,7,-56,-48,-56,-1,4.85,2018/7/162018-07-22,112052,2174560,3229,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/16,31:35.3\r\n7,667168,٪޼2,1923,168682,57,38,33,10,-44,-48,-44,-1,7.23,2018/7/162018-07-22,112052,2174560,3229,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/16,31:35.3\r\n8,678021,ܶԱ2,1014,35058,30,31,34,9,-52,-43,-52,-1,8.01,2018/7/162018-07-22,112052,2174560,3229,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/16,31:35.3\r\n9,678162,Ե,821,821,27,3,30,7,0,0,0,0,0,2018/7/162018-07-22,112052,2174560,3229,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/16,31:35.3\r\n10,676268,̽,701,701,22,3,32,5,0,0,0,0,0,2018/7/162018-07-22,112052,2174560,3229,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/16,31:35.3\r\n1,676313,Ҳҩ,113097,246748,3280,11,34,29,-12,49,-9,9999,8.83,2018/7/92018-07-15,168238,2136273,4848,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/9,31:36.1\r\n2,638109,аѹ,31538,31538,887,3,36,27,0,0,0,0,0,2018/7/92018-07-15,168238,2136273,4848,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/9,31:36.1\r\n3,660959,,5341,48202,146,17,37,10,-69,-68,-69,-1,7.3,2018/7/92018-07-15,168238,2136273,4848,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/9,31:36.1\r\n4,628633,,4886,4886,134,3,36,13,0,0,0,0,0,2018/7/92018-07-15,168238,2136273,4848,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/9,31:36.1\r\n5,672751,´ͷӺСͷְ3˹,4755,11816,141,10,34,9,-33,29,-32,-1,5.17,2018/7/92018-07-15,168238,2136273,4848,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/9,31:36.1\r\n6,667168,٪޼2,3448,166760,102,31,34,10,-62,-61,-61,-3,7.25,2018/7/92018-07-15,168238,2136273,4848,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/9,31:36.2\r\n7,678021,ܶԱ2,2109,34045,62,24,34,11,-58,-64,-58,-2,8.01,2018/7/92018-07-15,168238,2136273,4848,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/9,31:36.2\r\n8,652546,Ҹ,621,9358,18,38,35,37,-3,-18,-4,9999,6.13,2018/7/92018-07-15,168238,2136273,4848,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/9,31:36.2\r\n9,677988,С,581,582,19,2,30,9,0,0,0,0,0,2018/7/92018-07-15,168238,2136273,4848,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/9,31:36.2\r\n10,679588,һҪ,258,481,9,10,30,8,16,112,19,9999,0,2018/7/92018-07-15,168238,2136273,4848,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/9,31:36.2\r\n1,676313,Ҳҩ,128630,133651,3616,4,36,48,0,0,0,0,0,2018/7/22018-07-08,172642,2123238,4881,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/2,31:36.7\r\n2,660959,,17496,42861,475,10,37,10,-25,48,-25,-1,7.31,2018/7/22018-07-08,172642,2123238,4881,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/2,31:36.7\r\n3,667168,٪޼2,9061,163312,264,24,34,10,-58,-51,-57,-1,7.25,2018/7/22018-07-08,172642,2123238,4881,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/2,31:36.7\r\n4,672751,´ͷӺСͷְ3˹,7047,7061,208,3,34,17,0,0,0,0,0,2018/7/22018-07-08,172642,2123238,4881,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/2,31:36.8\r\n5,678021,ܶԱ2,5078,31936,148,17,34,9,-61,-57,-61,-2,8.01,2018/7/22018-07-08,172642,2123238,4881,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/2,31:36.8\r\n6,678409,ѿ2,1807,8901,60,10,30,4,-75,-21,-74,-2,4.75,2018/7/22018-07-08,172642,2123238,4881,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/2,31:36.8\r\n7,653845,ͳ,824,20135,26,24,32,6,-74,-67,-75,-1,4.39,2018/7/22018-07-08,172642,2123238,4881,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/2,31:36.8\r\n8,652546,Ҹ,642,8737,19,31,34,32,-9,-28,-10,1,6.12,2018/7/22018-07-08,172642,2123238,4881,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/2,31:36.8\r\n9,680225,ӳ,321,1740,9,14,34,6,-77,-55,-78,-1,,2018/7/22018-07-08,172642,2123238,4881,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/2,31:36.9\r\n10,679588,һҪ,223,223,7,3,30,15,0,0,0,0,0,2018/7/22018-07-08,172642,2123238,4881,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/7/2,31:36.9\r\n1,660959,,23341,25364,629,3,37,20,0,0,0,0,0,2018/6/252018-07-01,81539,2081326,2355,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/25,31:37.4\r\n2,667168,٪޼2,21557,154251,613,17,35,11,-64,-41,-63,-1,7.25,2018/6/252018-07-01,81539,2081326,2355,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/25,31:37.5\r\n3,678021,ܶԱ2,13135,26859,381,10,34,10,-4,60,-2,-1,8.11,2018/6/252018-07-01,81539,2081326,2355,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/25,31:37.5\r\n4,678409,ѿ2,7093,7093,236,3,30,11,0,0,0,0,0,2018/6/252018-07-01,81539,2081326,2355,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/25,31:37.5\r\n5,676313,Ҳҩ,5020,5020,142,-3,35,38,0,0,0,0,0,2018/6/252018-07-01,81539,2081326,2355,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/25,31:37.5\r\n6,653845,ͳ,3167,19311,102,17,31,7,-67,-43,-66,-3,4.36,2018/6/252018-07-01,81539,2081326,2355,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/25,31:37.5\r\n7,654226,Ϻ̾,2199,6685,69,10,32,4,-51,3,-50,-3,5.55,2018/6/252018-07-01,81539,2081326,2355,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/25,31:37.6\r\n8,680225,ӳ,1417,1419,42,7,34,12,0,0,0,54,,2018/6/252018-07-01,81539,2081326,2355,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/25,31:37.6\r\n9,652546,Ҹ,707,8095,21,24,34,25,316,-35,268,5,6.12,2018/6/252018-07-01,81539,2081326,2355,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/25,31:37.6\r\n10,668962,й,527,6993,16,17,33,5,-83,-77,-83,-5,5.7,2018/6/252018-07-01,81539,2081326,2355,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/25,31:37.6\r\n1,667168,٪޼2,59258,132694,1653,10,36,18,-19,80,-19,9999,7.27,2018/6/182018-06-24,100489,2112764,2868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/18,31:38.8\r\n2,678021,ܶԱ2,13722,13724,391,3,35,17,0,0,0,0,0,2018/6/182018-06-24,100489,2112764,2868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/18,31:38.8\r\n3,653845,ͳ,9513,16144,302,10,32,12,43,63,47,-1,4.51,2018/6/182018-06-24,100489,2112764,2868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/18,31:38.8\r\n4,654226,Ϻ̾,4485,4487,138,3,32,8,0,0,0,0,0,2018/6/182018-06-24,100489,2112764,2868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/18,31:38.8\r\n5,668962,й,3030,6466,93,10,32,7,-12,32,-12,-1,5.89,2018/6/182018-06-24,100489,2112764,2868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/18,31:38.8\r\n6,679164,21ϺʵӰ,2067,2727,31,,67,264,213,185,201,5,,2018/6/182018-06-24,100489,2112764,2868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/18,31:38.8\r\n7,660959,,2023,2023,57,-4,36,16,0,0,0,0,0,2018/6/182018-06-24,100489,2112764,2868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/18,31:38.9\r\n8,676391,ʱͬ,1577,89394,48,38,33,8,-69,-76,-69,-5,6.85,2018/6/182018-06-24,100489,2112764,2868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/18,31:38.9\r\n9,620485,߸С,1115,2348,38,9,29,8,-10,42,-8,-1,0,2018/6/182018-06-24,100489,2112764,2868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/18,31:38.9\r\n10,675789,3ս,911,238550,27,45,34,7,-67,-74,-65,-4,8.14,2018/6/182018-06-24,100489,2112764,2868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/18,31:38.9\r\n1,667168,٪޼2,73437,73437,2033,3,36,39,0,0,0,0,0,2018/6/112018-06-17,103386,2093559,2951,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/11,31:39.6\r\n2,653845,ͳ,6631,6631,205,3,32,14,0,0,0,0,0,2018/6/112018-06-17,103386,2093559,2951,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/11,31:39.6\r\n3,676391,ʱͬ,5148,87817,156,31,33,6,-55,-42,-55,-2,6.93,2018/6/112018-06-17,103386,2093559,2951,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/11,31:39.6\r\n4,668962,й,3428,3436,106,3,32,10,0,0,0,0,0,2018/6/112018-06-17,103386,2093559,2951,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/11,31:39.6\r\n5,668778,Ӣ,3163,9022,104,10,30,4,-46,37,-45,-2,7.37,2018/6/112018-06-17,103386,2093559,2951,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/11,31:39.7\r\n6,675789,3ս,2763,237639,78,38,36,5,-63,-53,-63,-4,7.55,2018/6/112018-06-17,103386,2093559,2951,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/11,31:39.7\r\n7,652546,Ҹ,2619,7218,81,10,32,5,-43,20,-44,-3,6.7,2018/6/112018-06-17,103386,2093559,2951,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/11,31:39.7\r\n8,620485,߸С,1233,1233,42,2,30,12,0,0,0,0,0,2018/6/112018-06-17,103386,2093559,2951,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/11,31:39.7\r\n9,677580,Խ,1033,5108,34,10,30,2,-75,-13,-75,-4,5.8,2018/6/112018-06-17,103386,2093559,2951,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/11,31:39.7\r\n10,675758,AΣ۵Ľ,828,20600,28,17,30,3,-79,-72,-80,-4,6.45,2018/6/112018-06-17,103386,2093559,2951,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/11,31:39.8\r\n1,676391,ʱͬ,11413,82669,343,24,33,8,-40,-19,-39,9999,6.93,2018/6/42018-06-10,43779,2093270,1352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/4,31:40.4\r\n2,675789,3ս,7549,234875,209,31,36,6,-44,-20,-44,1,7.55,2018/6/42018-06-10,43779,2093270,1352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/4,31:40.4\r\n3,668778,Ӣ,5859,5859,190,3,31,11,0,0,0,0,0,2018/6/42018-06-10,43779,2093270,1352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/4,31:40.4\r\n4,652546,Ҹ,4582,4598,144,3,32,10,0,0,0,0,0,2018/6/42018-06-10,43779,2093270,1352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/4,31:40.4\r\n5,677580,Խ,4075,4075,136,3,30,7,0,0,0,0,0,2018/6/42018-06-10,43779,2093270,1352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/4,31:40.4\r\n6,675758,AΣ۵Ľ,4027,19771,135,10,30,4,-74,3,-74,-4,6.55,2018/6/42018-06-10,43779,2093270,1352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/4,31:40.4\r\n7,676673,ž֮,1231,21630,39,24,31,4,-50,-37,-50,-1,7,2018/6/42018-06-10,43779,2093270,1352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/4,31:40.5\r\n8,657126,İ,1104,4986,33,17,34,6,-46,-41,-48,-1,8.4,2018/6/42018-06-10,43779,2093270,1352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/4,31:40.5\r\n9,657490,ǱͧܶԱ,1045,6984,34,10,31,4,-82,-35,-82,-5,0,2018/6/42018-06-10,43779,2093270,1352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/4,31:40.5\r\n10,662210,ޣս⴫,871,10487,23,17,37,3,-74,-64,-75,-5,7.09,2018/6/42018-06-10,43779,2093270,1352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/6/4,31:40.5\r\n1,676391,ʱͬ,18867,71256,566,17,33,10,-34,-9,-35,9999,6.93,2018/5/282018-06-03,66973,2125975,2069,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/28,31:41.2\r\n2,675758,AΣ۵Ľ,15744,15744,529,3,30,18,0,0,0,0,0,2018/5/282018-06-03,66973,2125975,2069,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/28,31:41.2\r\n3,675789,3ս,13591,227326,377,24,36,9,-35,-31,-34,-1,7.59,2018/5/282018-06-03,66973,2125975,2069,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/28,31:41.2\r\n4,657490,ǱͧܶԱ,5930,5939,193,3,31,14,0,0,0,0,0,2018/5/282018-06-03,66973,2125975,2069,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/28,31:41.3\r\n5,662210,ޣս⴫,3294,9616,92,10,36,4,-48,5,-48,-1,7.09,2018/5/282018-06-03,66973,2125975,2069,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/28,31:41.3\r\n6,676673,ž֮,2470,20399,78,17,32,6,-63,-51,-63,-3,7.1,2018/5/282018-06-03,66973,2125975,2069,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/28,31:41.3\r\n7,657126,İ,2039,3882,63,10,32,6,11,18,8,-2,8.4,2018/5/282018-06-03,66973,2125975,2069,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/28,31:41.3\r\n8,672649,ħԵ2,1656,1656,58,3,28,10,0,0,0,0,0,2018/5/282018-06-03,66973,2125975,2069,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/28,31:41.3\r\n9,677808,ҵĳ,813,813,28,4,29,6,0,0,0,0,0,2018/5/282018-06-03,66973,2125975,2069,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/28,31:41.4\r\n10,676242,񱩾,626,99596,20,52,32,10,54,23,55,-1,6.96,2018/5/282018-06-03,66973,2125975,2069,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/28,31:41.4\r\n1,676391,ʱͬ,28636,52389,866,10,33,14,21,164,21,1,6.94,2018/5/212018-05-27,68388,2037169,2005,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/21,31:41.9\r\n2,675789,3ս,21070,213735,571,17,37,9,-68,-41,-66,-1,7.59,2018/5/212018-05-27,68388,2037169,2005,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/21,31:41.9\r\n3,676673,ž֮,6608,17929,211,10,31,7,-42,54,-42,9999,7.2,2018/5/212018-05-27,68388,2037169,2005,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/21,31:41.9\r\n4,662210,ޣս⴫,6322,6322,177,3,36,8,0,0,0,0,0,2018/5/212018-05-27,68388,2037169,2005,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/21,31:41.9\r\n5,657126,İ,1843,1843,58,3,32,7,0,0,0,0,0,2018/5/212018-05-27,68388,2037169,2005,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/21,31:42.0\r\n6,663327,,720,135677,21,30,34,4,-73,-60,-73,-2,6.23,2018/5/212018-05-27,68388,2037169,2005,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/21,31:42.0\r\n7,677257,˼,665,1479,20,23,33,52,15,-42,15,1,6.07,2018/5/212018-05-27,68388,2037169,2005,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/21,31:42.0\r\n8,666358,,483,1248,15,10,32,4,-37,-3,-38,-2,6.92,2018/5/212018-05-27,68388,2037169,2005,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/21,31:42.0\r\n9,676242,񱩾,407,98970,13,45,32,8,-19,-16,-18,9999,6.96,2018/5/212018-05-27,68388,2037169,2005,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/21,31:42.0\r\n10,639863,ѩŮ3,166,7376,5,53,30,8,-7,23,-6,2,6.14,2018/5/212018-05-27,68388,2037169,2005,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/21,31:42.1\r\n1,675789,3ս,65439,192665,1681,10,39,16,-49,68,-49,9999,7.59,2018/5/142018-05-20,108882,1934332,3023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/14,31:42.5\r\n2,676391,ʱͬ,23570,23753,718,3,33,31,0,0,0,0,0,2018/5/142018-05-20,108882,1934332,3023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/14,31:42.6\r\n3,676673,ž֮,11321,11321,363,3,31,20,0,0,0,0,0,2018/5/142018-05-20,108882,1934332,3023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/14,31:42.6\r\n4,663327,,2684,134958,79,23,34,6,-74,-71,-74,-2,6.23,2018/5/142018-05-20,108882,1934332,3023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/14,31:42.6\r\n5,671362,,956,3502,30,10,32,3,-61,22,-61,9999,6.37,2018/5/142018-05-20,108882,1934332,3023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/14,31:42.6\r\n6,666358,,765,765,24,3,32,6,0,0,0,0,0,2018/5/142018-05-20,108882,1934332,3023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/14,31:42.6\r\n7,669662,Ļ,654,35750,19,23,35,4,-85,-82,-85,-4,6.73,2018/5/142018-05-20,108882,1934332,3023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/14,31:42.6\r\n8,677257,˼,580,815,17,16,34,26,214,-79,200,1,6.24,2018/5/142018-05-20,108882,1934332,3023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/14,31:42.7\r\n9,676242,񱩾,501,98563,15,38,32,8,-82,-87,-81,-5,6.96,2018/5/142018-05-20,108882,1934332,3023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/14,31:42.7\r\n10,653330,ͻ2ս,362,7476,12,17,30,5,-84,-87,-83,-4,8.13,2018/5/142018-05-20,108882,1934332,3023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/14,31:42.7\r\n1,675789,3ս,127226,127226,3293,3,39,53,0,0,0,0,0,2018/5/72018-05-13,152821,1964757,4058,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/7,31:43.1\r\n2,663327,,10303,132274,304,16,34,7,-84,-49,-84,-1,6.23,2018/5/72018-05-13,152821,1964757,4058,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/7,31:43.2\r\n3,669662,Ļ,4413,35096,126,16,35,6,-79,-40,-79,-1,6.73,2018/5/72018-05-13,152821,1964757,4058,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/7,31:43.2\r\n4,676242,񱩾,2823,98062,82,31,35,5,-81,-35,-81,-1,6.96,2018/5/72018-05-13,152821,1964757,4058,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/7,31:43.2\r\n5,671362,,2471,2546,77,3,32,11,0,0,0,0,0,2018/5/72018-05-13,152821,1964757,4058,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/7,31:43.2\r\n6,653330,ͻ2ս,2198,7114,71,10,31,4,-55,14,-54,-2,8.13,2018/5/72018-05-13,152821,1964757,4058,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/7,31:43.2\r\n7,657862,ͷ,865,139407,24,45,36,6,-79,-29,-78,-2,7.66,2018/5/72018-05-13,152821,1964757,4058,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/7,31:43.3\r\n8,675582,սȮ˹,386,387,13,3,30,4,0,0,0,0,0,2018/5/72018-05-13,152821,1964757,4058,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/7,31:43.3\r\n9,677257,˼,185,235,6,9,32,2,269,249,273,19,0,2018/5/72018-05-13,152821,1964757,4058,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/7,31:43.3\r\n10,676391,ʱͬ,178,183,5,-4,34,94,0,0,0,0,0,2018/5/72018-05-13,152821,1964757,4058,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/5/7,31:43.3\r\n1,663327,,65696,121970,1924,9,34,21,17,194,15,9999,6.43,2018/4/302018-05-06,119137,2120992,3471,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/30,31:43.9\r\n2,669662,Ļ,21158,30683,597,9,35,16,122,203,124,1,6.73,2018/4/302018-05-06,119137,2120992,3471,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/30,31:44.0\r\n3,676242,񱩾,14866,95238,422,24,35,18,15,-55,15,-1,6.96,2018/4/302018-05-06,119137,2120992,3471,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/30,31:44.0\r\n4,653330,ͻ2ս,4915,4916,156,3,31,11,0,0,0,0,0,2018/4/302018-05-06,119137,2120992,3471,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/30,31:44.0\r\n5,657862,ͷ,4027,138542,108,38,37,18,1,-70,-3,9999,7.66,2018/4/302018-05-06,119137,2120992,3471,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/30,31:44.0\r\n6,643724,ս,1698,3679,48,9,35,5,-14,26,-14,9999,6.06,2018/4/302018-05-06,119137,2120992,3471,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/30,31:44.0\r\n7,661851,ѹۣ֮,1502,3299,42,9,36,5,-16,43,-14,9999,6.44,2018/4/302018-05-06,119137,2120992,3471,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/30,31:44.0\r\n8,667137,ħŮ֮,1255,1860,42,9,30,7,109,145,113,2,6.92,2018/4/302018-05-06,119137,2120992,3471,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/30,31:44.1\r\n9,639863,ѩŮ3,677,6885,22,32,31,14,328,25,320,6,6.04,2018/4/302018-05-06,119137,2120992,3471,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/30,31:44.1\r\n10,665003,Ȯ֮,558,4259,16,17,35,12,-48,-88,-52,-1,8.23,2018/4/302018-05-06,119137,2120992,3471,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/30,31:44.1\r\n1,663327,,56274,56275,1673,2,34,54,0,0,0,0,0,2018/4/232018-04-29,96573,2101598,2846,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/23,31:44.8\r\n2,676242,񱩾,12931,80373,366,17,35,7,-60,-32,-60,-1,6.97,2018/4/232018-04-29,96573,2101598,2846,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/23,31:44.8\r\n3,669662,Ļ,9525,9525,266,2,36,21,0,0,0,0,0,2018/4/232018-04-29,96573,2101598,2846,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/23,31:44.8\r\n4,642174,21,4283,10615,140,10,31,5,-32,56,-32,-1,4.88,2018/4/232018-04-29,96573,2101598,2846,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/23,31:44.8\r\n5,657862,ͷ,3975,134514,111,31,36,6,-57,-34,-58,-3,7.66,2018/4/232018-04-29,96573,2101598,2846,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/23,31:44.8\r\n6,643724,ս,1981,1981,56,2,35,7,0,0,0,0,0,2018/4/232018-04-29,96573,2101598,2846,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/23,31:44.9\r\n7,661851,ѹۣ֮,1797,1797,49,2,37,8,0,0,0,0,0,2018/4/232018-04-29,96573,2101598,2846,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/23,31:44.9\r\n8,643903,ѵ漱,1148,3467,37,10,31,3,-50,15,-47,-3,6.06,2018/4/232018-04-29,96573,2101598,2846,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/23,31:44.9\r\n9,665003,Ȯ֮,1084,3700,33,10,33,3,-59,5,-60,-5,8.33,2018/4/232018-04-29,96573,2101598,2846,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/23,31:44.9\r\n10,667137,ħŮ֮,600,605,20,2,30,8,0,0,0,0,0,2018/4/232018-04-29,96573,2101598,2846,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/23,31:45.0\r\n1,676242,񱩾,32395,67442,925,10,35,12,-8,106,-9,9999,6.97,2018/4/162018-04-22,60336,2090889,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/16,31:45.6\r\n2,657862,ͷ,9229,130540,263,24,35,9,-51,-43,-50,9999,7.66,2018/4/162018-04-22,60336,2090889,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/16,31:45.7\r\n3,642174,21,6332,6332,207,3,31,11,0,0,0,0,0,2018/4/162018-04-22,60336,2090889,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/16,31:45.7\r\n4,665003,Ȯ֮,2617,2617,83,3,32,8,0,0,0,0,0,2018/4/162018-04-22,60336,2090889,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/16,31:45.7\r\n5,643903,ѵ漱,2302,2319,70,3,33,5,0,0,0,0,0,2018/4/162018-04-22,60336,2090889,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/16,31:45.7\r\n6,675328,,2111,5956,66,10,32,4,-45,8,-46,-2,7.65,2018/4/162018-04-22,60336,2090889,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/16,31:45.7\r\n7,665847,,1802,20355,58,19,31,5,-64,-57,-65,-4,7.84,2018/4/162018-04-22,60336,2090889,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/16,31:45.7\r\n8,675239,ˣҵĹ,586,47215,19,52,31,17,-45,-41,-45,9999,0,2018/4/162018-04-22,60336,2090889,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/16,31:45.8\r\n9,655823,캣ж,555,364470,18,66,31,6,-48,-46,-47,-2,7.55,2018/4/162018-04-22,60336,2090889,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/16,31:45.8\r\n10,639863,ѩŮ3,470,6050,15,18,31,4,-62,-58,-62,-4,6.04,2018/4/162018-04-22,60336,2090889,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/16,31:45.8\r\n1,676242,񱩾,35031,35047,1016,3,34,27,0,0,0,0,0,2018/4/92018-04-15,72269,2027807,2129,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/9,31:46.8\r\n2,657862,ͷ,18660,121311,521,17,36,10,-71,-26,-70,-1,7.66,2018/4/92018-04-15,72269,2027807,2129,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/9,31:46.8\r\n3,665847,,5041,18553,167,12,30,7,-63,1,-62,-1,7.93,2018/4/92018-04-15,72269,2027807,2129,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/9,31:46.8\r\n4,675328,,3842,3845,122,3,31,8,0,0,0,0,0,2018/4/92018-04-15,72269,2027807,2129,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/9,31:46.8\r\n5,668536,,1407,5031,43,12,33,4,-61,-30,-61,9999,7.29,2018/4/92018-04-15,72269,2027807,2129,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/9,31:46.9\r\n6,639863,ѩŮ3,1249,5580,40,11,31,5,-71,-20,-71,-2,6.13,2018/4/92018-04-15,72269,2027807,2129,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/9,31:46.9\r\n7,655823,캣ж,1073,363915,35,59,31,6,-56,-21,-56,9999,7.55,2018/4/92018-04-15,72269,2027807,2129,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/9,31:46.9\r\n8,675239,ˣҵĹ,1072,46629,34,45,31,18,-23,-23,-22,2,0,2018/4/92018-04-15,72269,2027807,2129,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/9,31:46.9\r\n9,657865,̫ƽ2,1016,63140,30,24,34,3,-81,-47,-81,-6,6.88,2018/4/92018-04-15,72269,2027807,2129,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/9,31:46.9\r\n10,640887,,334,3004,11,12,31,2,-87,-50,-87,-4,4.5,2018/4/92018-04-15,72269,2027807,2129,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/9,31:47.0\r\n1,657862,ͷ,63583,102650,1739,10,37,24,63,130,64,9999,7.71,2018/4/22018-04-08,105837,2042621,3061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/2,31:49.9\r\n2,665847,,13479,13512,442,5,31,18,0,0,0,0,0,2018/4/22018-04-08,105837,2042621,3061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/2,31:49.9\r\n3,657865,̫ƽ2,5463,62124,160,17,34,8,-65,-67,-64,-1,6.88,2018/4/22018-04-08,105837,2042621,3061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/2,31:49.9\r\n4,639863,ѩŮ3,4317,4332,137,4,32,13,0,0,0,0,0,2018/4/22018-04-08,105837,2042621,3061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/2,31:49.9\r\n5,668536,,3587,3624,112,5,32,8,0,0,0,0,0,2018/4/22018-04-08,105837,2042621,3061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/2,31:50.0\r\n6,640887,,2669,2670,83,5,32,7,0,0,0,0,0,2018/4/22018-04-08,105837,2042621,3061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/2,31:50.0\r\n7,655823,캣ж,2439,362841,78,52,31,12,-31,-52,-29,-2,7.55,2018/4/22018-04-08,105837,2042621,3061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/2,31:50.0\r\n8,655316,èһԴ,1710,1717,51,4,33,11,0,0,0,0,0,2018/4/22018-04-08,105837,2042621,3061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/2,31:50.0\r\n9,674543,ͨӪ,1532,4141,49,10,31,6,-41,-23,-43,-2,7.25,2018/4/22018-04-08,105837,2042621,3061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/2,31:50.0\r\n10,675239,ˣҵĹ,1392,45557,44,38,32,18,-68,-61,-68,-6,0,2018/4/22018-04-08,105837,2042621,3061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/4/2,31:50.1\r\n1,657862,ͷ,39068,39068,1064,3,37,34,0,0,0,0,0,2018/3/262018-04-01,83370,2069260,2389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/26,31:51.6\r\n2,657865,̫ƽ2,15504,56661,439,10,35,7,-62,42,-62,-1,6.84,2018/3/262018-04-01,83370,2069260,2389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/26,31:51.6\r\n3,565987,ĹӰԴ֮ս,4921,48940,144,17,34,7,-72,-55,-72,-1,6.75,2018/3/262018-04-01,83370,2069260,2389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/26,31:51.6\r\n4,675239,ˣҵĹ,4331,44165,137,31,32,22,-38,-33,-38,9999,0,2018/3/262018-04-01,83370,2069260,2389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/26,31:51.6\r\n5,655823,캣ж,3543,360402,110,45,32,8,-53,-37,-52,-2,7.55,2018/3/262018-04-01,83370,2069260,2389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/26,31:51.6\r\n6,662641,,3378,3398,106,4,32,9,0,0,0,0,0,2018/3/262018-04-01,83370,2069260,2389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/26,31:51.6\r\n7,674543,ͨӪ,2609,2609,86,3,30,8,0,0,0,0,0,2018/3/262018-04-01,83370,2069260,2389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/26,31:51.7\r\n8,635963,Сĺ,1858,28558,60,31,31,8,-53,-32,-53,-2,7.56,2018/3/262018-04-01,83370,2069260,2389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/26,31:51.7\r\n9,675331,Ů,1345,1359,41,3,33,7,0,0,0,0,0,2018/3/262018-04-01,83370,2069260,2389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/26,31:51.7\r\n10,644531,˵Ķ,1149,1149,37,3,31,6,0,0,0,0,0,2018/3/262018-04-01,83370,2069260,2389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/26,31:51.7\r\n1,657865,̫ƽ2,41158,41158,1154,3,36,28,0,0,0,0,0,2018/3/192018-03-25,93383,2050815,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/19,31:52.2\r\n2,565987,ĹӰԴ֮ս,17744,44019,506,10,35,11,-32,69,-32,-1,6.75,2018/3/192018-03-25,93383,2050815,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/19,31:52.3\r\n3,655823,캣ж,7599,356859,230,38,33,10,-49,-30,-44,9999,7.55,2018/3/192018-03-25,93383,2050815,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/19,31:52.3\r\n4,675239,ˣҵĹ,6953,39834,222,24,31,23,-31,-21,-31,9999,0,2018/3/192018-03-25,93383,2050815,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/19,31:52.3\r\n5,644135,ڱ,4300,65237,121,17,36,6,-77,-59,-77,-3,6.98,2018/3/192018-03-25,93383,2050815,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/19,31:52.3\r\n6,635963,Сĺ,3932,26700,128,24,31,12,-36,-26,-37,9999,7.56,2018/3/192018-03-25,93383,2050815,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/19,31:52.3\r\n7,671663,ˮ,3194,9971,100,10,32,6,-53,17,-54,-2,7.56,2018/3/192018-03-25,93383,2050815,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/19,31:52.4\r\n8,663419,˽̽2,2856,338462,79,38,36,9,-49,-47,-50,-1,7.04,2018/3/192018-03-25,93383,2050815,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/19,31:52.4\r\n9,674815,ȵ,1038,15390,35,24,30,10,-40,-37,-39,-1,7.66,2018/3/192018-03-25,93383,2050815,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/19,31:52.4\r\n10,674989,Ȯ,752,753,26,2,29,6,0,0,0,0,0,2018/3/192018-03-25,93383,2050815,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/19,31:52.4\r\n1,565987,ĹӰԴ֮ս,26275,26275,746,3,35,26,0,0,0,0,0,2018/3/122018-03-18,97092,2011630,2837,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/12,31:52.9\r\n2,644135,ڱ,18641,60938,519,10,36,10,-56,49,-56,-1,7.03,2018/3/122018-03-18,97092,2011630,2837,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/12,31:52.9\r\n3,655823,캣ж,14838,349260,407,31,36,13,-58,-35,-57,-1,7.59,2018/3/122018-03-18,97092,2011630,2837,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/12,31:52.9\r\n4,675239,ˣҵĹ,10041,32881,320,17,31,27,-26,-19,-25,9999,0,2018/3/122018-03-18,97092,2011630,2837,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/12,31:52.9\r\n5,671663,ˮ,6776,6776,219,3,31,15,0,0,0,0,0,2018/3/122018-03-18,97092,2011630,2837,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/12,31:52.9\r\n6,635963,Сĺ,6178,22769,202,17,31,14,-45,-19,-44,-1,7.56,2018/3/122018-03-18,97092,2011630,2837,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/12,31:52.9\r\n7,663419,˽̽2,5554,335606,158,31,35,9,-66,-50,-66,-4,7.04,2018/3/122018-03-18,97092,2011630,2837,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/12,31:53.0\r\n8,674815,ȵ,1723,14352,57,17,30,10,-62,-58,-62,-2,7.67,2018/3/122018-03-18,97092,2011630,2837,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/12,31:53.0\r\n9,671224,,1309,5692,37,17,36,12,-54,16,-53,-1,8.27,2018/3/122018-03-18,97092,2011630,2837,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/12,31:53.0\r\n10,666740,󻵺Ĺ,1066,1089,36,3,30,10,0,0,0,0,0,2018/3/122018-03-18,97092,2011630,2837,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/12,31:53.0\r\n1,644135,ڱ,42296,42296,1169,3,36,35,0,0,0,0,0,2018/3/52018-03-11,138700,2058934,3967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/5,31:53.7\r\n2,655823,캣ж,35066,334422,943,24,37,19,-60,-25,-58,-1,7.59,2018/3/52018-03-11,138700,2058934,3967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/5,31:53.7\r\n3,663419,˽̽2,16296,330052,464,24,35,14,-66,-39,-65,-1,7.05,2018/3/52018-03-11,138700,2058934,3967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/5,31:53.8\r\n4,675239,ˣҵĹ,13542,22841,426,10,32,29,46,83,46,9999,0,2018/3/52018-03-11,138700,2058934,3967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/5,31:53.8\r\n5,635963,Сĺ,11159,16591,363,10,31,21,106,180,110,1,7.6,2018/3/52018-03-11,138700,2058934,3967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/5,31:53.8\r\n6,674815,ȵ,4572,12629,150,10,30,12,-43,30,-44,-1,7.59,2018/3/52018-03-11,138700,2058934,3967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/5,31:53.8\r\n7,656875,׽2,3450,222552,94,24,37,9,-79,-59,-79,-4,6.39,2018/3/52018-03-11,138700,2058934,3967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/5,31:53.8\r\n8,671224,,2869,4382,77,10,37,29,91,246,97,3,8.27,2018/3/52018-03-11,138700,2058934,3967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/5,31:53.8\r\n9,670904,Ѽ,2131,2993,66,3,32,12,0,0,0,0,0,2018/3/52018-03-11,138700,2058934,3967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/5,31:53.9\r\n10,629372,2,1368,6330,42,10,32,5,-72,-38,-73,-2,0,2018/3/52018-03-11,138700,2058934,3967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/3/5,31:53.9\r\n1,655823,캣ж,87003,299356,2253,17,39,34,-48,5,-45,1,8.52,2018/2/262018-03-04,196541,2186329,5379,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/26,31:54.5\r\n2,663419,˽̽2,48371,313756,1310,17,37,24,-71,-26,-69,-1,8.05,2018/2/262018-03-04,196541,2186329,5379,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/26,31:54.5\r\n3,656875,׽2,16237,219103,442,17,37,17,-80,-48,-80,9999,7.1,2018/2/262018-03-04,196541,2186329,5379,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/26,31:54.5\r\n4,675239,ˣҵĹ,9299,9299,292,3,32,36,0,0,0,0,0,2018/2/262018-03-04,196541,2186329,5379,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/26,31:54.5\r\n5,674815,ȵ,8015,8057,269,3,30,27,0,0,0,0,0,2018/2/262018-03-04,196541,2186329,5379,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/26,31:54.5\r\n6,635963,Сĺ,5409,5431,173,3,31,28,0,0,0,0,0,2018/2/262018-03-04,196541,2186329,5379,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/26,31:54.6\r\n7,670573,ܳûμ,5374,58931,159,17,34,14,-81,-47,-79,-3,8,2018/2/262018-03-04,196541,2186329,5379,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/26,31:54.6\r\n8,629372,2,4962,4962,158,3,31,12,0,0,0,0,0,2018/2/262018-03-04,196541,2186329,5379,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/26,31:54.6\r\n9,644530,μŮ,3706,71904,98,17,38,11,-78,-45,-77,-4,7.13,2018/2/262018-03-04,196541,2186329,5379,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/26,31:54.6\r\n10,670442,ʮŴ,2985,15801,90,17,33,14,-62,-19,-60,-4,7.08,2018/2/262018-03-04,196541,2186329,5379,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/26,31:54.7\r\n1,663419,˽̽2,166337,265385,4246,10,39,56,68,148,72,1,8.22,2018/2/192018-02-25,470963,2378026,12028,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/19,31:55.4\r\n2,655823,캣ж,165853,212354,4098,10,40,65,257,297,272,2,8.52,2018/2/192018-02-25,470963,2378026,12028,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/19,31:55.4\r\n3,656875,׽2,82421,202866,2165,10,38,43,-32,34,-30,-2,7.15,2018/2/192018-02-25,470963,2378026,12028,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/19,31:55.4\r\n4,670573,ܳûμ,27967,53556,772,10,36,36,34,115,37,1,8.04,2018/2/192018-02-25,470963,2378026,12028,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/19,31:55.4\r\n5,644530,μŮ,17117,68198,434,10,39,28,-66,-42,-66,-2,7.15,2018/2/192018-02-25,470963,2378026,12028,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/19,31:55.5\r\n6,670442,ʮŴ,7868,12816,225,10,35,28,59,121,69,2,7.24,2018/2/192018-02-25,470963,2378026,12028,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/19,31:55.5\r\n7,670904,Ѽ,492,594,15,-11,32,17,0,0,0,0,0,2018/2/192018-02-25,470963,2378026,12028,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/19,31:55.5\r\n8,629349,,309,1403,7,969,47,124,401,318,353,20,,2018/2/192018-02-25,470963,2378026,12028,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/19,31:55.5\r\n9,674812,ڼǰ,297,306,9,3,34,9,0,0,0,0,0,2018/2/192018-02-25,470963,2378026,12028,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/19,31:55.5\r\n10,638973,СѼ,284,1377,6,511,48,130,464,317,433,22,,2018/2/192018-02-25,470963,2378026,12028,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/19,31:55.6\r\n1,656875,׽2,120445,120445,3105,3,39,82,0,0,0,0,0,2018/2/122018-02-18,367692,2114546,9414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/12,31:56.1\r\n2,663419,˽̽2,99047,99048,2473,3,40,81,0,0,0,0,0,2018/2/122018-02-18,367692,2114546,9414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/12,31:56.2\r\n3,644530,μŮ,51075,51080,1275,3,40,47,0,0,0,0,0,2018/2/122018-02-18,367692,2114546,9414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/12,31:56.2\r\n4,655823,캣ж,46500,46501,1100,3,42,69,0,0,0,0,0,2018/2/122018-02-18,367692,2114546,9414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/12,31:56.2\r\n5,670573,ܳûμ,20858,25590,563,3,37,56,0,0,0,0,0,2018/2/122018-02-18,367692,2114546,9414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/12,31:56.2\r\n6,670328,ؾ,5831,74707,190,31,31,12,-48,-52,-49,-5,8.82,2018/2/122018-02-18,367692,2114546,9414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/12,31:56.3\r\n7,626831,ϼ֮,5347,23403,162,18,33,10,-46,-52,-47,-5,7.91,2018/2/122018-02-18,367692,2114546,9414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/12,31:56.3\r\n8,670442,ʮŴ,4948,4948,133,3,37,36,0,0,0,0,0,2018/2/122018-02-18,367692,2114546,9414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/12,31:56.3\r\n9,657846,ƶԹ3ҩ,2363,31506,66,24,36,8,-51,-55,-52,-6,7.23,2018/2/122018-02-18,367692,2114546,9414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/12,31:56.3\r\n10,589946,,2082,75296,65,38,32,10,-54,-58,-54,-6,7.94,2018/2/122018-02-18,367692,2114546,9414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/12,31:56.3\r\n1,670328,ؾ,11292,68876,370,24,30,11,-28,-3,-28,9999,8.82,2018/2/52018-02-11,51696,1944944,1623,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/5,31:57.3\r\n2,626831,ϼ֮,9907,18057,307,11,32,9,23,90,22,1,7.91,2018/2/52018-02-11,51696,1944944,1623,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/5,31:57.3\r\n3,657846,ƶԹ3ҩ,4799,29143,137,17,35,8,-51,-42,-51,-1,7.23,2018/2/52018-02-11,51696,1944944,1623,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/5,31:57.3\r\n4,589946,,4517,73213,142,31,32,9,-42,-26,-42,9999,7.94,2018/2/52018-02-11,51696,1944944,1623,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/5,31:57.4\r\n5,672203,Ϸ֮,3588,8430,106,11,34,7,-25,-6,-30,9999,8.18,2018/2/52018-02-11,51696,1944944,1623,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/5,31:57.4\r\n6,669996,տ,3031,4696,100,10,30,9,82,154,86,5,7.93,2018/2/52018-02-11,51696,1944944,1623,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/5,31:57.4\r\n7,671223,漣к,2323,17932,75,24,31,10,-41,-25,-41,-1,8.86,2018/2/52018-02-11,51696,1944944,1623,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/5,31:57.4\r\n8,669811,СӰ,1999,3706,68,10,29,7,18,131,20,1,7.97,2018/2/52018-02-11,51696,1944944,1623,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/5,31:57.4\r\n9,671441,ţռ,1559,16378,49,24,32,8,-48,-34,-48,-1,8.13,2018/2/52018-02-11,51696,1944944,1623,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/5,31:57.5\r\n10,666513,ܽС,1334,1334,45,3,29,4,0,0,0,0,0,2018/2/52018-02-11,51696,1944944,1623,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/2/5,31:57.5\r\n1,670328,ؾ,15626,57584,513,17,30,15,-36,-19,-37,9999,8.92,2018/1/292018-02-04,69748,1920250,2188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/29,31:59.0\r\n2,657846,ƶԹ3ҩ,9734,24344,282,10,35,10,-33,30,-34,1,7.21,2018/1/292018-02-04,69748,1920250,2188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/29,31:59.0\r\n3,626831,ϼ֮,8056,8150,251,4,32,14,0,0,0,0,0,2018/1/292018-02-04,69748,1920250,2188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/29,31:59.0\r\n4,589946,,7804,68697,246,24,32,12,-54,-37,-54,-2,7.94,2018/1/292018-02-04,69748,1920250,2188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/29,31:59.0\r\n5,672203,Ϸ֮,4802,4842,151,4,32,9,0,0,0,0,0,2018/1/292018-02-04,69748,1920250,2188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/29,31:59.0\r\n6,671223,漣к,3920,15609,128,17,31,13,-37,-38,-37,-2,8.93,2018/1/292018-02-04,69748,1920250,2188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/29,31:59.0\r\n7,670573,ܳûμ,3263,4726,99,-11,33,17,0,0,0,0,0,2018/1/292018-02-04,69748,1920250,2188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/29,31:59.1\r\n8,671441,ţռ,2974,14819,94,17,32,10,-49,-37,-48,-3,8.13,2018/1/292018-02-04,69748,1920250,2188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/29,31:59.1\r\n9,669811,СӰ,1698,1707,57,3,30,13,0,0,0,0,0,2018/1/292018-02-04,69748,1920250,2188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/29,31:59.1\r\n10,669741,ʸӻ,1680,1680,56,3,30,8,0,0,0,0,0,2018/1/292018-02-04,69748,1920250,2188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/29,31:59.1\r\n1,670328,ؾ,24407,41958,812,10,30,19,39,131,35,1,8.95,2018/1/222018-01-28,83635,1849133,2614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/22,32:00.1\r\n2,589946,,17059,60893,540,17,32,16,-43,-12,-43,-1,7.93,2018/1/222018-01-28,83635,1849133,2614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/22,32:00.2\r\n3,657846,ƶԹ3ҩ,14610,14610,426,3,34,19,0,0,0,0,0,2018/1/222018-01-28,83635,1849133,2614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/22,32:00.2\r\n4,671223,漣к,6182,11688,203,10,30,13,13,45,9,2,8.93,2018/1/222018-01-28,83635,1849133,2614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/22,32:00.2\r\n5,671441,ţռ,5809,11845,180,10,32,11,-4,73,-3,9999,8.19,2018/1/222018-01-28,83635,1849133,2614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/22,32:00.2\r\n6,671456,¸Ϸս,4251,46849,122,17,35,11,-75,-69,-75,-3,7.87,2018/1/222018-01-28,83635,1849133,2614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/22,32:00.3\r\n7,663359,ǰ3ټǰ,3555,191444,101,31,35,9,-69,-61,-69,-3,7.86,2018/1/222018-01-28,83635,1849133,2614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/22,32:00.3\r\n8,670573,ܳûμ,1463,1463,44,-18,33,31,0,0,0,0,0,2018/1/222018-01-28,83635,1849133,2614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/22,32:00.3\r\n9,663226,Ӣ۱ɫ2018,1112,6195,34,11,33,4,-78,-40,-79,-2,7.4,2018/1/222018-01-28,83635,1849133,2614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/22,32:00.3\r\n10,661934,ճ,903,4863,27,10,33,3,-77,-33,-78,-2,6.36,2018/1/222018-01-28,83635,1849133,2614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/22,32:00.3\r\n1,589946,,29877,43835,945,10,32,25,114,126,106,2,8,2018/1/152018-01-21,102841,1923626,3196,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/15,32:01.0\r\n2,670328,ؾ,17531,17551,603,3,29,33,0,0,0,0,0,2018/1/152018-01-21,102841,1923626,3196,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/15,32:01.0\r\n3,671456,¸Ϸս,16673,42598,483,10,35,14,-35,43,-37,-1,7.86,2018/1/152018-01-21,102841,1923626,3196,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/15,32:01.0\r\n4,663359,ǰ3ټǰ,11621,187889,331,24,35,12,-75,-57,-75,-3,7.86,2018/1/152018-01-21,102841,1923626,3196,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/15,32:01.1\r\n5,671441,ţռ,6036,6036,186,3,32,20,0,0,0,0,0,2018/1/152018-01-21,102841,1923626,3196,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/15,32:01.1\r\n6,671223,漣к,5467,5506,187,3,29,17,0,0,0,0,0,2018/1/152018-01-21,102841,1923626,3196,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/15,32:01.1\r\n7,663226,Ӣ۱ɫ2018,5083,5083,158,4,32,12,0,0,0,0,0,2018/1/152018-01-21,102841,1923626,3196,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/15,32:01.1\r\n8,661934,ճ,3959,3959,124,3,32,10,0,0,0,0,0,2018/1/152018-01-21,102841,1923626,3196,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/15,32:01.1\r\n9,659753,սľʿ,1177,26418,25,17,47,8,-82,-86,-86,-5,7.59,2018/1/152018-01-21,102841,1923626,3196,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/15,32:01.2\r\n10,659453,,1132,141548,33,38,34,9,-75,-70,-76,-5,8.13,2018/1/152018-01-21,102841,1923626,3196,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/15,32:01.2\r\n1,663359,ǰ3ټǰ,45968,176268,1311,17,35,20,-54,4,-54,9999,7.94,2018/1/82018-01-14,110744,1906923,3264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/8,32:01.8\r\n2,671456,¸Ϸս,25835,25925,765,3,34,31,0,0,0,0,0,2018/1/82018-01-14,110744,1906923,3264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/8,32:01.8\r\n3,589946,,13955,13957,459,3,30,27,0,0,0,0,0,2018/1/82018-01-14,110744,1906923,3264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/8,32:01.8\r\n4,659753,սľʿ,6584,25241,174,10,38,7,-65,0,-66,-2,7.59,2018/1/82018-01-14,110744,1906923,3264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/8,32:01.8\r\n5,659453,,4602,140416,136,31,34,11,-73,-50,-73,-2,8.13,2018/1/82018-01-14,110744,1906923,3264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/8,32:01.8\r\n6,668959,Ե׾,3394,3422,112,3,30,10,0,0,0,0,0,2018/1/82018-01-14,110744,1906923,3264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/8,32:01.8\r\n7,653548,֮,2258,28944,65,17,35,10,-77,-66,-76,-2,7.67,2018/1/82018-01-14,110744,1906923,3264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/8,32:01.9\r\n8,670102,Ѱλμ,1305,120833,40,52,33,11,-69,-42,-69,9999,9.29,2018/1/82018-01-14,110744,1906923,3264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/8,32:01.9\r\n9,670533,̫վԮ,1183,1185,37,3,32,8,0,0,0,0,0,2018/1/82018-01-14,110744,1906923,3264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/8,32:01.9\r\n10,643285,è,1032,52771,29,24,36,9,-79,-62,-78,-3,7.52,2018/1/82018-01-14,110744,1906923,3264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/8,32:01.9\r\n1,663359,ǰ3ټǰ,100793,130300,2872,10,35,46,242,251,240,1,7.96,2018/1/12018-01-07,176075,1981377,5030,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/1,32:03.0\r\n2,659753,սľʿ,18657,18657,517,3,36,22,0,0,0,0,0,2018/1/12018-01-07,176075,1981377,5030,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/1,32:03.0\r\n3,659453,,17059,135813,496,24,34,20,-53,-35,-53,-2,8.18,2018/1/12018-01-07,176075,1981377,5030,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/1,32:03.0\r\n4,669715,,10027,35177,289,10,35,12,-60,14,-60,-1,6.87,2018/1/12018-01-07,176075,1981377,5030,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/1,32:03.0\r\n5,653548,֮,9728,26686,275,10,35,14,-42,11,-44,9999,7.76,2018/1/12018-01-07,176075,1981377,5030,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/1,32:03.1\r\n6,641143,ӻ,6307,21533,190,10,33,11,-56,21,-57,9999,7.55,2018/1/12018-01-07,176075,1981377,5030,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/1,32:03.1\r\n7,643285,è,4878,51739,133,17,37,16,-78,-73,-79,-3,7.52,2018/1/12018-01-07,176075,1981377,5030,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/1,32:03.1\r\n8,670102,Ѱλμ,4277,119528,129,45,33,20,-20,-17,-18,1,9.29,2018/1/12018-01-07,176075,1981377,5030,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/1,32:03.1\r\n9,643308,֮Ѫ,1185,30360,33,17,36,12,-87,-88,-88,-2,7.58,2018/1/12018-01-07,176075,1981377,5030,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/1,32:03.2\r\n10,653101,֮֮,783,22167,22,17,36,11,-89,-89,-89,-2,7.81,2018/1/12018-01-07,176075,1981377,5030,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2018/1/1,32:03.2\r\n1,659453,,35960,118754,1044,17,34,27,-29,-28,-30,9999,8.18,2017/12/252017-12-31,170779,1987797,4956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/25,32:04.4\r\n2,663359,ǰ3ټǰ,29476,29507,844,3,35,48,0,0,0,0,0,2017/12/252017-12-31,170779,1987797,4956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/25,32:04.4\r\n3,669715,,25102,25150,728,3,34,34,0,0,0,0,0,2017/12/252017-12-31,170779,1987797,4956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/25,32:04.4\r\n4,643285,è,22541,46861,627,10,36,20,-7,49,-10,-2,7.47,2017/12/252017-12-31,170779,1987797,4956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/25,32:04.4\r\n5,653548,֮,16911,16958,492,3,34,28,0,0,0,0,0,2017/12/252017-12-31,170779,1987797,4956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/25,32:04.4\r\n6,641143,ӻ,14368,15225,445,3,32,31,0,0,0,0,0,2017/12/252017-12-31,170779,1987797,4956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/25,32:04.5\r\n7,643308,֮Ѫ,9343,29174,271,10,34,12,-53,5,-54,-4,7.61,2017/12/252017-12-31,170779,1987797,4956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/25,32:04.5\r\n8,653101,֮֮,6851,21385,205,10,33,12,-51,-4,-54,-4,7.82,2017/12/252017-12-31,170779,1987797,4956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/25,32:04.5\r\n9,670102,Ѱλμ,5333,115251,157,38,34,20,-29,-64,-30,-4,9.36,2017/12/252017-12-31,170779,1987797,4956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/25,32:04.5\r\n10,644856,2,906,19834,28,24,32,16,-50,-80,-53,-3,8.38,2017/12/252017-12-31,170779,1987797,4956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/25,32:04.5\r\n1,659453,,50891,82794,1487,10,34,28,73,88,71,9999,8.19,2017/12/182017-12-24,129859,1881436,3816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/18,32:05.3\r\n2,643285,è,24316,24320,697,3,35,34,0,0,0,0,0,2017/12/182017-12-24,129859,1881436,3816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/18,32:05.3\r\n3,643308,֮Ѫ,19831,19831,584,3,34,27,0,0,0,0,0,2017/12/182017-12-24,129859,1881436,3816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/18,32:05.4\r\n4,653101,֮֮,14111,14534,443,3,32,24,0,0,0,0,0,2017/12/182017-12-24,129859,1881436,3816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/18,32:05.4\r\n5,670102,Ѱλμ,7520,109918,223,31,34,10,-58,-51,-58,-2,9.36,2017/12/182017-12-24,129859,1881436,3816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/18,32:05.4\r\n6,618517,Ŷݼ,7095,29527,206,11,34,7,-66,-7,-67,-4,7.07,2017/12/182017-12-24,129859,1881436,3816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/18,32:05.4\r\n7,644856,2,1827,18928,60,17,31,7,-72,-70,-74,-3,8.38,2017/12/182017-12-24,129859,1881436,3816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/18,32:05.4\r\n8,641143,ӻ,858,858,25,-4,35,31,0,0,0,0,0,2017/12/182017-12-24,129859,1881436,3816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/18,32:05.5\r\n9,670000,ߡǿ֮,789,6302,24,17,33,7,-70,-66,-71,-4,8.86,2017/12/182017-12-24,129859,1881436,3816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/18,32:05.5\r\n10,618581,ʮ,446,10110,10,52,46,31,-1,-19,6,-2,7.87,2017/12/182017-12-24,129859,1881436,3816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/18,32:05.5\r\n1,659453,,29420,31903,867,3,34,30,0,0,0,0,0,2017/12/112017-12-17,84521,1950483,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/11,32:06.4\r\n2,618517,Ŷݼ,21099,22432,626,4,34,19,0,0,0,0,0,2017/12/112017-12-17,84521,1950483,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/11,32:06.4\r\n3,670102,Ѱλμ,17696,102397,532,24,33,12,-49,-23,-48,-2,9.36,2017/12/112017-12-17,84521,1950483,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/11,32:06.4\r\n4,644856,2,6642,17101,226,10,29,8,-36,34,-37,-2,8.38,2017/12/112017-12-17,84521,1950483,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/11,32:06.5\r\n5,670000,ߡǿ֮,2636,5513,84,10,32,8,-8,77,-8,9999,8.91,2017/12/112017-12-17,84521,1950483,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/11,32:06.5\r\n6,663013,޶,1689,5463,57,10,30,4,-55,9,-55,-3,7.54,2017/12/112017-12-17,84521,1950483,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/11,32:06.5\r\n7,666290,躣,1023,3799,36,10,28,3,-63,10,-63,-1,7.18,2017/12/112017-12-17,84521,1950483,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/11,32:06.5\r\n8,618581,ʮ,449,9665,9,45,48,24,-9,-38,-17,5,7.87,2017/12/112017-12-17,84521,1950483,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/11,32:06.5\r\n9,349187,,425,68956,12,31,36,4,-86,-81,-86,-5,7.82,2017/12/112017-12-17,84521,1950483,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/11,32:06.6\r\n10,653101,֮֮,422,422,13,-4,33,106,0,0,0,0,0,2017/12/112017-12-17,84521,1950483,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/11,32:06.6\r\n1,670102,Ѱλμ,34512,84701,1024,17,34,18,-10,20,-9,9999,9.08,2017/12/42017-12-10,70914,2008632,2211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/4,32:07.4\r\n2,644856,2,10456,10460,360,3,29,16,0,0,0,0,0,2017/12/42017-12-10,70914,2008632,2211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/4,32:07.5\r\n3,663013,޶,3768,3774,127,3,30,11,0,0,0,0,0,2017/12/42017-12-10,70914,2008632,2211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/4,32:07.5\r\n4,349187,,3050,68531,86,24,35,5,-69,-49,-69,-2,7.12,2017/12/42017-12-10,70914,2008632,2211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/4,32:07.5\r\n5,670000,ߡǿ֮,2874,2877,91,3,31,15,0,0,0,0,0,2017/12/42017-12-10,70914,2008632,2211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/4,32:07.5\r\n6,666290,躣,2737,2777,97,3,28,9,0,0,0,0,0,2017/12/42017-12-10,70914,2008632,2211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/4,32:07.5\r\n7,659453,,2424,2483,71,-4,34,40,0,0,0,0,0,2017/12/42017-12-10,70914,2008632,2211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/4,32:07.6\r\n8,669804,,2288,5211,78,10,29,7,-22,60,-22,-4,7.54,2017/12/42017-12-10,70914,2008632,2211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/4,32:07.6\r\n9,670585,ʱ,1685,3094,51,10,33,8,20,92,20,-1,8.39,2017/12/42017-12-10,70914,2008632,2211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/4,32:07.6\r\n10,618517,Ŷݼ,1332,1333,42,-3,31,48,0,0,0,0,0,2017/12/42017-12-10,70914,2008632,2211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/12/4,32:07.6\r\n1,670102,Ѱλμ,38327,50189,1126,10,34,24,223,252,224,1,9.06,2017/11/272017-12-03,73399,1995090,2224,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/27,32:09.0\r\n2,349187,,9884,65481,278,17,36,9,-53,-46,-53,-1,7.12,2017/11/272017-12-03,73399,1995090,2224,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/27,32:09.0\r\n3,668943,̻,7089,7089,252,3,28,12,0,0,0,0,0,2017/11/272017-12-03,73399,1995090,2224,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/27,32:09.0\r\n4,669804,,2917,2923,101,3,29,14,0,0,0,0,0,2017/11/272017-12-03,73399,1995090,2224,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/27,32:09.1\r\n5,637776,׷,2851,10273,87,10,33,4,-62,-6,-62,-2,6.26,2017/11/272017-12-03,73399,1995090,2224,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/27,32:09.1\r\n6,643292,,1623,4857,55,10,29,4,-50,4,-50,-2,7.17,2017/11/272017-12-03,73399,1995090,2224,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/27,32:09.1\r\n7,631100,Ӱ֮ҪҸ,1425,1425,46,3,31,6,0,0,0,0,0,2017/11/272017-12-03,73399,1995090,2224,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/27,32:09.1\r\n8,670585,ʱ,1408,1408,42,3,33,12,0,0,0,0,0,2017/11/272017-12-03,73399,1995090,2224,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/27,32:09.1\r\n9,659798,ά֮ս,1160,1162,40,3,29,6,0,0,0,0,0,2017/11/272017-12-03,73399,1995090,2224,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/27,32:09.2\r\n10,669767,껪,839,2126,26,10,32,4,-34,110,-34,-2,8.53,2017/11/272017-12-03,73399,1995090,2224,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/27,32:09.2\r\n1,349187,,21092,55597,597,10,35,10,-39,64,-38,9999,7.13,2017/11/202017-11-26,60197,1936726,1787,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/20,32:10.2\r\n2,670102,Ѱλμ,11862,11862,348,3,34,26,0,0,0,0,0,2017/11/202017-11-26,60197,1936726,1787,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/20,32:10.2\r\n3,637776,׷,7419,7423,229,3,32,10,0,0,0,0,0,2017/11/202017-11-26,60197,1936726,1787,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/20,32:10.2\r\n4,643292,,3230,3234,112,3,29,9,0,0,0,0,0,2017/11/202017-11-26,60197,1936726,1787,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/20,32:10.3\r\n5,666423,ħ,2835,8569,83,10,34,4,-51,23,-52,-1,8.09,2017/11/202017-11-26,60197,1936726,1787,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/20,32:10.3\r\n6,659759,쳵ıɱ,2113,22172,64,17,33,9,-71,-74,-73,-3,7.22,2017/11/202017-11-26,60197,1936726,1787,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/20,32:10.3\r\n7,644134,3ƻ,2073,73626,60,24,35,7,-74,-72,-74,-5,8.06,2017/11/202017-11-26,60197,1936726,1787,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/20,32:10.3\r\n8,669767,껪,1265,1287,39,3,33,14,0,0,0,0,0,2017/11/202017-11-26,60197,1936726,1787,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/20,32:10.3\r\n9,670581,Ӣ۱ɫ,1141,3166,36,10,32,5,-44,20,-44,-2,8.89,2017/11/202017-11-26,60197,1936726,1787,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/20,32:10.4\r\n10,618581,ʮ,914,8256,28,24,33,8,-65,-55,-65,-5,7.87,2017/11/202017-11-26,60197,1936726,1787,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/20,32:10.4\r\n1,349187,,34505,34505,970,3,36,27,0,0,0,0,0,2017/11/132017-11-19,72881,1918187,2135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/13,32:11.4\r\n2,644134,3ƻ,8102,71553,233,17,35,8,-70,-51,-70,-1,8.09,2017/11/132017-11-19,72881,1918187,2135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/13,32:11.5\r\n3,659759,쳵ıɱ,7362,20059,235,10,31,8,-42,39,-43,-1,7.24,2017/11/132017-11-19,72881,1918187,2135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/13,32:11.5\r\n4,666423,ħ,5733,5733,172,3,33,11,0,0,0,0,0,2017/11/132017-11-19,72881,1918187,2135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/13,32:11.5\r\n5,618581,ʮ,2587,7342,79,17,33,10,-28,1,-27,9999,7.89,2017/11/132017-11-19,72881,1918187,2135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/13,32:11.5\r\n6,641712,,2123,6700,60,10,35,4,-54,-3,-54,-3,7.02,2017/11/132017-11-19,72881,1918187,2135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/13,32:11.5\r\n7,670581,Ӣ۱ɫ,2025,2025,64,3,32,10,0,0,0,0,0,2017/11/132017-11-19,72881,1918187,2135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/13,32:11.5\r\n8,669160,ѩ,2005,2005,64,3,32,8,0,0,0,0,0,2017/11/132017-11-19,72881,1918187,2135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/13,32:11.6\r\n9,659053,Ϯʿ,1315,1319,45,3,29,9,0,0,0,0,0,2017/11/132017-11-19,72881,1918187,2135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/13,32:11.6\r\n10,594269,𷼷,1088,2380,24,10,46,4,-16,-16,-44,1,6.92,2017/11/132017-11-19,72881,1918187,2135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/13,32:11.6\r\n1,644134,3ƻ,27216,63450,767,10,35,13,-25,69,-25,9999,8.14,2017/11/62017-11-12,68185,1884671,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/6,32:12.4\r\n2,659759,쳵ıɱ,12697,12697,411,3,31,20,0,0,0,0,0,2017/11/62017-11-12,68185,1884671,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/6,32:12.4\r\n3,641712,,4578,4578,132,3,35,8,0,0,0,0,0,2017/11/62017-11-12,68185,1884671,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/6,32:12.5\r\n4,657860,ȫ籩,4022,42253,119,17,34,7,-74,-65,-74,-2,6.45,2017/11/62017-11-12,68185,1884671,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/6,32:12.5\r\n5,618581,ʮ,3589,4755,109,10,33,14,215,130,211,6,8,2017/11/62017-11-12,68185,1884671,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/6,32:12.5\r\n6,669515,ս,2662,7643,86,10,31,5,-47,14,-47,-3,7.84,2017/11/62017-11-12,68185,1884671,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/6,32:12.5\r\n7,661004,ߵȭ,1765,218746,54,44,33,7,-59,-53,-59,-2,7.92,2017/11/62017-11-12,68185,1884671,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/6,32:12.5\r\n8,658422,鱦Σɵ,1544,1544,54,2,28,10,0,0,0,0,0,2017/11/62017-11-12,68185,1884671,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/6,32:12.6\r\n9,640112,,1490,1493,47,3,31,9,0,0,0,0,0,2017/11/62017-11-12,68185,1884671,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/6,32:12.6\r\n10,669716,ʮ˶,1416,10596,37,31,39,56,3,-44,-2,-2,8.35,2017/11/62017-11-12,68185,1884671,2031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/11/6,32:12.6\r\n1,644134,3ƻ,36234,36234,1016,3,36,28,0,0,0,0,0,2017/10/302017-11-05,78416,1831053,2276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/30,32:13.7\r\n2,657860,ȫ籩,15630,38232,454,10,34,10,-31,63,-30,-1,6.47,2017/10/302017-11-05,78416,1831053,2276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/30,32:13.7\r\n3,669515,ս,4978,4981,160,3,31,11,0,0,0,0,0,2017/10/302017-11-05,78416,1831053,2276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/30,32:13.7\r\n4,643849,ع2ƽȦ,4373,46350,125,17,35,7,-72,-62,-72,-2,7.6,2017/10/302017-11-05,78416,1831053,2276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/30,32:13.7\r\n5,661004,ߵȭ,4295,216981,130,37,33,8,-51,-43,-51,-2,7.92,2017/10/302017-11-05,78416,1831053,2276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/30,32:13.7\r\n6,657793,ɱ2049,2220,7287,62,10,36,5,-56,-10,-58,-2,8.08,2017/10/302017-11-05,78416,1831053,2276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/30,32:13.8\r\n7,662474,,1482,4462,48,10,31,5,-50,-7,-51,-1,7.19,2017/10/302017-11-05,78416,1831053,2276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/30,32:13.8\r\n8,669716,ʮ˶,1381,9180,37,24,37,32,-39,-82,-39,9999,8.35,2017/10/302017-11-05,78416,1831053,2276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/30,32:13.8\r\n9,667490,ǹ,1188,26749,38,24,31,7,-68,-60,-69,-4,8.39,2017/10/302017-11-05,78416,1831053,2276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/30,32:13.8\r\n10,660009,һֶ,1177,45033,37,38,32,8,-56,-48,-55,-3,7.8,2017/10/302017-11-05,78416,1831053,2276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/30,32:13.9\r\n1,657860,ȫ籩,22602,22602,648,3,35,23,0,0,0,0,0,2017/10/232017-10-29,69329,1826265,2038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/23,32:14.6\r\n2,643849,ع2ƽȦ,15506,41977,440,10,35,10,-41,42,-41,-1,7.6,2017/10/232017-10-29,69329,1826265,2038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/23,32:14.6\r\n3,661004,ߵȭ,8770,212687,265,30,33,9,-54,-38,-54,-1,7.92,2017/10/232017-10-29,69329,1826265,2038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/23,32:14.6\r\n4,657793,ɱ2049,5067,5067,146,3,35,10,0,0,0,0,0,2017/10/232017-10-29,69329,1826265,2038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/23,32:14.7\r\n5,667490,ǹ,3748,25561,122,17,31,9,-64,-54,-65,-2,8.39,2017/10/232017-10-29,69329,1826265,2038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/23,32:14.7\r\n6,662474,,2980,2980,100,3,30,9,0,0,0,0,0,2017/10/232017-10-29,69329,1826265,2038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/23,32:14.7\r\n7,660009,һֶ,2704,43855,82,31,33,9,-53,-39,-53,-3,7.8,2017/10/232017-10-29,69329,1826265,2038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/23,32:14.7\r\n8,669716,ʮ˶,2256,7799,61,17,37,9,4,-20,5,9999,8.44,2017/10/232017-10-29,69329,1826265,2038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/23,32:14.8\r\n9,658278,׷,1571,56882,51,30,31,8,-67,-55,-66,-4,7.88,2017/10/232017-10-29,69329,1826265,2038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/23,32:14.8\r\n10,667847,ҵİְɭ֮,1183,4240,43,16,28,10,-20,-21,-19,-1,7.8,2017/10/232017-10-29,69329,1826265,2038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/23,32:14.8\r\n1,643849,ع2ƽȦ,26452,26470,745,3,36,24,0,0,0,0,0,2017/10/162017-10-22,78750,1866658,2325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/16,32:15.5\r\n2,661004,ߵȭ,19112,203917,571,23,33,13,-49,-27,-49,-1,7.92,2017/10/162017-10-22,78750,1866658,2325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/16,32:15.5\r\n3,667490,ǹ,10444,21813,345,10,30,11,-8,48,-9,-1,8.32,2017/10/162017-10-22,78750,1866658,2325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/16,32:15.5\r\n4,660009,һֶ,5785,41152,173,24,33,12,-39,-26,-39,9999,7.75,2017/10/162017-10-22,78750,1866658,2325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/16,32:15.5\r\n5,658278,׷,4828,55310,149,23,32,10,-54,-41,-54,-2,7.9,2017/10/162017-10-22,78750,1866658,2325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/16,32:15.6\r\n6,652615,,2467,31534,55,24,45,20,-35,-75,-46,9999,7.3,2017/10/162017-10-22,78750,1866658,2325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/16,32:15.6\r\n7,661432,Ӣ׶Ծ,2440,53076,63,23,39,9,-59,-64,-60,-2,7.46,2017/10/162017-10-22,78750,1866658,2325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/16,32:15.6\r\n8,669716,ʮ˶,2168,5543,58,10,37,7,-36,62,-33,-1,8.08,2017/10/162017-10-22,78750,1866658,2325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/16,32:15.6\r\n9,667847,ҵİְɭ֮,1476,3056,53,9,28,10,-7,63,-6,-1,7.76,2017/10/162017-10-22,78750,1866658,2325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/16,32:15.6\r\n10,666112,ʱȥĶ,402,438,11,4,37,5,0,0,0,0,0,2017/10/162017-10-22,78750,1866658,2325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/16,32:15.7\r\n1,661004,ߵȭ,37720,184805,1120,16,34,18,-67,-17,-68,9999,8.11,2017/10/92017-10-15,88370,1907199,2655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/9,32:16.3\r\n2,667490,ǹ,11368,11369,379,3,30,18,0,0,0,0,0,2017/10/92017-10-15,88370,1907199,2655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/9,32:16.3\r\n3,658278,׷,10538,50482,325,16,32,13,-65,-22,-65,-1,7.82,2017/10/92017-10-15,88370,1907199,2655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/9,32:16.3\r\n4,660009,һֶ,9485,35367,284,17,33,14,-47,-2,-48,9999,7.72,2017/10/92017-10-15,88370,1907199,2655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/9,32:16.3\r\n5,661432,Ӣ׶Ծ,5962,50636,157,16,38,8,-80,-44,-80,-2,7.46,2017/10/92017-10-15,88370,1907199,2655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/9,32:16.4\r\n6,652615,,3781,29067,101,17,37,9,-77,-46,-78,-1,6.84,2017/10/92017-10-15,88370,1907199,2655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/9,32:16.4\r\n7,669716,ʮ˶,3375,3375,87,3,39,17,0,0,0,0,0,2017/10/92017-10-15,88370,1907199,2655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/9,32:16.4\r\n8,667847,ҵİְɭ֮,1580,1580,57,2,28,18,0,0,0,0,0,2017/10/92017-10-15,88370,1907199,2655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/9,32:16.4\r\n9,656012,,1032,1032,34,3,30,5,0,0,0,0,0,2017/10/92017-10-15,88370,1907199,2655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/9,32:16.4\r\n10,644632,ص,763,763,27,3,28,6,0,0,0,0,0,2017/10/92017-10-15,88370,1907199,2655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/9,32:16.5\r\n1,661004,ߵȭ,116047,147084,3457,9,34,46,274,302,265,9999,8.17,2017/10/22017-10-08,225648,2133538,6613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/2,32:17.1\r\n2,658278,׷,30438,39944,921,9,33,29,220,253,211,1,7.66,2017/10/22017-10-08,225648,2133538,6613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/2,32:17.1\r\n3,661432,Ӣ׶Ծ,29967,44675,788,9,38,24,104,134,96,-1,7.52,2017/10/22017-10-08,225648,2133538,6613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/2,32:17.1\r\n4,660009,һֶ,17999,25882,545,10,33,27,139,35,130,1,7.71,2017/10/22017-10-08,225648,2133538,6613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/2,32:17.2\r\n5,652615,,16591,25286,465,10,36,22,92,63,74,-1,6.77,2017/10/22017-10-08,225648,2133538,6613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/2,32:17.2\r\n6,617390,֮ټ,2952,3899,94,8,31,13,214,555,221,5,5.55,2017/10/22017-10-08,225648,2133538,6613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/2,32:17.2\r\n7,618949,ת,2866,4403,89,8,32,13,258,483,250,5,7.98,2017/10/22017-10-08,225648,2133538,6613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/2,32:17.2\r\n8,665947,Ŀ,2343,16367,67,24,35,27,-32,-82,-39,9999,8.76,2017/10/22017-10-08,225648,2133538,6613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/2,32:17.2\r\n9,659452,3ռ֮ս,1982,73743,54,24,37,22,-68,-92,-69,-3,7.7,2017/10/22017-10-08,225648,2133538,6613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/2,32:17.3\r\n10,641515,ս2,1030,567437,29,74,36,20,66,-61,59,3,8.51,2017/10/22017-10-08,225648,2133538,6613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/10/2,32:17.3\r\n1,661004,ߵȭ,31023,31037,946,2,33,50,0,0,0,0,0,2017/9/252017-10-01,92513,1864897,2795,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/25,32:18.1\r\n2,661432,Ӣ׶Ծ,14688,14708,403,2,36,28,0,0,0,0,0,2017/9/252017-10-01,92513,1864897,2795,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/25,32:18.1\r\n3,658278,׷,9500,9506,296,2,32,33,0,0,0,0,0,2017/9/252017-10-01,92513,1864897,2795,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/25,32:18.2\r\n4,652615,,8654,8695,268,3,32,21,0,0,0,0,0,2017/9/252017-10-01,92513,1864897,2795,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/25,32:18.2\r\n5,660009,һֶ,7529,7882,237,3,32,16,0,0,0,0,0,2017/9/252017-10-01,92513,1864897,2795,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/25,32:18.2\r\n6,659452,3ռ֮ս,6150,71761,174,17,35,5,-76,-49,-76,-5,7.75,2017/9/252017-10-01,92513,1864897,2795,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/25,32:18.2\r\n7,668639,Ʊ,4641,13666,155,10,30,5,-49,32,-49,-5,7.39,2017/9/252017-10-01,92513,1864897,2795,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/25,32:18.2\r\n8,665947,Ŀ,3432,14024,108,17,32,8,-53,-22,-54,-5,8.79,2017/9/252017-10-01,92513,1864897,2795,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/25,32:18.2\r\n9,657831,֩Ӣ۹,1386,76930,40,24,35,3,-79,-52,-79,-5,7.84,2017/9/252017-10-01,92513,1864897,2795,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/25,32:18.3\r\n10,661854,׷,1016,1019,29,2,35,8,0,0,0,0,0,2017/9/252017-10-01,92513,1864897,2795,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/25,32:18.3\r\n1,659452,3ռ֮ս,25319,65611,725,10,35,12,-37,78,-37,9999,7.75,2017/9/182017-09-24,57055,1731343,1723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/18,32:19.5\r\n2,668639,Ʊ,9023,9026,304,3,30,14,0,0,0,0,0,2017/9/182017-09-24,57055,1731343,1723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/18,32:19.6\r\n3,665947,Ŀ,7324,10591,234,10,31,13,125,198,120,1,8.73,2017/9/182017-09-24,57055,1731343,1723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/18,32:19.6\r\n4,657831,֩Ӣ۹,6713,75544,195,17,35,8,-70,-58,-70,-2,7.84,2017/9/182017-09-24,57055,1731343,1723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/18,32:19.6\r\n5,627375,Ĵ,1281,1514,32,612,40,119,459,494,457,10,,2017/9/182017-09-24,57055,1731343,1723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/18,32:19.6\r\n6,641515,ս2,1197,565788,36,60,34,6,-48,-51,-46,9999,8.51,2017/9/182017-09-24,57055,1731343,1723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/18,32:19.6\r\n7,644444,˹Ӱ֮˲ı,1112,1112,39,3,29,10,0,0,0,0,0,2017/9/182017-09-24,57055,1731343,1723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/18,32:19.6\r\n8,661362,֮,1086,5163,36,10,30,4,-73,19,-73,-5,7.73,2017/9/182017-09-24,57055,1731343,1723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/18,32:19.7\r\n9,654309,ؿ̶,503,33823,14,24,36,5,-80,-78,-81,-4,8.37,2017/9/182017-09-24,57055,1731343,1723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/18,32:19.7\r\n10,666713,,382,384,13,3,30,9,0,0,0,0,0,2017/9/182017-09-24,57055,1731343,1723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/18,32:19.7\r\n1,659452,3ռ֮ս,40293,40293,1156,3,35,33,0,0,0,0,0,2017/9/112017-09-17,81782,1732325,2386,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/11,32:20.9\r\n2,657831,֩Ӣ۹,22588,68831,642,10,35,10,-51,48,-51,-1,7.89,2017/9/112017-09-17,81782,1732325,2386,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/11,32:20.9\r\n3,661362,֮,4067,4077,136,3,30,16,0,0,0,0,0,2017/9/112017-09-17,81782,1732325,2386,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/11,32:21.0\r\n4,665947,Ŀ,3261,3267,106,3,31,18,0,0,0,0,0,2017/9/112017-09-17,81782,1732325,2386,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/11,32:21.0\r\n5,654309,ؿ̶,2499,33320,74,17,34,6,-77,-68,-77,-3,8.39,2017/9/112017-09-17,81782,1732325,2386,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/11,32:21.0\r\n6,641515,ս2,2289,564591,66,53,34,6,-59,-47,-58,-3,8.53,2017/9/112017-09-17,81782,1732325,2386,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/11,32:21.0\r\n7,642987,,1280,1677,32,556,40,120,0,0,0,0,,2017/9/112017-09-17,81782,1732325,2386,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/11,32:21.0\r\n8,656273,֮,1013,4325,35,10,29,3,-69,14,-70,-4,7.81,2017/9/112017-09-17,81782,1732325,2386,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/11,32:21.1\r\n9,644330,ʹʮ,614,614,23,3,26,5,0,0,0,0,0,2017/9/112017-09-17,81782,1732325,2386,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/11,32:21.1\r\n10,618949,ת,373,373,12,-13,32,12,0,0,0,0,0,2017/9/112017-09-17,81782,1732325,2386,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/11,32:21.1\r\n1,657831,֩Ӣ۹,46243,46243,1313,3,35,32,0,0,0,0,0,2017/9/42017-09-10,77796,1803196,2268,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/4,32:22.2\r\n2,654309,ؿ̶,11009,30821,326,10,34,8,-44,47,-43,-1,8.42,2017/9/42017-09-10,77796,1803196,2268,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/4,32:22.2\r\n3,641515,ս2,5564,562302,160,46,35,7,-68,-30,-68,9999,8.53,2017/9/42017-09-10,77796,1803196,2268,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/4,32:22.3\r\n4,656273,֮,3312,3312,114,3,29,13,0,0,0,0,0,2017/9/42017-09-10,77796,1803196,2268,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/4,32:22.3\r\n5,642197,Ǽعǧ֮,2351,40584,68,17,35,5,-88,-64,-87,-3,7.5,2017/9/42017-09-10,77796,1803196,2268,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/4,32:22.3\r\n6,664926,,1812,7910,58,10,31,4,-70,2,-71,-1,7.4,2017/9/42017-09-10,77796,1803196,2268,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/4,32:22.3\r\n7,644896,ɱǡ̰,1424,51796,44,25,32,6,-77,-49,-77,-3,7.69,2017/9/42017-09-10,77796,1803196,2268,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/4,32:22.3\r\n8,661850,ڰԹ,928,3239,31,10,30,4,-60,-11,-61,9999,6.92,2017/9/42017-09-10,77796,1803196,2268,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/4,32:22.3\r\n9,642781,,780,30092,20,31,39,20,-29,-42,-33,2,7.23,2017/9/42017-09-10,77796,1803196,2268,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/4,32:22.4\r\n10,659752,ܶԱ3ս,736,13445,22,17,33,4,-87,-69,-87,-4,7.58,2017/9/42017-09-10,77796,1803196,2268,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/9/4,32:22.4\r\n1,654309,ؿ̶,19812,19812,574,3,35,22,0,0,0,0,0,2017/8/282017-09-03,89893,1877508,2678,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/28,32:23.2\r\n2,642197,Ǽعǧ֮,18869,38233,540,10,35,15,-2,50,-1,9999,7.51,2017/8/282017-09-03,89893,1877508,2678,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/28,32:23.2\r\n3,641515,ս2,17193,556738,494,39,35,16,-34,-27,-33,-2,8.53,2017/8/282017-09-03,89893,1877508,2678,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/28,32:23.2\r\n4,644896,ɱǡ̰,6294,50372,196,18,32,14,-61,-60,-61,-1,7.71,2017/8/282017-09-03,89893,1877508,2678,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/28,32:23.2\r\n5,664926,,6098,6098,200,3,30,13,0,0,0,0,0,2017/8/282017-09-03,89893,1877508,2678,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/28,32:23.2\r\n6,659752,ܶԱ3ս,5500,12709,165,10,33,10,-24,24,-24,-2,7.68,2017/8/282017-09-03,89893,1877508,2678,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/28,32:23.3\r\n7,661852,,4101,10584,135,10,30,9,-37,-11,-39,-2,7.59,2017/8/282017-09-03,89893,1877508,2678,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/28,32:23.3\r\n8,661850,ڰԹ,2309,2311,79,3,29,8,0,0,0,0,0,2017/8/282017-09-03,89893,1877508,2678,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/28,32:23.3\r\n9,666143,γ,2170,2171,66,4,33,12,0,0,0,0,0,2017/8/282017-09-03,89893,1877508,2678,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/28,32:23.3\r\n10,655319,ʮЦ2,1939,13010,62,17,31,12,-63,-62,-63,-4,7.85,2017/8/282017-09-03,89893,1877508,2678,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/28,32:23.3\r\n1,641515,ս2,26078,539545,740,32,35,17,-54,-31,-53,9999,8.53,2017/8/212017-08-27,97648,1936792,2917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/21,32:24.0\r\n2,642197,Ǽعǧ֮,19339,19364,548,3,35,23,0,0,0,0,0,2017/8/212017-08-27,97648,1936792,2917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/21,32:24.0\r\n3,644896,ɱǡ̰,16127,44078,503,11,32,15,-42,16,-42,-1,7.71,2017/8/212017-08-27,97648,1936792,2917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/21,32:24.0\r\n4,659752,ܶԱ3ս,7209,7209,218,3,33,16,0,0,0,0,0,2017/8/212017-08-27,97648,1936792,2917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/21,32:24.1\r\n5,661852,,6477,6483,222,3,29,12,0,0,0,0,0,2017/8/212017-08-27,97648,1936792,2917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/21,32:24.1\r\n6,655319,ʮЦ2,5260,11070,167,10,31,12,-6,52,-5,9999,7.88,2017/8/212017-08-27,97648,1936792,2917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/21,32:24.1\r\n7,642681,ʮ,3837,16330,127,14,30,11,-69,-24,-69,-4,8.77,2017/8/212017-08-27,97648,1936792,2917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/21,32:24.1\r\n8,658090,ŴӰ6ʥ޵,3068,9376,97,10,32,10,-39,39,-37,-1,7.41,2017/8/212017-08-27,97648,1936792,2917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/21,32:24.2\r\n9,642781,,2703,28215,76,17,35,13,-70,-70,-72,-5,7.26,2017/8/212017-08-27,97648,1936792,2917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/21,32:24.2\r\n10,652849,ơ,1830,6326,54,11,34,8,-58,-48,-60,-2,7.52,2017/8/212017-08-27,97648,1936792,2917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/21,32:24.2\r\n1,641515,ս2,56442,513468,1581,25,36,26,-60,-35,-60,9999,8.53,2017/8/142017-08-20,138470,1970763,4124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/14,32:24.7\r\n2,644896,ɱǡ̰,27948,27951,859,4,33,29,0,0,0,0,0,2017/8/142017-08-20,138470,1970763,4124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/14,32:24.7\r\n3,642681,ʮ,12422,12493,409,7,30,26,0,0,0,18,8.99,2017/8/142017-08-20,138470,1970763,4124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/14,32:24.7\r\n4,642781,,9010,25512,272,10,33,14,-45,9,-46,-2,7.3,2017/8/142017-08-20,138470,1970763,4124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/14,32:24.8\r\n5,655595,,7730,22690,250,10,31,15,-48,5,-49,-2,6.55,2017/8/142017-08-20,138470,1970763,4124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/14,32:24.8\r\n6,655319,ʮЦ2,5582,5810,177,3,32,20,0,0,0,0,0,2017/8/142017-08-20,138470,1970763,4124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/14,32:24.8\r\n7,658090,ŴӰ6ʥ޵,5007,6308,153,3,33,21,0,0,0,0,0,2017/8/142017-08-20,138470,1970763,4124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/14,32:24.8\r\n8,652849,ơ,4404,4496,135,4,33,10,0,0,0,0,0,2017/8/142017-08-20,138470,1970763,4124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/14,32:24.8\r\n9,628130,鴫,2728,11109,79,10,35,9,-67,-32,-67,-4,6.38,2017/8/142017-08-20,138470,1970763,4124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/14,32:24.9\r\n10,641537,һ,2030,3142,60,10,34,19,92,189,97,-1,8.83,2017/8/142017-08-20,138470,1970763,4124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/14,32:24.9\r\n1,641515,ս2,140226,457025,3928,18,36,41,-35,-3,-35,9999,8.55,2017/8/72017-08-13,201738,1916254,5796,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/7,32:25.8\r\n2,642781,,16371,16501,507,3,32,28,0,0,0,0,0,2017/8/72017-08-13,201738,1916254,5796,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/7,32:25.8\r\n3,655595,,14959,14960,488,3,31,30,0,0,0,0,0,2017/8/72017-08-13,201738,1916254,5796,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/7,32:25.8\r\n4,629924,ʮһ,9271,52107,260,11,36,11,-78,-36,-79,-2,6.59,2017/8/72017-08-13,201738,1916254,5796,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/7,32:25.8\r\n5,628130,鴫,8347,8381,239,3,35,18,0,0,0,0,0,2017/8/72017-08-13,201738,1916254,5796,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/7,32:25.8\r\n6,642415,ҵ,4113,37406,127,18,32,16,-68,-67,-68,-3,8.42,2017/8/72017-08-13,201738,1916254,5796,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/7,32:25.9\r\n7,654333,֮ս,1799,2862,47,10,39,33,69,43,56,9999,8.2,2017/8/72017-08-13,201738,1916254,5796,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/7,32:25.9\r\n8,644666,͵̰3,1236,102923,39,38,32,14,-55,-54,-53,-4,7.71,2017/8/72017-08-13,201738,1916254,5796,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/7,32:25.9\r\n9,641537,һ,1060,1112,30,3,35,28,0,0,0,0,0,2017/8/72017-08-13,201738,1916254,5796,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/7,32:25.9\r\n10,658090,ŴӰ6ʥ޵,793,1301,24,-4,33,20,0,0,0,0,0,2017/8/72017-08-13,201738,1916254,5796,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/8/7,32:26.0\r\n1,641515,ս2,217108,316800,6069,11,36,62,118,136,116,9999,8.43,2017/7/312017-08-06,284108,1892952,8031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/31,32:26.5\r\n2,629924,ʮһ,42836,42836,1222,4,35,34,0,0,0,0,0,2017/7/312017-08-06,284108,1892952,8031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/31,32:26.5\r\n3,642415,ҵ,12990,33293,400,11,32,16,-36,-26,-35,-1,8.49,2017/7/312017-08-06,284108,1892952,8031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/31,32:26.5\r\n4,644666,͵̰3,2717,101687,83,31,33,14,-57,-65,-57,9999,7.71,2017/7/312017-08-06,284108,1892952,8031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/31,32:26.5\r\n5,629490,ͼͼ֮ʳ,1335,3480,43,10,31,9,-23,41,-26,3,7.25,2017/7/312017-08-06,284108,1892952,8031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/31,32:26.6\r\n6,640824,ż,1179,1254,39,3,30,16,0,0,0,0,0,2017/7/312017-08-06,284108,1892952,8031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/31,32:26.6\r\n7,654333,֮ս,1062,1062,30,3,36,30,0,0,0,0,0,2017/7/312017-08-06,284108,1892952,8031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/31,32:26.6\r\n8,640808,崺ս,762,26401,23,19,33,8,-90,-89,-90,-5,7.89,2017/7/312017-08-06,284108,1892952,8031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/31,32:26.6\r\n9,654136,Ů,654,6149,20,18,33,13,-70,-77,-71,-2,8,2017/7/312017-08-06,284108,1892952,8031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/31,32:26.7\r\n10,627917,,565,578,18,3,32,11,0,0,0,0,0,2017/7/312017-08-06,284108,1892952,8031,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/31,32:26.7\r\n1,641515,ս2,99672,99692,2807,4,36,68,0,0,0,0,0,2017/7/242017-07-30,153095,1883093,4430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/24,32:27.3\r\n2,642415,ҵ,20299,20303,618,4,33,18,0,0,0,0,0,2017/7/242017-07-30,153095,1883093,4430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/24,32:27.3\r\n3,640808,崺ս,7653,25639,242,12,32,9,-57,-27,-58,-1,7.95,2017/7/242017-07-30,153095,1883093,4430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/24,32:27.3\r\n4,644666,͵̰3,6386,98971,193,24,33,11,-56,-45,-55,-1,7.71,2017/7/242017-07-30,153095,1883093,4430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/24,32:27.4\r\n5,629524,մ,5892,69137,166,18,36,8,-74,-57,-74,-4,6.42,2017/7/242017-07-30,153095,1883093,4430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/24,32:27.4\r\n6,657204,۱,3836,12288,111,10,34,7,-51,-5,-51,-2,6.61,2017/7/242017-07-30,153095,1883093,4430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/24,32:27.4\r\n7,654136,Ů,2171,5495,67,11,32,10,-15,-23,-16,-1,7.93,2017/7/242017-07-30,153095,1883093,4430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/24,32:27.4\r\n8,629490,ͼͼ֮ʳ,1740,2145,58,3,30,17,0,0,0,0,0,2017/7/242017-07-30,153095,1883093,4430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/24,32:27.4\r\n9,639117,,1230,1230,40,3,31,10,0,0,0,0,0,2017/7/242017-07-30,153095,1883093,4430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/24,32:27.5\r\n10,641954,󻤷,1120,8583,30,18,37,8,-73,-60,-73,-5,7.99,2017/7/242017-07-30,153095,1883093,4430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/24,32:27.5\r\n1,629524,մ,23037,63245,639,11,36,14,-43,10,-43,9999,6.48,2017/7/172017-07-23,80066,1920174,2391,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/17,32:28.1\r\n2,640808,崺ս,17639,17985,571,5,31,16,0,0,0,0,0,2017/7/172017-07-23,80066,1920174,2391,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/17,32:28.1\r\n3,644666,͵̰3,14464,92584,431,17,34,14,-57,-45,-56,-1,7.71,2017/7/172017-07-23,80066,1920174,2391,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/17,32:28.2\r\n4,657204,۱,7823,8452,227,3,34,13,0,0,0,0,0,2017/7/172017-07-23,80066,1920174,2391,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/17,32:28.2\r\n5,641954,󻤷,4128,7463,113,11,36,11,24,-2,19,9999,8.07,2017/7/172017-07-23,80066,1920174,2391,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/17,32:28.2\r\n6,654136,Ů,2545,3325,80,4,32,9,0,0,0,0,0,2017/7/172017-07-23,80066,1920174,2391,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/17,32:28.2\r\n7,644456,,1903,1942,64,3,30,10,0,0,0,0,0,2017/7/172017-07-23,80066,1920174,2391,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/17,32:28.2\r\n8,643813,,1213,4355,40,10,31,6,-61,-25,-62,-2,7.54,2017/7/172017-07-23,80066,1920174,2391,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/17,32:28.3\r\n9,630017,812,1207,21519,37,18,33,7,-80,-75,-79,-6,5.65,2017/7/172017-07-23,80066,1920174,2391,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/17,32:28.3\r\n10,658695,ҹʳ2,1142,1142,37,6,31,5,0,0,0,0,0,2017/7/172017-07-23,80066,1920174,2391,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/17,32:28.4\r\n1,629524,մ,40180,40208,1119,4,36,26,0,0,0,0,0,2017/7/102017-07-16,101880,1959823,2955,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/10,32:29.0\r\n2,644666,͵̰3,33488,78120,983,10,34,17,-25,70,-24,-1,7.71,2017/7/102017-07-16,101880,1959823,2955,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/10,32:29.0\r\n3,630017,812,6179,20312,177,11,35,9,-56,-5,-55,9999,5.63,2017/7/102017-07-16,101880,1959823,2955,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/10,32:29.0\r\n4,656946,ν5ʿ,3922,154146,113,24,35,10,-74,-70,-74,-2,6.2,2017/7/102017-07-16,101880,1959823,2955,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/10,32:29.1\r\n5,641954,󻤷,3317,3335,95,4,35,9,0,0,0,0,0,2017/7/102017-07-16,101880,1959823,2955,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/10,32:29.1\r\n6,643813,,3126,3142,103,3,30,11,0,0,0,0,0,2017/7/102017-07-16,101880,1959823,2955,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/10,32:29.1\r\n7,663007,и,2498,2608,84,5,30,7,0,0,0,0,0,2017/7/102017-07-16,101880,1959823,2955,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/10,32:29.1\r\n8,641878,,2498,9740,79,10,31,6,-63,-10,-64,-3,7.05,2017/7/102017-07-16,101880,1959823,2955,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/10,32:29.1\r\n9,661453,Ѫս潭,1108,4473,31,17,36,51,-43,-58,-44,9999,8.04,2017/7/102017-07-16,101880,1959823,2955,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/10,32:29.2\r\n10,642783,ʲ,927,9565,28,27,33,12,-63,-59,-63,-3,8.06,2017/7/102017-07-16,101880,1959823,2955,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/10,32:29.2\r\n1,644666,͵̰3,44415,44633,1286,3,35,38,0,0,0,0,0,2017/7/32017-07-09,103441,1848134,3021,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/3,32:30.1\r\n2,656946,ν5ʿ,15245,150224,429,17,36,11,-68,-50,-67,-1,6.2,2017/7/32017-07-09,103441,1848134,3021,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/3,32:30.1\r\n3,630017,812,14131,14133,397,4,36,19,0,0,0,0,0,2017/7/32017-07-09,103441,1848134,3021,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/3,32:30.1\r\n4,640505,ʱӪ,7251,19187,212,11,34,9,-39,25,-38,-2,6.74,2017/7/32017-07-09,103441,1848134,3021,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/3,32:30.1\r\n5,641878,,6699,7241,219,3,31,16,0,0,0,0,0,2017/7/32017-07-09,103441,1848134,3021,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/3,32:30.1\r\n6,642915,¼ʱ,2628,6005,72,9,37,6,-22,39,-31,9999,7.17,2017/7/32017-07-09,103441,1848134,3021,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/3,32:30.2\r\n7,642783,ʲ,2502,8637,76,20,33,13,-44,-18,-44,-3,7.98,2017/7/32017-07-09,103441,1848134,3021,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/3,32:30.2\r\n8,617733,ת,2136,6847,75,11,29,7,-54,1,-54,-5,6.68,2017/7/32017-07-09,103441,1848134,3021,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/3,32:30.2\r\n9,661453,Ѫս潭,1944,3365,56,10,35,38,38,26,42,-1,8.46,2017/7/32017-07-09,103441,1848134,3021,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/3,32:30.2\r\n10,666103,ԭ77,1760,7212,54,17,33,13,-56,-51,-58,-5,7.84,2017/7/32017-07-09,103441,1848134,3021,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/7/3,32:30.3\r\n1,656946,ν5ʿ,47790,134979,1307,10,37,17,-45,51,-44,9999,6.2,2017/6/262017-07-02,87391,1669414,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/26,32:31.1\r\n2,640505,ʱӪ,11924,11936,340,4,35,18,0,0,0,0,0,2017/6/262017-07-02,87391,1669414,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/26,32:31.1\r\n3,617733,ת,4682,4711,163,4,29,15,0,0,0,0,0,2017/6/262017-07-02,87391,1669414,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/26,32:31.1\r\n4,642783,ʲ,4431,6135,135,13,33,19,161,190,158,4,8.31,2017/6/262017-07-02,87391,1669414,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/26,32:31.1\r\n5,666103,ԭ77,3959,5451,128,10,31,15,165,222,153,4,8.44,2017/6/262017-07-02,87391,1669414,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/26,32:31.1\r\n6,642915,¼ʱ,3377,3377,103,2,33,13,0,0,0,0,0,2017/6/262017-07-02,87391,1669414,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/26,32:31.2\r\n7,657849,ΣԼ,2012,30639,64,17,32,9,-77,-81,-77,-5,7.45,2017/6/262017-07-02,87391,1669414,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/26,32:31.2\r\n8,661453,Ѫս潭,1405,1421,39,3,36,34,0,0,0,0,0,2017/6/262017-07-02,87391,1669414,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/26,32:31.2\r\n9,659327,ˤӰɣְ,1197,129704,42,59,28,13,-41,-57,-40,-4,9.13,2017/6/262017-07-02,87391,1669414,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/26,32:31.2\r\n10,659758,ľ,1088,62324,33,24,33,8,-79,-80,-79,-7,6.08,2017/6/262017-07-02,87391,1669414,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/26,32:31.2\r\n1,656946,ν5ʿ,87183,87189,2323,3,38,45,0,0,0,0,0,2017/6/192017-06-25,118941,1687292,3287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/19,32:32.1\r\n2,657849,ΣԼ,8609,28627,271,10,32,7,-57,21,-56,9999,7.4,2017/6/192017-06-25,118941,1687292,3287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/19,32:32.1\r\n3,659758,ľ,5205,61236,153,17,34,7,-74,-60,-73,-2,6,2017/6/192017-06-25,118941,1687292,3287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/19,32:32.1\r\n4,401891,Ů,3022,60224,86,24,35,8,-68,-54,-67,-1,7.92,2017/6/192017-06-25,118941,1687292,3287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/19,32:32.1\r\n5,659327,ˤӰɣְ,2044,128508,71,52,29,10,-52,-43,-51,9999,9.13,2017/6/192017-06-25,118941,1687292,3287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/19,32:32.2\r\n6,659751,ձȺ5޶֤,1989,117990,59,31,34,8,-64,-54,-63,-2,8.02,2017/6/192017-06-25,118941,1687292,3287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/19,32:32.2\r\n7,674884,ڶʮϺʵӰڹչӳ,1757,2307,28,,63,263,220,225,220,6,,2017/6/192017-06-25,118941,1687292,3287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/19,32:32.2\r\n8,642783,ʲ,1697,1704,52,6,32,22,0,0,0,0,0,2017/6/192017-06-25,118941,1687292,3287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/19,32:32.2\r\n9,666103,ԭ77,1492,1492,50,3,30,19,0,0,0,0,0,2017/6/192017-06-25,118941,1687292,3287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/19,32:32.2\r\n10,613847,طȺ,1083,2380,34,10,32,6,-10,30,-11,-3,8.43,2017/6/192017-06-25,118941,1687292,3287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/19,32:32.3\r\n1,659758,ľ,20061,56031,573,10,35,11,-44,58,-43,9999,5.99,2017/6/122017-06-18,68593,1755159,2061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/12,32:32.8\r\n2,657849,ΣԼ,19952,20019,623,3,32,21,0,0,0,0,0,2017/6/122017-06-18,68593,1755159,2061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/12,32:32.8\r\n3,401891,Ů,9301,57202,264,17,35,11,-56,-47,-55,-1,7.92,2017/6/122017-06-18,68593,1755159,2061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/12,32:32.9\r\n4,659751,ձȺ5޶֤,5468,116001,159,24,34,10,-54,-45,-54,-1,8.02,2017/6/122017-06-18,68593,1755159,2061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/12,32:32.9\r\n5,659327,ˤӰɣְ,4220,126464,143,45,29,11,-37,-33,-37,-1,9.13,2017/6/122017-06-18,68593,1755159,2061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/12,32:32.9\r\n6,656460,Ұ,1657,1915,60,10,28,11,544,868,552,4,8.83,2017/6/122017-06-18,68593,1755159,2061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/12,32:32.9\r\n7,613847,طȺ,1204,1297,38,3,31,9,0,0,0,0,0,2017/6/122017-06-18,68593,1755159,2061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/12,32:32.9\r\n8,611496,׺ͺ÷÷,916,4023,32,10,29,4,-71,-24,-70,-3,7.43,2017/6/122017-06-18,68593,1755159,2061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/12,32:33.0\r\n9,665350,AΣ۵ϼð,900,14349,31,20,29,6,-53,-52,-53,-3,7.48,2017/6/122017-06-18,68593,1755159,2061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/12,32:33.0\r\n10,625947,йԱ,728,737,23,3,31,5,0,0,0,0,0,2017/6/122017-06-18,68593,1755159,2061,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/12,32:33.0\r\n1,659758,ľ,35970,35970,1012,3,36,31,0,0,0,0,0,2017/6/52017-06-11,84906,1685951,2469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/5,32:34.0\r\n2,401891,Ů,21279,47901,591,10,36,14,-20,68,-18,9999,7.94,2017/6/52017-06-11,84906,1685951,2469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/5,32:34.0\r\n3,659751,ձȺ5޶֤,11948,110533,344,17,35,11,-77,-47,-76,-2,8.02,2017/6/52017-06-11,84906,1685951,2469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/5,32:34.0\r\n4,659327,ˤӰɣְ,6717,122243,229,38,29,12,-68,-26,-68,-1,9.13,2017/6/52017-06-11,84906,1685951,2469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/5,32:34.0\r\n5,611496,׺ͺ÷÷,3107,3107,107,3,29,11,0,0,0,0,0,2017/6/52017-06-11,84906,1685951,2469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/5,32:34.0\r\n6,665350,AΣ۵ϼð,1934,13449,66,13,29,7,-83,-51,-83,-2,7.43,2017/6/52017-06-11,84906,1685951,2469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/5,32:34.1\r\n7,643425,ܷ,661,6300,18,16,38,10,-76,-76,-79,-2,7.13,2017/6/52017-06-11,84906,1685951,2469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/5,32:34.1\r\n8,644326,õ,576,1673,18,10,32,4,-47,11,-49,9999,7.57,2017/6/52017-06-11,84906,1685951,2469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/5,32:34.1\r\n9,630178,ܰɣֵ,298,43781,8,864,37,116,0,23233,0,200,,2017/6/52017-06-11,84906,1685951,2469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/5,32:34.1\r\n10,656460,Ұ,257,258,9,3,28,16,0,0,0,0,0,2017/6/52017-06-11,84906,1685951,2469,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/6/5,32:34.1\r\n1,659751,ձȺ5޶֤,51706,98586,1438,10,36,25,10,52,11,9999,8.02,2017/5/292017-06-04,123578,1729701,3665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/29,32:34.8\r\n2,401891,Ů,26622,26622,719,3,37,28,0,0,0,0,0,2017/5/292017-06-04,123578,1729701,3665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/29,32:34.8\r\n3,659327,ˤӰɣְ,20989,115527,709,31,30,27,30,-30,32,-1,9.13,2017/5/292017-06-04,123578,1729701,3665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/29,32:34.8\r\n4,665350,AΣ۵ϼð,11514,11514,396,6,29,19,0,0,0,0,0,2017/5/292017-06-04,123578,1729701,3665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/29,32:34.8\r\n5,643425,ܷ,2766,5638,85,9,33,11,-4,33,-5,-1,7.74,2017/5/292017-06-04,123578,1729701,3665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/29,32:34.8\r\n6,664833,ֻС2,1286,2244,43,9,30,11,155,110,154,3,7.36,2017/5/292017-06-04,123578,1729701,3665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/29,32:34.9\r\n7,630645,Գԡİ,1158,2634,35,9,33,8,-21,1,-22,-1,8.3,2017/5/292017-06-04,123578,1729701,3665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/29,32:34.9\r\n8,644326,õ,1085,1098,36,3,30,8,0,0,0,0,0,2017/5/292017-06-04,123578,1729701,3665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/29,32:34.9\r\n9,662472,ҵİְǹ,1077,1370,33,9,32,16,268,80,264,6,7.66,2017/5/292017-06-04,123578,1729701,3665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/29,32:34.9\r\n10,638443,ǱͧܶԱ5ʱⱦ,835,4417,29,738,29,14,335,278,337,9,,2017/5/292017-06-04,123578,1729701,3665,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/29,32:35.0\r\n1,659751,ձȺ5޶֤,46880,46880,1295,3,36,34,0,0,0,0,0,2017/5/222017-05-28,79861,1675316,2347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/22,32:35.6\r\n2,659327,ˤӰɣְ,16112,94537,536,24,30,14,-55,-18,-55,-1,9.13,2017/5/222017-05-28,79861,1675316,2347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/22,32:35.6\r\n3,657817,Ǿ,3672,12774,117,10,32,5,-60,23,-60,9999,7.16,2017/5/222017-05-28,79861,1675316,2347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/22,32:35.6\r\n4,643425,ܷ,2872,2873,89,2,32,15,0,0,0,0,0,2017/5/222017-05-28,79861,1675316,2347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/22,32:35.6\r\n5,644133,ӻ2,2636,68184,71,24,37,6,-73,-47,-72,-3,8.37,2017/5/222017-05-28,79861,1675316,2347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/22,32:35.7\r\n6,630645,Գԡİ,1464,1476,45,2,32,10,0,0,0,0,0,2017/5/222017-05-28,79861,1675316,2347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/22,32:35.7\r\n7,631379,ʱԱ,708,710,24,2,30,7,0,0,0,0,0,2017/5/222017-05-28,79861,1675316,2347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/22,32:35.7\r\n8,640099,19Ф,543,557,19,2,28,7,0,0,0,0,0,2017/5/222017-05-28,79861,1675316,2347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/22,32:35.7\r\n9,664833,ֻС2,504,958,17,2,30,9,0,0,0,0,0,2017/5/222017-05-28,79861,1675316,2347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/22,32:35.7\r\n10,659757,ٶ뼤8,497,266792,14,45,35,6,-59,-32,-58,-3,8.32,2017/5/222017-05-28,79861,1675316,2347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/22,32:35.8\r\n1,659327,ˤӰɣְ,36009,78426,1184,17,30,26,7,35,7,9999,9.13,2017/5/152017-05-21,69005,1666917,2167,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/15,32:36.4\r\n2,644133,ӻ2,9683,65547,253,17,38,12,-55,-50,-56,9999,8.37,2017/5/152017-05-21,69005,1666917,2167,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/15,32:36.4\r\n3,657817,Ǿ,9102,9102,289,3,32,16,0,0,0,0,0,2017/5/152017-05-21,69005,1666917,2167,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/15,32:36.4\r\n4,657876,ɪ,1792,5479,49,10,36,4,-51,4,-53,-1,7.7,2017/5/152017-05-21,69005,1666917,2167,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/15,32:36.4\r\n5,643989,ػߣսԪ,1589,1589,50,3,32,6,0,0,0,0,0,2017/5/152017-05-21,69005,1666917,2167,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/15,32:36.4\r\n6,641280,,1321,1321,46,3,29,5,0,0,0,0,0,2017/5/152017-05-21,69005,1666917,2167,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/15,32:36.4\r\n7,659757,ٶ뼤8,1209,266295,34,38,35,10,-50,-58,-51,1,8.32,2017/5/152017-05-21,69005,1666917,2167,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/15,32:36.5\r\n8,639686,,1107,3958,35,10,32,4,-61,-7,-62,-3,6.83,2017/5/152017-05-21,69005,1666917,2167,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/15,32:36.5\r\n9,656607,,1087,1096,36,3,30,7,0,0,0,0,0,2017/5/152017-05-21,69005,1666917,2167,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/15,32:36.5\r\n10,642158,,752,752,24,3,31,6,0,0,0,0,0,2017/5/152017-05-21,69005,1666917,2167,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/15,32:36.5\r\n1,659327,ˤӰɣְ,33699,42417,1106,10,30,33,288,237,279,4,9.13,2017/5/82017-05-14,78208,1614156,2372,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/8,32:37.1\r\n2,644133,ӻ2,21584,55864,575,10,38,13,-37,38,-38,-1,8.5,2017/5/82017-05-14,78208,1614156,2372,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/8,32:37.1\r\n3,657876,ɪ,3686,3686,106,3,35,10,0,0,0,0,0,2017/5/82017-05-14,78208,1614156,2372,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/8,32:37.1\r\n4,660393,ר,2854,38559,88,17,32,8,-84,-65,-84,-2,7.83,2017/5/82017-05-14,78208,1614156,2372,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/8,32:37.1\r\n5,639686,,2851,2851,91,3,31,10,0,0,0,0,0,2017/5/82017-05-14,78208,1614156,2372,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/8,32:37.1\r\n6,658346,鷳,2716,2716,86,4,32,8,0,0,0,0,0,2017/5/82017-05-14,78208,1614156,2372,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/8,32:37.2\r\n7,661849,ս,2455,2455,76,3,32,7,0,0,0,0,0,2017/5/82017-05-14,78208,1614156,2372,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/8,32:37.2\r\n8,659757,ٶ뼤8,2426,265086,70,31,35,8,-82,-65,-81,-5,8.32,2017/5/82017-05-14,78208,1614156,2372,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/8,32:37.2\r\n9,644001,ʦ,1518,28899,42,17,36,7,-87,-76,-87,-5,7.76,2017/5/82017-05-14,78208,1614156,2372,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/8,32:37.2\r\n10,628157,ϲ,1037,20678,29,18,36,7,-86,-74,-86,-4,7.77,2017/5/82017-05-14,78208,1614156,2372,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/8,32:37.2\r\n1,644133,ӻ2,34281,34281,930,3,37,30,0,0,0,0,0,2017/5/12017-05-07,105357,1674301,3037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/1,32:38.1\r\n2,660393,ר,17540,35705,538,10,33,17,-3,76,-4,9999,8,2017/5/12017-05-07,105357,1674301,3037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/1,32:38.1\r\n3,659757,ٶ뼤8,13520,262660,377,24,36,16,-56,-56,-55,-2,8.38,2017/5/12017-05-07,105357,1674301,3037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/1,32:38.1\r\n4,644001,ʦ,11628,27382,326,10,36,13,-26,35,-27,-1,7.88,2017/5/12017-05-07,105357,1674301,3037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/1,32:38.1\r\n5,659327,ˤӰɣְ,8685,8718,292,3,30,29,0,0,0,0,0,2017/5/12017-05-07,105357,1674301,3037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/1,32:38.1\r\n6,628157,ϲ,7400,19641,209,11,35,12,-37,7,-39,-2,7.82,2017/5/12017-05-07,105357,1674301,3037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/1,32:38.1\r\n7,644667,־,6672,16381,183,10,37,13,-27,30,-29,-2,7.87,2017/5/12017-05-07,105357,1674301,3037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/1,32:38.2\r\n8,659760,飺Ѱش,3472,16024,106,17,33,14,-28,-51,-26,-2,8,2017/5/12017-05-07,105357,1674301,3037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/1,32:38.2\r\n9,638811,ƫ,810,12302,29,18,28,9,-82,-81,-81,-2,7.05,2017/5/12017-05-07,105357,1674301,3037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/1,32:38.2\r\n10,637401,Ǵ,478,1036,16,9,31,7,-15,69,-14,9999,7.64,2017/5/12017-05-07,105357,1674301,3037,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/5/1,32:38.2\r\n1,659757,ٶ뼤8,30514,249140,831,17,37,15,-63,-44,-63,9999,8.4,2017/4/242017-04-30,98603,1710043,2875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/24,32:39.4\r\n2,660393,ר,18164,18164,561,3,32,32,0,0,0,0,0,2017/4/242017-04-30,98603,1710043,2875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/24,32:39.4\r\n3,644001,ʦ,15752,15753,450,3,35,25,0,0,0,0,0,2017/4/242017-04-30,98603,1710043,2875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/24,32:39.4\r\n4,628157,ϲ,11796,12241,341,4,35,22,0,0,0,0,0,2017/4/242017-04-30,98603,1710043,2875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/24,32:39.4\r\n5,644667,־,9146,9709,258,3,35,24,0,0,0,0,0,2017/4/242017-04-30,98603,1710043,2875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/24,32:39.5\r\n6,659760,飺Ѱش,4792,12552,144,10,33,10,-38,13,-39,-4,7.85,2017/4/242017-04-30,98603,1710043,2875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/24,32:39.5\r\n7,638811,ƫ,4561,11492,153,11,30,9,-33,21,-33,-4,6.81,2017/4/242017-04-30,98603,1710043,2875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/24,32:39.5\r\n8,629871,֮ʥȢ,1157,18817,41,920,29,5,-79,-60,-80,-4,8.87,2017/4/242017-04-30,98603,1710043,2875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/24,32:39.5\r\n9,641928,ѪȮ,817,2102,32,10,26,8,-36,150,-18,-4,7.4,2017/4/242017-04-30,98603,1710043,2875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/24,32:39.5\r\n10,637401,Ǵ,559,559,18,2,31,15,0,0,0,0,0,2017/4/242017-04-30,98603,1710043,2875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/24,32:39.6\r\n1,659757,ٶ뼤8,83419,218626,2264,10,37,24,-38,78,-39,9999,8.35,2017/4/172017-04-23,109053,1640982,3095,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/17,32:40.3\r\n2,659760,飺Ѱش,7760,7760,235,3,33,18,0,0,0,0,0,2017/4/172017-04-23,109053,1640982,3095,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/17,32:40.3\r\n3,638811,ƫ,6779,6931,228,4,30,17,0,0,0,0,0,2017/4/172017-04-23,109053,1640982,3095,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/17,32:40.3\r\n4,629871,֮ʥȢ,5585,17661,199,913,28,10,-48,47,-50,-2,8.89,2017/4/172017-04-23,109053,1640982,3095,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/17,32:40.3\r\n5,641928,ѪȮ,1283,1285,39,3,33,25,0,0,0,0,0,2017/4/172017-04-23,109053,1640982,3095,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/17,32:40.3\r\n6,631024,ؼ,1128,1128,39,3,29,8,0,0,0,0,0,2017/4/172017-04-23,109053,1640982,3095,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/17,32:40.3\r\n7,644667,־,559,563,16,-4,36,19,0,0,0,0,0,2017/4/172017-04-23,109053,1640982,3095,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/17,32:40.4\r\n8,657877,գõ,531,116012,16,31,34,6,-87,-87,-87,-4,7.73,2017/4/172017-04-23,109053,1640982,3095,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/17,32:40.4\r\n9,628157,ϲ,440,445,12,-3,37,85,0,0,0,0,0,2017/4/172017-04-23,109053,1640982,3095,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/17,32:40.4\r\n10,657795,ǻ,435,20082,11,17,39,5,-91,-93,-91,-7,7.02,2017/4/172017-04-23,109053,1640982,3095,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/17,32:40.4\r\n1,659757,ٶ뼤8,135207,135207,3689,3,37,69,0,0,0,0,0,2017/4/102017-04-16,162659,1683350,4573,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/10,32:41.2\r\n2,629871,֮ʥȢ,10662,12075,395,906,27,30,4061464,13328000,3763521,55,0,2017/4/102017-04-16,162659,1683350,4573,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/10,32:41.2\r\n3,657795,ǻ,4789,19647,131,10,37,4,-68,6,-68,9999,6.99,2017/4/102017-04-16,162659,1683350,4573,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/10,32:41.2\r\n4,657877,գõ,4156,115481,122,24,34,6,-84,-49,-84,-3,7.73,2017/4/102017-04-16,162659,1683350,4573,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/10,32:41.2\r\n5,641155,X,3302,39834,97,17,34,6,-84,-54,-84,-3,7.75,2017/4/102017-04-16,162659,1683350,4573,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/10,32:41.2\r\n6,655350,Ƿ,1392,15559,40,17,35,5,-83,-59,-83,-2,7.66,2017/4/102017-04-16,162659,1683350,4573,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/10,32:41.3\r\n7,657339,,614,9533,18,17,35,3,-86,-66,-86,-2,7.06,2017/4/102017-04-16,162659,1683350,4573,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/10,32:41.3\r\n8,662059,һ,435,819,13,10,34,5,14,21,13,2,7.63,2017/4/102017-04-16,162659,1683350,4573,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/10,32:41.3\r\n9,658099,ŮҰ,405,59164,11,31,36,4,-87,-58,-88,-3,8.05,2017/4/102017-04-16,162659,1683350,4573,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/10,32:41.3\r\n10,658999,ѩս,323,4297,11,16,30,4,-88,-69,-88,-3,7.37,2017/4/102017-04-16,162659,1683350,4573,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/10,32:41.3\r\n1,657877,գõ,25880,111325,741,17,35,19,-26,-36,-25,9999,7.73,2017/4/32017-04-09,84046,1767467,2441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/3,32:41.9\r\n2,641155,X,20404,36533,604,10,34,16,27,84,26,9999,7.83,2017/4/32017-04-09,84046,1767467,2441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/3,32:41.9\r\n3,657795,ǻ,14858,14858,411,3,36,14,0,0,0,0,0,2017/4/32017-04-09,84046,1767467,2441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/3,32:41.9\r\n4,655350,Ƿ,8169,14167,234,10,35,11,39,90,40,-1,7.76,2017/4/32017-04-09,84046,1767467,2441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/3,32:41.9\r\n5,657339,,4429,8919,126,10,35,8,-1,18,-3,9999,7.06,2017/4/32017-04-09,84046,1767467,2441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/3,32:41.9\r\n6,658099,ŮҰ,3225,58760,91,24,35,15,-34,-67,-35,-2,8.05,2017/4/32017-04-09,84046,1767467,2441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/3,32:42.0\r\n7,658999,ѩս,2801,3974,90,9,31,10,139,144,139,2,7.77,2017/4/32017-04-09,84046,1767467,2441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/3,32:42.0\r\n8,653966,û,1979,3493,69,9,29,8,32,100,31,9999,7.79,2017/4/32017-04-09,84046,1767467,2441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/3,32:42.0\r\n9,660278,һʹ,770,60639,25,38,30,16,-51,-83,-52,-2,8.65,2017/4/32017-04-09,84046,1767467,2441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/3,32:42.0\r\n10,662059,һ,383,383,11,3,34,5,0,0,0,0,0,2017/4/32017-04-09,84046,1767467,2441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/4/3,32:42.1\r\n1,657877,գõ,35154,85445,989,10,36,16,-30,71,-31,9999,7.68,2017/3/272017-04-02,73649,1691267,2145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/27,32:42.8\r\n2,641155,X,16095,16129,480,3,34,23,0,0,0,0,0,2017/3/272017-04-02,73649,1691267,2145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/27,32:42.8\r\n3,655350,Ƿ,5874,5998,167,3,35,15,0,0,0,0,0,2017/3/272017-04-02,73649,1691267,2145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/27,32:42.9\r\n4,658099,ŮҰ,4871,55535,140,17,35,7,-75,-61,-75,-2,8.11,2017/3/272017-04-02,73649,1691267,2145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/27,32:42.9\r\n5,657339,,4473,4490,130,3,34,10,0,0,0,0,0,2017/3/272017-04-02,73649,1691267,2145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/27,32:42.9\r\n6,654668,ϲ,1687,6600,56,10,30,4,-66,-1,-63,-2,5.65,2017/3/272017-04-02,73649,1691267,2145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/27,32:42.9\r\n7,660278,һʹ,1578,59868,53,31,30,5,-74,-61,-74,-4,8.71,2017/3/272017-04-02,73649,1691267,2145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/27,32:42.9\r\n8,653966,û,1504,1515,52,2,29,12,0,0,0,0,0,2017/3/272017-04-02,73649,1691267,2145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/27,32:43.0\r\n9,658999,ѩս,1170,1173,38,2,31,10,0,0,0,0,0,2017/3/272017-04-02,73649,1691267,2145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/27,32:43.0\r\n10,656944,3һս,508,73032,16,31,32,4,-81,-73,-81,-5,8.53,2017/3/272017-04-02,73649,1691267,2145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/27,32:43.0\r\n1,657877,գõ,50291,50291,1433,3,35,40,0,0,0,0,0,2017/3/202017-03-26,86913,1688844,2542,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/20,32:43.8\r\n2,658099,ŮҰ,19586,50664,562,10,35,12,-37,57,-36,-1,8.15,2017/3/202017-03-26,86913,1688844,2542,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/20,32:43.8\r\n3,660278,һʹ,6060,58290,202,24,30,8,-60,-38,-59,-1,8.71,2017/3/202017-03-26,86913,1688844,2542,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/20,32:43.8\r\n4,654668,ϲ,4913,4913,153,3,32,11,0,0,0,0,0,2017/3/202017-03-26,86913,1688844,2542,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/20,32:43.8\r\n5,656944,3һս,2681,72524,87,24,31,5,-72,-53,-71,-2,8.53,2017/3/202017-03-26,86913,1688844,2542,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/20,32:43.9\r\n6,623100,Σ,1058,111182,31,31,34,4,-75,-58,-75,-2,8.3,2017/3/202017-03-26,86913,1688844,2542,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/20,32:43.9\r\n7,579746,쵱,390,8231,14,10,27,3,-50,5,-49,-2,,2017/3/202017-03-26,86913,1688844,2542,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/20,32:43.9\r\n8,658818,ֺ,246,21434,8,38,33,7,-53,-54,-52,-1,8.4,2017/3/202017-03-26,86913,1688844,2542,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/20,32:43.9\r\n9,655812,,233,234,7,3,34,4,0,0,0,0,0,2017/3/202017-03-26,86913,1688844,2542,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/20,32:44.0\r\n10,643220,ͨ,182,400,6,10,29,3,-16,47,-21,4,5.38,2017/3/202017-03-26,86913,1688844,2542,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/20,32:44.0\r\n1,658099,ŮҰ,31079,31079,883,3,35,29,0,0,0,0,0,2017/3/132017-03-19,64914,1714854,1967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/13,32:44.5\r\n2,660278,һʹ,15028,52230,498,17,30,12,-40,3,-41,9999,8.72,2017/3/132017-03-19,64914,1714854,1967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/13,32:44.5\r\n3,656944,3һս,9415,69843,296,17,32,8,-64,-34,-63,-2,8.56,2017/3/132017-03-19,64914,1714854,1967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/13,32:44.6\r\n4,623100,Σ,4294,110124,126,24,34,6,-56,-32,-55,-1,8.31,2017/3/132017-03-19,64914,1714854,1967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/13,32:44.6\r\n5,579746,쵱,780,7841,28,3,28,6,0,0,0,0,,2017/3/132017-03-19,64914,1714854,1967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/13,32:44.6\r\n6,652752,ջ15֮,707,2814,23,10,31,2,-66,-11,-68,-2,7.68,2017/3/132017-03-19,64914,1714854,1967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/13,32:44.6\r\n7,658818,ֺ,526,21188,16,31,34,7,-60,-35,-59,-2,8.4,2017/3/132017-03-19,64914,1714854,1967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/13,32:44.6\r\n8,637377,Ų,437,1387,13,10,32,2,-54,-14,-57,-1,7.58,2017/3/132017-03-19,64914,1714854,1967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/13,32:44.6\r\n9,631766,ɹ̷2,428,1141,14,10,31,4,-40,40,-40,1,6.86,2017/3/132017-03-19,64914,1714854,1967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/13,32:44.7\r\n10,659754,ָӰ,358,4067,10,17,35,4,-71,-68,-72,-4,7.98,2017/3/132017-03-19,64914,1714854,1967,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/13,32:44.7\r\n1,656944,3һս,26187,60428,808,10,32,15,-24,78,-23,9999,8.56,2017/3/62017-03-12,71374,1753478,2258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/6,32:45.2\r\n2,660278,һʹ,25146,37202,840,10,30,21,109,192,109,1,8.76,2017/3/62017-03-12,71374,1753478,2258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/6,32:45.2\r\n3,623100,Σ,9700,105830,282,17,34,10,-68,-53,-68,-1,8.31,2017/3/62017-03-12,71374,1753478,2258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/6,32:45.3\r\n4,652752,ջ15֮,2107,2107,72,3,29,6,0,0,0,0,0,2017/3/62017-03-12,71374,1753478,2258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/6,32:45.3\r\n5,658818,ֺ,1307,20662,39,24,34,11,-51,-60,-50,1,8.42,2017/3/62017-03-12,71374,1753478,2258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/6,32:45.3\r\n6,659754,ָӰ,1247,3709,36,10,34,5,-49,-2,-50,1,7.98,2017/3/62017-03-12,71374,1753478,2258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/6,32:45.3\r\n7,637377,Ų,950,950,31,3,31,5,0,0,0,0,0,2017/3/62017-03-12,71374,1753478,2258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/6,32:45.3\r\n8,658378,֮,829,24428,23,27,36,10,-61,-59,-62,9999,8.52,2017/3/62017-03-12,71374,1753478,2258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/6,32:45.4\r\n9,573814,عռع,774,112212,23,31,33,6,-78,-73,-77,-4,7.72,2017/3/62017-03-12,71374,1753478,2258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/6,32:45.4\r\n10,631766,ɹ̷2,713,713,23,3,31,8,0,0,0,0,0,2017/3/62017-03-12,71374,1753478,2258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/3/6,32:45.4\r\n1,656944,3һս,34241,34241,1049,3,33,35,0,0,0,0,0,2017/2/272017-03-05,94350,1782312,2845,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/27,32:47.7\r\n2,623100,Σ,30573,96130,882,10,35,14,-53,64,-53,-1,8.32,2017/2/272017-03-05,94350,1782312,2845,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/27,32:47.8\r\n3,660278,һʹ,12004,12057,402,3,30,30,0,0,0,0,0,2017/2/272017-03-05,94350,1782312,2845,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/27,32:47.8\r\n4,659054,̿,3838,15805,106,10,36,5,-68,14,-68,-1,6.86,2017/2/272017-03-05,94350,1782312,2845,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/27,32:47.8\r\n5,573814,عռع,3471,111438,101,24,34,7,-74,-61,-73,-3,7.72,2017/2/272017-03-05,94350,1782312,2845,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/27,32:47.8\r\n6,658818,ֺ,2665,19355,78,17,34,9,-68,-57,-68,-2,8.47,2017/2/272017-03-05,94350,1782312,2845,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/27,32:47.8\r\n7,659754,ָӰ,2463,2463,72,3,34,10,0,0,0,0,0,2017/2/272017-03-05,94350,1782312,2845,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/27,32:47.9\r\n8,658378,֮,2149,23598,62,20,35,11,-49,-59,-50,-3,8.52,2017/2/272017-03-05,94350,1782312,2845,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/27,32:47.9\r\n9,655798,˷,780,104475,26,37,30,6,-77,-64,-76,-2,7.92,2017/2/272017-03-05,94350,1782312,2845,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/27,32:47.9\r\n10,629898,٤,681,174886,19,37,36,5,-81,-71,-80,-4,7.41,2017/2/272017-03-05,94350,1782312,2845,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/27,32:48.0\r\n1,623100,Σ,65556,65556,1884,3,35,50,0,0,0,0,0,2017/2/202017-02-26,117147,1806161,3378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/20,32:48.7\r\n2,573814,عռع,13261,107967,375,17,35,10,-74,-31,-73,-1,7.72,2017/2/202017-02-26,117147,1806161,3378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/20,32:48.8\r\n3,659054,̿,11910,11967,334,3,36,18,0,0,0,0,0,2017/2/202017-02-26,117147,1806161,3378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/20,32:48.8\r\n4,658818,ֺ,8361,16690,244,10,34,12,0,57,2,1,8.46,2017/2/202017-02-26,117147,1806161,3378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/20,32:48.8\r\n5,658378,֮,4238,21449,125,13,34,9,-74,-42,-74,-3,8.54,2017/2/202017-02-26,117147,1806161,3378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/20,32:48.8\r\n6,629898,٤,3507,174205,95,30,37,8,-69,-31,-69,-3,7.41,2017/2/202017-02-26,117147,1806161,3378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/20,32:48.8\r\n7,655798,˷,3336,103695,107,30,31,9,-67,-21,-64,-3,7.92,2017/2/202017-02-26,117147,1806161,3378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/20,32:48.9\r\n8,643725,Ϸ,2424,9270,70,17,35,27,-29,-37,-33,9999,7.61,2017/2/202017-02-26,117147,1806161,3378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/20,32:48.9\r\n9,655318,ܳû֮ÿռ,811,51525,26,30,32,9,-54,-41,-52,2,8.21,2017/2/202017-02-26,117147,1806161,3378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/20,32:48.9\r\n10,619719,ηƪ,786,165442,21,30,37,5,-75,-45,-75,9999,7.04,2017/2/202017-02-26,117147,1806161,3378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/20,32:48.9\r\n1,573814,عռع,51187,94706,1408,10,36,26,18,100,18,9999,7.8,2017/2/132017-02-19,123108,1852574,3508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/13,32:49.6\r\n2,658378,֮,16004,17211,475,6,34,21,0,0,0,0,0,2017/2/132017-02-19,123108,1852574,3508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/13,32:49.6\r\n3,629898,٤,11244,170698,303,23,37,17,-68,-56,-67,-1,7.47,2017/2/132017-02-19,123108,1852574,3508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/13,32:49.7\r\n4,655798,˷,10263,100359,296,23,35,20,-61,-51,-59,-1,7.94,2017/2/132017-02-19,123108,1852574,3508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/13,32:49.7\r\n5,658818,ֺ,8329,8329,241,3,35,18,0,0,0,0,0,2017/2/132017-02-19,123108,1852574,3508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/13,32:49.7\r\n6,660155,˼,5557,5558,178,6,31,14,0,0,0,0,0,2017/2/132017-02-19,123108,1852574,3508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/13,32:49.7\r\n7,654608,ԼŮ,5320,5320,157,6,34,14,0,0,0,0,0,2017/2/132017-02-19,123108,1852574,3508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/13,32:49.7\r\n8,643725,Ϸ,3431,6846,104,10,33,26,105,17,109,1,7.66,2017/2/132017-02-19,123108,1852574,3508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/13,32:49.8\r\n9,643191,սʳ,3227,11882,96,10,34,10,-63,-30,-64,-3,6.88,2017/2/132017-02-19,123108,1852574,3508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/13,32:49.8\r\n10,619719,ηƪ,3200,164656,84,23,38,12,-83,-76,-84,-6,7.04,2017/2/132017-02-19,123108,1852574,3508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/13,32:49.8\r\n1,573814,عռع,43519,43519,1190,3,37,44,0,0,0,0,0,2017/2/62017-02-12,158673,1947001,4410,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/6,32:50.4\r\n2,629898,٤,34805,159454,931,16,37,23,-64,-22,-63,-1,7.5,2017/2/62017-02-12,158673,1947001,4410,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/6,32:50.4\r\n3,655798,˷,26174,90096,725,16,36,23,-49,-7,-47,9999,7.94,2017/2/62017-02-12,158673,1947001,4410,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/6,32:50.4\r\n4,619719,ηƪ,19333,161456,513,16,38,17,-77,-44,-76,-2,7.04,2017/2/62017-02-12,158673,1947001,4410,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/6,32:50.5\r\n5,655318,ܳû֮ÿռ,9778,48950,294,16,33,19,-64,-25,-62,9999,8.21,2017/2/62017-02-12,158673,1947001,4410,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/6,32:50.5\r\n6,643191,սʳ,8625,8655,264,3,33,18,0,0,0,0,0,2017/2/62017-02-12,158673,1947001,4410,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/6,32:50.5\r\n7,637920,,7255,74896,205,16,35,13,-80,-53,-80,-3,6.33,2017/2/62017-02-12,158673,1947001,4410,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/6,32:50.5\r\n8,618780,֮ŷ,3595,9494,117,10,31,14,-39,5,-37,-2,6.81,2017/2/62017-02-12,158673,1947001,4410,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/6,32:50.5\r\n9,643725,Ϸ,1673,3415,50,3,34,14,0,0,0,0,0,2017/2/62017-02-12,158673,1947001,4410,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/6,32:50.6\r\n10,658967,˲ķ,1501,3725,45,12,33,13,-32,-1,-32,-3,8.27,2017/2/62017-02-12,158673,1947001,4410,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/2/6,32:50.6\r\n1,629898,٤,97378,124649,2523,9,39,49,257,341,255,2,7.87,2017/1/302017-02-05,306616,2088221,8175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/30,32:51.2\r\n2,619719,ηƪ,83100,142123,2121,9,39,40,41,152,43,-1,7.05,2017/1/302017-02-05,306616,2088221,8175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/30,32:51.3\r\n3,655798,˷,50960,63922,1374,9,37,41,293,312,298,1,7.84,2017/1/302017-02-05,306616,2088221,8175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/30,32:51.3\r\n4,637920,,36384,67641,1021,9,36,31,16,109,16,-2,6.49,2017/1/302017-02-05,306616,2088221,8175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/30,32:51.3\r\n5,655318,ܳû֮ÿռ,26875,39173,773,9,35,37,165,275,170,9999,8.15,2017/1/302017-02-05,306616,2088221,8175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/30,32:51.3\r\n6,618780,֮ŷ,5898,5898,187,3,32,24,0,0,0,0,0,2017/1/302017-02-05,306616,2088221,8175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/30,32:51.3\r\n7,658967,˲ķ,2221,2224,66,5,33,19,0,0,0,0,0,2017/1/302017-02-05,306616,2088221,8175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/30,32:51.4\r\n8,643725,Ϸ,1291,1743,43,-4,30,96,0,0,0,0,0,2017/1/302017-02-05,306616,2088221,8175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/30,32:51.4\r\n9,621560,,486,10709,12,17,42,31,-90,-98,-92,-1,7.75,2017/1/302017-02-05,306616,2088221,8175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/30,32:51.4\r\n10,657814,̫ÿ,390,31317,9,24,45,19,-93,-98,-94,-4,7.68,2017/1/302017-02-05,306616,2088221,8175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/30,32:51.4\r\n1,619719,ηƪ,59023,59023,1486,2,40,70,0,0,0,0,0,2017/1/232017-01-29,168017,1670133,4539,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/23,32:52.2\r\n2,637920,,31257,31257,881,2,35,56,0,0,0,0,0,2017/1/232017-01-29,168017,1670133,4539,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/23,32:52.2\r\n3,629898,٤,27272,27272,710,2,38,61,0,0,0,0,0,2017/1/232017-01-29,168017,1670133,4539,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/23,32:52.2\r\n4,655798,˷,12961,12961,346,2,38,43,0,0,0,0,0,2017/1/232017-01-29,168017,1670133,4539,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/23,32:52.2\r\n5,655318,ܳû֮ÿռ,10150,12297,286,2,36,51,0,0,0,0,0,2017/1/232017-01-29,168017,1670133,4539,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/23,32:52.2\r\n6,657814,̫ÿ,5456,30928,155,17,35,8,-57,-47,-57,-5,7.68,2017/1/232017-01-29,168017,1670133,4539,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/23,32:52.3\r\n7,653984,ʥ,5161,65782,163,31,32,10,-46,-33,-45,-5,7.41,2017/1/232017-01-29,168017,1670133,4539,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/23,32:52.3\r\n8,621560,,4760,10222,152,10,31,8,-13,23,-13,-4,7.65,2017/1/232017-01-29,168017,1670133,4539,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/23,32:52.3\r\n9,658620,֮ùع,3015,12468,92,17,33,8,-41,-34,-41,-4,6.93,2017/1/232017-01-29,168017,1670133,4539,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/23,32:52.3\r\n10,642658,ս⴫һ,2741,47743,75,24,37,7,-57,-51,-57,-7,7.71,2017/1/232017-01-29,168017,1670133,4539,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/23,32:52.4\r\n1,657814,̫ÿ,12595,25471,358,10,35,10,-2,91,-2,1,7.68,2017/1/162017-01-22,49093,1622091,1470,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/16,32:52.9\r\n2,653984,ʥ,9471,60621,299,24,32,12,-25,-7,-25,1,7.42,2017/1/162017-01-22,49093,1622091,1470,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/16,32:52.9\r\n3,642658,ս⴫һ,6352,45002,175,17,36,8,-61,-46,-60,-2,7.71,2017/1/162017-01-22,49093,1622091,1470,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/16,32:53.0\r\n4,621560,,5463,5463,175,3,31,11,0,0,0,0,0,2017/1/162017-01-22,49093,1622091,1470,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/16,32:53.0\r\n5,658620,֮ùع,5119,9453,157,10,33,9,19,152,20,9999,6.82,2017/1/162017-01-22,49093,1622091,1470,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/16,32:53.0\r\n6,637972,ɻ,2642,68563,76,31,35,10,-43,-39,-42,-2,7.58,2017/1/162017-01-22,49093,1622091,1470,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/16,32:53.0\r\n7,595849,,1691,115643,49,38,35,10,-42,-45,-42,-1,7.64,2017/1/162017-01-22,49093,1622091,1470,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/16,32:53.0\r\n8,655281,ħҴ˵,1643,3865,50,10,33,5,-26,19,-25,-1,7.77,2017/1/162017-01-22,49093,1622091,1470,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/16,32:53.1\r\n9,657651,Ѫս־,913,41857,28,46,32,12,-35,-23,-35,-1,8.9,2017/1/162017-01-22,49093,1622091,1470,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/16,32:53.1\r\n10,655318,ܳû֮ÿռ,869,2147,27,-5,32,15,0,0,0,0,0,2017/1/162017-01-22,49093,1622091,1470,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/16,32:53.1\r\n1,642658,ս⴫һ,16159,38649,442,10,37,11,-28,51,-28,9999,7.72,2017/1/92017-01-15,63322,1588686,1856,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/9,32:54.1\r\n2,657814,̫ÿ,12876,12876,365,3,35,19,0,0,0,0,0,2017/1/92017-01-15,63322,1588686,1856,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/9,32:54.2\r\n3,653984,ʥ,12626,51150,398,17,32,15,-39,-22,-39,-1,7.47,2017/1/92017-01-15,63322,1588686,1856,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/9,32:54.2\r\n4,637972,ɻ,4657,65920,132,24,35,10,-60,-50,-57,-1,7.58,2017/1/92017-01-15,63322,1588686,1856,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/9,32:54.2\r\n5,658620,֮ùع,4320,4334,131,3,33,18,0,0,0,0,0,2017/1/92017-01-15,63322,1588686,1856,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/9,32:54.2\r\n6,595849,,2938,113952,84,31,35,9,-62,-55,-61,-2,7.64,2017/1/92017-01-15,63322,1588686,1856,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/9,32:54.2\r\n7,655281,ħҴ˵,2222,2222,67,3,33,8,0,0,0,0,0,2017/1/92017-01-15,63322,1588686,1856,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/9,32:54.3\r\n8,657651,Ѫս־,1410,40944,43,39,33,14,-53,-42,-52,-2,8.9,2017/1/92017-01-15,63322,1588686,1856,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/9,32:54.3\r\n9,655318,ܳû֮ÿռ,1278,1278,40,-12,32,19,0,0,0,0,0,2017/1/92017-01-15,63322,1588686,1856,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/9,32:54.3\r\n10,643385,֮,890,890,28,3,32,7,0,0,0,0,0,2017/1/92017-01-15,63322,1588686,1856,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/9,32:54.3\r\n1,642658,ս⴫һ,22491,22491,612,3,37,23,0,0,0,0,0,2017/1/22017-01-08,78266,1610835,2265,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/2,32:55.2\r\n2,653984,ʥ,20836,38523,654,10,32,20,21,78,14,1,7.44,2017/1/22017-01-08,78266,1610835,2265,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/2,32:55.2\r\n3,637972,ɻ,11655,61264,304,17,38,12,-58,-30,-60,-2,7.68,2017/1/22017-01-08,78266,1610835,2265,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/2,32:55.2\r\n4,595849,,7817,111013,215,24,36,11,-60,-33,-61,-2,7.47,2017/1/22017-01-08,78266,1610835,2265,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/2,32:55.3\r\n5,628225,ڶ,3770,47159,114,17,33,9,-75,-60,-76,-1,6.41,2017/1/22017-01-08,78266,1610835,2265,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/2,32:55.3\r\n6,657651,Ѫս־,2994,39534,91,32,33,17,-45,-29,-48,-1,8.9,2017/1/22017-01-08,78266,1610835,2265,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/2,32:55.3\r\n7,659022,֮Ӣ,2110,3010,69,2,31,14,0,0,0,0,0,2017/1/22017-01-08,78266,1610835,2265,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/2,32:55.3\r\n8,631058,ѩŮ֮ħ,1240,3367,39,9,32,6,-42,67,-43,-1,6.84,2017/1/22017-01-08,78266,1610835,2265,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/2,32:55.3\r\n9,653421,ֱ,786,786,28,3,28,11,0,0,0,0,0,2017/1/22017-01-08,78266,1610835,2265,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/2,32:55.4\r\n10,642338,ðԵ,703,2119,19,11,37,33,-50,-83,-62,-2,6.87,2017/1/22017-01-08,78266,1610835,2265,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2017/1/2,32:55.4\r\n1,637972,ɻ,27895,49608,757,10,37,21,28,90,27,2,7.72,2016/12/262017-01-01,99085,1606098,2969,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/26,32:56.1\r\n2,595849,,19737,103197,553,17,36,18,-46,-42,-46,-1,7.49,2016/12/262017-01-01,99085,1606098,2969,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/26,32:56.1\r\n3,653984,ʥ,17239,17687,573,3,30,31,0,0,0,0,0,2016/12/262017-01-01,99085,1606098,2969,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/26,32:56.1\r\n4,628225,ڶ,15291,43390,471,10,32,15,-46,30,-44,-2,6.39,2016/12/262017-01-01,99085,1606098,2969,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/26,32:56.1\r\n5,657651,Ѫս־,5426,36540,175,25,31,23,-22,-47,-26,-1,8.82,2016/12/262017-01-01,99085,1606098,2969,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/26,32:56.2\r\n6,656433,ȥ,2790,2793,100,3,28,12,0,0,0,0,0,2016/12/262017-01-01,99085,1606098,2969,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/26,32:56.2\r\n7,631058,ѩŮ֮ħ,2128,2128,68,2,31,19,0,0,0,0,0,2016/12/262017-01-01,99085,1606098,2969,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/26,32:56.2\r\n8,642338,ðԵ,1409,1416,50,4,28,15,0,0,0,0,0,2016/12/262017-01-01,99085,1606098,2969,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/26,32:56.2\r\n9,617156,ٿʷ,1156,11705,31,17,37,14,-71,-86,-75,-4,7.88,2016/12/262017-01-01,99085,1606098,2969,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/26,32:56.3\r\n10,642541,ãӣ,1026,1068,36,3,28,11,0,0,0,0,0,2016/12/262017-01-01,99085,1606098,2969,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/26,32:56.3\r\n1,595849,,36233,83460,1020,10,36,19,-23,51,-25,9999,7.63,2016/12/192016-12-25,107130,1560610,3142,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/19,32:56.9\r\n2,628225,ڶ,28099,28099,848,3,33,34,0,0,0,0,0,2016/12/192016-12-25,107130,1560610,3142,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/19,32:57.0\r\n3,637972,ɻ,21713,21713,595,3,36,32,0,0,0,0,0,2016/12/192016-12-25,107130,1560610,3142,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/19,32:57.0\r\n4,657651,Ѫս־,6981,31114,237,18,29,17,-43,-41,-44,-2,8.82,2016/12/192016-12-25,107130,1560610,3142,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/19,32:57.0\r\n5,617156,ٿʷ,3954,10549,125,10,32,8,-40,4,-43,-2,7.83,2016/12/192016-12-25,107130,1560610,3142,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/19,32:57.0\r\n6,640103,Ҳ˽,2432,48178,55,38,44,82,-35,-47,-21,9999,7.48,2016/12/192016-12-25,107130,1560610,3142,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/19,32:57.0\r\n7,655647,֡,1657,55982,57,24,29,9,-67,-68,-68,-3,8.68,2016/12/192016-12-25,107130,1560610,3142,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/19,32:57.1\r\n8,644926,Ե,1439,21058,47,31,30,18,-12,-35,-12,9999,8.4,2016/12/192016-12-25,107130,1560610,3142,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/19,32:57.1\r\n9,640662,28δ,820,12869,30,17,27,7,-82,-77,-82,-4,7.62,2016/12/192016-12-25,107130,1560610,3142,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/19,32:57.1\r\n10,643864,,561,1451,24,10,23,6,-35,-6,-27,9999,7.83,2016/12/192016-12-25,107130,1560610,3142,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/19,32:57.1\r\n1,595849,,47220,47227,1368,3,35,39,0,0,0,0,0,2016/12/122016-12-18,89587,1545686,2748,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/12,32:57.8\r\n2,657651,Ѫս־,12338,24133,425,11,29,17,5,33,3,9999,8.82,2016/12/122016-12-18,89587,1545686,2748,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/12,32:57.8\r\n3,617156,ٿʷ,6595,6595,219,3,30,15,0,0,0,0,0,2016/12/122016-12-18,89587,1545686,2748,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/12,32:57.8\r\n4,655647,֡,4991,54324,177,17,28,9,-76,-51,-76,-3,8.7,2016/12/122016-12-18,89587,1545686,2748,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/12,32:57.9\r\n5,640662,28δ,4549,12049,166,10,27,9,-38,32,-38,-2,7.62,2016/12/122016-12-18,89587,1545686,2748,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/12,32:57.9\r\n6,640103,Ҳ˽,3746,45746,70,31,54,55,3,-50,-3,2,7.48,2016/12/122016-12-18,89587,1545686,2748,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/12,32:57.9\r\n7,656002,,1846,5655,58,10,32,7,-52,-2,-52,-1,8.41,2016/12/122016-12-18,89587,1545686,2748,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/12,32:57.9\r\n8,644926,Ե,1634,19619,54,24,30,14,-45,-39,-44,1,8.35,2016/12/122016-12-18,89587,1545686,2748,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/12,32:57.9\r\n9,643984,涯,1453,58404,41,24,35,7,-79,-62,-79,-5,8.37,2016/12/122016-12-18,89587,1545686,2748,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/12,32:58.0\r\n10,643864,,863,890,33,3,26,7,0,0,0,0,0,2016/12/122016-12-18,89587,1545686,2748,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/12,32:58.0\r\n1,655647,֡,20618,49333,740,10,28,18,-28,76,-29,9999,8.73,2016/12/52016-12-11,72401,1531116,2384,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/5,32:58.6\r\n2,657651,Ѫս־,11788,11795,411,4,29,22,0,0,0,0,0,2016/12/52016-12-11,72401,1531116,2384,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/5,32:58.6\r\n3,640662,28δ,7290,7500,269,3,27,20,0,0,0,0,0,2016/12/52016-12-11,72401,1531116,2384,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/5,32:58.6\r\n4,643984,涯,6937,56951,196,17,35,13,-68,-57,-68,-2,8.39,2016/12/52016-12-11,72401,1531116,2384,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/5,32:58.6\r\n5,643913,СóǱ,4079,11031,127,10,32,9,-41,25,-42,-2,7.92,2016/12/52016-12-11,72401,1531116,2384,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/5,32:58.6\r\n6,656002,,3809,3809,121,3,31,13,0,0,0,0,0,2016/12/52016-12-11,72401,1531116,2384,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/5,32:58.7\r\n7,573488,үĽ,3723,9009,98,10,38,8,-30,15,-37,-2,6.98,2016/12/52016-12-11,72401,1531116,2384,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/5,32:58.7\r\n8,640103,Ҳ˽,3622,42000,72,24,50,29,-28,-75,-48,-2,7.48,2016/12/52016-12-11,72401,1531116,2384,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/5,32:58.7\r\n9,644926,Ե,2986,17986,97,17,31,15,-54,-59,-53,-5,8.35,2016/12/52016-12-11,72401,1531116,2384,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/5,32:58.7\r\n10,637633,,2615,5504,97,10,27,10,-9,70,-7,-3,8.19,2016/12/52016-12-11,72401,1531116,2384,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/12/5,32:58.8\r\n1,655647,֡,28715,28715,1045,3,27,45,0,0,0,0,0,2016/11/282016-12-04,85542,1490748,2758,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/28,32:59.4\r\n2,643984,涯,21671,50014,617,10,35,18,-24,56,-25,-1,8.39,2016/11/282016-12-04,85542,1490748,2758,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/28,32:59.4\r\n3,643913,СóǱ,6952,6952,218,3,32,20,0,0,0,0,0,2016/11/282016-12-04,85542,1490748,2758,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/28,32:59.5\r\n4,644926,Ե,6442,15000,206,10,31,13,-25,39,-25,-1,8.4,2016/11/282016-12-04,85542,1490748,2758,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/28,32:59.5\r\n5,573488,үĽ,5285,5285,156,3,34,15,0,0,0,0,0,2016/11/282016-12-04,85542,1490748,2758,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/28,32:59.5\r\n6,640103,Ҳ˽,5025,38379,139,17,36,14,-61,-69,-65,-4,7.48,2016/11/282016-12-04,85542,1490748,2758,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/28,32:59.5\r\n7,637633,,2886,2889,103,3,28,19,0,0,0,0,0,2016/11/282016-12-04,85542,1490748,2758,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/28,32:59.5\r\n8,657031,ͬ,2475,2475,84,5,29,9,0,0,0,0,0,2016/11/282016-12-04,85542,1490748,2758,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/28,32:59.6\r\n9,653051,֮,1221,1221,36,3,34,14,0,0,0,0,0,2016/11/282016-12-04,85542,1490748,2758,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/28,32:59.6\r\n10,652864,,933,3606,32,10,29,4,-65,-10,-65,-5,4.85,2016/11/282016-12-04,85542,1490748,2758,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/28,32:59.6\r\n1,643984,涯,28343,28343,822,3,34,37,0,0,0,0,0,2016/11/212016-11-27,67225,1440025,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/21,33:00.3\r\n2,640103,Ҳ˽,12750,33353,391,10,33,12,-38,36,-40,-1,7.5,2016/11/212016-11-27,67225,1440025,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/21,33:00.3\r\n3,644926,Ե,8557,8557,275,3,31,24,0,0,0,0,0,2016/11/212016-11-27,67225,1440025,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/21,33:00.3\r\n4,325408,첩ʿ,4275,74687,124,24,34,8,-68,-47,-67,-2,8.29,2016/11/212016-11-27,67225,1440025,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/21,33:00.4\r\n5,652864,,2646,2673,92,3,29,10,0,0,0,0,0,2016/11/212016-11-27,67225,1440025,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/21,33:00.4\r\n6,644062,̽ϣڵĶ,2315,2315,84,3,27,16,0,0,0,0,0,2016/11/212016-11-27,67225,1440025,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/21,33:00.4\r\n7,625158,ֶгս,2023,15594,37,17,55,9,-63,-73,-70,-4,8.28,2016/11/212016-11-27,67225,1440025,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/21,33:00.4\r\n8,656548,ƽ,1715,7161,60,13,29,7,-69,-50,-69,-4,7.68,2016/11/212016-11-27,67225,1440025,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/21,33:00.4\r\n9,626571,ʿ֮,551,2270,18,10,31,2,-68,-10,-68,-2,6,2016/11/212016-11-27,67225,1440025,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/21,33:00.5\r\n10,653289,֮ƽ,503,10702,18,17,28,4,-84,-73,-85,-5,8.68,2016/11/212016-11-27,67225,1440025,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/21,33:00.5\r\n1,640103,Ҳ˽,20581,20603,646,3,32,27,0,0,0,0,0,2016/11/142016-11-20,57412,1464907,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/14,33:01.4\r\n2,325408,첩ʿ,13349,70412,381,17,35,13,-51,-39,-51,-1,8.32,2016/11/142016-11-20,57412,1464907,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/14,33:01.4\r\n3,625158,ֶгս,5478,13570,122,10,45,8,-32,-1,-42,-1,8.2,2016/11/142016-11-20,57412,1464907,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/14,33:01.4\r\n4,656548,ƽ,5446,5446,196,6,28,12,0,0,0,0,0,2016/11/142016-11-20,57412,1464907,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/14,33:01.4\r\n5,653289,֮ƽ,3208,10199,117,10,27,7,-54,14,-55,-2,8.7,2016/11/142016-11-20,57412,1464907,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/14,33:01.5\r\n6,627541,⹫38,2132,5642,82,10,26,7,-39,31,-39,-2,8.03,2016/11/142016-11-20,57412,1464907,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/14,33:01.5\r\n7,626571,ʿ֮,1719,1719,56,3,31,6,0,0,0,0,0,2016/11/142016-11-20,57412,1464907,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/14,33:01.5\r\n8,633157,,1342,1342,53,3,25,9,0,0,0,0,0,2016/11/142016-11-20,57412,1464907,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/14,33:01.5\r\n9,628324,¿ˮ,818,17115,26,24,31,9,-72,-68,-72,-4,8.16,2016/11/142016-11-20,57412,1464907,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/14,33:01.5\r\n10,627597,ľ ,444,15639,11,108,40,111,0,0,0,0,,2016/11/142016-11-20,57412,1464907,1786,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/14,33:01.6\r\n1,325408,첩ʿ,27015,57062,777,10,35,17,-10,78,-9,9999,8.34,2016/11/72016-11-13,57370,1499427,1779,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/7,33:02.1\r\n2,625158,ֶгս,8093,8093,210,3,38,13,0,0,0,0,0,2016/11/72016-11-13,57370,1499427,1779,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/7,33:02.1\r\n3,653289,֮ƽ,6991,6991,261,3,27,19,0,0,0,0,0,2016/11/72016-11-13,57370,1499427,1779,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/7,33:02.1\r\n4,627541,⹫38,3495,3510,134,3,26,15,0,0,0,0,0,2016/11/72016-11-13,57370,1499427,1779,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/7,33:02.1\r\n5,628324,¿ˮ,2882,16297,95,17,30,10,-61,-58,-62,-3,8.14,2016/11/72016-11-13,57370,1499427,1779,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/7,33:02.2\r\n6,644455,׽Բ,2722,6688,88,10,31,7,-31,32,-31,-2,7.1,2016/11/72016-11-13,57370,1499427,1779,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/7,33:02.2\r\n7,657017,ڼҴ,1103,1103,39,6,28,4,0,0,0,0,0,2016/11/72016-11-13,57370,1499427,1779,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/7,33:02.2\r\n8,639445,عж,885,117799,34,45,26,10,-68,-61,-66,-2,8.7,2016/11/72016-11-13,57370,1499427,1779,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/7,33:02.2\r\n9,638956,һ䶥һ,644,1750,21,10,30,6,-41,-35,-45,9999,7.29,2016/11/72016-11-13,57370,1499427,1779,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/7,33:02.2\r\n10,655521,еʦ2,535,33827,17,24,32,5,-86,-79,-86,-5,7.3,2016/11/72016-11-13,57370,1499427,1779,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/11/7,33:02.3\r\n1,325408,첩ʿ,30047,30047,859,3,35,33,0,0,0,0,0,2016/10/312016-11-06,59774,1513063,1853,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/31,33:02.7\r\n2,628324,¿ˮ,7360,13415,246,10,30,11,26,46,23,2,8.06,2016/10/312016-11-06,59774,1513063,1853,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/31,33:02.8\r\n3,634059,,4335,12888,141,10,31,7,-49,21,-50,-1,7.32,2016/10/312016-11-06,59774,1513063,1853,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/31,33:02.8\r\n4,644455,׽Բ,3937,3965,127,3,31,13,0,0,0,0,0,2016/10/312016-11-06,59774,1513063,1853,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/31,33:02.8\r\n5,655521,еʦ2,3807,33293,118,17,32,7,-70,-56,-71,-4,7.36,2016/10/312016-11-06,59774,1513063,1853,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/31,33:02.8\r\n6,639445,عж,2781,116914,100,38,28,11,-55,-49,-50,-3,8.7,2016/10/312016-11-06,59774,1513063,1853,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/31,33:02.8\r\n7,644063,С£ξͻ,1646,1646,63,3,26,10,0,0,0,0,0,2016/10/312016-11-06,59774,1513063,1853,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/31,33:02.9\r\n8,656586,ħ,1415,4672,44,10,32,5,-57,-2,-57,-3,8.33,2016/10/312016-11-06,59774,1513063,1853,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/31,33:02.9\r\n9,638956,һ䶥һ,1100,1107,39,3,28,7,0,0,0,0,0,2016/10/312016-11-06,59774,1513063,1853,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/31,33:02.9\r\n10,644824,ǳӵ,517,530,18,3,29,6,0,0,0,0,0,2016/10/312016-11-06,59774,1513063,1853,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/31,33:02.9\r\n1,655521,еʦ2,12818,29486,399,10,32,11,-23,79,-24,9999,7.3,2016/10/242016-10-30,45980,1511436,1495,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/24,33:03.5\r\n2,634059,,8552,8552,283,3,30,17,0,0,0,0,0,2016/10/242016-10-30,45980,1511436,1495,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/24,33:03.5\r\n3,639445,عж,6146,114133,202,31,30,11,-52,-40,-52,-1,8.7,2016/10/242016-10-30,45980,1511436,1495,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/24,33:03.5\r\n4,628324,¿ˮ,5840,6055,199,3,29,13,0,0,0,0,0,2016/10/242016-10-30,45980,1511436,1495,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/24,33:03.6\r\n5,656586,ħ,3258,3258,104,3,31,12,0,0,0,0,0,2016/10/242016-10-30,45980,1511436,1495,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/24,33:03.6\r\n6,644689,,3022,11069,93,11,33,5,-62,0,-63,-3,6.27,2016/10/242016-10-30,45980,1511436,1495,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/24,33:03.6\r\n7,656220,̽ܿˣͷ,2123,5907,70,10,30,5,-44,14,-44,-1,7,2016/10/242016-10-30,45980,1511436,1495,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/24,33:03.6\r\n8,626806,ȫ·,1177,80978,38,32,31,8,-70,-66,-70,-3,7.46,2016/10/242016-10-30,45980,1511436,1495,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/24,33:03.6\r\n9,641546,СС,706,714,30,3,24,9,0,0,0,0,0,2016/10/242016-10-30,45980,1511436,1495,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/24,33:03.7\r\n10,644930,Բξ,639,14240,19,17,33,5,-86,-81,-86,-6,7.67,2016/10/242016-10-30,45980,1511436,1495,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/24,33:03.7\r\n1,655521,еʦ2,16668,16668,525,3,32,26,0,0,0,0,0,2016/10/172016-10-23,54103,1491096,1728,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/17,33:04.5\r\n2,639445,عж,12707,107986,418,24,30,14,-54,-27,-54,-1,8.68,2016/10/172016-10-23,54103,1491096,1728,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/17,33:04.5\r\n3,644689,,8039,8047,248,4,32,14,0,0,0,0,0,2016/10/172016-10-23,54103,1491096,1728,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/17,33:04.5\r\n4,644930,Բξ,4463,13601,135,10,33,7,-51,23,-51,-1,7.72,2016/10/172016-10-23,54103,1491096,1728,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/17,33:04.5\r\n5,626806,ȫ·,3988,79801,126,25,32,9,-61,-45,-61,-3,7.46,2016/10/172016-10-23,54103,1491096,1728,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/17,33:04.5\r\n6,656220,̽ܿˣͷ,3784,3784,125,3,30,11,0,0,0,0,0,2016/10/172016-10-23,54103,1491096,1728,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/17,33:04.6\r\n7,635157,Zĸ,919,919,31,3,30,5,0,0,0,0,0,2016/10/172016-10-23,54103,1491096,1728,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/17,33:04.6\r\n8,642914,ƶ,642,25957,22,24,30,6,-75,-67,-75,-4,6,2016/10/172016-10-23,54103,1491096,1728,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/17,33:04.6\r\n9,656434,ʿ,572,2600,22,10,26,4,-72,0,-70,-4,5.97,2016/10/172016-10-23,54103,1491096,1728,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/17,33:04.6\r\n10,643986,ɱϷ,449,2103,14,10,31,2,-73,-15,-73,-3,5.13,2016/10/172016-10-23,54103,1491096,1728,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/17,33:04.6\r\n1,639445,عж,27648,95279,907,17,30,22,-46,-1,-46,9999,8.68,2016/10/102016-10-16,59814,1462855,1929,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/10,33:05.5\r\n2,626806,ȫ·,10314,75814,327,18,32,12,-70,-35,-70,9999,7.51,2016/10/102016-10-16,59814,1462855,1929,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/10,33:05.5\r\n3,644930,Բξ,9138,9138,278,3,33,17,0,0,0,0,0,2016/10/102016-10-16,59814,1462855,1929,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/10,33:05.5\r\n4,642914,ƶ,2604,25315,87,17,30,8,-78,-52,-78,9999,6.17,2016/10/102016-10-16,59814,1462855,1929,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/10,33:05.5\r\n5,656434,ʿ,2028,2028,74,3,28,14,0,0,0,0,0,2016/10/102016-10-16,59814,1462855,1929,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/10,33:05.5\r\n6,637814,,1875,37808,55,17,34,5,-88,-62,-88,-3,7.05,2016/10/102016-10-16,59814,1462855,1929,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/10,33:05.6\r\n7,643986,ɱϷ,1654,1654,54,3,31,6,0,0,0,0,0,2016/10/102016-10-16,59814,1462855,1929,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/10,33:05.6\r\n8,644496,,1614,1625,47,7,34,4,0,0,0,26,7.1,2016/10/102016-10-16,59814,1462855,1929,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/10,33:05.6\r\n9,644114,³ѷƯ,927,4932,31,13,30,8,-77,-48,-77,-4,7.22,2016/10/102016-10-16,59814,1462855,1929,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/10,33:05.6\r\n10,642485,ڴʲô,417,425,15,3,28,7,0,0,0,0,0,2016/10/102016-10-16,59814,1462855,1929,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/10,33:05.6\r\n1,639445,عж,51065,67630,1680,10,30,40,208,216,219,2,8.51,2016/10/32016-10-09,123763,1584672,4008,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/3,33:06.6\r\n2,626806,ȫ·,34277,65500,1101,11,31,27,10,45,10,-1,7.65,2016/10/32016-10-09,123763,1584672,4008,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/3,33:06.6\r\n3,637814,,16116,35933,479,10,34,17,-19,45,-19,-1,7.1,2016/10/32016-10-09,123763,1584672,4008,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/3,33:06.7\r\n4,642914,ƶ,11982,22712,404,10,30,18,12,102,11,9999,6.41,2016/10/32016-10-09,123763,1584672,4008,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/3,33:06.7\r\n5,644114,³ѷƯ,4004,4004,134,6,30,17,0,0,0,0,0,2016/10/32016-10-09,123763,1584672,4008,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/3,33:06.7\r\n6,643774,⴫ȱ,1975,7577,62,17,32,20,-7,-74,-7,1,7.97,2016/10/32016-10-09,123763,1584672,4008,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/3,33:06.7\r\n7,641933,ʿ,1253,1766,48,8,26,12,144,370,146,5,7.45,2016/10/32016-10-09,123763,1584672,4008,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/3,33:06.8\r\n8,641527,߸,379,939,13,9,29,8,-32,2,-32,2,7.87,2016/10/32016-10-09,123763,1584672,4008,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/3,33:06.8\r\n9,638973,СѼ,337,417,11,7,30,9,0,0,0,80,7.33,2016/10/32016-10-09,123763,1584672,4008,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/3,33:06.8\r\n10,626298,밲,300,16582,9,26,34,13,-86,-94,-87,-4,8.04,2016/10/32016-10-09,123763,1584672,4008,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/10/3,33:06.8\r\n1,626806,ȫ·,31181,31223,1001,4,31,35,0,0,0,0,0,2016/9/262016-10-02,92251,1564944,2934,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/26,33:07.5\r\n2,637814,,19817,19817,594,3,33,30,0,0,0,0,0,2016/9/262016-10-02,92251,1564944,2934,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/26,33:07.5\r\n3,639445,عж,16563,16565,526,3,31,40,0,0,0,0,0,2016/9/262016-10-02,92251,1564944,2934,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/26,33:07.5\r\n4,642914,ƶ,10725,10729,363,3,30,32,0,0,0,0,0,2016/9/262016-10-02,92251,1564944,2934,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/26,33:07.6\r\n5,631476,3,2133,36086,65,19,33,4,-76,-56,-76,-4,5.87,2016/9/262016-10-02,92251,1564944,2934,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/26,33:07.6\r\n6,626298,밲,2120,16282,70,19,30,6,-69,-45,-70,-4,8.04,2016/9/262016-10-02,92251,1564944,2934,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/26,33:07.6\r\n7,643774,⴫ȱ,2116,5603,66,10,32,6,-39,5,-40,-2,7.95,2016/9/262016-10-02,92251,1564944,2934,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/26,33:07.6\r\n8,639446,̰籩2,2026,20830,71,19,29,6,-70,-53,-70,-5,6.81,2016/9/262016-10-02,92251,1564944,2934,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/26,33:07.6\r\n9,631288,׷Ҳ,1266,13528,38,19,33,6,-71,-55,-71,-5,7.86,2016/9/262016-10-02,92251,1564944,2934,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/26,33:07.7\r\n10,641527,߸,561,561,19,2,29,11,0,0,0,0,0,2016/9/262016-10-02,92251,1564944,2934,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/26,33:07.7\r\n1,631476,3,8817,33953,269,12,33,8,-65,12,-65,9999,5.9,2016/9/192016-09-25,39511,1573963,1278,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/19,33:08.7\r\n2,626298,밲,6904,14162,231,12,30,12,-5,34,-6,2,8.15,2016/9/192016-09-25,39511,1573963,1278,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/19,33:08.7\r\n3,639446,̰籩2,6858,18804,235,12,29,9,-43,24,-43,-1,6.8,2016/9/192016-09-25,39511,1573963,1278,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/19,33:08.7\r\n4,631288,׷Ҳ,4396,12262,134,12,33,9,-44,-8,-44,-1,7.89,2016/9/192016-09-25,39511,1573963,1278,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/19,33:08.7\r\n5,643774,⴫ȱ,3487,3487,110,3,32,10,0,0,0,0,0,2016/9/192016-09-25,39511,1573963,1278,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/19,33:08.8\r\n6,644596,ӣСӣ,1904,1904,73,3,26,7,0,0,0,0,0,2016/9/192016-09-25,39511,1573963,1278,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/19,33:08.8\r\n7,644394,ǼԺ3Խǳ,1674,43425,42,24,39,9,-71,-66,-72,-2,8.11,2016/9/192016-09-25,39511,1573963,1278,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/19,33:08.8\r\n8,644631,,1276,10781,43,17,30,10,-68,-66,-69,-2,7.85,2016/9/192016-09-25,39511,1573963,1278,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/19,33:08.8\r\n9,644123,Σ,1187,1187,42,6,28,5,0,0,0,0,0,2016/9/192016-09-25,39511,1573963,1278,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/19,33:08.8\r\n10,644874,̲,909,9862,27,17,34,7,-72,-72,-73,-3,7.63,2016/9/192016-09-25,39511,1573963,1278,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/19,33:08.9\r\n1,631476,3,25136,25136,770,5,33,24,0,0,0,0,0,2016/9/122016-09-18,73755,1604006,2334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/12,33:09.8\r\n2,639446,̰籩2,11945,11945,413,5,29,21,0,0,0,0,0,2016/9/122016-09-18,73755,1604006,2334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/12,33:09.9\r\n3,631288,׷Ҳ,7866,7866,239,5,33,14,0,0,0,0,0,2016/9/122016-09-18,73755,1604006,2334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/12,33:09.9\r\n4,626298,밲,7245,7258,246,5,29,17,0,0,0,0,0,2016/9/122016-09-18,73755,1604006,2334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/12,33:09.9\r\n5,644394,ǼԺ3Խǳ,5843,41751,153,17,38,11,-62,-66,-65,-4,8.11,2016/9/122016-09-18,73755,1604006,2334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/12,33:09.9\r\n6,644631,,3989,9505,139,10,29,11,-28,0,-30,-3,7.84,2016/9/122016-09-18,73755,1604006,2334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/12,33:10.0\r\n7,644874,̲,3285,8953,100,10,33,8,-42,-6,-43,-5,7.65,2016/9/122016-09-18,73755,1604006,2334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/12,33:10.0\r\n8,628658,ҵս,2522,2528,74,4,34,10,0,0,0,0,0,2016/9/122016-09-18,73755,1604006,2334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/12,33:10.0\r\n9,643772,ʱ5Ǽײ,1728,44399,56,27,31,10,-40,-60,-38,-5,7.53,2016/9/122016-09-18,73755,1604006,2334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/12,33:10.0\r\n10,644259,󶵡,1292,1767,46,4,28,9,0,0,0,0,0,2016/9/122016-09-18,73755,1604006,2334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/12,33:10.1\r\n1,644394,ǼԺ3Խǳ,15223,35909,439,10,35,10,-26,80,-26,9999,8.11,2016/9/52016-09-11,39252,1471173,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/5,33:10.8\r\n2,644874,̲,5668,5668,177,3,32,13,0,0,0,0,0,2016/9/52016-09-11,39252,1471173,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/5,33:10.8\r\n3,644631,,5517,5517,200,3,28,16,0,0,0,0,0,2016/9/52016-09-11,39252,1471173,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/5,33:10.8\r\n4,643772,ʱ5Ǽײ,2869,42671,91,20,31,7,-75,-56,-74,-2,7.59,2016/9/52016-09-11,39252,1471173,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/5,33:10.9\r\n5,646925,,2041,4564,75,10,27,7,-19,53,-19,9999,7.57,2016/9/52016-09-11,39252,1471173,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/5,33:10.9\r\n6,644495,Ӱ5,1918,44333,59,20,32,6,-80,-68,-80,-3,7.63,2016/9/52016-09-11,39252,1471173,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/5,33:10.9\r\n7,628417,ǵʮ,1480,3975,51,10,29,5,-41,28,-41,-1,6.27,2016/9/52016-09-11,39252,1471173,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/5,33:10.9\r\n8,637798,ʹͽ,979,60494,33,32,30,8,-71,-56,-71,-4,7.89,2016/9/52016-09-11,39252,1471173,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/5,33:11.0\r\n9,636336,ħʦ,659,659,25,3,26,4,0,0,0,0,0,2016/9/52016-09-11,39252,1471173,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/5,33:11.0\r\n10,644259,󶵡,473,475,17,-3,27,5,0,0,0,0,0,2016/9/52016-09-11,39252,1471173,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/9/5,33:11.0\r\n1,644394,ǼԺ3Խǳ,20685,20685,595,3,35,25,0,0,0,0,0,2016/8/292016-09-04,57742,1482174,1794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/29,33:12.1\r\n2,643772,ʱ5Ǽײ,11253,39802,357,13,32,11,-61,-22,-60,9999,7.59,2016/8/292016-09-04,57742,1482174,1794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/29,33:12.1\r\n3,644495,Ӱ5,9577,42415,296,13,32,10,-71,-32,-70,-2,7.63,2016/8/292016-09-04,57742,1482174,1794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/29,33:12.1\r\n4,637798,ʹͽ,3338,59515,114,25,29,12,-58,-37,-58,-1,7.91,2016/8/292016-09-04,57742,1482174,1794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/29,33:12.2\r\n5,646925,,2523,2523,93,3,27,13,0,0,0,0,0,2016/8/292016-09-04,57742,1482174,1794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/29,33:12.2\r\n6,628417,ǵʮ,2492,2494,86,3,29,10,0,0,0,0,0,2016/8/292016-09-04,57742,1482174,1794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/29,33:12.2\r\n7,611818,Ĺʼ,1859,99656,57,31,33,11,-43,-27,-42,-3,6.1,2016/8/292016-09-04,57742,1482174,1794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/29,33:12.2\r\n8,631411,΢΢һЦ,1207,27343,37,24,33,9,-59,-41,-59,-3,6.39,2016/8/292016-09-04,57742,1482174,1794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/29,33:12.2\r\n9,644633,ǵй,848,6202,27,24,31,18,-24,-11,-21,-1,8.32,2016/8/292016-09-04,57742,1482174,1794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/29,33:12.3\r\n10,653081,´ͷӺСͷְ2һճɲ,786,8683,28,17,28,8,-68,-50,-67,-4,7.33,2016/8/292016-09-04,57742,1482174,1794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/29,33:12.3\r\n1,644495,Ӱ5,32838,32838,976,6,34,23,0,0,0,0,0,2016/8/222016-08-28,87059,1547864,2727,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/22,33:13.0\r\n2,643772,ʱ5Ǽײ,28549,28549,903,6,32,22,0,0,0,0,0,2016/8/222016-08-28,87059,1547864,2727,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/22,33:13.0\r\n3,637798,ʹͽ,7916,56176,272,18,29,18,-61,-48,-60,-2,7.91,2016/8/222016-08-28,87059,1547864,2727,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/22,33:13.0\r\n4,611818,Ĺʼ,3253,97797,98,24,33,14,-61,-57,-58,-1,6.1,2016/8/222016-08-28,87059,1547864,2727,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/22,33:13.0\r\n5,631411,΢΢һЦ,2936,26136,90,17,33,13,-69,-68,-69,-3,6.39,2016/8/222016-08-28,87059,1547864,2727,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/22,33:13.1\r\n6,653081,´ͷӺСͷְ2һճɲ,2420,7898,85,10,28,12,-36,35,-36,9999,7.33,2016/8/222016-08-28,87059,1547864,2727,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/22,33:13.1\r\n7,643898,,1328,5877,43,10,31,9,-58,-24,-57,9999,7.83,2016/8/222016-08-28,87059,1547864,2727,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/22,33:13.1\r\n8,644633,ǵй,1110,5353,34,17,33,20,-49,-60,-50,9999,8.38,2016/8/222016-08-28,87059,1547864,2727,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/22,33:13.1\r\n9,631834,,959,959,36,3,26,6,0,0,0,0,0,2016/8/222016-08-28,87059,1547864,2727,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/22,33:13.1\r\n10,643879,,956,38592,31,27,31,14,-77,-74,-77,-5,8.34,2016/8/222016-08-28,87059,1547864,2727,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/22,33:13.2\r\n1,637798,ʹͽ,20086,48260,685,11,29,23,-17,43,-16,1,7.91,2016/8/152016-08-21,64089,1315215,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/15,33:13.8\r\n2,631411,΢΢һЦ,9484,23200,293,10,32,14,-23,48,-23,2,6.32,2016/8/152016-08-21,64089,1315215,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/15,33:13.9\r\n3,611818,Ĺʼ,8431,94544,237,17,36,14,-77,-59,-77,-2,6.1,2016/8/152016-08-21,64089,1315215,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/15,33:13.9\r\n4,639257,Σ,5948,15888,178,10,33,13,-35,29,-33,1,7.32,2016/8/152016-08-21,64089,1315215,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/15,33:13.9\r\n5,643879,,4168,37636,132,20,32,16,-68,-53,-68,-2,8.34,2016/8/152016-08-21,64089,1315215,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/15,33:13.9\r\n6,653081,´ͷӺСͷְ2һճɲ,3757,5478,133,3,28,24,0,0,0,0,0,2016/8/152016-08-21,64089,1315215,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/15,33:13.9\r\n7,643898,,3141,4549,100,3,31,16,0,0,0,0,0,2016/8/152016-08-21,64089,1315215,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/15,33:14.0\r\n8,644633,ǵй,2182,4243,68,10,32,16,45,172,47,2,8.46,2016/8/152016-08-21,64089,1315215,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/15,33:14.0\r\n9,653155,,1726,2529,52,3,33,11,0,0,0,0,0,2016/8/152016-08-21,64089,1315215,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/15,33:14.0\r\n10,630554,,1194,1919,37,3,32,13,0,0,0,0,0,2016/8/152016-08-21,64089,1315215,2055,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/15,33:14.0\r\n1,611818,Ĺʼ,36594,84476,1035,10,35,25,-24,39,-24,9999,6.11,2016/8/82016-08-14,115316,1558608,3577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/8,33:14.9\r\n2,637798,ʹͽ,24083,24121,817,4,29,39,0,0,0,0,0,2016/8/82016-08-14,115316,1558608,3577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/8,33:14.9\r\n3,643879,,13151,32610,411,13,32,24,-32,-33,-32,-1,8.34,2016/8/82016-08-14,115316,1558608,3577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/8,33:14.9\r\n4,631411,΢΢һЦ,12289,12291,381,3,32,26,0,0,0,0,0,2016/8/82016-08-14,115316,1558608,3577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/8,33:15.0\r\n5,639257,Σ,9162,9162,268,3,34,25,0,0,0,0,0,2016/8/82016-08-14,115316,1558608,3577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/8,33:15.0\r\n6,627597,ľ ,5463,14932,178,10,31,13,-39,-21,-40,-2,7.27,2016/8/82016-08-14,115316,1558608,3577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/8,33:15.0\r\n7,621641,,3439,88365,106,25,32,19,-70,-74,-68,-4,7.31,2016/8/82016-08-14,115316,1558608,3577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/8,33:15.0\r\n8,643749,ǼС½а,2784,2885,96,3,29,15,0,0,0,0,0,2016/8/82016-08-14,115316,1558608,3577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/8,33:15.0\r\n9,629778,,1772,1795,67,6,26,9,0,0,0,0,0,2016/8/82016-08-14,115316,1558608,3577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/8,33:15.1\r\n10,644633,ǵй,1507,1515,46,3,33,29,0,0,0,0,0,2016/8/82016-08-14,115316,1558608,3577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/8,33:15.1\r\n1,611818,Ĺʼ,47882,47882,1357,3,35,46,0,0,0,0,0,2016/8/12016-08-07,106526,1566699,3175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/1,33:15.9\r\n2,643879,,19458,19458,601,6,32,23,0,0,0,0,0,2016/8/12016-08-07,106526,1566699,3175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/1,33:15.9\r\n3,621641,,11368,84926,330,18,34,16,-65,-50,-65,-2,7.31,2016/8/12016-08-07,106526,1566699,3175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/1,33:15.9\r\n4,627597,ľ ,9028,9469,297,3,30,17,0,0,0,0,0,2016/8/12016-08-07,106526,1566699,3175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/1,33:15.9\r\n5,626988,,7681,27866,230,10,33,10,-62,-1,-62,-3,4.83,2016/8/12016-08-07,106526,1566699,3175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/1,33:15.9\r\n6,643814,̩ɽս,2519,30340,75,20,34,12,-73,-64,-74,-3,7.15,2016/8/12016-08-07,106526,1566699,3175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/1,33:15.9\r\n7,638742,ѵĻ,2378,2378,83,3,29,12,0,0,0,0,0,2016/8/12016-08-07,106526,1566699,3175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/1,33:16.0\r\n8,639105,ռ3,2038,5999,65,10,32,10,-49,7,-48,-3,7.24,2016/8/12016-08-07,106526,1566699,3175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/1,33:16.0\r\n9,641077,ս2,606,67702,15,31,40,12,-73,-72,-74,-2,7.91,2016/8/12016-08-07,106526,1566699,3175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/1,33:16.0\r\n10,643721,AΣ¡۵ձ,566,10328,21,68,28,7,-87,-80,-87,-6,7.83,2016/8/12016-08-07,106526,1566699,3175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/8/1,33:16.0\r\n1,621641,,32505,73558,933,11,35,22,-21,34,-21,9999,7.31,2016/7/252016-07-31,83349,1523036,2510,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/25,33:16.6\r\n2,626988,,20183,20185,601,3,34,26,0,0,0,0,0,2016/7/252016-07-31,83349,1523036,2510,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/25,33:16.6\r\n3,643814,̩ɽս,9469,27821,283,13,33,17,-48,-32,-48,-1,7.15,2016/7/252016-07-31,83349,1523036,2510,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/25,33:16.6\r\n4,643721,AΣ¡۵ձ,4313,9762,159,61,27,11,-21,34,-21,2,7.89,2016/7/252016-07-31,83349,1523036,2510,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/25,33:16.6\r\n5,639105,ռ3,3961,3961,124,3,32,21,0,0,0,0,0,2016/7/252016-07-31,83349,1523036,2510,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/25,33:16.6\r\n6,618087,㺣,2490,55964,75,24,33,11,-66,-53,-66,-2,7.2,2016/7/252016-07-31,83349,1523036,2510,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/25,33:16.7\r\n7,641077,ս2,2241,67096,58,24,38,13,-70,-64,-71,-4,7.91,2016/7/252016-07-31,83349,1523036,2510,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/25,33:16.7\r\n8,644059,½֪,1516,18801,52,17,29,12,-76,-71,-76,-3,7.07,2016/7/252016-07-31,83349,1523036,2510,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/25,33:16.7\r\n9,639418,,1139,1145,39,3,29,9,0,0,0,0,0,2016/7/252016-07-31,83349,1523036,2510,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/25,33:16.8\r\n10,627864,֮ǰ,1057,3570,33,10,32,6,-58,-24,-58,-2,7.25,2016/7/252016-07-31,83349,1523036,2510,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/25,33:16.8\r\n1,621641,,41039,41053,1174,4,35,37,0,0,0,0,0,2016/7/182016-07-24,99204,1528179,2988,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/18,33:17.7\r\n2,643814,̩ɽս,18352,18352,546,6,34,22,0,0,0,0,0,2016/7/182016-07-24,99204,1528179,2988,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/18,33:17.7\r\n3,641077,ս2,7409,64855,202,17,37,16,-73,-61,-73,-2,7.91,2016/7/182016-07-24,99204,1528179,2988,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/18,33:17.8\r\n4,618087,㺣,7304,53473,221,17,33,15,-69,-53,-69,-2,7.18,2016/7/182016-07-24,99204,1528179,2988,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/18,33:17.8\r\n5,644059,½֪,6300,17285,218,10,29,14,-42,0,-43,-1,7.21,2016/7/182016-07-24,99204,1528179,2988,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/18,33:17.8\r\n6,643721,AΣ¡۵ձ,5449,5449,202,54,27,19,0,0,0,0,0,2016/7/182016-07-24,99204,1528179,2988,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/18,33:17.8\r\n7,619127,ഺԭ㻹,2663,33535,77,17,35,17,-79,-81,-81,-4,6.68,2016/7/182016-07-24,99204,1528179,2988,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/18,33:17.9\r\n8,627864,֮ǰ,2504,2514,79,3,32,11,0,0,0,0,0,2016/7/182016-07-24,99204,1528179,2988,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/18,33:17.9\r\n9,644032,ת,2253,7503,76,10,30,10,-57,-19,-58,-4,7.57,2016/7/182016-07-24,99204,1528179,2988,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/18,33:17.9\r\n10,643909,ǹֿǹ,1154,5236,36,10,32,7,-72,-46,-72,-3,6.68,2016/7/182016-07-24,99204,1528179,2988,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/18,33:17.9\r\n1,641077,ս2,27532,57447,755,10,36,24,-8,75,-8,9999,7.97,2016/7/112016-07-17,97676,1537910,2975,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/11,33:18.8\r\n2,618087,㺣,23353,46170,703,10,33,23,2,100,3,9999,7.18,2016/7/112016-07-17,97676,1537910,2975,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/11,33:18.8\r\n3,619127,ഺԭ㻹,12918,30873,409,10,32,17,-28,27,-34,9999,6.75,2016/7/112016-07-17,97676,1537910,2975,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/11,33:18.8\r\n4,644059,½֪,10927,10985,381,3,29,25,0,0,0,0,0,2016/7/112016-07-17,97676,1537910,2975,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/11,33:18.8\r\n5,644032,ת,5250,5250,182,3,29,20,0,0,0,0,0,2016/7/112016-07-17,97676,1537910,2975,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/11,33:18.8\r\n6,644009,2Ӱ,4825,38382,140,16,34,17,-71,-72,-71,-2,7.48,2016/7/112016-07-17,97676,1537910,2975,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/11,33:18.9\r\n7,643909,ǹֿǹ,4065,4082,128,3,32,12,0,0,0,0,0,2016/7/112016-07-17,97676,1537910,2975,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/11,33:18.9\r\n8,643771,ħ2,1806,63544,52,24,35,19,-75,-79,-76,-2,7.69,2016/7/112016-07-17,97676,1537910,2975,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/11,33:18.9\r\n9,643246,̫Ѽ,1544,1545,48,3,32,14,0,0,0,0,0,2016/7/112016-07-17,97676,1537910,2975,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/11,33:18.9\r\n10,589485,ҡ,1187,3807,39,10,30,11,-52,-7,-52,-2,8.17,2016/7/112016-07-17,97676,1537910,2975,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/11,33:19.0\r\n1,641077,ս2,29915,29915,822,3,36,45,0,0,0,0,0,2016/7/42016-07-10,116463,1499736,3512,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/4,33:19.9\r\n2,618087,㺣,22813,22816,681,3,33,44,0,0,0,0,0,2016/7/42016-07-10,116463,1499736,3512,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/4,33:20.0\r\n3,619127,ഺԭ㻹,17934,17955,616,3,29,32,0,0,0,0,0,2016/7/42016-07-10,116463,1499736,3512,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/4,33:20.0\r\n4,644009,2Ӱ,16500,33557,483,9,34,17,-3,106,-3,-1,7.46,2016/7/42016-07-10,116463,1499736,3512,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/4,33:20.0\r\n5,615259,ͽ,8457,20239,266,10,32,15,-28,27,-27,-1,6.85,2016/7/42016-07-10,116463,1499736,3512,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/4,33:20.0\r\n6,643771,ħ2,7191,61738,215,17,33,16,-72,-63,-72,-5,7.68,2016/7/42016-07-10,116463,1499736,3512,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/4,33:20.0\r\n7,644099,գ,4779,49203,137,17,35,15,-77,-69,-76,-5,7.23,2016/7/42016-07-10,116463,1499736,3512,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/4,33:20.1\r\n8,589485,ҡ,2479,2620,81,3,31,20,0,0,0,0,0,2016/7/42016-07-10,116463,1499736,3512,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/4,33:20.1\r\n9,639833,ԡͺڷ۽,2168,7968,74,11,29,9,-63,-21,-63,-4,7.38,2016/7/42016-07-10,116463,1499736,3512,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/4,33:20.1\r\n10,643885,ܶԱ2ȥĶ,1293,25197,40,24,32,11,-67,-58,-68,-4,8.02,2016/7/42016-07-10,116463,1499736,3512,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/7/4,33:20.1\r\n1,643771,ħ2,25705,54547,776,10,33,22,-11,74,-11,9999,7.7,2016/6/272016-07-03,92496,1415691,2790,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/27,33:20.6\r\n2,644099,գ,20385,44424,581,10,35,19,-15,67,-12,9999,7.25,2016/6/272016-07-03,92496,1415691,2790,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/27,33:20.6\r\n3,644009,2Ӱ,17057,17057,495,2,34,36,0,0,0,0,0,2016/6/272016-07-03,92496,1415691,2790,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/27,33:20.6\r\n4,615259,ͽ,11769,11782,366,3,32,26,0,0,0,0,0,2016/6/272016-07-03,92496,1415691,2790,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/27,33:20.7\r\n5,639833,ԡͺڷ۽,5800,5800,197,4,29,18,0,0,0,0,0,2016/6/272016-07-03,92496,1415691,2790,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/27,33:20.7\r\n6,643885,ܶԱ2ȥĶ,3948,23904,125,17,32,14,-50,-65,-50,-2,8.02,2016/6/272016-07-03,92496,1415691,2790,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/27,33:20.7\r\n7,631111,,3441,9722,117,10,29,9,-45,16,-45,-2,7.14,2016/6/272016-07-03,92496,1415691,2790,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/27,33:20.7\r\n8,402117,ħ,2063,146780,60,26,35,10,-79,-81,-78,-5,8.41,2016/6/272016-07-03,92496,1415691,2790,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/27,33:20.8\r\n9,644103,ħ,469,469,17,3,28,6,0,0,0,0,0,2016/6/272016-07-03,92496,1415691,2790,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/27,33:20.8\r\n10,642020,Xս,409,80283,12,31,34,9,-90,-90,-90,-4,8.46,2016/6/272016-07-03,92496,1415691,2790,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/27,33:20.8\r\n1,643771,ħ2,28841,28842,877,3,33,43,0,0,0,0,0,2016/6/202016-06-26,83022,1363609,2455,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/20,33:21.2\r\n2,644099,գ,24039,24039,662,3,36,37,0,0,0,0,0,2016/6/202016-06-26,83022,1363609,2455,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/20,33:21.3\r\n3,402117,ħ,9804,144717,270,19,36,9,-69,-50,-68,-2,8.41,2016/6/202016-06-26,83022,1363609,2455,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/20,33:21.3\r\n4,643885,ܶԱ2ȥĶ,7974,19956,248,10,32,10,-33,46,-33,-2,8,2016/6/202016-06-26,83022,1363609,2455,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/20,33:21.3\r\n5,631111,,6281,6281,213,3,29,19,0,0,0,0,0,2016/6/202016-06-26,83022,1363609,2455,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/20,33:21.3\r\n6,642020,Xս,4129,79875,124,24,33,9,-63,-42,-62,-3,8.43,2016/6/202016-06-26,83022,1363609,2455,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/20,33:21.3\r\n7,641094,,504,987,19,10,27,5,4,66,0,1,5.14,2016/6/202016-06-26,83022,1363609,2455,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/20,33:21.3\r\n8,643383,˿ɾ2,482,38712,15,31,32,5,-67,-61,-67,-4,7.6,2016/6/202016-06-26,83022,1363609,2455,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/20,33:21.4\r\n9,658944,ʮŽϺʵӰ,276,1364,4,,62,688,-66,-86,-66,-3,,2016/6/202016-06-26,83022,1363609,2455,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/20,33:21.4\r\n10,644329,ҽаľ֮ɽɽս,224,1200,7,10,31,1,-77,-21,-77,-5,6.7,2016/6/202016-06-26,83022,1363609,2455,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/20,33:21.4\r\n1,402117,ħ,31858,134913,854,12,37,14,-69,-3,-69,9999,8.41,2016/6/132016-06-19,59944,1321340,1705,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/13,33:21.9\r\n2,643885,ܶԱ2ȥĶ,11982,11982,367,3,33,21,0,0,0,0,0,2016/6/132016-06-19,59944,1321340,1705,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/13,33:21.9\r\n3,642020,Xս,11046,75746,329,17,34,14,-58,-29,-57,-1,8.43,2016/6/132016-06-19,59944,1321340,1705,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/13,33:22.0\r\n4,643383,˿ɾ2,1462,38230,47,24,31,6,-66,-38,-67,-1,7.61,2016/6/132016-06-19,59944,1321340,1705,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/13,33:22.0\r\n5,644329,ҽаľ֮ɽɽս,976,976,32,3,31,5,0,0,0,0,0,2016/6/132016-06-19,59944,1321340,1705,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/13,33:22.0\r\n6,658944,ʮŽϺʵӰ,814,1088,13,,62,292,197,184,190,1,,2016/6/132016-06-19,59944,1321340,1705,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/13,33:22.0\r\n7,643995,ŭС,563,51293,18,31,32,4,-84,-55,-85,-3,7.87,2016/6/132016-06-19,59944,1321340,1705,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/13,33:22.0\r\n8,641094,,483,483,19,3,26,8,0,0,0,0,0,2016/6/132016-06-19,59944,1321340,1705,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/13,33:22.1\r\n9,639261,ͼ֮,180,78570,5,52,36,8,-36,-20,-33,-3,7.84,2016/6/132016-06-19,59944,1321340,1705,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/13,33:22.1\r\n10,639860,Ǳҵ,114,261,4,10,26,2,-22,88,-24,1,4.59,2016/6/132016-06-19,59944,1321340,1705,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/13,33:22.1\r\n1,402117,ħ,103054,103054,2774,5,37,45,0,0,0,0,0,2016/6/62016-06-12,139491,1332585,3882,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/6,33:22.6\r\n2,642020,Xս,26102,64699,774,10,34,23,-32,22,-29,-1,8.44,2016/6/62016-06-12,139491,1332585,3882,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/6,33:22.6\r\n3,643383,˿ɾ2,4345,36768,140,17,31,11,-70,-65,-69,-1,7.61,2016/6/62016-06-12,139491,1332585,3882,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/6,33:22.7\r\n4,643995,ŭС,3604,50730,115,24,31,11,-72,-60,-71,-1,7.87,2016/6/62016-06-12,139491,1332585,3882,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/6,33:22.7\r\n5,644260,̩֮ߴս,663,663,23,4,28,7,0,0,0,0,0,2016/6/62016-06-12,139491,1332585,3882,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/6,33:22.7\r\n6,639261,ͼ֮,282,78390,8,45,37,9,-54,-61,-57,1,7.89,2016/6/62016-06-12,139491,1332585,3882,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/6,33:22.7\r\n7,658944,ʮŽϺʵӰ,274,274,5,,60,286,0,0,0,0,,2016/6/62016-06-12,139491,1332585,3882,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/6,33:22.7\r\n8,643852,Ϸ,217,434,8,10,26,4,0,25,3,7,5.94,2016/6/62016-06-12,139491,1332585,3882,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/6,33:22.8\r\n9,611464,񳯷,157,8533,6,38,28,8,-71,-73,-71,9999,8.66,2016/6/62016-06-12,139491,1332585,3882,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/6,33:22.8\r\n10,643740,3ҳ,156,12147,5,24,29,3,-87,-81,-87,-5,7.02,2016/6/62016-06-12,139491,1332585,3882,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/6/6,33:22.8\r\n1,642020,Xս,38598,38598,1092,3,35,40,0,0,0,0,0,2016/5/302016-06-05,74294,1326531,2220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/30,33:23.4\r\n2,643383,˿ɾ2,14680,32423,450,10,33,13,-17,61,-16,-1,7.6,2016/5/302016-06-05,74294,1326531,2220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/30,33:23.4\r\n3,643995,ŭС,12726,47126,401,17,32,15,-13,-30,-13,-1,7.87,2016/5/302016-06-05,74294,1326531,2220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/30,33:23.4\r\n4,643612,ӳ3Ӣս,2445,124622,73,31,34,8,-57,-49,-56,-1,8.45,2016/5/302016-06-05,74294,1326531,2220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/30,33:23.4\r\n5,643740,3ҳ,1215,11991,42,17,29,5,-72,-60,-72,-1,7,2016/5/302016-06-05,74294,1326531,2220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/30,33:23.4\r\n6,643848,48Сʱ,797,10245,26,24,31,26,-1,-65,6,1,7.22,2016/5/302016-06-05,74294,1326531,2220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/30,33:23.5\r\n7,639261,ͼ֮,620,78108,17,38,36,8,-58,-58,-59,-2,7.89,2016/5/302016-06-05,74294,1326531,2220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/30,33:23.5\r\n8,640092,սʿ֮ӡ,564,564,21,5,26,9,0,0,0,0,,2016/5/302016-06-05,74294,1326531,2220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/30,33:23.5\r\n9,611464,񳯷,548,8375,19,31,29,8,-62,-53,-62,-3,8.66,2016/5/302016-06-05,74294,1326531,2220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/30,33:23.5\r\n10,626997,ˮ֮ˮܶԱ,361,361,14,5,25,6,0,0,0,0,0,2016/5/302016-06-05,74294,1326531,2220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/30,33:23.5\r\n1,643383,˿ɾ2,17743,17743,534,3,33,24,0,0,0,0,0,2016/5/232016-05-29,48627,1350622,1519,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/23,33:24.2\r\n2,643995,ŭС,14616,34399,458,10,32,12,-26,83,-26,-1,7.93,2016/5/232016-05-29,48627,1350622,1519,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/23,33:24.2\r\n3,643612,ӳ3Ӣս,5659,122177,166,24,34,10,-61,-48,-60,-1,8.45,2016/5/232016-05-29,48627,1350622,1519,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/23,33:24.3\r\n4,643740,3ҳ,4286,10776,150,10,28,7,-34,65,-35,-1,7.03,2016/5/232016-05-29,48627,1350622,1519,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/23,33:24.3\r\n5,639261,ͼ֮,1460,77488,42,31,35,9,-61,-53,-61,9999,7.87,2016/5/232016-05-29,48627,1350622,1519,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/23,33:24.3\r\n6,611464,񳯷,1442,7827,51,24,28,10,-61,-44,-62,-2,8.72,2016/5/232016-05-29,48627,1350622,1519,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/23,33:24.3\r\n7,643848,48Сʱ,809,9448,24,17,33,9,-76,-79,-77,-1,7.22,2016/5/232016-05-29,48627,1350622,1519,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/23,33:24.3\r\n8,615789,ҹȸ,719,3230,25,10,28,3,-71,18,-72,-1,7.12,2016/5/232016-05-29,48627,1350622,1519,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/23,33:24.3\r\n9,627639,ҽ,483,484,17,3,28,6,0,0,0,0,0,2016/5/232016-05-29,48627,1350622,1519,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/23,33:24.4\r\n10,628257,¾Ƶɱ¼,458,458,15,3,31,6,0,0,0,0,0,2016/5/232016-05-29,48627,1350622,1519,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/23,33:24.4\r\n1,643995,ŭС,19783,19783,623,3,32,31,0,0,0,0,0,2016/5/162016-05-22,57452,1298944,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/16,33:25.2\r\n2,643612,ӳ3Ӣս,14657,116518,418,17,35,13,-62,-39,-62,-1,8.5,2016/5/162016-05-22,57452,1298944,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/16,33:25.2\r\n3,643740,3ҳ,6488,6490,231,3,28,19,0,0,0,0,0,2016/5/162016-05-22,57452,1298944,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/16,33:25.2\r\n4,611464,񳯷,3734,6386,134,17,28,14,50,179,52,1,8.74,2016/5/162016-05-22,57452,1298944,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/16,33:25.2\r\n5,639261,ͼ֮,3723,76029,108,24,34,10,-56,-43,-57,-3,7.84,2016/5/162016-05-22,57452,1298944,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/16,33:25.3\r\n6,643848,48Сʱ,3441,8639,106,10,33,8,-34,41,-35,-3,7.3,2016/5/162016-05-22,57452,1298944,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/16,33:25.3\r\n7,615789,ҹȸ,2510,2510,92,3,27,13,0,0,0,0,0,2016/5/162016-05-22,57452,1298944,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/16,33:25.3\r\n8,644061,壺Ϸ,832,3493,32,11,26,5,-69,-33,-70,-4,7.12,2016/5/162016-05-22,57452,1298944,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/16,33:25.3\r\n9,608975,ֵ,784,784,25,3,31,6,0,0,0,0,0,2016/5/162016-05-22,57452,1298944,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/16,33:25.3\r\n10,640869,ɹӰ,307,669,12,10,26,5,-15,48,-16,-1,5.81,2016/5/162016-05-22,57452,1298944,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/16,33:25.4\r\n1,643612,ӳ3Ӣս,39062,101862,1107,10,35,21,-38,78,-38,9999,8.57,2016/5/92016-05-15,62629,1216637,1875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/9,33:25.9\r\n2,639261,ͼ֮,8469,72305,250,17,34,14,-70,-51,-70,9999,7.89,2016/5/92016-05-15,62629,1216637,1875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/9,33:25.9\r\n3,643848,48Сʱ,5198,5198,163,3,32,17,0,0,0,0,0,2016/5/92016-05-15,62629,1216637,1875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/9,33:25.9\r\n4,644061,壺Ϸ,2661,2661,107,4,25,10,0,0,0,0,0,2016/5/92016-05-15,62629,1216637,1875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/9,33:25.9\r\n5,611464,񳯷,2496,2652,88,10,28,27,1508,311,1615,8,8.34,2016/5/92016-05-15,62629,1216637,1875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/9,33:26.0\r\n6,625797,ɭ,1795,97933,57,31,32,8,-83,-60,-82,-3,8.35,2016/5/92016-05-15,62629,1216637,1875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/9,33:26.0\r\n7,630869,ټҲ,832,833,29,3,29,7,0,0,0,0,0,2016/5/92016-05-15,62629,1216637,1875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/9,33:26.0\r\n8,637777,ħӰ,424,8720,13,17,32,5,-86,-75,-86,-4,6.63,2016/5/92016-05-15,62629,1216637,1875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/9,33:26.0\r\n9,640869,ɹӰ,362,362,14,3,26,9,0,0,0,0,0,2016/5/92016-05-15,62629,1216637,1875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/9,33:26.0\r\n10,628773,ϻ,300,8038,11,17,28,5,-88,-83,-88,-5,6.57,2016/5/92016-05-15,62629,1216637,1875,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/9,33:26.1\r\n1,643612,ӳ3Ӣս,62800,62800,1798,3,35,60,0,0,0,0,0,2016/5/22016-05-08,111777,1304436,3299,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/2,33:26.6\r\n2,639261,ͼ֮,28278,63836,845,10,33,23,-20,68,-21,-1,7.89,2016/5/22016-05-08,111777,1304436,3299,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/2,33:26.6\r\n3,625797,ɭ,10482,96138,318,24,33,18,-51,-37,-49,-1,8.31,2016/5/22016-05-08,111777,1304436,3299,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/2,33:26.6\r\n4,637777,ħӰ,3053,8296,95,10,32,9,-42,46,-43,9999,6.6,2016/5/22016-05-08,111777,1304436,3299,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/2,33:26.6\r\n5,628773,ϻ,2510,7737,87,10,29,7,-52,8,-54,9999,6.42,2016/5/22016-05-08,111777,1304436,3299,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/2,33:26.6\r\n6,638623,,1274,3104,42,10,30,7,-30,11,-32,1,7.66,2016/5/22016-05-08,111777,1304436,3299,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/2,33:26.7\r\n7,619412,˭ഺã,1219,17792,40,17,31,8,-81,-75,-81,-4,7.34,2016/5/22016-05-08,111777,1304436,3299,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/2,33:26.7\r\n8,643854,ܶԱ,355,835,12,9,29,7,-26,51,-25,3,5.85,2016/5/22016-05-08,111777,1304436,3299,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/2,33:26.7\r\n9,643759,񣺶֮ս,343,10599,9,17,36,7,-90,-91,-91,-3,6.69,2016/5/22016-05-08,111777,1304436,3299,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/2,33:26.7\r\n10,612080,ֵ̾,275,2942,9,17,30,12,-79,-86,-79,-2,7.58,2016/5/22016-05-08,111777,1304436,3299,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/5/2,33:26.8\r\n1,639261,ͼ֮,35552,35558,1068,3,33,49,0,0,0,0,0,2016/4/252016-05-01,84084,1366205,2601,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/25,33:27.3\r\n2,625797,ɭ,21234,85656,628,17,34,22,-35,-35,-35,-1,8.3,2016/4/252016-05-01,84084,1366205,2601,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/25,33:27.3\r\n3,619412,˭ഺã,6569,16573,213,10,31,11,-34,43,-35,-1,7.35,2016/4/252016-05-01,84084,1366205,2601,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/25,33:27.4\r\n4,637777,ħӰ,5237,5243,166,3,32,22,0,0,0,0,0,2016/4/252016-05-01,84084,1366205,2601,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/25,33:27.4\r\n5,628773,ϻ,5213,5228,189,3,28,18,0,0,0,0,0,2016/4/252016-05-01,84084,1366205,2601,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/25,33:27.4\r\n6,643759,񣺶֮ս,3337,10256,101,10,33,7,-52,19,-52,-3,6.74,2016/4/252016-05-01,84084,1366205,2601,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/25,33:27.4\r\n7,638623,,1826,1830,61,3,30,12,0,0,0,0,0,2016/4/252016-05-01,84084,1366205,2601,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/25,33:27.4\r\n8,612080,ֵ̾,1285,2668,44,10,29,8,-6,43,-6,-1,7.55,2016/4/252016-05-01,84084,1366205,2601,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/25,33:27.5\r\n9,629147,ҵҰŮ,981,3388,34,10,29,4,-59,4,-59,-4,5.06,2016/4/252016-05-01,84084,1366205,2601,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/25,33:27.5\r\n10,637145,׶,767,33849,22,24,35,7,-78,-77,-79,-6,,2016/4/252016-05-01,84084,1366205,2601,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/25,33:27.5\r\n1,625797,ɭ,32472,64422,968,10,34,22,2,93,2,9999,8.21,2016/4/182016-04-24,62644,1376547,1949,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/18,33:28.2\r\n2,619412,˭ഺã,9998,10004,329,3,30,24,0,0,0,0,0,2016/4/182016-04-24,62644,1376547,1949,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/18,33:28.2\r\n3,643759,񣺶֮ս,6919,6919,211,3,33,17,0,0,0,0,0,2016/4/182016-04-24,62644,1376547,1949,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/18,33:28.2\r\n4,637145,׶,3435,33082,104,17,33,8,-75,-59,-76,-2,,2016/4/182016-04-24,62644,1376547,1949,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/18,33:28.2\r\n5,629147,ҵҰŮ,2407,2407,85,3,28,10,0,0,0,0,0,2016/4/182016-04-24,62644,1376547,1949,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/18,33:28.2\r\n6,629520,׷,1505,4238,54,10,28,5,-45,22,-45,-2,7.51,2016/4/182016-04-24,62644,1376547,1949,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/18,33:28.2\r\n7,612080,ֵ̾,1364,1383,47,3,29,13,0,0,0,0,0,2016/4/182016-04-24,62644,1376547,1949,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/18,33:28.3\r\n8,643747,,1219,3365,43,11,28,8,-43,-7,-44,-1,8.3,2016/4/182016-04-24,62644,1376547,1949,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/18,33:28.3\r\n9,617763,Ӣ,863,36908,26,24,33,6,-82,-76,-82,-6,7.66,2016/4/182016-04-24,62644,1376547,1949,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/18,33:28.3\r\n10,637117,ϲع,651,1954,21,10,31,3,-50,10,-50,-2,6.69,2016/4/182016-04-24,62644,1376547,1949,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/18,33:28.3\r\n1,625797,ɭ,31950,31950,950,3,34,42,0,0,0,0,0,2016/4/112016-04-17,65042,1399849,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/11,33:29.0\r\n2,637145,׶,13676,29647,435,10,31,14,-14,62,-14,9999,,2016/4/112016-04-17,65042,1399849,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/11,33:29.0\r\n3,617763,Ӣ,4691,36045,146,17,32,8,-73,-44,-73,-2,7.66,2016/4/112016-04-17,65042,1399849,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/11,33:29.1\r\n4,629520,׷,2726,2733,97,3,28,11,0,0,0,0,0,2016/4/112016-04-17,65042,1399849,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/11,33:29.1\r\n5,628035,ҵعүү,2558,32135,81,17,32,6,-80,-55,-80,-2,6.97,2016/4/112016-04-17,65042,1399849,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/11,33:29.1\r\n6,643235,,2435,153028,77,45,32,9,-71,-43,-71,-2,9.23,2016/4/112016-04-17,65042,1399849,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/11,33:29.1\r\n7,643747,,2146,2146,77,4,28,13,0,0,0,0,7.32,2016/4/112016-04-17,65042,1399849,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/11,33:29.1\r\n8,637117,ϲع,1303,1303,42,3,31,7,0,0,0,0,6.69,2016/4/112016-04-17,65042,1399849,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/11,33:29.2\r\n9,643388,սˣ,834,61805,22,24,38,4,-85,-61,-85,-4,7.43,2016/4/112016-04-17,65042,1399849,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/11,33:29.2\r\n10,637810,˯̵ֵ,827,12478,29,17,29,4,-83,-63,-83,-4,7.18,2016/4/112016-04-17,65042,1399849,2022,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/11,33:29.2\r\n1,617763,Ӣ,17225,31354,541,10,32,18,22,114,22,2,7.71,2016/4/42016-04-10,67958,1425700,2137,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/4,33:29.6\r\n2,637145,׶,15971,15971,503,3,32,26,0,0,0,0,,2016/4/42016-04-10,67958,1425700,2137,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/4,33:29.7\r\n3,628035,ҵعүү,12726,29578,403,10,32,14,-24,82,-25,-1,7.08,2016/4/42016-04-10,67958,1425700,2137,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/4,33:29.7\r\n4,643235,,8528,150593,267,38,32,18,-30,-20,-29,9999,9.23,2016/4/42016-04-10,67958,1425700,2137,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/4,33:29.7\r\n5,643388,սˣ,5460,60971,148,17,37,12,-70,-63,-70,-4,7.43,2016/4/42016-04-10,67958,1425700,2137,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/4,33:29.7\r\n6,637810,˯̵ֵ,4740,11652,165,10,29,9,-31,43,-32,-1,7.23,2016/4/42016-04-10,67958,1425700,2137,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/4,33:29.7\r\n7,642886,Ұ,955,37526,28,24,34,12,-71,-75,-73,-1,8.28,2016/4/42016-04-10,67958,1425700,2137,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/4,33:29.8\r\n8,643227,żԼ,768,1448,28,10,27,8,13,75,14,-1,6.79,2016/4/42016-04-10,67958,1425700,2137,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/4,33:29.8\r\n9,626499,ͤ,230,605,8,32,30,4,-3,64,-3,4,,2016/4/42016-04-10,67958,1425700,2137,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/4,33:29.8\r\n10,642433,̫èӢ۹,224,593,7,9,30,4,-3,62,-3,4,5.47,2016/4/42016-04-10,67958,1425700,2137,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/4/4,33:29.8\r\n1,643388,սˣ,18211,55511,499,10,36,15,-51,39,-53,9999,7.43,2016/3/282016-04-03,75984,1302337,2352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/28,33:30.4\r\n2,628035,ҵعүү,16852,16852,537,3,31,33,0,0,0,0,0,2016/3/282016-04-03,75984,1302337,2352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/28,33:30.5\r\n3,617763,Ӣ,14105,14129,443,3,32,31,0,0,0,0,0,2016/3/282016-04-03,75984,1302337,2352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/28,33:30.5\r\n4,643235,,12140,142065,377,31,32,20,-31,-35,-30,-2,9.23,2016/3/282016-04-03,75984,1302337,2352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/28,33:30.5\r\n5,637810,˯̵ֵ,6893,6912,241,3,29,20,0,0,0,0,0,2016/3/282016-04-03,75984,1302337,2352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/28,33:30.5\r\n6,642886,Ұ,3296,36570,105,17,31,11,-73,-64,-74,-3,8.22,2016/3/282016-04-03,75984,1302337,2352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/28,33:30.5\r\n7,643227,żԼ,679,680,25,3,28,12,0,0,0,0,6.91,2016/3/282016-04-03,75984,1302337,2352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/28,33:30.5\r\n8,7861,Ե,589,1336,21,10,28,6,-21,59,-22,-1,8.16,2016/3/282016-04-03,75984,1302337,2352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/28,33:30.6\r\n9,637664,Ů氮ʽ,493,6304,18,17,28,5,-80,-68,-80,-5,7.31,2016/3/282016-04-03,75984,1302337,2352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/28,33:30.6\r\n10,643426,սȨ֮,302,23436,9,24,34,6,-84,-78,-84,-5,7.54,2016/3/282016-04-03,75984,1302337,2352,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/28,33:30.6\r\n1,643388,սˣ,37299,37299,1068,3,35,44,0,0,0,0,0,2016/3/212016-03-27,76725,1222012,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/21,33:31.4\r\n2,643235,,17690,129926,542,24,33,19,-54,-28,-53,-1,9.23,2016/3/212016-03-27,76725,1222012,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/21,33:31.4\r\n3,642886,Ұ,12357,33274,406,10,30,15,-41,54,-42,-1,8.3,2016/3/212016-03-27,76725,1222012,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/21,33:31.4\r\n4,637664,Ů氮ʽ,2510,5810,90,10,28,9,-24,69,-25,1,7.73,2016/3/212016-03-27,76725,1222012,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/21,33:31.4\r\n5,643426,սȨ֮,1840,23135,54,17,34,8,-78,-68,-78,-2,7.59,2016/3/212016-03-27,76725,1222012,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/21,33:31.4\r\n6,610219,Ҷ3,1095,76831,29,24,38,6,-80,-72,-80,-2,7.45,2016/3/212016-03-27,76725,1222012,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/21,33:31.5\r\n7,7861,Ե,747,747,27,3,27,12,0,0,0,0,7.04,2016/3/212016-03-27,76725,1222012,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/21,33:31.5\r\n8,626153,,489,338840,14,49,35,6,-73,-67,-73,-2,8.21,2016/3/212016-03-27,76725,1222012,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/21,33:31.5\r\n9,639351,è3,398,99745,13,59,30,41,-22,-41,-14,-1,8.27,2016/3/212016-03-27,76725,1222012,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/21,33:31.5\r\n10,327746,ӥ,367,639,12,10,30,6,35,-5,38,9999,8.17,2016/3/212016-03-27,76725,1222012,2322,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/21,33:31.6\r\n1,643235,,38602,112236,1151,17,34,29,-34,13,-32,9999,9.24,2016/3/142016-03-20,81906,1292193,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/14,33:32.0\r\n2,642886,Ұ,20916,20916,695,3,30,40,0,0,0,0,7.52,2016/3/142016-03-20,81906,1292193,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/14,33:32.1\r\n3,643426,սȨ֮,8248,21295,244,10,34,12,-37,41,-37,9999,7.54,2016/3/142016-03-20,81906,1292193,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/14,33:32.1\r\n4,610219,Ҷ3,5485,75736,146,17,38,9,-79,-57,-79,-2,7.5,2016/3/142016-03-20,81906,1292193,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/14,33:32.1\r\n5,637664,Ů氮ʽ,3301,3301,119,3,28,19,0,0,0,0,0,2016/3/142016-03-20,81906,1292193,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/14,33:32.1\r\n6,626153,,1831,338351,52,42,36,8,-72,-52,-72,-2,8.21,2016/3/142016-03-20,81906,1292193,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/14,33:32.1\r\n7,643570,ɼƻ,607,612,22,3,27,9,0,0,0,0,0,2016/3/142016-03-20,81906,1292193,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/14,33:32.2\r\n8,639351,è3,511,99346,15,52,33,28,169,-34,128,5,8.33,2016/3/142016-03-20,81906,1292193,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/14,33:32.2\r\n9,639743,3,382,860,14,10,27,6,-20,40,-21,-1,4.88,2016/3/142016-03-20,81906,1292193,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/14,33:32.2\r\n10,327746,ӥ,272,272,9,3,31,4,0,0,0,0,7.3,2016/3/142016-03-20,81906,1292193,2529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/14,33:32.2\r\n1,643235,,58085,73633,1692,10,34,48,274,228,283,1,9.24,2016/3/72016-03-13,110419,1364101,3195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/7,33:32.7\r\n2,610219,Ҷ3,25973,70251,696,10,37,18,-41,51,-37,-1,7.64,2016/3/72016-03-13,110419,1364101,3195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/7,33:32.7\r\n3,643426,սȨ֮,13047,13047,390,3,33,26,0,0,0,0,7.16,2016/3/72016-03-13,110419,1364101,3195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/7,33:32.8\r\n4,626153,,6627,336520,187,35,35,13,-55,-55,-54,-1,8.21,2016/3/72016-03-13,110419,1364101,3195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/7,33:32.8\r\n5,628132,֮鶨,1557,1558,55,6,28,7,0,0,0,0,7.22,2016/3/72016-03-13,110419,1364101,3195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/7,33:32.8\r\n6,620685,Ӱع,1187,2763,41,10,29,7,-25,8,-28,1,7.51,2016/3/72016-03-13,110419,1364101,3195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/7,33:32.8\r\n7,624324,Ӫ,854,2252,29,10,30,6,-39,-11,-40,1,7.65,2016/3/72016-03-13,110419,1364101,3195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/7,33:32.8\r\n8,639743,3,478,478,18,3,27,10,0,0,0,0,0,2016/3/72016-03-13,110419,1364101,3195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/7,33:32.9\r\n9,626346,μ֮׹Ǿ,431,119820,13,35,33,7,-88,-83,-87,-5,6.92,2016/3/72016-03-13,110419,1364101,3195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/7,33:32.9\r\n10,641426,һǻ,381,381,13,4,29,8,0,0,0,0,7.29,2016/3/72016-03-13,110419,1364101,3195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/3/7,33:32.9\r\n1,610219,Ҷ3,44278,44279,1108,3,40,44,0,0,0,0,7.64,2016/2/292016-03-06,91098,1394842,2482,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/29,33:33.5\r\n2,643235,,15549,15549,441,3,35,41,0,0,0,0,7.76,2016/2/292016-03-06,91098,1394842,2482,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/29,33:33.5\r\n3,626153,,14614,329893,407,28,36,13,-64,-29,-64,-2,8.21,2016/2/292016-03-06,91098,1394842,2482,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/29,33:33.5\r\n4,626346,μ֮׹Ǿ,3490,119389,97,28,36,8,-72,-36,-72,-2,6.87,2016/2/292016-03-06,91098,1394842,2482,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/29,33:33.6\r\n5,637759,ŷ3,2444,111544,72,28,34,8,-71,-41,-71,-1,5.92,2016/2/292016-03-06,91098,1394842,2482,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/29,33:33.6\r\n6,618023,Իڤ,1953,25538,55,17,35,6,-80,-54,-80,-3,5.89,2016/2/292016-03-06,91098,1394842,2482,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/29,33:33.6\r\n7,620685,Ӱع,1576,1576,56,3,28,11,0,0,0,0,6.78,2016/2/292016-03-06,91098,1394842,2482,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/29,33:33.6\r\n8,624324,Ӫ,1398,1398,48,3,29,10,0,0,0,0,7.18,2016/2/292016-03-06,91098,1394842,2482,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/29,33:33.6\r\n9,628676,߸Ь,1146,12818,43,22,26,10,-64,-27,-61,-2,6.95,2016/2/292016-03-06,91098,1394842,2482,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/29,33:33.7\r\n10,629613,ĩ,1119,3501,39,10,29,5,-53,22,-53,-1,6.98,2016/2/292016-03-06,91098,1394842,2482,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/29,33:33.7\r\n1,626153,,40796,315280,1130,21,36,25,-56,-13,-55,9999,8.21,2016/2/222016-02-28,90292,1453821,2625,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/22,33:34.1\r\n2,626346,μ֮׹Ǿ,12400,115899,345,21,36,19,-53,-19,-52,9999,6.89,2016/2/222016-02-28,90292,1453821,2625,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/22,33:34.2\r\n3,618023,Իڤ,9793,23585,275,10,36,13,-29,52,-29,1,5.96,2016/2/222016-02-28,90292,1453821,2625,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/22,33:34.2\r\n4,637759,ŷ3,8363,109100,245,21,34,16,-61,-29,-59,-1,5.86,2016/2/222016-02-28,90292,1453821,2625,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/22,33:34.2\r\n5,639351,è3,4808,97572,140,31,34,18,-47,-17,-47,9999,8.35,2016/2/222016-02-28,90292,1453821,2625,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/22,33:34.2\r\n6,638423,Ӱ߾糡棺˴,3395,9564,116,11,29,13,-45,-2,-46,9999,8.63,2016/2/222016-02-28,90292,1453821,2625,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/22,33:34.2\r\n7,628676,߸Ь,3143,11673,112,15,28,18,-41,-26,-40,9999,6.95,2016/2/222016-02-28,90292,1453821,2625,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/22,33:34.2\r\n8,620150,ʥʿʸʥ˵,2945,2945,105,3,28,13,0,0,0,0,7.09,2016/2/222016-02-28,90292,1453821,2625,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/22,33:34.3\r\n9,629613,ĩ,2382,2382,83,3,29,14,0,0,0,0,4.94,2016/2/222016-02-28,90292,1453821,2625,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/22,33:34.3\r\n10,636759,˹Ƕൺ֮ʧ,737,1640,26,9,28,10,-18,94,-17,-1,6.91,2016/2/222016-02-28,90292,1453821,2625,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/22,33:34.3\r\n1,626153,,92192,274484,2533,14,36,49,-49,-11,-48,9999,8.27,2016/2/152016-02-21,178435,1498635,5045,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/15,33:34.9\r\n2,626346,μ֮׹Ǿ,26408,103500,725,14,36,32,-66,-37,-65,1,6.89,2016/2/152016-02-21,178435,1498635,5045,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/15,33:35.0\r\n3,637759,ŷ3,21446,100737,602,14,36,28,-73,-46,-73,-1,5.86,2016/2/152016-02-21,178435,1498635,5045,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/15,33:35.0\r\n4,618023,Իڤ,13791,13792,386,3,36,27,0,0,0,0,7.5,2016/2/152016-02-21,178435,1498635,5045,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/15,33:35.0\r\n5,639351,è3,9084,92763,265,24,34,29,-42,2,-38,-1,8.35,2016/2/152016-02-21,178435,1498635,5045,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/15,33:35.0\r\n6,638423,Ӱ߾糡棺˴,6169,6169,215,4,29,23,0,0,0,0,6.99,2016/2/152016-02-21,178435,1498635,5045,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/15,33:35.0\r\n7,628676,߸Ь,5329,8530,187,8,28,23,79,310,82,9999,7.17,2016/2/152016-02-21,178435,1498635,5045,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/15,33:35.0\r\n8,631748,,1039,4675,31,8,33,8,-71,59,-72,-3,4.58,2016/2/152016-02-21,178435,1498635,5045,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/15,33:35.1\r\n9,636759,˹Ƕൺ֮ʧ,903,903,31,2,29,24,0,0,0,0,0,2016/2/152016-02-21,178435,1498635,5045,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/15,33:35.1\r\n10,640206,ܳû֮Ĺ,432,28583,15,37,29,26,-27,15,-24,9999,7.94,2016/2/152016-02-21,178435,1498635,5045,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/15,33:35.1\r\n1,626153,,181802,182292,4898,7,37,84,0,0,0,11,8.37,2016/2/82016-02-14,365477,1581066,10013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/8,33:35.5\r\n2,637759,ŷ3,78658,79292,2193,7,36,55,0,0,0,9,6.86,2016/2/82016-02-14,365477,1581066,10013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/8,33:35.5\r\n3,626346,μ֮׹Ǿ,76857,77092,2080,7,37,58,0,0,0,13,6.93,2016/2/82016-02-14,365477,1581066,10013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/8,33:35.5\r\n4,639351,è3,15584,83679,428,17,36,48,-48,-83,-49,-3,8.35,2016/2/82016-02-14,365477,1581066,10013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/8,33:35.6\r\n5,631748,,3629,3636,110,1,33,44,0,0,0,0,0,2016/2/82016-02-14,365477,1581066,10013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/8,33:35.6\r\n6,637947,޴ս,3261,3296,109,7,30,20,0,0,0,18,7.67,2016/2/82016-02-14,365477,1581066,10013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/8,33:35.6\r\n7,628676,߸Ь,2979,3201,103,1,29,51,0,0,0,0,0,2016/2/82016-02-14,365477,1581066,10013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/8,33:35.6\r\n8,630033,ıɱˮ껪,939,939,32,1,29,29,0,0,0,0,8.18,2016/2/82016-02-14,365477,1581066,10013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/8,33:35.6\r\n9,642644,,688,5326,25,14,27,13,-85,-90,-85,-7,6.53,2016/2/82016-02-14,365477,1581066,10013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/8,33:35.7\r\n10,640206,ܳû֮Ĺ,588,28151,20,30,30,39,-65,-92,-64,-5,7.92,2016/2/82016-02-14,365477,1581066,10013,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/8,33:35.7\r\n1,639351,è3,29835,68095,833,10,36,16,-12,84,-11,9999,8.37,2016/2/12016-02-07,48727,1237255,1452,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/1,33:36.3\r\n2,642644,,4638,4639,164,7,28,8,0,0,0,46,7.59,2016/2/12016-02-07,48727,1237255,1452,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/1,33:36.4\r\n3,636576,4ڇ;,2297,5999,81,13,28,11,-38,-22,-40,2,8.17,2016/2/12016-02-07,48727,1237255,1452,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/1,33:36.4\r\n4,631832,սԭ,2089,82552,59,30,35,10,-59,-51,-59,-2,7.77,2016/2/12016-02-07,48727,1237255,1452,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/1,33:36.4\r\n5,640206,ܳû֮Ĺ,1679,27563,54,23,31,9,-59,-47,-59,-2,7.87,2016/2/12016-02-07,48727,1237255,1452,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/1,33:36.4\r\n6,629996,̫ƽ,1346,3480,39,10,35,4,-37,17,-39,2,5.09,2016/2/12016-02-07,48727,1237255,1452,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/1,33:36.4\r\n7,638436,˽̽,1285,82318,47,39,27,15,-59,-49,-52,-1,7.99,2016/2/12016-02-07,48727,1237255,1452,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/1,33:36.5\r\n8,633345,ʦ,1094,17962,35,24,31,9,-65,-59,-67,-1,7.01,2016/2/12016-02-07,48727,1237255,1452,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/1,33:36.5\r\n9,641008,,830,9034,22,17,37,7,-78,-73,-79,-5,7.91,2016/2/12016-02-07,48727,1237255,1452,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/1,33:36.5\r\n10,630691,˱ϲ,643,2731,21,16,31,11,-49,-52,-51,9999,5.15,2016/2/12016-02-07,48727,1237255,1452,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/2/1,33:36.5\r\n1,639351,è3,33986,38261,941,3,36,34,0,0,0,0,8.14,2016/1/252016-01-31,66100,1290488,1980,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/25,33:37.4\r\n2,631832,սԭ,5126,80464,146,23,35,12,-57,-38,-55,-1,7.77,2016/1/252016-01-31,66100,1290488,1980,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/25,33:37.5\r\n3,640206,ܳû֮Ĺ,4088,25884,132,16,31,12,-53,-33,-52,-1,7.7,2016/1/252016-01-31,66100,1290488,1980,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/25,33:37.5\r\n4,641008,,3741,8204,108,10,35,9,-16,26,-16,1,7.88,2016/1/252016-01-31,66100,1290488,1980,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/25,33:37.5\r\n5,636576,4ڇ;,3699,3701,136,6,27,14,0,0,0,0,7.39,2016/1/252016-01-31,66100,1290488,1980,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/25,33:37.5\r\n6,638436,˽̽,3167,81033,98,32,32,16,-38,-22,-38,-2,7.99,2016/1/252016-01-31,66100,1290488,1980,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/25,33:37.5\r\n7,633345,ʦ,3149,16868,108,17,29,11,-58,-42,-59,-4,7.03,2016/1/252016-01-31,66100,1290488,1980,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/25,33:37.6\r\n8,629996,̫ƽ,2134,2134,64,3,33,7,0,0,0,0,7,2016/1/252016-01-31,66100,1290488,1980,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/25,33:37.6\r\n9,638630,,1410,4011,50,10,28,6,-46,10,-46,-1,7.21,2016/1/252016-01-31,66100,1290488,1980,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/25,33:37.6\r\n10,630691,˱ϲ,1272,2089,43,9,30,10,56,114,58,2,5.16,2016/1/252016-01-31,66100,1290488,1980,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/25,33:37.6\r\n1,631832,սԭ,11854,75337,326,16,36,16,-59,-46,-57,9999,7.77,2016/1/182016-01-24,57142,1225360,1778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/18,33:38.0\r\n2,640206,ܳû֮Ĺ,8670,21796,275,9,32,16,-18,100,-17,9999,7.59,2016/1/182016-01-24,57142,1225360,1778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/18,33:38.0\r\n3,633345,ʦ,7497,13719,261,10,29,16,21,118,19,2,7.05,2016/1/182016-01-24,57142,1225360,1778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/18,33:38.1\r\n4,638436,˽̽,5122,77866,158,25,32,20,-44,-41,-44,-1,8.01,2016/1/182016-01-24,57142,1225360,1778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/18,33:38.1\r\n5,641008,,4463,4463,129,3,35,13,0,0,0,0,7.73,2016/1/182016-01-24,57142,1225360,1778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/18,33:38.1\r\n6,639351,è3,4275,4275,122,-4,35,52,0,0,0,0,7.69,2016/1/182016-01-24,57142,1225360,1778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/18,33:38.1\r\n7,640866,ս֮ʼұ,4061,11833,136,10,30,10,-48,25,-44,-3,6.63,2016/1/182016-01-24,57142,1225360,1778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/18,33:38.1\r\n8,638630,,2601,2601,92,3,28,12,0,0,0,0,8.73,2016/1/182016-01-24,57142,1225360,1778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/18,33:38.2\r\n9,637761,ʧ,1965,6131,66,10,30,8,-52,12,-51,-2,7.04,2016/1/182016-01-24,57142,1225360,1778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/18,33:38.2\r\n10,617155,ڶ,1958,88903,62,32,32,16,-57,-55,-56,-4,8.58,2016/1/182016-01-24,57142,1225360,1778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/18,33:38.2\r\n1,631832,սԭ,28676,63483,758,9,38,21,-18,113,-18,9999,7.83,2016/1/112016-01-17,79180,1173788,2378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/11,33:38.6\r\n2,640206,ܳû֮Ĺ,10569,13126,331,2,32,39,0,0,0,0,0,2016/1/112016-01-17,79180,1173788,2378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/11,33:38.6\r\n3,638436,˽̽,9076,72744,280,18,32,21,-57,-43,-57,-1,8.01,2016/1/112016-01-17,79180,1173788,2378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/11,33:38.7\r\n4,640866,ս֮ʼұ,7773,7773,245,3,32,23,0,0,0,0,0,2016/1/112016-01-17,79180,1173788,2378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/11,33:38.7\r\n5,633345,ʦ,6221,6222,219,3,28,29,0,0,0,0,8.21,2016/1/112016-01-17,79180,1173788,2378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/11,33:38.7\r\n6,617155,ڶ,4503,86946,142,25,32,17,-65,-52,-66,-2,8.59,2016/1/112016-01-17,79180,1173788,2378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/11,33:38.7\r\n7,637761,ʧ,4125,4166,134,3,31,18,0,0,0,0,7.69,2016/1/112016-01-17,79180,1173788,2378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/11,33:38.8\r\n8,384368,ͨ̽,2923,2923,100,4,29,15,0,0,0,0,5.54,2016/1/112016-01-17,79180,1173788,2378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/11,33:38.8\r\n9,614981,Ѱ,2303,166116,74,31,31,14,-72,-61,-68,-4,8.33,2016/1/112016-01-17,79180,1173788,2378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/11,33:38.8\r\n10,642281,̽,1864,15441,59,14,32,10,-86,-74,-87,-7,7.48,2016/1/112016-01-17,79180,1173788,2378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/11,33:38.8\r\n1,631832,սԭ,34807,34807,928,2,38,54,0,0,0,0,8.24,2016/1/42016-01-10,96628,1141339,2899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/4,33:39.3\r\n2,638436,˽̽,20946,63669,656,11,32,28,-47,13,-48,9999,8.02,2016/1/42016-01-10,96628,1141339,2899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/4,33:39.3\r\n3,642281,̽,13497,13577,466,7,29,21,0,0,0,13,7.77,2016/1/42016-01-10,96628,1141339,2899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/4,33:39.3\r\n4,617155,ڶ,12926,82443,413,18,31,23,-71,-36,-70,-3,8.61,2016/1/42016-01-10,96628,1141339,2899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/4,33:39.4\r\n5,614981,Ѱ,8325,163813,235,24,35,18,-75,-45,-74,-2,8.33,2016/1/42016-01-10,96628,1141339,2899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/4,33:39.4\r\n6,640206,ܳû֮Ĺ,2550,2557,81,-5,31,37,0,0,0,0,0,2016/1/42016-01-10,96628,1141339,2899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/4,33:39.4\r\n7,631030,ʹ,1132,64749,37,18,31,7,-91,-76,-91,-3,5.85,2016/1/42016-01-10,96628,1141339,2899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/4,33:39.4\r\n8,627347,С,843,7663,27,10,31,7,-86,-42,-86,-2,7.6,2016/1/42016-01-10,96628,1141339,2899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/4,33:39.4\r\n9,640376,һ,720,8212,25,11,29,7,-90,-59,-91,-4,6.39,2016/1/42016-01-10,96628,1141339,2899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/4,33:39.5\r\n10,641154,ĴԹ,188,188,7,3,26,8,0,0,0,0,6.52,2016/1/42016-01-10,96628,1141339,2899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2016/1/4,33:39.5\r\n1,617155,ڶ,43905,69517,1387,11,32,51,73,82,72,2,8.76,2015/12/282016-01-03,148527,1179527,4580,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/28,33:39.9\r\n2,638436,˽̽,39876,42723,1260,4,32,60,0,0,0,0,8.27,2015/12/282016-01-03,148527,1179527,4580,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/28,33:39.9\r\n3,614981,Ѱ,33864,155488,914,17,37,38,-45,-43,-45,-2,8.74,2015/12/282016-01-03,148527,1179527,4580,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/28,33:39.9\r\n4,631030,ʹ,12573,63617,419,11,30,21,-75,-26,-75,-2,5.86,2015/12/282016-01-03,148527,1179527,4580,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/28,33:40.0\r\n5,640376,һ,7493,7492,265,4,28,29,0,0,0,0,0,2015/12/282016-01-03,148527,1179527,4580,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/28,33:40.0\r\n6,627347,С,6240,6820,196,3,32,31,0,0,0,0,8.4,2015/12/282016-01-03,148527,1179527,4580,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/28,33:40.0\r\n7,639519,һж,2378,2482,66,3,36,20,0,0,0,0,0,2015/12/282016-01-03,148527,1179527,4580,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/28,33:40.0\r\n8,641972,˵Ұ,545,1099,18,11,31,20,-1,15,2,-2,7.24,2015/12/282016-01-03,148527,1179527,4580,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/28,33:40.0\r\n9,631343,û뵽,396,32224,13,17,30,6,-93,-88,-93,-5,6.98,2015/12/282016-01-03,148527,1179527,4580,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/28,33:40.1\r\n10,619126,֮Ħʦ,163,163,7,4,24,10,0,0,0,0,7.55,2015/12/282016-01-03,148527,1179527,4580,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/28,33:40.1\r\n1,614981,Ѱ,61490,121636,1670,10,37,40,2,62,0,9999,8.96,2015/12/212015-12-27,150084,1167459,4572,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/21,33:40.6\r\n2,631030,ʹ,50987,51051,1703,4,30,62,0,0,0,0,8.38,2015/12/212015-12-27,150084,1167459,4572,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/21,33:40.6\r\n3,617155,ڶ,25361,25636,808,4,31,54,0,0,0,0,8.98,2015/12/212015-12-27,150084,1167459,4572,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/21,33:40.6\r\n4,631343,û뵽,5394,31828,183,10,29,10,-64,3,-65,-2,7.08,2015/12/212015-12-27,150084,1167459,4572,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/21,33:40.7\r\n5,638436,˽̽,2826,2866,91,-3,31,53,0,0,0,0,8.04,2015/12/212015-12-27,150084,1167459,4572,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/21,33:40.7\r\n6,641972,˵Ұ,550,554,17,4,32,23,0,0,0,0,0,2015/12/212015-12-27,150084,1167459,4572,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/21,33:40.7\r\n7,627347,С,516,584,16,-4,32,21,0,0,0,0,8.4,2015/12/212015-12-27,150084,1167459,4572,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/21,33:40.7\r\n8,639004,,451,24755,13,24,36,7,-90,-86,-91,-5,7.36,2015/12/212015-12-27,150084,1167459,4572,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/21,33:40.7\r\n9,641991,һλ,362,362,9,2187,40,150,0,0,0,0,,2015/12/212015-12-27,150084,1167459,4572,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/21,33:40.8\r\n10,642050,ˣӺ,355,355,9,339,40,153,0,28900,0,333,,2015/12/212015-12-27,150084,1167459,4572,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/21,33:40.8\r\n1,614981,Ѱ,60087,60147,1678,3,36,65,0,0,0,0,9.54,2015/12/142015-12-20,92583,1151719,2733,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/14,33:41.3\r\n2,631343,û뵽,15129,26433,528,3,29,28,0,0,0,0,7.26,2015/12/142015-12-20,92583,1151719,2733,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/14,33:41.3\r\n3,639004,,4580,24304,136,17,34,10,-62,-29,-62,-2,7.36,2015/12/142015-12-20,92583,1151719,2733,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/14,33:41.3\r\n4,633490,ǾԮ,2345,58523,64,26,37,9,-71,-38,-70,-1,8.47,2015/12/142015-12-20,92583,1151719,2733,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/14,33:41.4\r\n5,628326,ʦ,2045,5280,68,11,30,7,-34,28,-35,1,7.95,2015/12/142015-12-20,92583,1151719,2733,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/14,33:41.4\r\n6,618119,˼,1392,11154,44,17,32,6,-68,-49,-68,-1,5.57,2015/12/142015-12-20,92583,1151719,2733,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/14,33:41.4\r\n7,638821,ȻǶ,1297,15932,42,18,31,5,-73,-50,-72,-3,7.04,2015/12/142015-12-20,92583,1151719,2733,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/14,33:41.4\r\n8,639871,ҵŮʱ,831,35945,29,32,29,9,-67,-42,-66,-1,8.03,2015/12/142015-12-20,92583,1151719,2733,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/14,33:41.4\r\n9,606647,ٷ,799,1939,27,10,30,5,-30,30,-29,2,8.65,2015/12/142015-12-20,92583,1151719,2733,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/14,33:41.5\r\n10,631350,౦,607,5431,20,20,31,10,-60,-48,-59,-1,7.5,2015/12/142015-12-20,92583,1151719,2733,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/14,33:41.5\r\n1,639004,,12077,19724,362,10,33,19,58,154,57,2,7.33,2015/12/72015-12-13,55779,1159836,1739,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/7,33:42.0\r\n2,631343,û뵽,11281,11304,398,-4,28,57,0,0,0,0,0,2015/12/72015-12-13,55779,1159836,1739,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/7,33:42.0\r\n3,633490,ǾԮ,7995,56177,213,19,38,18,-53,-46,-54,-2,8.47,2015/12/72015-12-13,55779,1159836,1739,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/7,33:42.1\r\n4,638821,ȻǶ,4726,14635,151,11,31,10,-52,19,-53,-2,7.17,2015/12/72015-12-13,55779,1159836,1739,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/7,33:42.1\r\n5,618119,˼,4320,9762,134,10,32,10,-20,65,-20,9999,5.8,2015/12/72015-12-13,55779,1159836,1739,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/7,33:42.1\r\n6,628326,ʦ,3120,3235,104,4,30,14,0,0,0,0,8.04,2015/12/72015-12-13,55779,1159836,1739,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/7,33:42.1\r\n7,639871,ҵŮʱ,2495,35113,85,25,29,16,-64,-58,-65,-3,8.03,2015/12/72015-12-13,55779,1159836,1739,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/7,33:42.1\r\n8,638989,׷,1785,4456,54,10,33,8,-33,20,-33,1,7.06,2015/12/72015-12-13,55779,1159836,1739,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/7,33:42.2\r\n9,631350,౦,1508,4824,48,13,31,12,-55,-43,-55,-2,7.56,2015/12/72015-12-13,55779,1159836,1739,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/7,33:42.2\r\n10,630582,조,1402,5405,50,10,28,5,-65,15,-65,-4,6.4,2015/12/72015-12-13,55779,1159836,1739,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/12/7,33:42.2\r\n1,633490,ǾԮ,17141,48182,458,12,37,21,-45,-12,-47,9999,8.47,2015/11/302015-12-06,65651,1113666,1984,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/30,33:42.8\r\n2,638821,ȻǶ,9903,9910,319,4,31,25,0,0,0,0,8.73,2015/11/302015-12-06,65651,1113666,1984,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/30,33:42.8\r\n3,639004,,7647,7647,230,3,33,30,0,0,0,0,8.32,2015/11/302015-12-06,65651,1113666,1984,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/30,33:42.9\r\n4,639871,ҵŮʱ,7002,32618,244,18,29,19,-53,-32,-54,-2,8.05,2015/11/302015-12-06,65651,1113666,1984,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/30,33:42.9\r\n5,618119,˼,5431,5442,168,3,32,21,0,0,0,0,6.93,2015/11/302015-12-06,65651,1113666,1984,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/30,33:42.9\r\n6,630582,조,3986,4004,142,3,28,18,0,0,0,0,0,2015/11/302015-12-06,65651,1113666,1984,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/30,33:42.9\r\n7,631350,౦,3315,3315,106,6,31,15,0,0,0,0,7.57,2015/11/302015-12-06,65651,1113666,1984,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/30,33:42.9\r\n8,619619,ʧ,2881,6898,61,10,48,9,-28,2,-46,-4,6.45,2015/11/302015-12-06,65651,1113666,1984,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/30,33:43.0\r\n9,638989,׷,2647,2672,81,3,33,14,0,0,0,0,0,2015/11/302015-12-06,65651,1113666,1984,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/30,33:43.0\r\n10,630935,,1536,4653,52,10,30,7,-50,17,-51,-3,7.25,2015/11/302015-12-06,65651,1113666,1984,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/30,33:43.0\r\n1,633490,ǾԮ,31036,31041,857,5,36,35,0,0,0,0,7.63,2015/11/232015-11-29,69647,1050797,2111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/23,33:43.4\r\n2,639871,ҵŮʱ,14866,25616,527,11,28,28,38,67,36,9999,8.05,2015/11/232015-11-29,69647,1050797,2111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/23,33:43.4\r\n3,631012,ٵݣ֮ս,4709,11748,144,10,33,11,-33,54,-33,1,6.92,2015/11/232015-11-29,69647,1050797,2111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/23,33:43.5\r\n4,619619,ʧ,4017,4017,111,3,36,18,0,0,0,0,6.93,2015/11/232015-11-29,69647,1050797,2111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/23,33:43.5\r\n5,640997,007鵳,3841,53385,119,17,32,13,-79,-70,-80,-4,6.88,2015/11/232015-11-29,69647,1050797,2111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/23,33:43.5\r\n6,612540,Ϸ3Ц£,3553,13767,102,10,35,9,-65,-3,-66,-3,6.81,2015/11/232015-11-29,69647,1050797,2111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/23,33:43.5\r\n7,630935,,3102,3117,105,3,29,17,0,0,0,0,8.52,2015/11/232015-11-29,69647,1050797,2111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/23,33:43.5\r\n8,630111,ʮ³¹,1417,3795,46,10,31,14,-39,20,-39,-2,7.68,2015/11/232015-11-29,69647,1050797,2111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/23,33:43.5\r\n9,627038,һ,491,1819,16,10,30,5,-63,-16,-64,-1,7.87,2015/11/232015-11-29,69647,1050797,2111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/23,33:43.6\r\n10,634689,ʷŬȣӰ,353,3654,11,24,31,12,-6,-36,-6,1,8,2015/11/232015-11-29,69647,1050797,2111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/23,33:43.6\r\n1,640997,007鵳,18701,49544,588,10,32,20,-39,49,-41,9999,6.92,2015/11/162015-11-22,59997,1047585,1923,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/16,33:44.3\r\n2,639871,ҵŮʱ,10745,10750,388,4,28,35,0,0,0,0,8.26,2015/11/162015-11-22,59997,1047585,1923,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/16,33:44.3\r\n3,612540,Ϸ3Ц£,10213,10213,300,3,34,26,0,0,0,0,0,2015/11/162015-11-22,59997,1047585,1923,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/16,33:44.3\r\n4,631012,ٵݣ֮ս,7039,7039,216,3,33,26,0,0,0,0,6.78,2015/11/162015-11-22,59997,1047585,1923,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/16,33:44.3\r\n5,637665,ǰ2̥ս,2896,24889,96,17,30,11,-74,-60,-73,-3,7.13,2015/11/162015-11-22,59997,1047585,1923,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/16,33:44.3\r\n6,630111,ʮ³¹,2343,2377,76,3,31,28,0,0,0,0,8.03,2015/11/162015-11-22,59997,1047585,1923,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/16,33:44.3\r\n7,629335,㰲ȹ,2118,6177,68,10,31,8,-48,23,-47,-3,7.27,2015/11/162015-11-22,59997,1047585,1923,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/16,33:44.4\r\n8,627038,һ,1326,1328,46,3,29,12,0,0,0,0,7.57,2015/11/162015-11-22,59997,1047585,1923,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/16,33:44.4\r\n9,634293,ƶԹ2,753,19655,21,19,35,6,-86,-77,-86,-6,6.69,2015/11/162015-11-22,59997,1047585,1923,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/16,33:44.4\r\n10,640998,2,611,11934,19,27,33,16,-45,-46,-43,-1,8.23,2015/11/162015-11-22,59997,1047585,1923,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/16,33:44.4\r\n1,640997,007鵳,30843,30843,988,3,31,49,0,0,0,0,7.05,2015/11/92015-11-15,63771,1082638,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/9,33:45.0\r\n2,637665,ǰ2̥ս,10960,21992,362,10,30,17,0,63,0,9999,7.3,2015/11/92015-11-15,63771,1082638,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/9,33:45.0\r\n3,634293,ƶԹ2,5223,18902,151,12,35,10,-62,-20,-62,-2,6.96,2015/11/92015-11-15,63771,1082638,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/9,33:45.0\r\n4,629335,㰲ȹ,4040,4059,129,3,31,19,0,0,0,0,8.59,2015/11/92015-11-15,63771,1082638,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/9,33:45.1\r\n5,640867,,2454,9862,65,13,38,10,-67,-56,-67,-1,7.39,2015/11/92015-11-15,63771,1082638,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/9,33:45.1\r\n6,618352,ʣΪ,2060,6024,69,10,30,8,-48,11,-48,-1,7.1,2015/11/92015-11-15,63771,1082638,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/9,33:45.1\r\n7,631325,֤,1563,21335,49,17,32,8,-79,-65,-79,-4,7.95,2015/11/92015-11-15,63771,1082638,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/9,33:45.1\r\n8,625944,ҵഺ,1126,1132,40,5,28,7,0,0,0,0,0,2015/11/92015-11-15,63771,1082638,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/9,33:45.1\r\n9,640998,2,1105,11324,32,20,34,15,-54,-66,-54,-3,8.25,2015/11/92015-11-15,63771,1082638,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/9,33:45.2\r\n10,631359,,969,969,34,3,29,8,0,0,0,0,8.11,2015/11/92015-11-15,63771,1082638,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/9,33:45.2\r\n1,634293,ƶԹ2,13678,13678,398,5,34,22,0,0,0,0,6.98,2015/11/22015-11-08,55473,1112708,1680,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/2,33:45.6\r\n2,637665,ǰ2̥ս,10913,11032,362,3,30,28,0,0,0,0,7.69,2015/11/22015-11-08,55473,1112708,1680,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/2,33:45.7\r\n3,631325,֤,7602,19771,239,10,32,13,-37,42,-37,-1,8.02,2015/11/22015-11-08,55473,1112708,1680,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/2,33:45.7\r\n4,640867,,7408,7408,195,6,38,14,0,0,0,0,6.55,2015/11/22015-11-08,55473,1112708,1680,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/2,33:45.7\r\n5,618352,ʣΪ,3951,3964,132,3,30,17,0,0,0,0,8.25,2015/11/22015-11-08,55473,1112708,1680,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/2,33:45.7\r\n6,640998,2,2424,10219,70,13,35,11,-69,-56,-70,-3,8.25,2015/11/22015-11-08,55473,1112708,1680,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/2,33:45.7\r\n7,302023,,2383,66887,66,24,36,8,-81,-65,-81,-6,8.22,2015/11/22015-11-08,55473,1112708,1680,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/2,33:45.7\r\n8,634689,ʷŬȣӰ,2006,2006,62,3,33,14,0,0,0,0,0,2015/11/22015-11-08,55473,1112708,1680,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/2,33:45.8\r\n9,628183,ط,1795,143578,55,40,33,9,-75,-63,-75,-5,8.6,2015/11/22015-11-08,55473,1112708,1680,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/2,33:45.8\r\n10,627766,ɽӹ,944,2710,28,10,33,9,-44,-24,-48,-2,7.87,2015/11/22015-11-08,55473,1112708,1680,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/11/2,33:45.8\r\n1,302023,,12371,64504,342,17,36,15,-50,-30,-50,9999,8.22,2015/10/262015-11-01,51124,1150589,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/26,33:46.3\r\n2,631325,֤,12104,12169,379,3,32,29,0,0,0,0,9.58,2015/10/262015-11-01,51124,1150589,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/26,33:46.3\r\n3,640998,2,7795,7795,231,6,34,15,0,0,0,0,7.95,2015/10/262015-11-01,51124,1150589,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/26,33:46.3\r\n4,628183,ط,7076,141783,218,33,32,14,-51,-30,-51,-2,8.6,2015/10/262015-11-01,51124,1150589,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/26,33:46.4\r\n5,635793,̽2015ҵտ,2155,7925,73,10,30,8,-63,15,-64,-1,7.26,2015/10/262015-11-01,51124,1150589,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/26,33:46.4\r\n6,625045,С,1750,15411,51,17,34,12,-70,-61,-71,-3,8.42,2015/10/262015-11-01,51124,1150589,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/26,33:46.4\r\n7,628823,Ȼഺס,1697,4849,57,10,30,7,-40,27,-40,-2,7.3,2015/10/262015-11-01,51124,1150589,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/26,33:46.4\r\n8,627766,ɽӹ,1686,1765,55,3,31,13,0,0,0,0,7.81,2015/10/262015-11-01,51124,1150589,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/26,33:46.4\r\n9,640889,С,610,2811,18,11,35,4,-72,-48,-73,-3,7.18,2015/10/262015-11-01,51124,1150589,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/26,33:46.5\r\n10,631109,ҹͷ,519,519,19,3,28,12,0,0,0,0,6.72,2015/10/262015-11-01,51124,1150589,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/26,33:46.5\r\n1,302023,,24873,52133,689,10,36,21,-9,73,-9,1,8.24,2015/10/192015-10-25,63410,1141815,1899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/19,33:47.2\r\n2,628183,ط,14394,134708,443,26,32,19,-52,-34,-52,-1,8.65,2015/10/192015-10-25,63410,1141815,1899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/19,33:47.3\r\n3,625045,С,5839,13661,175,10,33,16,-25,44,-27,9999,8.55,2015/10/192015-10-25,63410,1141815,1899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/19,33:47.3\r\n4,635793,̽2015ҵտ,5770,5770,200,3,29,24,0,0,0,0,6.7,2015/10/192015-10-25,63410,1141815,1899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/19,33:47.3\r\n5,628823,Ȼഺס,2850,3151,95,3,30,16,0,0,0,0,7.97,2015/10/192015-10-25,63410,1141815,1899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/19,33:47.3\r\n6,640889,С,2201,2201,65,4,34,9,0,0,0,0,6.71,2015/10/192015-10-25,63410,1141815,1899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/19,33:47.3\r\n7,639128,?,1497,1512,45,3,33,17,0,0,0,0,5.82,2015/10/192015-10-25,63410,1141815,1899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/19,33:47.4\r\n8,618038,ۇ,900,161172,27,31,34,7,-79,-77,-79,-4,7.18,2015/10/192015-10-25,63410,1141815,1899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/19,33:47.4\r\n9,639260,Ҵ,601,867,20,8,30,5,125,347,130,3,6.25,2015/10/192015-10-25,63410,1141815,1899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/19,33:47.4\r\n10,631690,콵,598,599,18,3,33,9,0,0,0,0,8.11,2015/10/192015-10-25,63410,1141815,1899,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/19,33:47.4\r\n1,628183,ط,29755,120314,916,19,32,27,-53,-6,-54,9999,8.66,2015/10/122015-10-18,80303,1138440,2373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/12,33:47.8\r\n2,302023,,27259,27259,755,3,36,40,0,0,0,0,7.65,2015/10/122015-10-18,80303,1138440,2373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/12,33:47.8\r\n3,625045,С,7822,7822,239,3,33,31,0,0,0,0,8.71,2015/10/122015-10-18,80303,1138440,2373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/12,33:47.9\r\n4,618038,ۇ,4312,160272,129,24,33,8,-81,-43,-81,-2,7.18,2015/10/122015-10-18,80303,1138440,2373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/12,33:47.9\r\n5,615300,Ų,3774,67645,108,19,35,8,-81,-44,-81,-2,6.02,2015/10/122015-10-18,80303,1138440,2373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/12,33:47.9\r\n6,631264,,2208,19287,69,19,32,9,-71,-28,-71,-1,8.31,2015/10/122015-10-18,80303,1138440,2373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/12,33:47.9\r\n7,639356,ͷع,1516,9372,41,13,37,7,-81,-49,-82,-3,8.72,2015/10/122015-10-18,80303,1138440,2373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/12,33:47.9\r\n8,639889,ħ,539,539,21,3,25,11,0,0,0,0,6.86,2015/10/122015-10-18,80303,1138440,2373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/12,33:48.0\r\n9,630504,Թ,425,439,15,3,28,11,0,0,0,0,8.06,2015/10/122015-10-18,80303,1138440,2373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/12,33:48.0\r\n10,638879,Сħ֮ħ,372,3795,7,18,56,14,-74,-72,-84,-3,7.38,2015/10/122015-10-18,80303,1138440,2373,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/12,33:48.0\r\n1,628183,ط,63616,90559,1985,12,32,54,146,170,146,2,8.63,2015/10/52015-10-11,126232,1189024,3854,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/5,33:48.7\r\n2,618038,ۇ,22303,155960,673,17,33,25,-66,-41,-66,-1,7.32,2015/10/52015-10-11,126232,1189024,3854,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/5,33:48.7\r\n3,615300,Ų,19454,63871,564,12,35,24,-54,-9,-54,-1,6.09,2015/10/52015-10-11,126232,1189024,3854,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/5,33:48.7\r\n4,639356,ͷع,7856,7856,226,6,35,20,0,0,0,0,8.33,2015/10/52015-10-11,126232,1189024,3854,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/5,33:48.7\r\n5,631264,,7492,17079,242,12,31,22,-9,29,-9,-1,8.32,2015/10/52015-10-11,126232,1189024,3854,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/5,33:48.7\r\n6,631837,С˴,1675,43571,52,29,32,22,-58,-56,-57,-1,7.81,2015/10/52015-10-11,126232,1189024,3854,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/5,33:48.8\r\n7,638879,Сħ֮ħ,1418,3423,41,11,34,23,-28,-38,-38,9999,7.91,2015/10/52015-10-11,126232,1189024,3854,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/5,33:48.8\r\n8,636000,е5ع,639,86977,18,34,36,34,-70,-85,-71,-2,8.3,2015/10/52015-10-11,126232,1189024,3854,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/5,33:48.8\r\n9,627016,ְ,367,7159,12,17,31,10,-81,-78,-82,-1,6.87,2015/10/52015-10-11,126232,1189024,3854,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/5,33:48.8\r\n10,559773,ˮ,299,425,7,5427,40,137,138,139,137,9,,2015/10/52015-10-11,126232,1189024,3854,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/10/5,33:48.9\r\n1,618038,ۇ,65180,133657,1981,10,33,43,-5,61,-5,9999,7.42,2015/9/282015-10-04,154679,1193572,4699,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/28,33:49.3\r\n2,615300,Ų,42373,44418,1236,5,34,49,0,0,0,0,6.08,2015/9/282015-10-04,154679,1193572,4699,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/28,33:49.3\r\n3,628183,ط,25840,26943,809,5,32,60,0,0,0,0,6.74,2015/9/282015-10-04,154679,1193572,4699,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/28,33:49.3\r\n4,631264,,8246,9587,266,5,31,31,0,0,0,0,7.48,2015/9/282015-10-04,154679,1193572,4699,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/28,33:49.3\r\n5,631837,С˴,3979,41896,121,22,33,23,-31,-72,-29,-2,7.81,2015/9/282015-10-04,154679,1193572,4699,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/28,33:49.3\r\n6,636000,е5ع,2125,86338,61,27,35,18,-71,-83,-73,-4,8.3,2015/9/282015-10-04,154679,1193572,4699,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/28,33:49.4\r\n7,638879,Сħ֮ħ,1979,2005,66,4,30,23,0,0,0,0,1.68,2015/9/282015-10-04,154679,1193572,4699,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/28,33:49.4\r\n8,627016,ְ,1969,6792,65,10,30,12,-59,-14,-59,-4,6.96,2015/9/282015-10-04,154679,1193572,4699,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/28,33:49.4\r\n9,639428,۴,324,324,12,4,27,11,0,0,0,0,6,2015/9/282015-10-04,154679,1193572,4699,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/28,33:49.4\r\n10,628133,ħ,289,859,9,10,31,7,-49,-32,-48,-1,6.72,2015/9/282015-10-04,154679,1193572,4699,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/28,33:49.4\r\n1,618038,ۇ,68426,68477,2093,3,33,73,0,0,0,0,6.16,2015/9/212015-09-27,97838,1096834,2998,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/21,33:49.8\r\n2,636000,е5ع,7304,84212,224,20,33,11,-66,-37,-66,-1,8.3,2015/9/212015-09-27,97838,1096834,2998,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/21,33:49.9\r\n3,631837,С˴,5754,37916,170,15,34,9,-71,-41,-71,-1,7.81,2015/9/212015-09-27,97838,1096834,2998,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/21,33:49.9\r\n4,627016,ְ,4796,4823,160,3,30,26,0,0,0,0,5.73,2015/9/212015-09-27,97838,1096834,2998,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/21,33:49.9\r\n5,615300,Ų,2044,2045,61,-2,33,77,0,0,0,0,6.32,2015/9/212015-09-27,97838,1096834,2998,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/21,33:49.9\r\n6,631838,شս,2029,9808,57,13,35,5,-74,-44,-74,-3,6.94,2015/9/212015-09-27,97838,1096834,2998,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/21,33:49.9\r\n7,639419,ɱ,1797,4297,58,11,31,9,-28,16,-29,-3,8.35,2015/9/212015-09-27,97838,1096834,2998,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/21,33:49.9\r\n8,628183,ط,1059,1103,32,-2,33,42,0,0,0,0,6.84,2015/9/212015-09-27,97838,1096834,2998,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/21,33:50.0\r\n9,628133,ħ,569,570,18,3,32,9,0,0,0,0,1.68,2015/9/212015-09-27,97838,1096834,2998,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/21,33:50.0\r\n10,631264,,560,1342,17,-2,34,29,0,0,0,0,7.22,2015/9/212015-09-27,97838,1096834,2998,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/21,33:50.0\r\n1,636000,е5ع,21599,76909,666,13,32,21,-61,-28,-60,9999,8.36,2015/9/142015-09-20,58151,1085671,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/14,33:50.5\r\n2,631837,С˴,20051,32163,585,8,34,18,66,366,66,9999,7.95,2015/9/142015-09-20,58151,1085671,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/14,33:50.5\r\n3,631838,شս,7779,7779,224,6,35,12,0,0,0,0,7.36,2015/9/142015-09-20,58151,1085671,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/14,33:50.5\r\n4,639419,ɱ,2500,2500,81,4,31,15,0,0,0,0,7.71,2015/9/142015-09-20,58151,1085671,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/14,33:50.5\r\n5,627833,ж,952,957,29,4,33,7,0,0,0,0,1.68,2015/9/142015-09-20,58151,1085671,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/14,33:50.5\r\n6,631264,,781,781,25,-9,31,23,0,0,0,0,6.81,2015/9/142015-09-20,58151,1085671,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/14,33:50.6\r\n7,639056,Ŵս,583,40367,20,24,30,24,-34,-66,-34,-1,6.64,2015/9/142015-09-20,58151,1085671,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/14,33:50.6\r\n8,617356,,541,30356,17,25,32,7,-83,-78,-83,-5,8.43,2015/9/142015-09-20,58151,1085671,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/14,33:50.6\r\n9,597026,粻,422,422,12,5,35,143,0,0,0,0,,2015/9/142015-09-20,58151,1085671,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/14,33:50.6\r\n10,594292,ͷԶ,422,422,12,,35,149,0,0,0,0,,2015/9/142015-09-20,58151,1085671,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/14,33:50.7\r\n1,636000,е5ع,55308,55310,1685,6,33,37,0,0,0,0,7.75,2015/9/72015-09-13,80129,1023285,2399,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/7,33:51.2\r\n2,631837,С˴,12111,12111,352,1,34,51,0,0,0,0,7.9,2015/9/72015-09-13,80129,1023285,2399,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/7,33:51.2\r\n3,617356,,3097,29815,98,18,31,9,-78,-45,-78,9999,8.45,2015/9/72015-09-13,80129,1023285,2399,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/7,33:51.2\r\n4,631839,սߣ,2672,72202,74,22,36,6,-84,-55,-83,-2,7.79,2015/9/72015-09-13,80129,1023285,2399,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/7,33:51.2\r\n5,627896,׽,1788,243595,28,60,63,16,-41,-50,-58,9999,8.26,2015/9/72015-09-13,80129,1023285,2399,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/7,33:51.3\r\n6,639056,Ŵս,881,39784,30,17,30,12,-96,-76,-95,-5,6.64,2015/9/72015-09-13,80129,1023285,2399,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/7,33:51.3\r\n7,615796,ϰ,406,4729,12,12,35,3,-91,-71,-91,-3,6.63,2015/9/72015-09-13,80129,1023285,2399,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/7,33:51.3\r\n8,552015,ѷȺ,392,1498,12,10,33,5,-65,2,-64,9999,7.96,2015/9/72015-09-13,80129,1023285,2399,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/7,33:51.3\r\n9,637578,ɣ,378,51052,11,32,34,7,-82,-65,-82,-3,8.45,2015/9/72015-09-13,80129,1023285,2399,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/7,33:51.3\r\n10,612022,Ըٰ֮,371,385,12,3,31,5,0,0,0,0,6,2015/9/72015-09-13,80129,1023285,2399,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/9/7,33:51.4\r\n1,639056,Ŵս,24554,38903,567,10,43,56,71,47,58,1,6.34,2015/8/312015-09-06,75003,1075831,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/31,33:52.3\r\n2,631839,սߣ,16629,69530,443,15,38,18,-54,-31,-55,-1,7.84,2015/8/312015-09-06,75003,1075831,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/31,33:52.3\r\n3,617356,,13949,26718,444,11,31,22,13,62,12,9999,8.53,2015/8/312015-09-06,75003,1075831,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/31,33:52.3\r\n4,615796,ϰ,4310,4323,126,5,34,10,0,0,0,0,6.11,2015/8/312015-09-06,75003,1075831,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/31,33:52.3\r\n5,627896,׽,3011,241807,68,53,45,18,-46,-42,-44,9999,8.26,2015/8/312015-09-06,75003,1075831,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/31,33:52.3\r\n6,637578,ɣ,2151,50674,63,25,34,14,-66,-57,-66,-2,8.45,2015/8/312015-09-06,75003,1075831,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/31,33:52.4\r\n7,7954,̿,1875,5833,54,11,34,13,-52,-38,-54,-1,7.02,2015/8/312015-09-06,75003,1075831,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/31,33:52.4\r\n8,552015,ѷȺ,1107,1107,33,3,34,15,0,0,0,0,6.62,2015/8/312015-09-06,75003,1075831,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/31,33:52.4\r\n9,639404,ħԵ,1045,1373,34,4,31,10,0,0,0,0,3.52,2015/8/312015-09-06,75003,1075831,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/31,33:52.4\r\n10,638757,ܰɣ,910,910,30,3,31,9,0,0,0,0,6.11,2015/8/312015-09-06,75003,1075831,2024,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/31,33:52.4\r\n1,631839,սߣ,36085,52900,986,8,37,27,115,415,114,1,7.83,2015/8/242015-08-30,88053,1083382,2458,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/24,33:53.2\r\n2,639056,Ŵս,14346,14349,359,3,40,53,0,0,0,0,2.76,2015/8/242015-08-30,88053,1083382,2458,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/24,33:53.2\r\n3,617356,,12311,12769,397,4,31,32,0,0,0,0,8.39,2015/8/242015-08-30,88053,1083382,2458,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/24,33:53.2\r\n4,637578,ɣ,6244,48523,187,18,33,18,-72,-58,-72,-3,8.45,2015/8/242015-08-30,88053,1083382,2458,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/24,33:53.2\r\n5,627896,׽,5561,238796,120,46,46,19,-52,-57,-63,-1,8.26,2015/8/242015-08-30,88053,1083382,2458,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/24,33:53.2\r\n6,7954,̿,3944,3958,119,4,33,17,0,0,0,0,6.74,2015/8/242015-08-30,88053,1083382,2458,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/24,33:53.3\r\n7,626778,ս,2079,17163,63,11,33,9,-86,-58,-86,-4,5.76,2015/8/242015-08-30,88053,1083382,2458,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/24,33:53.3\r\n8,630887,μ֮ʥ,1288,95025,41,52,32,14,-63,-47,-62,-2,9.05,2015/8/242015-08-30,88053,1083382,2458,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/24,33:53.3\r\n9,638444,4˹,1194,7327,35,18,34,13,-54,-58,-54,-2,7.3,2015/8/242015-08-30,88053,1083382,2458,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/24,33:53.3\r\n10,617154,Ǽ,925,945,28,4,33,7,0,0,0,0,5.84,2015/8/242015-08-30,88053,1083382,2458,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/24,33:53.4\r\n1,637578,ɣ,22471,42278,670,11,34,27,21,34,22,9999,8.47,2015/8/172015-08-23,86834,1133169,2530,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/17,33:54.0\r\n2,631839,սߣ,16816,16816,461,1,36,65,0,0,0,0,7.27,2015/8/172015-08-23,86834,1133169,2530,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/17,33:54.0\r\n3,626778,ս,15084,15084,453,4,33,27,0,0,0,0,5.89,2015/8/172015-08-23,86834,1133169,2530,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/17,33:54.0\r\n4,627896,׽,11641,233235,323,39,36,22,-28,-25,-27,-2,8.26,2015/8/172015-08-23,86834,1133169,2530,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/17,33:54.0\r\n5,629580,еĳ,5057,5068,147,5,34,15,0,0,0,0,5.89,2015/8/172015-08-23,86834,1133169,2530,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/17,33:54.1\r\n6,630887,μ֮ʥ,3471,93737,106,45,33,19,-27,-20,-26,-2,9.05,2015/8/172015-08-23,86834,1133169,2530,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/17,33:54.1\r\n7,638444,4˹,2581,6133,77,11,34,12,-27,9,-26,-1,6.24,2015/8/172015-08-23,86834,1133169,2530,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/17,33:54.1\r\n8,629410,,1601,115806,48,38,34,14,-60,-54,-60,-3,7.95,2015/8/172015-08-23,86834,1133169,2530,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/17,33:54.1\r\n9,627886,Ʒ,1586,14396,48,18,33,12,-71,-68,-72,-6,8.39,2015/8/172015-08-23,86834,1133169,2530,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/17,33:54.2\r\n10,628144,լŮ̽,1000,4104,31,11,33,6,-68,-39,-67,-3,5.35,2015/8/172015-08-23,86834,1133169,2530,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/17,33:54.2\r\n1,637578,ɣ,18556,19807,550,4,34,30,0,0,0,0,8.03,2015/8/102015-08-16,66090,1123655,1956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/10,33:54.9\r\n2,627896,׽,16125,221594,445,32,36,23,-34,-16,-34,-1,8.26,2015/8/102015-08-16,66090,1123655,1956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/10,33:54.9\r\n3,627886,Ʒ,5518,12810,172,11,32,14,-21,10,-20,1,8.32,2015/8/102015-08-16,66090,1123655,1956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/10,33:54.9\r\n4,630887,μ֮ʥ,4768,90265,143,38,33,20,-34,-20,-33,-1,9.05,2015/8/102015-08-16,66090,1123655,1956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/10,33:54.9\r\n5,629410,,3977,114205,120,31,33,17,-51,-33,-51,-3,7.95,2015/8/102015-08-16,66090,1123655,1956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/10,33:55.0\r\n6,638444,4˹,3548,3553,104,4,34,17,0,0,0,0,3.3,2015/8/102015-08-16,66090,1123655,1956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/10,33:55.0\r\n7,628144,լŮ̽,3102,3104,95,4,33,10,0,0,0,0,5.89,2015/8/102015-08-16,66090,1123655,1956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/10,33:55.0\r\n8,639256,è֮֮,1916,5787,62,10,31,10,-41,17,-41,9999,6.56,2015/8/102015-08-16,66090,1123655,1956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/10,33:55.0\r\n9,637786,֮Ц,1865,5682,57,11,33,11,-49,-9,-47,-3,6.71,2015/8/102015-08-16,66090,1123655,1956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/10,33:55.0\r\n10,628394,ճ,1144,14691,36,18,32,12,-76,-69,-76,-5,6.48,2015/8/102015-08-16,66090,1123655,1956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/10,33:55.1\r\n1,627896,׽,24592,205470,672,25,37,29,-42,-17,-42,9999,8.26,2015/8/32015-08-09,72401,1125480,2133,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/3,33:55.6\r\n2,629410,,8045,110228,243,24,33,23,-47,-40,-47,9999,7.97,2015/8/32015-08-09,72401,1125480,2133,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/3,33:55.7\r\n3,630887,μ֮ʥ,7198,85497,214,31,34,24,-34,-26,-34,9999,9.1,2015/8/32015-08-09,72401,1125480,2133,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/3,33:55.7\r\n4,627886,Ʒ,7022,7292,215,4,33,19,0,0,0,0,6.57,2015/8/32015-08-09,72401,1125480,2133,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/3,33:55.7\r\n5,628394,ճ,4710,13547,149,11,32,16,-47,-10,-47,9999,6.53,2015/8/32015-08-09,72401,1125480,2133,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/3,33:55.7\r\n6,637786,֮Ц,3650,3817,108,4,34,19,0,0,0,0,5.78,2015/8/32015-08-09,72401,1125480,2133,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/3,33:55.7\r\n7,607363,Ůˡ,3567,12832,113,11,31,11,-61,-24,-61,-3,5.7,2015/8/32015-08-09,72401,1125480,2133,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/3,33:55.8\r\n8,639256,è֮֮,3231,3870,106,3,31,21,0,0,0,0,5.62,2015/8/32015-08-09,72401,1125480,2133,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/3,33:55.8\r\n9,628171,²,2140,2140,65,3,33,13,0,0,0,0,5.35,2015/8/32015-08-09,72401,1125480,2133,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/3,33:55.8\r\n10,630468,̫ƽ֣˰,1645,4765,44,11,37,10,-47,-24,-48,-4,7.25,2015/8/32015-08-09,72401,1125480,2133,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/8/3,33:55.8\r\n1,627896,׽,42620,180878,1155,18,37,41,-40,-24,-40,9999,8.34,2015/7/272015-08-02,100256,1126906,2918,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/27,33:56.3\r\n2,629410,,15134,102183,459,17,33,26,-65,-45,-66,9999,7.97,2015/7/272015-08-02,100256,1126906,2918,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/27,33:56.3\r\n3,630887,μ֮ʥ,10925,78300,322,24,34,27,-47,-23,-45,9999,9.12,2015/7/272015-08-02,100256,1126906,2918,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/27,33:56.4\r\n4,607363,Ůˡ,9250,9265,292,4,32,23,0,0,0,0,6.11,2015/7/272015-08-02,100256,1126906,2918,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/27,33:56.4\r\n5,628394,ճ,8831,8838,284,4,31,27,0,0,0,0,5.57,2015/7/272015-08-02,100256,1126906,2918,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/27,33:56.4\r\n6,630468,̫ƽ֣˰,3120,3120,84,4,37,14,0,0,0,0,6.05,2015/7/272015-08-02,100256,1126906,2918,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/27,33:56.4\r\n7,629414,ע,1863,6659,58,10,32,12,-60,-28,-60,-3,7.05,2015/7/272015-08-02,100256,1126906,2918,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/27,33:56.4\r\n8,625804,ģϷ,1422,3315,40,13,35,27,-25,-47,-27,-2,8.94,2015/7/272015-08-02,100256,1126906,2918,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/27,33:56.5\r\n9,630555,5,1300,5436,38,11,34,10,-68,-21,-68,-4,7.18,2015/7/272015-08-02,100256,1126906,2918,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/27,33:56.5\r\n10,618518,,1134,1142,35,3,32,9,0,0,0,0,5.42,2015/7/272015-08-02,100256,1126906,2918,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/27,33:56.5\r\n1,627896,׽,70652,138258,1922,11,37,53,5,56,6,9999,8.37,2015/7/202015-07-26,151844,1141009,4376,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/20,33:57.1\r\n2,629410,,43753,87049,1340,10,33,41,1,82,0,9999,8.08,2015/7/202015-07-26,151844,1141009,4376,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/20,33:57.1\r\n3,630887,μ֮ʥ,20442,67375,590,17,35,38,-45,-23,-44,9999,9.13,2015/7/202015-07-26,151844,1141009,4376,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/20,33:57.1\r\n4,629414,ע,4635,4795,146,3,32,21,0,0,0,0,5.87,2015/7/202015-07-26,151844,1141009,4376,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/20,33:57.2\r\n5,630555,5,4124,4136,120,4,34,24,0,0,0,0,6.83,2015/7/202015-07-26,151844,1141009,4376,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/20,33:57.2\r\n6,625804,ģϷ,1893,1893,55,6,34,19,0,0,0,0,8.28,2015/7/202015-07-26,151844,1141009,4376,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/20,33:57.2\r\n7,631568,СФ,1874,4544,63,10,30,19,-30,25,-30,-1,8.85,2015/7/202015-07-26,151844,1141009,4376,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/20,33:57.2\r\n8,617351,Сʱ4꾡ͷ,1099,48641,34,18,32,13,-90,-86,-90,-3,6.81,2015/7/202015-07-26,151844,1141009,4376,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/20,33:57.2\r\n9,628129,֮ͨլ,1024,1024,29,3,36,14,0,0,0,0,5.46,2015/7/202015-07-26,151844,1141009,4376,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/20,33:57.3\r\n10,638747,ǣʥ,707,708,21,4,34,8,0,0,0,0,5.57,2015/7/202015-07-26,151844,1141009,4376,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/20,33:57.3\r\n1,627896,׽,67021,67606,1811,4,37,78,0,0,0,0,6.92,2015/7/132015-07-19,178087,1137200,5163,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/13,33:57.7\r\n2,629410,,43204,43296,1333,3,32,75,0,0,0,0,8.01,2015/7/132015-07-19,178087,1137200,5163,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/13,33:57.8\r\n3,630887,μ֮ʥ,37270,46933,1053,10,35,53,330,289,336,1,9.15,2015/7/132015-07-19,178087,1137200,5163,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/13,33:57.8\r\n4,629465,ӻ,11309,37186,362,10,31,19,-56,17,-56,-2,6.93,2015/7/132015-07-19,178087,1137200,5163,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/13,33:57.8\r\n5,617351,Сʱ4꾡ͷ,11072,47541,354,11,31,19,-70,-26,-70,-4,6.92,2015/7/132015-07-19,178087,1137200,5163,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/13,33:57.8\r\n6,631568,СФ,2670,2670,89,3,30,33,0,0,0,0,8.52,2015/7/132015-07-19,178087,1137200,5163,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/13,33:57.8\r\n7,617702,ʿɽ,2178,39931,52,18,42,14,-85,-81,-85,-4,6.53,2015/7/132015-07-19,178087,1137200,5163,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/13,33:57.9\r\n8,638407,֮ռս,1421,4412,42,10,34,12,-52,20,-52,-2,5.8,2015/7/132015-07-19,178087,1137200,5163,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/13,33:57.9\r\n9,597232,ǻ,259,499,10,-333,25,121,0,0,0,0,,2015/7/132015-07-19,178087,1137200,5163,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/13,33:57.9\r\n10,593204,ص,249,489,10,1445,25,119,17,-6,-6,4,,2015/7/132015-07-19,178087,1137200,5163,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/13,33:57.9\r\n1,617351,Сʱ4꾡ͷ,36470,36470,1181,4,31,46,0,0,0,0,6.43,2015/7/62015-07-12,103305,1068821,3118,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/6,33:58.5\r\n2,629465,ӻ,25865,25877,814,3,32,51,0,0,0,0,6.7,2015/7/62015-07-12,103305,1068821,3118,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/6,33:58.5\r\n3,617702,ʿɽ,14280,37753,353,11,40,17,-39,13,-40,-2,6.53,2015/7/62015-07-12,103305,1068821,3118,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/6,33:58.5\r\n4,630887,μ֮ʥ,8672,9664,242,3,36,47,0,0,0,0,6.9,2015/7/62015-07-12,103305,1068821,3118,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/6,33:58.5\r\n5,348959,٪޼,4085,142070,110,33,37,17,-66,-56,-65,-2,8.28,2015/7/62015-07-12,103305,1068821,3118,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/6,33:58.5\r\n6,638407,֮ռս,2977,2991,87,3,34,30,0,0,0,0,5.19,2015/7/62015-07-12,103305,1068821,3118,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/6,33:58.5\r\n7,629494,ֱײ,2938,32074,87,17,34,12,-76,-67,-75,-5,6.45,2015/7/62015-07-12,103305,1068821,3118,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/6,33:58.6\r\n8,617809,ɱ2,2282,55812,63,25,36,12,-69,-62,-69,-4,8,2015/7/62015-07-12,103305,1068821,3118,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/6,33:58.6\r\n9,618612,·˼,2033,6131,61,10,33,12,-50,-17,-49,-4,7.97,2015/7/62015-07-12,103305,1068821,3118,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/6,33:58.6\r\n10,638434,𽲹֮,798,2032,26,11,31,7,-35,4,-35,-4,5.08,2015/7/62015-07-12,103305,1068821,3118,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/7/6,33:58.6\r\n1,617702,ʿɽ,23474,23474,587,4,40,33,0,0,0,0,6.16,2015/6/292015-07-05,68252,1021799,1855,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/29,33:59.2\r\n2,629494,ֱײ,12153,29136,350,10,35,16,-28,45,-22,1,6.5,2015/6/292015-07-05,68252,1021799,1855,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/29,33:59.2\r\n3,348959,٪޼,12004,137985,316,26,38,21,-48,-33,-48,-2,8.28,2015/6/292015-07-05,68252,1021799,1855,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/29,33:59.2\r\n4,617809,ɱ2,7433,53530,205,18,36,15,-62,-44,-62,-2,8,2015/6/292015-07-05,68252,1021799,1855,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/29,33:59.2\r\n5,618612,·˼,4082,4098,119,3,34,19,0,0,0,0,6.49,2015/6/292015-07-05,68252,1021799,1855,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/29,33:59.2\r\n6,638434,𽲹֮,1235,1235,40,4,31,12,0,0,0,0,6.43,2015/6/292015-07-05,68252,1021799,1855,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/29,33:59.3\r\n7,633304,ĩձ,1142,62967,32,34,36,17,-73,-59,-72,-2,8.17,2015/6/292015-07-05,68252,1021799,1855,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/29,33:59.3\r\n8,630887,μ֮ʥ,964,992,28,-4,34,22,0,0,0,0,6.43,2015/6/292015-07-05,68252,1021799,1855,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/29,33:59.3\r\n9,631828,2ط,944,10792,25,17,38,11,-78,-74,-78,-5,6.95,2015/6/292015-07-05,68252,1021799,1855,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/29,33:59.3\r\n10,628433,ٴγ,893,1323,25,10,36,18,107,87,103,9999,8.28,2015/6/292015-07-05,68252,1021799,1855,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/29,33:59.3\r\n1,348959,٪޼,23239,125981,603,19,39,27,-45,-34,-45,9999,8.23,2015/6/222015-06-28,76038,1037221,2079,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/22,33:59.8\r\n2,617809,ɱ2,19388,46097,536,11,36,22,-27,29,-27,9999,8.11,2015/6/222015-06-28,76038,1037221,2079,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/22,33:59.8\r\n3,629494,ֱײ,16983,16983,449,3,38,29,0,0,0,0,6.11,2015/6/222015-06-28,76038,1037221,2079,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/22,33:59.8\r\n4,631828,2ط,4221,9848,114,10,37,13,-25,32,-25,9999,7.24,2015/6/222015-06-28,76038,1037221,2079,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/22,33:59.9\r\n5,633304,ĩձ,4176,61825,114,27,37,25,-46,-61,-47,-2,8.11,2015/6/222015-06-28,76038,1037221,2079,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/22,33:59.9\r\n6,627027,,2019,4791,66,10,31,9,-27,27,-27,-1,7.15,2015/6/222015-06-28,76038,1037221,2079,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/22,33:59.9\r\n7,638413,ҵѺ͹,1069,2287,35,10,30,9,-12,46,-12,9999,7.51,2015/6/222015-06-28,76038,1037221,2079,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/22,33:59.9\r\n8,630556,ֻС,1037,1221,35,2,30,17,0,0,0,0,6.05,2015/6/222015-06-28,76038,1037221,2079,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/22,33:59.9\r\n9,623724,AΣͬ,575,53031,17,32,33,11,-67,-76,-67,-3,8.37,2015/6/222015-06-28,76038,1037221,2079,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/22,34:00.0\r\n10,628433,ٴγ,430,430,12,3,36,17,0,0,0,0,7.99,2015/6/222015-06-28,76038,1037221,2079,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/22,34:00.0\r\n1,348959,٪޼,42069,102742,1099,12,38,32,-31,-1,-31,9999,8.2,2015/6/152015-06-21,90679,1012907,2478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/15,34:00.6\r\n2,617809,ɱ2,26705,26709,738,4,36,40,0,0,0,0,6.43,2015/6/152015-06-21,90679,1012907,2478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/15,34:00.7\r\n3,633304,ĩձ,7674,57649,214,20,36,18,-58,-50,-57,-1,8.01,2015/6/152015-06-21,90679,1012907,2478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/15,34:00.7\r\n4,631828,2ط,5627,5627,151,3,37,23,0,0,0,0,7.04,2015/6/152015-06-21,90679,1012907,2478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/15,34:00.7\r\n5,627027,,2766,2772,90,3,31,16,0,0,0,0,5.46,2015/6/152015-06-21,90679,1012907,2478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/15,34:00.7\r\n6,623724,AΣͬ,1751,52456,52,25,33,8,-66,-57,-66,-3,8.37,2015/6/152015-06-21,90679,1012907,2478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/15,34:00.8\r\n7,638413,ҵѺ͹,1218,1218,40,3,30,15,0,0,0,0,6.04,2015/6/152015-06-21,90679,1012907,2478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/15,34:00.8\r\n8,658914,2013ϺʵӰ,518,2413,9,,59,230,1057,932,915,6,,2015/6/152015-06-21,90679,1012907,2478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/15,34:00.8\r\n9,627562,ӰԺ,440,440,16,3,27,11,0,0,0,0,6.43,2015/6/152015-06-21,90679,1012907,2478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/15,34:00.8\r\n10,620732,ҵĸ,365,11818,12,31,31,8,-70,-63,-70,-6,8.37,2015/6/152015-06-21,90679,1012907,2478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/15,34:00.9\r\n1,348959,٪޼,60673,60673,1583,5,38,45,0,0,0,0,6.27,2015/6/82015-06-14,88105,990760,2359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/8,34:01.4\r\n2,633304,ĩձ,18082,49975,492,13,37,21,-43,-20,-41,-1,8.01,2015/6/82015-06-14,88105,990760,2359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/8,34:01.4\r\n3,623724,AΣͬ,5148,50705,153,18,34,10,-76,-40,-76,-1,8.37,2015/6/82015-06-14,88105,990760,2359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/8,34:01.4\r\n4,620732,ҵĸ,1225,11452,40,24,31,9,-55,-36,-55,9999,8.37,2015/6/82015-06-14,88105,990760,2359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/8,34:01.4\r\n5,631792,2´Ԫ,934,146433,26,34,37,8,-79,-67,-78,-2,7.79,2015/6/82015-06-14,88105,990760,2359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/8,34:01.4\r\n6,631840,,547,11730,17,20,32,4,-77,-61,-77,-1,6.52,2015/6/82015-06-14,88105,990760,2359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/8,34:01.5\r\n7,638389,˭2015,339,339,11,3,30,5,0,0,0,0,5.4,2015/6/82015-06-14,88105,990760,2359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/8,34:01.5\r\n8,638432,ټǵʮ,296,296,10,3,30,4,0,0,0,0,5.57,2015/6/82015-06-14,88105,990760,2359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/8,34:01.5\r\n9,637666,,177,453,6,10,28,2,-35,13,-33,-1,3.1,2015/6/82015-06-14,88105,990760,2359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/8,34:01.5\r\n10,638443,ǱͧܶԱ5ʱⱦ,165,3292,5,17,31,4,-90,-71,-90,-4,6.18,2015/6/82015-06-14,88105,990760,2359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/8,34:01.5\r\n1,633304,ĩձ,31894,31894,831,6,38,29,0,0,0,0,7.52,2015/6/12015-06-07,66799,1012292,1849,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/1,34:02.0\r\n2,623724,AΣͬ,21656,45557,624,11,35,24,-9,50,-9,-1,8.46,2015/6/12015-06-07,66799,1012292,1849,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/1,34:02.0\r\n3,631792,2´Ԫ,4500,145498,118,27,38,12,-58,-50,-56,-1,7.79,2015/6/12015-06-07,66799,1012292,1849,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/1,34:02.0\r\n4,620732,ҵĸ,2723,10227,88,17,31,14,-37,-28,-38,9999,8.32,2015/6/12015-06-07,66799,1012292,1849,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/1,34:02.1\r\n5,631840,,2395,11183,73,13,33,7,-73,-48,-72,-2,6.52,2015/6/12015-06-07,66799,1012292,1849,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/1,34:02.1\r\n6,638443,ǱͧܶԱ5ʱⱦ,1646,3127,51,10,32,12,12,14,12,9999,6.28,2015/6/12015-06-07,66799,1012292,1849,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/1,34:02.1\r\n7,624083,ħսʿ,656,4613,18,13,36,4,-83,-65,-83,-2,6.55,2015/6/12015-06-07,66799,1012292,1849,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/1,34:02.1\r\n8,637666,,274,275,10,3,29,4,0,0,0,0,3.62,2015/6/12015-06-07,66799,1012292,1849,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/1,34:02.1\r\n9,638445,𹿰2ɳɮϮ,253,517,8,10,31,6,-4,-1,-5,9999,8.36,2015/6/12015-06-07,66799,1012292,1849,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/1,34:02.2\r\n10,629461,Գ,135,135,4,3,35,2,0,0,0,0,6.38,2015/6/12015-06-07,66799,1012292,1849,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/6/1,34:02.2\r\n1,623724,AΣͬ,23894,23901,683,4,35,39,0,0,0,0,8.21,2015/5/252015-05-31,56051,982399,1600,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/25,34:02.6\r\n2,631792,2´Ԫ,10620,140998,270,20,39,14,-68,-58,-68,-1,7.85,2015/5/252015-05-31,56051,982399,1600,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/25,34:02.6\r\n3,631840,,8787,8788,260,6,34,13,0,0,0,0,7.04,2015/5/252015-05-31,56051,982399,1600,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/25,34:02.6\r\n4,620732,ҵĸ,4290,7505,142,10,30,15,33,76,34,-2,8.37,2015/5/252015-05-31,56051,982399,1600,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/25,34:02.6\r\n5,624083,ħսʿ,3957,3957,108,6,36,8,0,0,0,0,6.65,2015/5/252015-05-31,56051,982399,1600,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/25,34:02.7\r\n6,638443,ǱͧܶԱ5ʱⱦ,1468,1480,46,3,32,13,0,0,0,0,7.08,2015/5/252015-05-31,56051,982399,1600,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/25,34:02.7\r\n7,627626,,649,1145,16,17,42,25,185,-67,125,6,6.65,2015/5/252015-05-31,56051,982399,1600,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/25,34:02.7\r\n8,628375,520,646,2869,20,11,32,5,-71,-35,-71,-5,6.51,2015/5/252015-05-31,56051,982399,1600,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/25,34:02.7\r\n9,638445,𹿰2ɳɮϮ,265,265,9,3,30,6,0,0,0,0,5.24,2015/5/252015-05-31,56051,982399,1600,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/25,34:02.8\r\n10,627008,ʮ,223,1269,6,17,34,9,-69,-70,-70,-3,7.9,2015/5/252015-05-31,56051,982399,1600,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/25,34:02.8\r\n1,631792,2´Ԫ,33712,130378,842,13,40,18,-65,-8,-65,9999,7.87,2015/5/182015-05-24,46737,919955,1256,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/18,34:03.3\r\n2,620732,ҵĸ,3215,3215,106,3,30,20,0,0,0,0,8.18,2015/5/182015-05-24,46737,919955,1256,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/18,34:03.4\r\n3,628375,520,2223,2223,70,4,32,11,0,0,0,0,6.22,2015/5/182015-05-24,46737,919955,1256,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/18,34:03.4\r\n4,631798,ܲ,1625,10185,50,17,33,10,-25,-47,-27,-2,7.55,2015/5/182015-05-24,46737,919955,1256,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/18,34:03.4\r\n5,629338,,1025,1907,34,10,30,5,16,88,17,1,6.57,2015/5/182015-05-24,46737,919955,1256,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/18,34:03.4\r\n6,630765,Ĭ,799,35207,26,25,31,6,-55,-49,-54,-3,6.12,2015/5/182015-05-24,46737,919955,1256,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/18,34:03.4\r\n7,627008,ʮ,717,1047,22,10,33,9,149,81,144,4,7.6,2015/5/182015-05-24,46737,919955,1256,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/18,34:03.4\r\n8,631788,Ͱʹ,666,1440,23,2,29,9,0,0,0,0,5.3,2015/5/182015-05-24,46737,919955,1256,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/18,34:03.5\r\n9,618528,,639,48417,18,31,35,7,-51,-50,-51,-5,7.05,2015/5/182015-05-24,46737,919955,1256,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/18,34:03.5\r\n10,637662,,581,17215,17,31,34,10,-27,-27,-27,-3,7.86,2015/5/182015-05-24,46737,919955,1256,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/18,34:03.5\r\n1,631792,2´Ԫ,96666,96666,2404,6,40,48,0,0,0,0,7.79,2015/5/112015-05-17,107166,936372,2722,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/11,34:03.9\r\n2,631798,ܲ,2158,8560,67,10,32,7,-66,-13,-66,2,7.62,2015/5/112015-05-17,107166,936372,2722,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/11,34:04.0\r\n3,630765,Ĭ,1784,34408,56,18,32,7,-80,-65,-79,-1,6.12,2015/5/112015-05-17,107166,936372,2722,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/11,34:04.0\r\n4,618528,,1292,47778,37,24,35,8,-79,-67,-79,1,7.1,2015/5/112015-05-17,107166,936372,2722,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/11,34:04.0\r\n5,629625,ٶ뼤7,927,242658,25,36,38,10,-91,-85,-91,-4,8.81,2015/5/112015-05-17,107166,936372,2722,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/11,34:04.0\r\n6,629338,,883,883,29,3,30,8,0,0,0,0,5.41,2015/5/112015-05-17,107166,936372,2722,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/11,34:04.0\r\n7,637662,,801,16634,23,24,35,10,-68,-59,-67,-1,7.92,2015/5/112015-05-17,107166,936372,2722,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/11,34:04.1\r\n8,618734,,771,20621,21,18,37,6,-89,-75,-88,-5,6.63,2015/5/112015-05-17,107166,936372,2722,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/11,34:04.1\r\n9,631788,Ͱʹ,369,774,13,-5,29,10,0,0,0,0,5.16,2015/5/112015-05-17,107166,936372,2722,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/11,34:04.1\r\n10,611503,,302,302,10,3,31,6,0,0,0,0,6,2015/5/112015-05-17,107166,936372,2722,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/11,34:04.1\r\n1,629625,ٶ뼤7,10842,241730,280,29,39,17,-62,-25,-61,9999,8.82,2015/5/42015-05-10,44637,976029,1264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/4,34:04.5\r\n2,630765,Ĭ,8936,32624,269,11,33,12,-60,25,-60,9999,6.21,2015/5/42015-05-10,44637,976029,1264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/4,34:04.5\r\n3,618734,,6849,19850,180,11,38,13,-47,33,-45,1,6.69,2015/5/42015-05-10,44637,976029,1264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/4,34:04.5\r\n4,631798,ܲ,6402,6402,201,3,32,19,0,0,0,0,7.09,2015/5/42015-05-10,44637,976029,1264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/4,34:04.6\r\n5,618528,,6228,46485,181,17,34,12,-70,-35,-70,-2,7.1,2015/5/42015-05-10,44637,976029,1264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/4,34:04.6\r\n6,637662,,2478,15833,70,17,35,13,-70,-39,-70,-1,7.86,2015/5/42015-05-10,44637,976029,1264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/4,34:04.6\r\n7,631695,,813,1336,18,11,46,12,56,16,34,3,7.56,2015/5/42015-05-10,44637,976029,1264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/4,34:04.6\r\n8,617612,,507,887,15,11,35,7,34,168,43,3,8.15,2015/5/42015-05-10,44637,976029,1264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/4,34:04.6\r\n9,617165,ս,461,53909,14,39,33,11,-59,-53,-59,-3,8.15,2015/5/42015-05-10,44637,976029,1264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/4,34:04.7\r\n10,631788,Ͱʹ,405,405,14,-12,29,9,0,0,0,0,5.78,2015/5/42015-05-10,44637,976029,1264,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/5/4,34:04.7\r\n1,629625,ٶ뼤7,28528,230888,724,22,39,32,-37,-44,-38,9999,8.84,2015/4/272015-05-03,97717,1002298,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/27,34:05.1\r\n2,630765,Ĭ,22361,23688,676,4,33,37,0,0,0,0,6.16,2015/4/272015-05-03,97717,1002298,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/27,34:05.1\r\n3,618528,,20452,40257,601,10,34,26,3,84,2,-1,7.03,2015/4/272015-05-03,97717,1002298,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/27,34:05.1\r\n4,618734,,12965,13001,328,4,40,32,0,0,0,0,5.95,2015/4/272015-05-03,97717,1002298,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/27,34:05.1\r\n5,637662,,8315,13355,236,10,35,26,65,53,65,-1,7.89,2015/4/272015-05-03,97717,1002298,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/27,34:05.1\r\n6,617165,ս,1131,53448,34,32,34,13,-63,-61,-63,-1,8.16,2015/4/272015-05-03,97717,1002298,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/27,34:05.2\r\n7,629090,,1016,14695,30,17,34,9,-84,-75,-84,-4,7.5,2015/4/272015-05-03,97717,1002298,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/27,34:05.2\r\n8,626874,ƻ,787,2359,26,10,31,7,-50,-4,-50,-2,5.82,2015/4/272015-05-03,97717,1002298,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/27,34:05.2\r\n9,628715,ҾҿӰ,714,714,23,4,32,8,0,0,0,0,5.73,2015/4/272015-05-03,97717,1002298,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/27,34:05.2\r\n10,631695,,521,522,13,4,40,11,0,0,0,0,7.22,2015/4/272015-05-03,97717,1002298,2715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/27,34:05.2\r\n1,629625,ٶ뼤7,45550,202361,1165,15,39,29,-61,-27,-61,9999,8.91,2015/4/202015-04-26,85011,948579,2338,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/20,34:05.7\r\n2,618528,,19805,19805,587,3,34,48,0,0,0,0,6.16,2015/4/202015-04-26,85011,948579,2338,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/20,34:05.7\r\n3,629090,,6401,13679,190,10,34,14,-12,66,-12,-1,7.58,2015/4/202015-04-26,85011,948579,2338,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/20,34:05.7\r\n4,637662,,5040,5040,143,3,35,24,0,0,0,0,7.23,2015/4/202015-04-26,85011,948579,2338,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/20,34:05.7\r\n5,617165,ս,3083,52317,92,25,33,14,-44,-31,-44,-2,8.29,2015/4/202015-04-26,85011,948579,2338,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/20,34:05.8\r\n6,626874,ƻ,1572,1572,51,3,31,13,0,0,0,0,5.69,2015/4/202015-04-26,85011,948579,2338,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/20,34:05.8\r\n7,630765,Ĭ,1326,1327,41,-3,32,55,0,0,0,0,6.59,2015/4/202015-04-26,85011,948579,2338,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/20,34:05.8\r\n8,631316,,886,2201,28,10,32,7,-33,39,-34,-4,6.28,2015/4/202015-04-26,85011,948579,2338,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/20,34:05.8\r\n9,631381,ععѧԺ,416,48434,12,31,35,18,-61,-73,-63,-2,8.91,2015/4/202015-04-26,85011,948579,2338,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/20,34:05.9\r\n10,626126,Ů,350,1533,11,12,32,5,-70,-41,-70,-5,6.29,2015/4/202015-04-26,85011,948579,2338,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/20,34:05.9\r\n1,629625,ٶ뼤7,116929,156811,3017,8,39,54,193,469,192,9999,9.1,2015/4/132015-04-19,135717,934905,3586,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/13,34:06.4\r\n2,629090,,7278,7278,216,3,34,27,0,0,0,0,6.59,2015/4/132015-04-19,135717,934905,3586,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/13,34:06.4\r\n3,617165,ս,5469,49234,165,18,33,17,-76,-63,-75,-1,8.27,2015/4/132015-04-19,135717,934905,3586,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/13,34:06.4\r\n4,631316,,1316,1316,42,3,31,14,0,0,0,0,7.22,2015/4/132015-04-19,135717,934905,3586,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/13,34:06.4\r\n5,626126,Ů,1183,1183,37,5,32,9,0,0,0,0,5.95,2015/4/132015-04-19,135717,934905,3586,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/13,34:06.5\r\n6,627393,ǽ,1065,28277,32,18,33,8,-91,-81,-91,-3,7.66,2015/4/132015-04-19,135717,934905,3586,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/13,34:06.5\r\n7,631381,ععѧԺ,1057,48018,32,24,33,13,-91,-82,-91,-3,8.96,2015/4/132015-04-19,135717,934905,3586,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/13,34:06.5\r\n8,637763,ħܶԱ,524,4504,17,16,31,12,-74,-72,-74,-3,8.27,2015/4/132015-04-19,135717,934905,3586,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/13,34:06.5\r\n9,630484,֮贫˵,241,2733,6,58,43,84,-38,-49,-37,1,7.2,2015/4/132015-04-19,135717,934905,3586,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/13,34:06.5\r\n10,631360,ǹ,134,134,5,4,26,7,0,0,0,0,6.22,2015/4/132015-04-19,135717,934905,3586,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/13,34:06.6\r\n1,629625,ٶ뼤7,39882,39882,1034,1,39,106,0,0,0,0,8.4,2015/4/62015-04-12,94865,1011061,2657,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/6,34:07.0\r\n2,617165,ս,22725,43765,658,11,35,25,9,65,9,-1,8.24,2015/4/62015-04-12,94865,1011061,2657,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/6,34:07.1\r\n3,627393,ǽ,12488,27213,376,11,33,18,-15,44,-14,9999,7.11,2015/4/62015-04-12,94865,1011061,2657,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/6,34:07.1\r\n4,631381,ععѧԺ,11827,46961,346,17,34,26,-40,-31,-40,-2,8.91,2015/4/62015-04-12,94865,1011061,2657,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/6,34:07.1\r\n5,637763,ħܶԱ,2054,3980,63,9,32,13,7,100,8,1,8.11,2015/4/62015-04-12,94865,1011061,2657,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/6,34:07.1\r\n6,613404,,1638,4445,52,10,32,7,-42,43,-40,-2,6.96,2015/4/62015-04-12,94865,1011061,2657,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/6,34:07.1\r\n7,617807,泵,1031,2048,33,10,31,7,1,59,3,3,7.25,2015/4/62015-04-12,94865,1011061,2657,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/6,34:07.2\r\n8,614395,鴫֮,854,2412,23,10,37,6,-25,44,-25,1,6.12,2015/4/62015-04-12,94865,1011061,2657,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/6,34:07.2\r\n9,631303,ҹ,778,44472,24,31,32,13,-64,-74,-65,-4,7.91,2015/4/62015-04-12,94865,1011061,2657,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/6,34:07.2\r\n10,630484,֮贫˵,386,2493,9,51,43,68,-28,-30,-24,2,7.2,2015/4/62015-04-12,94865,1011061,2657,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/4/6,34:07.2\r\n1,617165,ս,20847,21041,603,4,35,38,0,0,0,0,7.35,2015/3/302015-04-05,70175,995918,2068,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/30,34:07.6\r\n2,631381,ععѧԺ,19704,35134,575,10,34,29,28,65,24,-1,8.85,2015/3/302015-04-05,70175,995918,2068,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/30,34:07.7\r\n3,627393,ǽ,14720,14724,439,4,34,31,0,0,0,0,5.24,2015/3/302015-04-05,70175,995918,2068,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/30,34:07.7\r\n4,613404,,2806,2806,86,3,33,17,0,0,0,0,6.27,2015/3/302015-04-05,70175,995918,2068,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/30,34:07.7\r\n5,631303,ҹ,2186,43694,70,24,31,9,-72,-53,-73,-1,7.91,2015/3/302015-04-05,70175,995918,2068,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/30,34:07.7\r\n6,637763,ħܶԱ,1926,1926,58,2,33,24,0,0,0,0,7.41,2015/3/302015-04-05,70175,995918,2068,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/30,34:07.7\r\n7,627482,ʧ,1520,21513,49,17,31,6,-82,-64,-82,-5,7.81,2015/3/302015-04-05,70175,995918,2068,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/30,34:07.8\r\n8,631010,쫷Ӫ3,1451,20313,40,17,36,6,-82,-66,-82,-5,7.26,2015/3/302015-04-05,70175,995918,2068,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/30,34:07.8\r\n9,614395,鴫֮,1137,1557,31,3,37,11,0,0,0,0,6.68,2015/3/302015-04-05,70175,995918,2068,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/30,34:07.8\r\n10,617807,泵,1017,1017,32,3,32,10,0,0,0,0,6.32,2015/3/302015-04-05,70175,995918,2068,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/30,34:07.8\r\n1,631381,ععѧԺ,15430,15430,463,3,33,39,0,0,0,0,8.02,2015/3/232015-03-29,49005,982477,1485,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/23,34:08.5\r\n2,627482,ʧ,8503,19993,275,10,31,13,-26,77,-24,9999,7.94,2015/3/232015-03-29,49005,982477,1485,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/23,34:08.5\r\n3,631010,쫷Ӫ3,8062,18862,221,10,36,12,-25,74,-22,9999,7.32,2015/3/232015-03-29,49005,982477,1485,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/23,34:08.5\r\n4,631303,ҹ,7816,41509,254,17,31,16,-56,-27,-56,-3,7.91,2015/3/232015-03-29,49005,982477,1485,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/23,34:08.5\r\n5,621612,½ս,3467,52491,100,30,35,14,-53,-40,-52,-1,9.1,2015/3/232015-03-29,49005,982477,1485,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/23,34:08.6\r\n6,631062,һԺ,1916,1920,57,3,33,12,0,0,0,0,5.3,2015/3/232015-03-29,49005,982477,1485,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/23,34:08.6\r\n7,627447,ɰ,897,2005,28,10,32,6,-19,19,-17,2,8.19,2015/3/232015-03-29,49005,982477,1485,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/23,34:08.6\r\n8,630484,֮贫˵,531,1570,13,37,40,55,46,23,39,4,7.2,2015/3/232015-03-29,49005,982477,1485,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/23,34:08.6\r\n9,621772,,392,9819,13,25,31,8,-68,-65,-68,-1,8.46,2015/3/232015-03-29,49005,982477,1485,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/23,34:08.6\r\n10,612432,ͼ,359,69588,10,39,37,9,-76,-74,-76,-3,8.16,2015/3/232015-03-29,49005,982477,1485,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/23,34:08.7\r\n1,631303,ҹ,17897,33693,573,10,31,26,13,99,17,9999,7.95,2015/3/162015-03-22,59167,988984,1766,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/16,34:09.0\r\n2,627482,ʧ,11487,11490,363,3,32,30,0,0,0,0,6.76,2015/3/162015-03-22,59167,988984,1766,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/16,34:09.1\r\n3,631010,쫷Ӫ3,10800,10800,283,3,38,26,0,0,0,0,6.8,2015/3/162015-03-22,59167,988984,1766,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/16,34:09.1\r\n4,621612,½ս,7317,49023,207,23,35,18,-49,-18,-48,-2,9.1,2015/3/162015-03-22,59167,988984,1766,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/16,34:09.1\r\n5,623468,ľ,2819,28056,78,17,36,8,-74,-50,-73,-2,6.6,2015/3/162015-03-22,59167,988984,1766,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/16,34:09.1\r\n6,627594,ŷ2,2179,97135,60,32,36,10,-68,-48,-68,-2,7.76,2015/3/162015-03-22,59167,988984,1766,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/16,34:09.1\r\n7,612432,ͼ,1500,69229,40,32,37,9,-69,-49,-69,-2,8.16,2015/3/162015-03-22,59167,988984,1766,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/16,34:09.2\r\n8,621772,,1222,9427,39,18,31,9,-65,-48,-65,-2,8.47,2015/3/162015-03-22,59167,988984,1766,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/16,34:09.2\r\n9,627447,ɰ,1104,1108,34,3,33,9,0,0,0,0,5.68,2015/3/162015-03-22,59167,988984,1766,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/16,34:09.2\r\n10,615868,ŹӰ,996,2159,34,10,30,7,-14,68,-13,-1,5.71,2015/3/162015-03-22,59167,988984,1766,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/16,34:09.2\r\n1,631303,ҹ,15795,15795,491,3,32,44,0,0,0,0,7.21,2015/3/92015-03-15,62639,981598,1809,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/9,34:09.9\r\n2,621612,½ս,14293,41706,397,16,36,28,-24,-6,-21,-1,8.93,2015/3/92015-03-15,62639,981598,1809,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/9,34:09.9\r\n3,623468,ľ,10638,25238,287,10,37,15,-27,87,-25,9999,6.87,2015/3/92015-03-15,62639,981598,1809,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/9,34:09.9\r\n4,627594,ŷ2,6822,94956,186,25,37,16,-61,-31,-59,-2,7.94,2015/3/92015-03-15,62639,981598,1809,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/9,34:09.9\r\n5,612432,ͼ,4827,67730,130,25,37,15,-63,-33,-62,-1,8.21,2015/3/92015-03-15,62639,981598,1809,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/9,34:10.0\r\n6,621772,,3470,8205,112,11,31,13,-27,24,-28,9999,8.39,2015/3/92015-03-15,62639,981598,1809,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/9,34:10.0\r\n7,626314,콫ʦ,2118,73749,55,25,38,12,-74,-56,-74,-2,7.96,2015/3/92015-03-15,62639,981598,1809,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/9,34:10.0\r\n8,630911,ʹ,1243,3569,42,11,30,8,-47,13,-45,9999,6.73,2015/3/92015-03-15,62639,981598,1809,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/9,34:10.0\r\n9,615868,ŹӰ,1162,1163,39,3,30,14,0,0,0,0,5.46,2015/3/92015-03-15,62639,981598,1809,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/9,34:10.0\r\n10,616380,ŦԼ,591,1823,19,10,32,5,-52,6,-52,-1,6.12,2015/3/92015-03-15,62639,981598,1809,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/9,34:10.1\r\n1,621612,½ս,18852,27413,506,9,37,33,120,151,132,5,8.92,2015/3/22015-03-08,88215,1008685,2395,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/2,34:10.5\r\n2,627594,ŷ2,17323,88133,457,18,38,27,-60,-22,-59,-1,7.95,2015/3/22015-03-08,88215,1008685,2395,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/2,34:10.5\r\n3,623468,ľ,14600,14600,383,3,38,38,0,0,0,0,7.08,2015/3/22015-03-08,88215,1008685,2395,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/2,34:10.5\r\n4,612432,ͼ,13042,62903,346,18,38,27,-56,-19,-54,-2,8.25,2015/3/22015-03-08,88215,1008685,2395,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/2,34:10.5\r\n5,626314,콫ʦ,8297,71631,212,18,39,21,-71,-43,-70,-2,7.96,2015/3/22015-03-08,88215,1008685,2395,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/2,34:10.5\r\n6,621772,,4735,4735,157,4,30,23,0,0,0,0,7.82,2015/3/22015-03-08,88215,1008685,2395,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/2,34:10.5\r\n7,614827,ظħѩħ,3437,40308,88,18,39,14,-80,-53,-79,-3,6.9,2015/3/22015-03-08,88215,1008685,2395,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/2,34:10.6\r\n8,630911,ʹ,2325,2325,76,4,30,16,0,0,0,0,6.05,2015/3/22015-03-08,88215,1008685,2395,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/2,34:10.6\r\n9,616380,ŦԼ,1226,1232,39,3,32,11,0,0,0,0,6.05,2015/3/22015-03-08,88215,1008685,2395,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/2,34:10.6\r\n10,627643,,1028,15498,29,18,36,10,-84,-64,-84,-3,6.9,2015/3/22015-03-08,88215,1008685,2395,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/3/2,34:10.6\r\n1,627594,ŷ2,43357,70810,1103,11,39,51,58,102,64,1,7.95,2015/2/232015-03-01,150490,1048747,3893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/23,34:11.1\r\n2,612432,ͼ,29327,49860,753,11,39,48,86,120,95,2,8.3,2015/2/232015-03-01,150490,1048747,3893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/23,34:11.1\r\n3,626314,콫ʦ,28520,63334,705,11,40,39,-18,29,-16,-2,8.04,2015/2/232015-03-01,150490,1048747,3893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/23,34:11.1\r\n4,614827,ظħѩħ,16943,36871,428,11,40,32,-15,40,-12,-1,7,2015/2/232015-03-01,150490,1048747,3893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/23,34:11.1\r\n5,630414,ְȥĶ2,8571,21735,270,11,32,25,-34,19,-31,9999,7.73,2015/2/232015-03-01,150490,1048747,3893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/23,34:11.2\r\n6,621612,½ս,8561,8561,218,2,39,36,0,0,0,0,8.05,2015/2/232015-03-01,150490,1048747,3893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/23,34:11.2\r\n7,627643,,6444,14469,179,11,36,23,-20,44,-17,-1,6.98,2015/2/232015-03-01,150490,1048747,3893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/23,34:11.2\r\n8,628143,ְֵļ,4939,10666,125,11,40,26,-14,10,-21,-1,7.06,2015/2/232015-03-01,150490,1048747,3893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/23,34:11.2\r\n9,629949,ܳû֮ѩܷ,1786,29161,52,31,34,33,-26,-59,-24,1,8.04,2015/2/232015-03-01,150490,1048747,3893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/23,34:11.3\r\n10,627004,һطֻ֪,505,28164,15,20,35,18,-87,-92,-88,-2,7.78,2015/2/232015-03-01,150490,1048747,3893,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/23,34:11.3\r\n1,626314,콫ʦ,34774,34814,839,4,41,61,0,0,0,0,6.53,2015/2/162015-02-22,138542,969324,3562,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/16,34:11.9\r\n2,627594,ŷ2,27433,27454,671,4,41,63,0,0,0,0,6,2015/2/162015-02-22,138542,969324,3562,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/16,34:11.9\r\n3,614827,ظħѩħ,19844,19928,484,4,41,50,0,0,0,0,6.32,2015/2/162015-02-22,138542,969324,3562,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/16,34:11.9\r\n4,612432,ͼ,15764,20534,386,4,41,54,0,0,0,0,7.99,2015/2/162015-02-22,138542,969324,3562,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/16,34:11.9\r\n5,630414,ְȥĶ2,12891,13164,393,4,33,43,0,0,0,0,6.74,2015/2/162015-02-22,138542,969324,3562,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/16,34:12.0\r\n6,627643,,8025,8025,215,4,37,40,0,0,0,0,6.32,2015/2/162015-02-22,138542,969324,3562,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/16,34:12.0\r\n7,628143,ְֵļ,5713,5727,159,4,36,37,0,0,0,0,6.43,2015/2/162015-02-22,138542,969324,3562,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/16,34:12.0\r\n8,627004,һطֻ֪,3964,27658,124,13,32,12,-83,-59,-83,-7,7.82,2015/2/162015-02-22,138542,969324,3562,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/16,34:12.0\r\n9,622970,Ϸ3Ц(),2522,22394,68,15,37,11,-82,-69,-81,-7,6.98,2015/2/162015-02-22,138542,969324,3562,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/16,34:12.1\r\n10,629949,ܳû֮ѩܷ,2412,27374,69,24,35,18,-54,-55,-55,-7,7.99,2015/2/162015-02-22,138542,969324,3562,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/16,34:12.1\r\n1,627004,һطֻ֪,23611,23695,710,6,33,29,0,0,0,0,7.33,2015/2/92015-02-15,66607,984979,1891,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/9,34:12.6\r\n2,622970,Ϸ3Ц(),13687,19872,361,8,38,18,121,392,117,2,6.92,2015/2/92015-02-15,66607,984979,1891,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/9,34:12.6\r\n3,629949,ܳû֮ѩܷ,5222,24962,152,17,34,17,-43,-37,-43,9999,7.88,2015/2/92015-02-15,66607,984979,1891,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/9,34:12.7\r\n4,612432,ͼ,4746,4769,104,-3,45,57,0,0,0,0,6.49,2015/2/92015-02-15,66607,984979,1891,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/9,34:12.7\r\n5,625819,3֮ս,4699,75310,111,24,42,23,-62,-66,-64,-3,8.6,2015/2/92015-02-15,66607,984979,1891,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/9,34:12.7\r\n6,630178,ܰɣֵ,3935,42475,126,17,31,14,-74,-68,-75,-5,,2015/2/92015-02-15,66607,984979,1891,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/9,34:12.7\r\n7,616397,㰮,2934,6041,90,10,33,14,-1,27,-2,-1,7.83,2015/2/92015-02-15,66607,984979,1891,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/9,34:12.8\r\n8,628791,һ·ϲ,2801,6398,86,10,32,14,-22,4,-23,-3,7.43,2015/2/92015-02-15,66607,984979,1891,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/9,34:12.8\r\n9,630506,̽ݵ,1096,3545,34,10,32,10,-55,-34,-56,-1,6.24,2015/2/92015-02-15,66607,984979,1891,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/9,34:12.8\r\n10,629953,ϲ̫֮ϲ,1015,6098,33,16,31,12,-59,-62,-59,-3,8.42,2015/2/92015-02-15,66607,984979,1891,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/9,34:12.8\r\n1,630178,ܰɣֵ,15251,38540,494,10,31,18,-35,75,-33,1,,2015/2/22015-02-08,59229,991985,1746,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/2,34:13.2\r\n2,625819,3֮ս,12504,70611,311,17,40,22,-53,-48,-54,-1,8.57,2015/2/22015-02-08,59229,991985,1746,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/2,34:13.2\r\n3,629949,ܳû֮ѩܷ,9107,19740,266,10,34,19,-10,76,-9,9999,7.89,2015/2/22015-02-08,59229,991985,1746,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/2,34:13.3\r\n4,622970,Ϸ3Ц(),6185,6185,167,1,37,40,0,0,0,0,7.4,2015/2/22015-02-08,59229,991985,1746,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/2,34:13.3\r\n5,628791,һ·ϲ,3597,3597,112,3,32,19,0,0,0,0,5.95,2015/2/22015-02-08,59229,991985,1746,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/2,34:13.3\r\n6,616397,㰮,2965,3106,92,3,32,18,0,0,0,0,7.83,2015/2/22015-02-08,59229,991985,1746,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/2,34:13.3\r\n7,629953,ϲ̫֮ϲ,2450,5083,81,9,30,11,-7,96,-5,-2,8.75,2015/2/22015-02-08,59229,991985,1746,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/2,34:13.3\r\n8,630506,̽ݵ,2449,2449,78,3,32,16,0,0,0,0,6.43,2015/2/22015-02-08,59229,991985,1746,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/2,34:13.4\r\n9,630771,᲻ɴ,1855,3361,57,10,33,14,23,53,21,-2,7.74,2015/2/22015-02-08,59229,991985,1746,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/2,34:13.4\r\n10,626506,ط20,727,36515,23,32,32,13,-78,-80,-78,-6,8.74,2015/2/22015-02-08,59229,991985,1746,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/2/2,34:13.4\r\n2,630178,ܰɣֵ,23285,23289,738,3,32,46,0,0,0,0,,2015/1/262015-02-01,72951,898365,2100,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/26,10:13.3\r\n3,629949,ܳû֮ѩܷ,10141,10633,293,3,35,37,0,0,0,0,6.44,2015/1/262015-02-01,72951,898365,2100,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/26,10:13.4\r\n4,626506,ط20,3350,35789,106,25,32,12,-56,-43,-56,-2,8.74,2015/1/262015-02-01,72951,898365,2100,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/26,10:13.4\r\n5,629953,ϲ̫֮ϲ,2624,2633,85,2,31,23,0,0,0,0,5.89,2015/1/262015-02-01,72951,898365,2100,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/26,10:13.4\r\n6,623592,ҹ3,1682,32129,53,29,32,12,-57,-52,-57,-2,7.97,2015/1/262015-02-01,72951,898365,2100,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/26,10:13.4\r\n7,630771,᲻ɴ,1505,1505,47,3,32,18,0,0,0,0,7.47,2015/1/262015-02-01,72951,898365,2100,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/26,10:13.4\r\n8,385808,ӣħ֮ս,982,17187,28,17,35,5,-84,-71,-83,-5,6.52,2015/1/262015-02-01,72951,898365,2100,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/26,10:13.5\r\n9,613812,ȡɽ,621,87565,16,41,38,13,-73,-71,-73,-4,8.49,2015/1/262015-02-01,72951,898365,2100,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/26,10:13.5\r\n10,630478,,343,2063,9,17,40,54,-46,-84,-49,-2,6.19,2015/1/262015-02-01,72951,898365,2100,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/26,10:13.5\r\n1,625819,3֮ս,31292,31294,792,3,40,51,0,0,0,0,7.95,2015/1/192015-01-25,55948,869550,1523,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/19,10:13.7\r\n2,626506,ط20,7681,32438,244,18,32,16,-37,-24,-37,-1,8.74,2015/1/192015-01-25,55948,869550,1523,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/19,10:13.7\r\n3,385808,ӣħ֮ս,6063,16205,165,10,37,9,-40,62,-40,-1,6.54,2015/1/192015-01-25,55948,869550,1523,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/19,10:13.7\r\n4,623592,ҹ3,3925,30447,124,22,32,13,-45,-37,-44,-1,7.97,2015/1/192015-01-25,55948,869550,1523,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/19,10:13.7\r\n5,613812,ȡɽ,2267,86944,59,34,38,13,-54,-49,-53,-1,8.5,2015/1/192015-01-25,55948,869550,1523,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/19,10:13.7\r\n6,618610,̽,902,2343,29,10,31,5,-37,19,-37,1,6.62,2015/1/192015-01-25,55948,869550,1523,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/19,10:13.8\r\n7,629956,,688,2486,18,11,37,4,-61,-29,-61,-1,8.25,2015/1/192015-01-25,55948,869550,1523,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/19,10:13.8\r\n8,630478,,638,1720,17,10,38,17,-41,-21,-44,9999,6.18,2015/1/192015-01-25,55948,869550,1523,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/19,10:13.8\r\n9,629949,ܳû֮ѩܷ,438,492,12,-4,37,105,0,0,0,0,5.89,2015/1/192015-01-25,55948,869550,1523,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/19,10:13.8\r\n10,630521,̸,400,400,13,3,31,6,0,0,0,0,6.05,2015/1/192015-01-25,55948,869550,1523,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/19,10:13.9\r\n1,626506,ط20,12148,24757,388,11,31,19,-3,47,-2,1,8.76,2015/1/122015-01-18,44825,891513,1287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/12,10:14.4\r\n2,385808,ӣħ֮ս,10143,10143,274,3,37,24,0,0,0,0,7.1,2015/1/122015-01-18,44825,891513,1287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/12,10:14.5\r\n3,623592,ҹ3,7122,26522,221,15,32,15,-57,-34,-56,-2,7.99,2015/1/122015-01-18,44825,891513,1287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/12,10:14.5\r\n4,613812,ȡɽ,4970,84677,127,27,39,15,-54,-43,-54,-1,8.48,2015/1/122015-01-18,44825,891513,1287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/12,10:14.5\r\n5,629493,һʦ3D,2984,6097,54,11,56,14,-4,-20,-20,-1,7.93,2015/1/122015-01-18,44825,891513,1287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/12,10:14.5\r\n6,629956,,1780,1798,47,4,38,7,0,0,0,0,7.52,2015/1/122015-01-18,44825,891513,1287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/12,10:14.5\r\n7,618610,̽,1439,1441,46,3,31,9,0,0,0,0,5.95,2015/1/122015-01-18,44825,891513,1287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/12,10:14.6\r\n8,630478,,1081,1081,30,3,36,24,0,0,0,0,5.95,2015/1/122015-01-18,44825,891513,1287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/12,10:14.6\r\n9,628995,ʮЦ,749,11583,24,19,32,8,-70,-61,-70,-4,7.82,2015/1/122015-01-18,44825,891513,1287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/12,10:14.6\r\n10,620797,ǰĿĵ,444,1149,14,10,32,5,-37,8,-37,-3,7.55,2015/1/122015-01-18,44825,891513,1287,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/12,10:14.6\r\n1,623592,ҹ3,16482,19400,502,8,33,22,465,469,476,4,7.96,2015/1/52015-01-11,51063,893434,1494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/5,10:15.1\r\n2,626506,ط20,12495,12610,396,4,32,29,0,0,0,0,7.28,2015/1/52015-01-11,51063,893434,1494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/5,10:15.1\r\n3,613812,ȡɽ,10801,79706,276,20,39,18,-70,-38,-68,-2,8.48,2015/1/52015-01-11,51063,893434,1494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/5,10:15.1\r\n4,629493,һʦ3D,3108,3113,67,4,47,14,0,0,0,0,7.39,2015/1/52015-01-11,51063,893434,1494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/5,10:15.2\r\n5,628995,ʮЦ,2469,10834,79,12,31,11,-70,-18,-70,-2,7.84,2015/1/52015-01-11,51063,893434,1494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/5,10:15.2\r\n6,617813,΢֮Ѿ,1722,28287,53,19,33,8,-86,-62,-85,-4,8.15,2015/1/52015-01-11,51063,893434,1494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/5,10:15.2\r\n7,620797,ǰĿĵ,705,705,22,3,32,8,0,0,0,0,7.58,2015/1/52015-01-11,51063,893434,1494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/5,10:15.2\r\n8,593247,ܶԱ,587,3253,18,12,33,9,-78,-46,-77,-1,7.19,2015/1/52015-01-11,51063,893434,1494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/5,10:15.2\r\n9,615672,Թż,497,2353,15,12,33,6,-73,-31,-73,-1,6.25,2015/1/52015-01-11,51063,893434,1494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/5,10:15.2\r\n10,621864,к,428,428,13,2,32,10,0,0,0,0,7.06,2015/1/52015-01-11,51063,893434,1494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2015/1/5,10:15.3\r\n1,613812,ȡɽ,36596,68905,871,13,42,36,14,11,12,9999,8.39,2014/12/292015-01-04,78485,915510,2122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/29,10:15.8\r\n2,617813,΢֮Ѿ,11979,26565,358,12,33,21,-18,2,-14,9999,8.25,2014/12/292015-01-04,78485,915510,2122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/29,10:15.8\r\n3,628995,ʮЦ,8363,8365,263,5,32,29,0,0,0,0,5.78,2014/12/292015-01-04,78485,915510,2122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/29,10:15.8\r\n4,625695,һ֮ң,4120,51186,97,18,43,16,-67,-67,-67,-1,6.74,2014/12/292015-01-04,78485,915510,2122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/29,10:15.9\r\n5,623592,ҹ3,2920,2918,87,1,34,21,0,0,0,0,7.56,2014/12/292015-01-04,78485,915510,2122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/29,10:15.9\r\n6,608979,,2884,2880,91,5,32,13,0,0,0,0,5.73,2014/12/292015-01-04,78485,915510,2122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/29,10:15.9\r\n7,593247,ܶԱ,2668,2666,78,5,34,22,0,0,0,0,6.01,2014/12/292015-01-04,78485,915510,2122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/29,10:15.9\r\n8,615672,Թż,1855,1856,57,5,33,15,0,0,0,0,6.27,2014/12/292015-01-04,78485,915510,2122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/29,10:15.9\r\n9,605517,ټ,1519,3118,49,10,31,16,-5,3,-10,-4,7.58,2014/12/292015-01-04,78485,915510,2122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/29,10:16.0\r\n10,609631,2Ϸ,1137,1836,35,4,33,14,0,0,0,0,5.45,2014/12/292015-01-04,78485,915510,2122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/29,10:16.0\r\n1,613812,ȡɽ,32168,32331,780,6,41,35,0,0,0,0,6.53,2014/12/222014-12-28,70459,843833,1844,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/22,10:16.4\r\n2,617813,΢֮Ѿ,14551,14592,416,5,35,25,0,0,0,0,7.6,2014/12/222014-12-28,70459,843833,1844,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/22,10:16.4\r\n3,625695,һ֮ң,12627,47069,297,11,43,16,-63,-22,-64,-2,6.85,2014/12/222014-12-28,70459,843833,1844,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/22,10:16.5\r\n4,619144,Ҵ,2717,57718,76,24,36,11,-73,-64,-74,-2,7.38,2014/12/222014-12-28,70459,843833,1844,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/22,10:16.5\r\n5,605517,ټ,1600,1600,54,3,30,18,0,0,0,0,4.2,2014/12/222014-12-28,70459,843833,1844,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/22,10:16.5\r\n6,555839,̫ƽ֣ϣ,1567,19484,52,27,30,51,-24,-79,-13,-2,7.08,2014/12/222014-12-28,70459,843833,1844,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/22,10:16.5\r\n7,626514,ҵŮ,1053,16040,34,17,31,8,-83,-74,-83,-4,7.16,2014/12/222014-12-28,70459,843833,1844,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/22,10:16.5\r\n8,606347,ĩպƽ,817,817,27,3,31,13,0,0,0,0,6.96,2014/12/222014-12-28,70459,843833,1844,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/22,10:16.6\r\n9,628125,˲,797,798,24,5,34,8,0,0,0,0,6.25,2014/12/222014-12-28,70459,843833,1844,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/22,10:16.6\r\n10,629874,֮ʧ,430,430,14,3,30,9,0,0,0,0,5.57,2014/12/222014-12-28,70459,843833,1844,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/22,10:16.6\r\n1,625695,һ֮ң,34442,34442,821,4,42,35,0,0,0,0,5.95,2014/12/152014-12-21,58244,821722,1545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/15,10:17.1\r\n2,619144,Ҵ,9936,55002,286,17,35,15,-55,-31,-55,-1,7.38,2014/12/152014-12-21,58244,821722,1545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/15,10:17.1\r\n3,626514,ҵŮ,6076,14987,200,10,30,12,-31,57,-31,-1,7.11,2014/12/152014-12-21,58244,821722,1545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/15,10:17.1\r\n4,555839,̫ƽ֣ϣ,2065,17918,60,20,35,12,-57,-59,-50,-1,7.12,2014/12/152014-12-21,58244,821722,1545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/15,10:17.1\r\n5,613011,Ů,1581,22703,48,24,33,9,-63,-49,-63,-1,7.41,2014/12/152014-12-21,58244,821722,1545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/15,10:17.2\r\n6,628761,ս,1105,2468,36,10,31,7,-19,48,-18,1,7.52,2014/12/152014-12-21,58244,821722,1545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/15,10:17.2\r\n7,629873,ŭ,374,11902,11,31,35,12,-51,-45,-51,1,7.73,2014/12/152014-12-21,58244,821722,1545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/15,10:17.2\r\n8,628178,,362,3018,12,37,31,138,-6,-25,-9,2,7.14,2014/12/152014-12-21,58244,821722,1545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/15,10:17.2\r\n9,612723,,307,763,7,24,47,53,134,-36,113,5,7.6,2014/12/152014-12-21,58244,821722,1545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/15,10:17.2\r\n10,617565,,290,564,10,10,29,4,6,56,9,2,5.93,2014/12/152014-12-21,58244,821722,1545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/15,10:17.3\r\n1,619144,Ҵ,22267,45066,642,10,35,24,8,108,7,9999,7.4,2014/12/82014-12-14,49478,834229,1459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/8,10:17.7\r\n2,626514,ҵŮ,8786,8911,289,3,30,27,0,0,0,0,6.35,2014/12/82014-12-14,49478,834229,1459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/8,10:17.7\r\n3,555839,̫ƽ֣ϣ,4778,15853,120,13,40,10,-57,-35,-56,-1,7.2,2014/12/82014-12-14,49478,834229,1459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/8,10:17.8\r\n4,613011,Ů,4312,21122,130,17,33,13,-50,-37,-49,-1,7.41,2014/12/82014-12-14,49478,834229,1459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/8,10:17.8\r\n5,629859,˹ӵ,2295,25319,66,31,35,19,-15,-18,-15,9999,7.94,2014/12/82014-12-14,49478,834229,1459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/8,10:17.8\r\n6,346481,ǼʴԽ,1906,75530,51,33,37,15,-69,-55,-69,-2,8.57,2014/12/82014-12-14,49478,834229,1459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/8,10:17.8\r\n7,628761,ս,1362,1363,43,3,31,12,0,0,0,0,7.02,2014/12/82014-12-14,49478,834229,1459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/8,10:17.8\r\n8,629873,ŭ,767,11528,22,24,35,14,-46,-50,-48,-1,7.73,2014/12/82014-12-14,49478,834229,1459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/8,10:17.8\r\n9,617988,Ʒɺ֮Ӣ,536,18254,12,24,44,8,-68,-68,-72,-3,7.59,2014/12/82014-12-14,49478,834229,1459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/8,10:17.9\r\n10,628178,,384,2656,13,30,30,114,-37,-33,-35,-2,7.14,2014/12/82014-12-14,49478,834229,1459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/8,10:17.9\r\n1,619144,Ҵ,20708,22800,598,3,35,46,0,0,0,0,6.22,2014/12/12014-12-07,55149,815496,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/1,10:18.3\r\n2,555839,̫ƽ֣ϣ,11072,11075,271,6,41,15,0,0,0,0,7.33,2014/12/12014-12-07,55149,815496,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/1,10:18.3\r\n3,613011,Ů,8547,16810,255,10,33,16,5,67,5,-1,7.22,2014/12/12014-12-07,55149,815496,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/1,10:18.3\r\n4,346481,ǼʴԽ,6054,73625,165,26,37,21,-58,-46,-59,-3,8.57,2014/12/12014-12-07,55149,815496,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/1,10:18.4\r\n5,629859,˹ӵ,2700,23025,77,24,35,18,-47,-42,-48,-1,7.95,2014/12/12014-12-07,55149,815496,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/1,10:18.4\r\n6,617988,Ʒɺ֮Ӣ,1670,17718,43,17,39,9,-78,-68,-80,-3,7.59,2014/12/12014-12-07,55149,815496,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/1,10:18.4\r\n7,629873,ŭ,1407,10761,42,17,33,13,-71,-70,-73,-2,7.75,2014/12/12014-12-07,55149,815496,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/1,10:18.4\r\n8,628178,,612,2272,20,23,30,118,-37,-37,-37,9999,7.08,2014/12/12014-12-07,55149,815496,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/1,10:18.4\r\n9,629176,ܵ׷֮,444,445,13,3,33,9,0,0,0,0,5.46,2014/12/12014-12-07,55149,815496,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/1,10:18.5\r\n10,606574,Ԫ,435,2055,14,10,30,4,-73,-17,-73,-3,6.64,2014/12/12014-12-07,55149,815496,1548,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/12/1,10:18.5\r\n1,346481,ǼʴԽ,14470,67571,400,19,36,28,-45,-27,-45,9999,8.57,2014/11/242014-11-30,49115,792456,1441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/24,10:18.9\r\n2,613011,Ů,8172,8263,244,3,34,25,0,0,0,0,5.77,2014/11/242014-11-30,49115,792456,1441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/24,10:18.9\r\n3,617988,Ʒɺ֮Ӣ,7681,16047,210,10,37,15,-1,66,0,9999,7.54,2014/11/242014-11-30,49115,792456,1441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/24,10:18.9\r\n4,629859,˹ӵ,5136,20324,148,17,35,20,-35,-37,-35,-2,7.95,2014/11/242014-11-30,49115,792456,1441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/24,10:18.9\r\n5,629873,ŭ,4827,9354,153,10,31,15,7,59,6,-1,7.72,2014/11/242014-11-30,49115,792456,1441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/24,10:18.9\r\n6,619144,Ҵ,2092,2092,62,-4,34,47,0,0,0,0,6,2014/11/242014-11-30,49115,792456,1441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/24,10:19.0\r\n7,606574,Ԫ,1620,1620,54,3,30,13,0,0,0,0,7.05,2014/11/242014-11-30,49115,792456,1441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/24,10:19.0\r\n8,628178,,968,1660,32,16,30,119,55,-10,68,1,7.13,2014/11/242014-11-30,49115,792456,1441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/24,10:19.0\r\n9,617708,Ů2,965,19782,30,20,32,8,-78,-69,-78,-4,7.37,2014/11/242014-11-30,49115,792456,1441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/24,10:19.0\r\n10,628993,֮,659,660,21,3,31,7,0,0,0,0,6,2014/11/242014-11-30,49115,792456,1441,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/24,10:19.0\r\n1,346481,ǼʴԽ,26212,53101,728,12,36,37,-3,25,-2,9999,8.61,2014/11/172014-11-23,56097,775348,1613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/17,10:19.5\r\n2,629859,˹ӵ,7951,15188,229,10,35,20,10,73,11,1,7.94,2014/11/172014-11-23,56097,775348,1613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/17,10:19.5\r\n3,617988,Ʒɺ֮Ӣ,7755,8366,210,3,37,24,0,0,0,0,6.32,2014/11/172014-11-23,56097,775348,1613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/17,10:19.5\r\n4,629873,ŭ,4527,4527,144,3,31,22,0,0,0,0,7.24,2014/11/172014-11-23,56097,775348,1613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/17,10:19.5\r\n5,617708,Ů2,4466,18817,135,13,33,12,-64,-31,-64,-3,7.37,2014/11/172014-11-23,56097,775348,1613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/17,10:19.6\r\n6,396577,꣺ʱ,1078,38499,31,24,34,7,-78,-62,-77,-2,7.65,2014/11/172014-11-23,56097,775348,1613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/17,10:19.6\r\n7,629659,Թ,749,1530,27,11,28,8,-4,58,-4,2,6.96,2014/11/172014-11-23,56097,775348,1613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/17,10:19.6\r\n8,611212,ҹݺ,733,1622,22,24,33,74,94,-19,76,4,7.56,2014/11/172014-11-23,56097,775348,1613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/17,10:19.6\r\n9,628178,,625,692,19,9,33,64,847,200,763,8,2.93,2014/11/172014-11-23,56097,775348,1613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/17,10:19.6\r\n10,626573,¶ˮ,403,6190,13,17,30,5,-82,-67,-82,-5,7.4,2014/11/172014-11-23,56097,775348,1613,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/17,10:19.6\r\n1,346481,ǼʴԽ,26889,26889,746,5,36,47,0,0,0,0,7.91,2014/11/102014-11-16,61084,815436,1763,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/10,10:20.0\r\n2,617708,Ů2,12431,14351,375,6,33,23,0,0,0,0,7.4,2014/11/102014-11-16,61084,815436,1763,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/10,10:20.1\r\n3,629859,˹ӵ,7237,7237,206,3,35,31,0,0,0,0,6,2014/11/102014-11-16,61084,815436,1763,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/10,10:20.1\r\n4,396577,꣺ʱ,4957,37421,137,17,36,12,-69,-51,-68,-3,7.66,2014/11/102014-11-16,61084,815436,1763,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/10,10:20.1\r\n5,626573,¶ˮ,2282,5787,75,10,31,10,-35,18,-33,9999,7.32,2014/11/102014-11-16,61084,815436,1763,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/10,10:20.1\r\n6,621389,ƶԹ,1253,14830,38,20,33,13,-75,-71,-76,-3,7.52,2014/11/102014-11-16,61084,815436,1763,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/10,10:20.1\r\n7,616526,һ˵,1155,11656,32,17,36,8,-79,-68,-79,-5,7.54,2014/11/102014-11-16,61084,815436,1763,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/10,10:20.1\r\n8,627468,,866,27649,22,24,40,11,-77,-75,-78,-4,7.6,2014/11/102014-11-16,61084,815436,1763,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/10,10:20.1\r\n9,629659,Թ,781,781,28,4,28,13,0,0,0,0,5.62,2014/11/102014-11-16,61084,815436,1763,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/10,10:20.2\r\n10,626950,ȫͨ,701,3440,22,11,31,7,-74,-51,-74,-4,6.8,2014/11/102014-11-16,61084,815436,1763,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/10,10:20.2\r\n1,396577,꣺ʱ,15815,32464,422,10,37,17,-5,93,-6,9999,7.63,2014/11/32014-11-09,41653,869759,1186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/3,10:20.7\r\n2,616526,һ˵,5541,10501,154,10,36,12,12,81,12,2,3.46,2014/11/32014-11-09,41653,869759,1186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/3,10:20.8\r\n3,621389,ƶԹ,5033,13577,157,13,32,15,-41,-29,-44,9999,3.52,2014/11/32014-11-09,41653,869759,1186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/3,10:20.8\r\n4,627468,,3747,26783,96,17,39,13,-63,-57,-64,-2,3.49,2014/11/32014-11-09,41653,869759,1186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/3,10:20.8\r\n5,626573,¶ˮ,3505,3505,111,3,32,17,0,0,0,0,6.16,2014/11/32014-11-09,41653,869759,1186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/3,10:20.8\r\n6,626950,ȫͨ,2738,2739,87,4,31,13,0,0,0,0,5.84,2014/11/32014-11-09,41653,869759,1186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/3,10:20.8\r\n7,617708,Ů2,1919,1919,57,-1,33,21,0,0,0,0,1.68,2014/11/32014-11-09,41653,869759,1186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/3,10:20.8\r\n8,625440,ӻ,956,59543,25,31,38,12,-74,-72,-75,-3,3.77,2014/11/32014-11-09,41653,869759,1186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/3,10:20.9\r\n9,627466,Ұ,560,563,15,3,38,12,0,0,0,0,1.93,2014/11/32014-11-09,41653,869759,1186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/3,10:20.9\r\n10,611212,ҹݺ,378,511,11,10,33,9,194,37,188,6,3.53,2014/11/32014-11-09,41653,869759,1186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/11/3,10:20.9\r\n1,396577,꣺ʱ,16644,16649,451,3,37,36,0,0,0,0,7.22,2014/10/272014-11-02,50976,871445,1464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/27,10:21.4\r\n2,627468,,10082,23036,268,10,38,15,-22,45,-20,-1,7.54,2014/10/272014-11-02,50976,871445,1464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/27,10:21.4\r\n3,621389,ƶԹ,8545,8545,278,6,31,19,0,0,0,0,7.22,2014/10/272014-11-02,50976,871445,1464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/27,10:21.4\r\n4,616526,һ˵,4957,4960,137,3,36,19,0,0,0,0,5.84,2014/10/272014-11-02,50976,871445,1464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/27,10:21.4\r\n5,625440,ӻ,3624,58587,99,24,37,13,-68,-57,-67,-3,8,2014/10/272014-11-02,50976,871445,1464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/27,10:21.4\r\n6,618111,Ļ·,1992,116934,59,34,34,12,-71,-62,-70,-2,7.74,2014/10/272014-11-02,50976,871445,1464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/27,10:21.4\r\n7,340951,˹֮ӣ˹,1256,8166,35,13,36,6,-82,-62,-81,-4,7.39,2014/10/272014-11-02,50976,871445,1464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/27,10:21.5\r\n8,627006,ֲӰԺ,876,876,31,4,28,12,0,0,0,0,5.51,2014/10/272014-11-02,50976,871445,1464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/27,10:21.5\r\n9,629871,֮ʥȢ,654,1413,26,10,26,18,-14,66,-15,9999,8.37,2014/10/272014-11-02,50976,871445,1464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/27,10:21.5\r\n10,628596,˵,478,1591,16,10,30,6,-57,-2,-56,-4,7.33,2014/10/272014-11-02,50976,871445,1464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/27,10:21.5\r\n1,627468,,12955,12955,336,3,39,28,0,0,0,0,,2014/10/202014-10-26,45249,835955,1261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/20,10:22.0\r\n2,625440,ӻ,11382,54963,303,17,38,18,-53,-34,-52,-1,8,2014/10/202014-10-26,45249,835955,1261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/20,10:22.0\r\n3,340951,˹֮ӣ˹,6910,6910,188,6,37,13,0,0,0,0,7.13,2014/10/202014-10-26,45249,835955,1261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/20,10:22.0\r\n4,618111,Ļ·,6774,114941,198,27,34,15,-47,-31,-47,-2,7.74,2014/10/202014-10-26,45249,835955,1261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/20,10:22.0\r\n5,618441,װ,1162,34199,34,32,34,11,-62,-48,-62,-2,8.23,2014/10/202014-10-26,45249,835955,1261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/20,10:22.1\r\n6,628596,˵,1113,1113,36,3,31,12,0,0,0,0,5.9,2014/10/202014-10-26,45249,835955,1261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/20,10:22.1\r\n7,629441,ʱ2ڱ֮,1064,3870,31,14,34,9,-62,-59,-62,-3,,2014/10/202014-10-26,45249,835955,1261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/20,10:22.1\r\n8,616356,ҹǰ,787,787,25,4,32,9,0,0,0,0,10.43,2014/10/202014-10-26,45249,835955,1261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/20,10:22.1\r\n9,629871,֮ʥȢ,759,759,30,3,25,36,0,0,0,0,7.9,2014/10/202014-10-26,45249,835955,1261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/20,10:22.1\r\n10,629845,֮¹ⱦ,597,597,24,3,25,28,0,0,0,0,7.79,2014/10/202014-10-26,45249,835955,1261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/20,10:22.1\r\n1,625440,ӻ,24371,43581,629,10,39,24,27,101,28,1,8.04,2014/10/132014-10-19,47656,806396,1316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/13,10:22.6\r\n2,618111,Ļ·,12819,108168,375,20,34,20,-58,-28,-58,-1,7.76,2014/10/132014-10-19,47656,806396,1316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/13,10:22.6\r\n3,618441,װ,3091,33037,91,25,34,15,-58,-38,-58,9999,8.23,2014/10/132014-10-19,47656,806396,1316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/13,10:22.6\r\n4,629441,ʱ2ڱ֮,2804,2806,81,7,34,10,0,0,0,34,,2014/10/132014-10-19,47656,806396,1316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/13,10:22.6\r\n5,618013,ƦӢ2,981,20193,28,19,35,8,-84,-69,-83,-1,7.36,2014/10/132014-10-19,47656,806396,1316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/13,10:22.6\r\n6,629003,ʳ˳,846,2113,23,10,36,7,-33,0,-32,9999,,2014/10/132014-10-19,47656,806396,1316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/13,10:22.7\r\n7,628764,һ˿,737,737,24,3,31,9,0,0,0,0,6.85,2014/10/132014-10-19,47656,806396,1316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/13,10:22.7\r\n8,612791,ƽʱ,464,4950,12,19,39,13,-71,-70,-72,-3,7.46,2014/10/132014-10-19,47656,806396,1316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/13,10:22.7\r\n9,626885,,353,353,12,3,29,6,0,0,0,0,5.51,2014/10/132014-10-19,47656,806396,1316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/13,10:22.7\r\n10,589645,ɫͷ,266,269,8,3,32,5,0,0,0,0,5.73,2014/10/132014-10-19,47656,806396,1316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/13,10:22.7\r\n1,618111,Ļ·,30598,95349,894,13,34,33,-50,-9,-50,9999,7.68,2014/10/62014-10-12,70706,819501,1996,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/6,10:23.2\r\n2,625440,ӻ,19206,19209,490,3,39,38,0,0,0,0,7.59,2014/10/62014-10-12,70706,819501,1996,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/6,10:23.2\r\n3,618441,װ,7322,29946,218,18,34,23,-41,-29,-40,9999,8.18,2014/10/62014-10-12,70706,819501,1996,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/6,10:23.2\r\n4,618013,ƦӢ2,6060,19212,166,12,37,15,-54,-2,-53,-2,7.39,2014/10/62014-10-12,70706,819501,1996,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/6,10:23.3\r\n5,612791,ƽʱ,1609,4486,43,12,38,14,-43,-17,-43,1,7.42,2014/10/62014-10-12,70706,819501,1996,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/6,10:23.3\r\n6,629003,ʳ˳,1268,1268,34,3,37,10,0,0,0,0,,2014/10/62014-10-12,70706,819501,1996,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/6,10:23.3\r\n7,618516,󶵡Һ,1191,4156,38,12,31,13,-60,-26,-59,-2,7.8,2014/10/62014-10-12,70706,819501,1996,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/6,10:23.3\r\n8,617250,ʿ֮˹,1168,4291,39,12,30,13,-63,-17,-62,-4,6.53,2014/10/62014-10-12,70706,819501,1996,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/6,10:23.3\r\n9,627357,´ͷӺСͷְܼ֮ƻ,828,3967,29,17,29,16,-56,-50,-56,-2,,2014/10/62014-10-12,70706,819501,1996,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/6,10:23.4\r\n10,616743,΢ս,495,2384,14,12,34,8,-74,-38,-74,-2,7.94,2014/10/62014-10-12,70706,819501,1996,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/10/6,10:23.4\r\n1,618111,Ļ·,61189,64751,1773,6,35,61,0,0,0,0,7.78,2014/9/292014-10-05,103673,857175,3018,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/29,10:23.9\r\n2,618013,ƦӢ2,13113,13152,350,5,37,30,0,0,0,0,6.17,2014/9/292014-10-05,103673,857175,3018,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/29,10:23.9\r\n3,618441,װ,12365,22623,365,11,34,27,21,9,19,-2,8.21,2014/9/292014-10-05,103673,857175,3018,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/29,10:23.9\r\n4,617250,ʿ֮˹,3121,3123,104,5,30,28,0,0,0,0,5.57,2014/9/292014-10-05,103673,857175,3018,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/29,10:23.9\r\n5,618516,󶵡Һ,2956,2966,94,5,31,23,0,0,0,0,5.84,2014/9/292014-10-05,103673,857175,3018,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/29,10:23.9\r\n6,612791,ƽʱ,2812,2876,75,5,38,20,0,0,0,0,7.59,2014/9/292014-10-05,103673,857175,3018,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/29,10:24.0\r\n7,627357,´ͷӺСͷְܼ֮ƻ,1899,3139,65,10,29,18,53,24,52,2,,2014/9/292014-10-05,103673,857175,3018,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/29,10:24.0\r\n8,616743,΢ս,1884,1889,55,5,34,18,0,0,0,0,5.84,2014/9/292014-10-05,103673,857175,3018,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/29,10:24.0\r\n9,628572,81ũ֮,1368,1368,42,5,33,21,0,0,0,0,5.46,2014/9/292014-10-05,103673,857175,3018,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/29,10:24.0\r\n10,623004,Ӫ,1039,10381,32,17,32,11,-78,-79,-79,-8,7.67,2014/9/292014-10-05,103673,857175,3018,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/29,10:24.0\r\n1,618441,װ,10246,10258,307,4,33,24,0,0,0,0,6.2,2014/9/222014-09-28,31078,790995,947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/22,10:24.5\r\n2,623004,Ӫ,4725,9342,153,10,31,11,2,96,2,1,,2014/9/222014-09-28,31078,790995,947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/22,10:24.5\r\n3,618096,ɼ,3073,7093,92,10,33,7,-23,50,-23,3,6.65,2014/9/222014-09-28,31078,790995,947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/22,10:24.5\r\n4,618111,Ļ·,2751,3563,80,-1,35,45,0,0,0,0,6.54,2014/9/222014-09-28,31078,790995,947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/22,10:24.5\r\n5,624046,2֮ս,2329,70695,64,31,36,11,-56,-37,-56,-4,7.85,2014/9/222014-09-28,31078,790995,947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/22,10:24.5\r\n6,615487,3,1891,45052,56,28,34,10,-61,-45,-62,-4,,2014/9/222014-09-28,31078,790995,947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/22,10:24.5\r\n7,628463,籩,1420,10800,45,17,32,8,-69,-51,-69,-3,,2014/9/222014-09-28,31078,790995,947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/22,10:24.6\r\n8,618165,һһ,1312,22712,41,24,32,8,-67,-45,-68,-3,7.04,2014/9/222014-09-28,31078,790995,947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/22,10:24.6\r\n9,627357,´ͷӺСͷְܼ֮ƻ,1241,1241,43,3,29,15,0,0,0,0,,2014/9/222014-09-28,31078,790995,947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/22,10:24.6\r\n10,614395,鴫֮,406,406,11,-186,37,11,0,0,0,0,5.89,2014/9/222014-09-28,31078,790995,947,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/22,10:24.6\r\n1,624046,2֮ս,5334,68366,146,24,37,15,-58,-32,-57,9999,7.91,2014/9/152014-09-21,32909,804049,1012,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/15,10:25.0\r\n2,615487,3,4796,43160,146,21,33,14,-62,-35,-62,9999,,2014/9/152014-09-21,32909,804049,1012,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/15,10:25.1\r\n3,623004,Ӫ,4616,4616,150,3,31,21,0,0,0,0,,2014/9/152014-09-21,32909,804049,1012,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/15,10:25.1\r\n4,628463,籩,4531,9380,144,10,31,12,-7,51,-7,1,,2014/9/152014-09-21,32909,804049,1012,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/15,10:25.1\r\n5,618165,һһ,4033,21400,126,17,32,13,-60,-31,-60,-2,6.01,2014/9/152014-09-21,32909,804049,1012,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/15,10:25.1\r\n6,618096,ɼ,4010,4020,119,3,34,13,0,0,0,0,5.78,2014/9/152014-09-21,32909,804049,1012,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/15,10:25.1\r\n7,623129,ߣ,1359,7294,38,14,35,10,-77,-65,-79,-3,7.38,2014/9/152014-09-21,32909,804049,1012,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/15,10:25.1\r\n8,618111,Ļ·,811,811,19,-8,42,163,0,0,0,0,5.95,2014/9/152014-09-21,32909,804049,1012,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/15,10:25.2\r\n9,628894,ܸ,773,773,26,6,30,5,0,0,0,0,,2014/9/152014-09-21,32909,804049,1012,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/15,10:25.2\r\n10,626585,ŮҰ,523,1569,17,10,31,6,-50,1,-50,-4,,2014/9/152014-09-21,32909,804049,1012,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/15,10:25.2\r\n1,624046,2֮ս,12557,63032,342,17,37,24,-42,-39,-41,1,1.77,2014/9/82014-09-14,49723,783926,1525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/8,10:25.6\r\n2,615487,3,12533,38364,389,14,32,24,-51,-40,-50,-1,,2014/9/82014-09-14,49723,783926,1525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/8,10:25.6\r\n3,618165,һһ,10074,17367,320,10,32,22,39,60,39,9999,0.15,2014/9/82014-09-14,49723,783926,1525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/8,10:25.6\r\n4,623129,ߣ,5843,5935,180,7,33,17,0,0,0,10,1.46,2014/9/82014-09-14,49723,783926,1525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/8,10:25.6\r\n5,628463,籩,4849,4849,155,3,31,20,0,0,0,0,,2014/9/82014-09-14,49723,783926,1525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/8,10:25.6\r\n6,626585,ŮҰ,1047,1047,34,3,31,12,0,0,0,0,,2014/9/82014-09-14,49723,783926,1525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/8,10:25.6\r\n7,627797,Ů,692,693,23,3,31,11,0,0,0,0,0,2014/9/82014-09-14,49723,783926,1525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/8,10:25.6\r\n8,615851,,452,917,16,9,29,9,-3,43,-3,-3,1.14,2014/9/82014-09-14,49723,783926,1525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/8,10:25.7\r\n9,615485,Ҳ,401,792,13,10,32,10,3,5,5,-2,,2014/9/82014-09-14,49723,783926,1525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/8,10:25.7\r\n10,615434,ѱ2,350,40324,9,32,37,17,-47,-76,-48,-6,0.24,2014/9/82014-09-14,49723,783926,1525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/8,10:25.7\r\n1,615487,3,25410,25831,786,7,32,30,0,0,0,12,,2014/9/12014-09-07,57788,765516,1709,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/1,10:26.4\r\n2,624046,2֮ս,21495,50475,583,10,37,25,-26,55,-26,-1,3.66,2014/9/12014-09-07,57788,765516,1709,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/1,10:26.4\r\n3,618165,һһ,7263,7293,230,3,32,26,0,0,0,0,1.68,2014/9/12014-09-07,57788,765516,1709,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/1,10:26.4\r\n4,615434,ѱ2,661,39974,18,25,36,8,-91,-80,-91,-1,2.28,2014/9/12014-09-07,57788,765516,1709,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/1,10:26.4\r\n5,615851,,464,464,16,2,29,13,0,0,0,0,1.68,2014/9/12014-09-07,57788,765516,1709,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/1,10:26.5\r\n6,610953,Ĵ3,450,19196,12,17,37,5,-95,-85,-95,-4,1.68,2014/9/12014-09-07,57788,765516,1709,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/1,10:26.5\r\n7,615485,Ҳ,390,392,12,3,32,10,0,0,0,0,,2014/9/12014-09-07,57788,765516,1709,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/1,10:26.5\r\n8,628735,ս,352,352,11,3,33,6,0,0,0,0,1.89,2014/9/12014-09-07,57788,765516,1709,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/1,10:26.5\r\n9,626880,ʱͬ,303,10073,9,18,32,5,-93,-82,-93,-5,,2014/9/12014-09-07,57788,765516,1709,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/1,10:26.5\r\n10,628250,2,119,1444,4,17,28,4,-84,-67,-84,-1,1.66,2014/9/12014-09-07,57788,765516,1709,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/9/1,10:26.5\r\n1,624046,2֮ս,28981,28981,787,3,37,53,0,0,0,0,,2014/8/252014-08-31,58325,842094,1648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/25,10:27.4\r\n2,610953,Ĵ3,8375,18746,232,10,36,14,-19,62,-18,9999,,2014/8/252014-08-31,58325,842094,1648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/25,10:27.4\r\n3,615434,ѱ2,7511,39313,203,18,37,18,-50,-35,-50,-2,,2014/8/252014-08-31,58325,842094,1648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/25,10:27.4\r\n4,626880,ʱͬ,4346,9770,141,11,31,12,-20,26,-19,-1,,2014/8/252014-08-31,58325,842094,1648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/25,10:27.5\r\n5,626586,ܶԱ,1503,2618,45,10,34,12,35,71,37,3,,2014/8/252014-08-31,58325,842094,1648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/25,10:27.5\r\n6,618944,̰籩,1266,9464,41,16,31,9,-73,-60,-74,-2,0,2014/8/252014-08-31,58325,842094,1648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/25,10:27.5\r\n7,620166,ӱĩ,1105,9729,31,17,35,11,-75,-67,-75,-2,,2014/8/252014-08-31,58325,842094,1648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/25,10:27.5\r\n8,619447,ѩ֮,767,1740,26,11,29,9,-21,29,-20,1,,2014/8/252014-08-31,58325,842094,1648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/25,10:27.5\r\n9,628250,2,743,1324,26,10,28,8,28,75,29,3,,2014/8/252014-08-31,58325,842094,1648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/25,10:27.6\r\n10,626105,֮,588,1863,17,11,34,7,-54,-29,-53,-3,,2014/8/252014-08-31,58325,842094,1648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/25,10:27.6\r\n1,615434,ѱ2,15147,31802,406,11,37,24,-9,27,-9,9999,,2014/8/182014-08-24,50703,872011,1477,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/18,10:28.0\r\n2,610953,Ĵ3,10372,10372,283,3,37,28,0,0,0,0,,2014/8/182014-08-24,50703,872011,1477,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/18,10:28.0\r\n3,626880,ʱͬ,5425,5425,174,4,31,19,0,0,0,0,,2014/8/182014-08-24,50703,872011,1477,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/18,10:28.0\r\n4,618944,̰籩,4758,8197,154,9,31,13,38,172,42,2,0,2014/8/182014-08-24,50703,872011,1477,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/18,10:28.0\r\n5,620166,ӱĩ,4344,8624,124,10,35,15,2,43,3,-2,,2014/8/182014-08-24,50703,872011,1477,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/18,10:28.0\r\n6,590329,崺,1306,8805,40,18,32,16,-66,-65,-68,-2,,2014/8/182014-08-24,50703,872011,1477,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/18,10:28.1\r\n7,626105,֮,1275,1275,37,4,35,10,0,0,0,0,,2014/8/182014-08-24,50703,872011,1477,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/18,10:28.1\r\n8,626586,ܶԱ,1111,1115,33,3,34,15,0,0,0,0,,2014/8/182014-08-24,50703,872011,1477,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/18,10:28.1\r\n9,619447,ѩ֮,971,973,33,4,30,15,0,0,0,0,,2014/8/182014-08-24,50703,872011,1477,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/18,10:28.1\r\n10,620574,,937,18493,29,24,32,15,-78,-74,-79,-8,,2014/8/182014-08-24,50703,872011,1477,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/18,10:28.1\r\n1,615434,ѱ2,16655,16655,448,4,37,33,0,0,0,0,,2014/8/112014-08-17,51686,867738,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/11,10:28.5\r\n2,620574,,4334,17555,140,17,31,19,-49,-31,-48,9999,,2014/8/112014-08-17,51686,867738,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/11,10:28.6\r\n3,620166,ӱĩ,4280,4280,120,3,36,21,0,0,0,0,,2014/8/112014-08-17,51686,867738,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/11,10:28.6\r\n4,590329,崺,3883,7499,124,11,31,18,7,4,8,2,,2014/8/112014-08-17,51686,867738,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/11,10:28.6\r\n5,612123,׷ħŮ֮,3745,38499,102,18,37,12,-70,-57,-69,-4,,2014/8/112014-08-17,51686,867738,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/11,10:28.6\r\n6,618944,̰籩,3439,3439,109,2,32,25,0,0,0,0,0,2014/8/112014-08-17,51686,867738,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/11,10:28.6\r\n7,625897,,2902,62262,92,25,32,15,-63,-50,-63,-4,,2014/8/112014-08-17,51686,867738,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/11,10:28.6\r\n8,626390,,2421,20058,76,19,32,16,-65,-57,-65,-4,,2014/8/112014-08-17,51686,867738,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/11,10:28.6\r\n9,617392,ռ2,2143,5392,74,10,29,15,-34,43,-33,-2,,2014/8/112014-08-17,51686,867738,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/11,10:28.7\r\n10,594619,ʱ֮,2002,5810,57,10,35,10,-47,9,-46,-5,,2014/8/112014-08-17,51686,867738,1529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/11,10:28.7\r\n1,612123,׷ħŮ֮,12383,34754,330,11,38,17,-45,44,-43,9999,,2014/8/42014-08-10,52879,853358,1598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/4,10:29.1\r\n2,620574,,8431,13222,270,10,31,26,76,167,82,3,,2014/8/42014-08-10,52879,853358,1598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/4,10:29.1\r\n3,625897,,7923,59359,247,18,32,20,-64,-41,-63,-1,,2014/8/42014-08-10,52879,853358,1598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/4,10:29.1\r\n4,626390,,6968,17637,220,12,32,20,-34,-6,-34,-1,,2014/8/42014-08-10,52879,853358,1598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/4,10:29.1\r\n5,594619,ʱ֮,3775,3808,105,3,36,21,0,0,0,0,,2014/8/42014-08-10,52879,853358,1598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/4,10:29.1\r\n6,590329,崺,3612,3616,115,4,31,17,0,0,0,0,,2014/8/42014-08-10,52879,853358,1598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/4,10:29.1\r\n7,617392,ռ2,3250,3250,110,3,30,32,0,0,0,0,,2014/8/42014-08-10,52879,853358,1598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/4,10:29.2\r\n8,612707,֮ȣ,1945,5504,56,11,35,13,-45,2,-44,-1,,2014/8/42014-08-10,52879,853358,1598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/4,10:29.2\r\n9,612739,81,1394,40569,40,24,35,15,-77,-69,-77,-5,4.81,2014/8/42014-08-10,52879,853358,1598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/4,10:29.2\r\n10,614775,ɹ̷,879,880,31,3,29,15,0,0,0,0,,2014/8/42014-08-10,52879,853358,1598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/8/4,10:29.2\r\n1,612123,׷ħŮ֮,22370,22371,580,4,39,44,0,0,0,0,,2014/7/282014-08-03,79391,846030,2327,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/28,10:29.6\r\n2,625897,,21833,51436,677,11,32,32,-26,19,-27,-1,,2014/7/282014-08-03,79391,846030,2327,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/28,10:29.6\r\n3,626390,,10637,10669,334,5,32,29,0,0,0,0,,2014/7/282014-08-03,79391,846030,2327,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/28,10:29.6\r\n4,612739,81,6133,39175,172,17,36,20,-64,-52,-65,-2,4.81,2014/7/282014-08-03,79391,846030,2327,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/28,10:29.6\r\n5,620574,,4791,4791,149,3,32,38,0,0,0,0,,2014/7/282014-08-03,79391,846030,2327,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/28,10:29.6\r\n6,617329,Сʱ3̽ʱ,4121,51299,128,18,32,17,-73,-63,-74,-3,,2014/7/282014-08-03,79391,846030,2327,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/28,10:29.6\r\n7,612707,֮ȣ,3534,3558,99,4,36,23,0,0,0,0,,2014/7/282014-08-03,79391,846030,2327,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/28,10:29.6\r\n8,627872,,2319,5319,71,10,33,16,-23,27,-22,-3,,2014/7/282014-08-03,79391,846030,2327,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/28,10:29.7\r\n9,619667,Ӱħ,993,1844,32,10,31,15,17,34,17,9999,,2014/7/282014-08-03,79391,846030,2327,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/28,10:29.7\r\n10,626503,˵,661,661,21,3,32,12,0,0,0,0,,2014/7/282014-08-03,79391,846030,2327,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/28,10:29.7\r\n1,625897,,29602,29603,929,4,32,53,0,0,0,0,,2014/7/212014-07-27,80523,815879,2415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/21,10:30.1\r\n2,612739,81,17185,33042,487,10,35,27,8,113,8,1,4.81,2014/7/212014-07-27,80523,815879,2415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/21,10:30.1\r\n3,617329,Сʱ3̽ʱ,15458,47177,489,11,32,24,-51,5,-51,-2,,2014/7/212014-07-27,80523,815879,2415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/21,10:30.1\r\n4,612232,ν4,7937,197745,190,31,42,31,-51,-55,-51,-2,,2014/7/212014-07-27,80523,815879,2415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/21,10:30.1\r\n5,627872,,2994,3000,90,3,33,26,0,0,0,0,,2014/7/212014-07-27,80523,815879,2415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/21,10:30.1\r\n6,617372,к֮,1945,20384,62,18,31,17,-75,-69,-76,-2,,2014/7/212014-07-27,80523,815879,2415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/21,10:30.1\r\n7,618253,ִʦ,1623,66129,47,31,35,19,-77,-71,-78,-2,,2014/7/212014-07-27,80523,815879,2415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/21,10:30.1\r\n8,627089,ĳ2Դ֮ս,969,2613,29,10,33,10,-41,24,-40,-1,,2014/7/212014-07-27,80523,815879,2415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/21,10:30.2\r\n9,619667,Ӱħ,852,852,27,3,31,17,0,0,0,0,,2014/7/212014-07-27,80523,815879,2415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/21,10:30.2\r\n10,627903,Ҿ,443,497,14,3,33,9,0,0,0,0,,2014/7/212014-07-27,80523,815879,2415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/21,10:30.2\r\n1,617329,Сʱ3̽ʱ,31566,31720,1001,4,32,52,0,0,0,0,,2014/7/142014-07-20,85898,777540,2525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/14,10:30.6\r\n2,612232,ν4,16335,189807,391,24,42,29,-54,-45,-54,-1,,2014/7/142014-07-20,85898,777540,2525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/14,10:30.6\r\n3,612739,81,15856,15857,449,3,35,53,0,0,0,0,4.81,2014/7/142014-07-20,85898,777540,2525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/14,10:30.6\r\n4,617372,к֮,7926,18439,258,11,31,23,-25,16,-24,-1,,2014/7/142014-07-20,85898,777540,2525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/14,10:30.6\r\n5,618253,ִʦ,7031,64506,208,24,34,24,-58,-45,-58,-3,,2014/7/142014-07-20,85898,777540,2525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/14,10:30.6\r\n6,626991,4Ӱʥħ֮ս,1765,5727,51,11,35,12,-55,-10,-55,-2,,2014/7/142014-07-20,85898,777540,2525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/14,10:30.6\r\n7,627089,ĳ2Դ֮ս,1644,1644,49,3,34,20,0,0,0,0,,2014/7/142014-07-20,85898,777540,2525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/14,10:30.6\r\n8,617397,3ʥػ,1312,4437,39,11,34,11,-57,-22,-57,-3,,2014/7/142014-07-20,85898,777540,2525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/14,10:30.7\r\n9,625380,˯ħ,782,29624,21,31,38,20,-58,-57,-59,-2,,2014/7/142014-07-20,85898,777540,2525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/14,10:30.7\r\n10,617485,3,535,4894,17,17,31,8,-75,-59,-75,-4,,2014/7/142014-07-20,85898,777540,2525,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/14,10:30.7\r\n1,612232,ν4,35202,173472,845,17,42,35,-53,-29,-53,9999,,2014/7/72014-07-13,75738,738707,2085,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/7,10:31.1\r\n2,618253,ִʦ,16737,57476,500,17,33,32,-34,-22,-35,9999,,2014/7/72014-07-13,75738,738707,2085,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/7,10:31.1\r\n3,617372,к֮,10499,10512,342,4,31,35,0,0,0,0,,2014/7/72014-07-13,75738,738707,2085,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/7,10:31.1\r\n4,626991,4Ӱʥħ֮ս,3951,3962,114,4,35,24,0,0,0,0,,2014/7/72014-07-13,75738,738707,2085,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/7,10:31.1\r\n5,617397,3ʥػ,3078,3125,90,4,34,19,0,0,0,0,,2014/7/72014-07-13,75738,738707,2085,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/7,10:31.2\r\n6,617485,3,2110,4359,68,10,31,13,-6,38,-6,-2,,2014/7/72014-07-13,75738,738707,2085,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/7,10:31.2\r\n7,625380,˯ħ,1849,28842,50,24,37,21,-35,-39,-36,-4,,2014/7/72014-07-13,75738,738707,2085,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/7,10:31.2\r\n8,619514,ƭ,846,1744,24,10,35,12,-6,1,-11,-3,,2014/7/72014-07-13,75738,738707,2085,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/7,10:31.2\r\n9,566577,޴,251,251,8,6,30,6,0,0,0,0,,2014/7/72014-07-13,75738,738707,2085,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/7,10:31.2\r\n10,627609,ϵľ,192,670,6,57,30,75,-19,-20,-21,-2,,2014/7/72014-07-13,75738,738707,2085,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/7/7,10:31.3\r\n1,612232,ν4,75054,138270,1797,10,42,52,19,100,18,9999,,2014/6/302014-07-06,107931,687779,2794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/30,10:31.7\r\n2,618253,ִʦ,25348,40738,767,10,33,38,65,93,64,9999,,2014/6/302014-07-06,107931,687779,2794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/30,10:31.7\r\n3,625380,˯ħ,2828,26993,78,17,36,20,-73,-74,-72,9999,,2014/6/302014-07-06,107931,687779,2794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/30,10:31.7\r\n4,617485,3,2248,2249,73,3,31,19,0,0,0,0,,2014/6/302014-07-06,107931,687779,2794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/30,10:31.7\r\n5,619514,ƭ,899,899,27,3,33,14,0,0,0,0,,2014/6/302014-07-06,107931,687779,2794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/30,10:31.8\r\n6,627649,ԶĽԣ»,255,575,11,52,23,61,34,30,31,4,,2014/6/302014-07-06,107931,687779,2794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/30,10:31.8\r\n7,626889,˹,254,48052,7,24,38,10,-95,-94,-95,-3,,2014/6/302014-07-06,107931,687779,2794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/30,10:31.8\r\n8,627609,ϵľ,238,477,8,50,29,76,55,38,46,3,,2014/6/302014-07-06,107931,687779,2794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/30,10:31.8\r\n9,621407,Ħɸ,155,2524,4,17,38,12,-86,-92,-88,-3,,2014/6/302014-07-06,107931,687779,2794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/30,10:31.8\r\n10,624654,ձԵ,111,40641,3,31,38,12,-94,-95,-95,-5,,2014/6/302014-07-06,107931,687779,2794,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/30,10:31.9\r\n1,612232,ν4,63216,63216,1518,3,42,89,0,0,0,0,,2014/6/232014-06-29,98911,721310,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/23,10:32.4\r\n2,618253,ִʦ,15373,15390,468,3,33,45,0,0,0,0,,2014/6/232014-06-29,98911,721310,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/23,10:32.4\r\n3,625380,˯ħ,10315,24166,282,10,37,18,-26,48,-24,-1,,2014/6/232014-06-29,98911,721310,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/23,10:32.4\r\n4,626889,˹,4751,47798,129,17,37,12,-76,-55,-76,-3,,2014/6/232014-06-29,98911,721310,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/23,10:32.4\r\n5,624654,ձԵ,2015,40531,56,24,36,12,-71,-59,-71,-2,,2014/6/232014-06-29,98911,721310,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/23,10:32.4\r\n6,621407,Ħɸ,1102,2369,34,10,32,9,-13,19,-12,-1,,2014/6/232014-06-29,98911,721310,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/23,10:32.4\r\n7,658914,2013ϺʵӰ,371,1839,6,,63,364,-20,-54,-28,1,,2014/6/232014-06-29,98911,721310,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/23,10:32.5\r\n8,616067,ʼ,267,596,9,10,29,4,-19,38,-17,2,,2014/6/232014-06-29,98911,721310,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/23,10:32.5\r\n9,612127,3,211,30821,6,32,33,7,-81,-76,-81,-3,,2014/6/232014-06-29,98911,721310,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/23,10:32.5\r\n10,627649,ԶĽԣ»,191,320,8,45,23,61,153,135,153,8,,2014/6/232014-06-29,98911,721310,2556,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/23,10:32.5\r\n1,626889,˹,19885,43047,525,10,38,21,-14,92,-13,9999,,2014/6/162014-06-22,47792,719986,1307,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/16,10:33.0\r\n2,625380,˯ħ,13850,13850,373,3,37,36,0,0,0,0,,2014/6/162014-06-22,47792,719986,1307,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/16,10:33.0\r\n3,624654,ձԵ,7045,38515,195,17,36,17,-54,-41,-52,-1,,2014/6/162014-06-22,47792,719986,1307,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/16,10:33.0\r\n4,620389,Xսתδ,1300,72249,34,31,38,11,-71,-67,-71,-1,,2014/6/162014-06-22,47792,719986,1307,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/16,10:33.0\r\n5,621407,Ħɸ,1267,1267,39,3,33,12,0,0,0,0,,2014/6/162014-06-22,47792,719986,1307,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/16,10:33.0\r\n6,612127,3,1135,30610,34,25,33,9,-65,-57,-65,-2,,2014/6/162014-06-22,47792,719986,1307,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/16,10:33.0\r\n7,626911,ҹͷ,651,1177,23,10,28,8,24,71,25,9999,,2014/6/162014-06-22,47792,719986,1307,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/16,10:33.0\r\n8,658914,2013ϺʵӰ,462,1468,8,,56,235,184,185,179,5,,2014/6/162014-06-22,47792,719986,1307,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/16,10:33.1\r\n9,617600,72Сʱ,383,2630,13,17,28,7,-64,-58,-63,-4,,2014/6/162014-06-22,47792,719986,1307,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/16,10:33.1\r\n10,616067,ʼ,329,329,11,3,30,6,0,0,0,0,,2014/6/162014-06-22,47792,719986,1307,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/16,10:33.1\r\n1,626889,˹,23162,23162,602,3,38,47,0,0,0,0,,2014/6/92014-06-15,50468,707358,1371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/9,10:33.6\r\n2,624654,ձԵ,15369,31471,411,10,37,21,-5,88,-1,-1,,2014/6/92014-06-15,50468,707358,1371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/9,10:33.6\r\n3,620389,Xսתδ,4425,70949,119,24,37,13,-69,-47,-69,-1,,2014/6/92014-06-15,50468,707358,1371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/9,10:33.6\r\n4,612127,3,3276,29475,99,18,33,11,-70,-46,-69,-1,,2014/6/92014-06-15,50468,707358,1371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/9,10:33.6\r\n5,617600,72Сʱ,1076,2247,37,10,29,8,-8,39,-6,2,,2014/6/92014-06-15,50468,707358,1371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/9,10:33.7\r\n6,616513,,756,28815,22,31,34,11,-67,-58,-67,-2,,2014/6/92014-06-15,50468,707358,1371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/9,10:33.7\r\n7,626911,ҹͷ,526,526,19,3,28,11,0,0,0,0,,2014/6/92014-06-15,50468,707358,1371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/9,10:33.7\r\n8,614662,֮´˵,307,4140,10,16,30,7,-79,-57,-78,-3,,2014/6/92014-06-15,50468,707358,1371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/9,10:33.7\r\n9,627869,µ,298,298,10,3,31,5,0,0,0,0,,2014/6/92014-06-15,50468,707358,1371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/9,10:33.8\r\n10,627456,ǱͧܶԱ4,219,4592,7,17,32,6,-83,-67,-82,-4,,2014/6/92014-06-15,50468,707358,1371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/9,10:33.8\r\n1,624654,ձԵ,16102,16102,413,3,39,41,0,0,0,0,,2014/6/22014-06-08,50357,722466,1403,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/2,10:34.2\r\n2,620389,Xսתδ,14412,66524,384,17,37,22,-48,-25,-48,-1,,2014/6/22014-06-08,50357,722466,1403,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/2,10:34.2\r\n3,612127,3,10952,26199,322,11,34,19,-28,36,-29,-1,,2014/6/22014-06-08,50357,722466,1403,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/2,10:34.3\r\n4,616513,,2269,28060,67,24,34,13,-55,-49,-54,-1,,2014/6/22014-06-08,50357,722466,1403,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/2,10:34.3\r\n5,614662,֮´˵,1441,3833,48,9,30,14,-40,66,-39,9999,,2014/6/22014-06-08,50357,722466,1403,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/2,10:34.3\r\n6,627456,ǱͧܶԱ4,1262,4373,38,10,33,11,-59,-3,-59,-2,,2014/6/22014-06-08,50357,722466,1403,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/2,10:34.3\r\n7,617600,72Сʱ,1171,1171,39,3,30,12,0,0,0,0,,2014/6/22014-06-08,50357,722466,1403,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/2,10:34.3\r\n8,626992,ʹռ2,706,2375,25,10,28,12,-58,-1,-57,-2,,2014/6/22014-06-08,50357,722466,1403,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/2,10:34.3\r\n9,590474,ħ,673,1913,20,10,33,12,-46,12,-45,-2,,2014/6/22014-06-08,50357,722466,1403,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/2,10:34.4\r\n10,619279,֩2,263,58558,6,36,42,12,-79,-85,-79,-2,,2014/6/22014-06-08,50357,722466,1403,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/6/2,10:34.4\r\n1,620389,Xսתδ,27535,52112,736,10,37,31,12,91,12,9999,,2014/5/262014-06-01,59739,710484,1715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/26,10:34.8\r\n2,612127,3,15247,15247,453,4,34,36,0,0,0,0,,2014/5/262014-06-01,59739,710484,1715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/26,10:34.8\r\n3,616513,,4993,25791,147,17,34,15,-60,-44,-59,-1,,2014/5/262014-06-01,59739,710484,1715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/26,10:34.8\r\n4,627456,ǱͧܶԱ4,3110,3111,94,3,33,27,0,0,0,0,,2014/5/262014-06-01,59739,710484,1715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/26,10:34.8\r\n5,614662,֮´˵,2392,2392,78,2,30,38,0,0,0,0,,2014/5/262014-06-01,59739,710484,1715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/26,10:34.9\r\n6,626992,ʹռ2,1669,1669,59,3,28,28,0,0,0,0,,2014/5/262014-06-01,59739,710484,1715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/26,10:34.9\r\n7,590474,ħ,1240,1240,37,3,33,24,0,0,0,0,,2014/5/262014-06-01,59739,710484,1715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/26,10:34.9\r\n8,619279,֩2,1238,58295,30,29,41,9,-81,-73,-82,-5,,2014/5/262014-06-01,59739,710484,1715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/26,10:34.9\r\n9,619430,ݼĸ,352,425,11,10,32,157,467,338,744,6,,2014/5/262014-06-01,59739,710484,1715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/26,10:34.9\r\n10,627338,Ŵ,323,324,11,6,29,6,0,0,0,0,,2014/5/262014-06-01,59739,710484,1715,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/26,10:34.9\r\n1,620389,Xսתδ,24577,24577,658,3,37,53,0,0,0,0,,2014/5/192014-05-25,50200,700397,1404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/19,10:35.3\r\n2,616513,,12361,20798,362,10,34,20,52,80,53,9999,,2014/5/192014-05-25,50200,700397,1404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/19,10:35.4\r\n3,619279,֩2,6679,57057,172,22,39,14,-56,-39,-57,-2,,2014/5/192014-05-25,50200,700397,1404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/19,10:35.4\r\n4,616332,ߴʦ,2043,27016,64,27,32,13,-54,-42,-54,-1,,2014/5/192014-05-25,50200,700397,1404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/19,10:35.4\r\n5,609338,ͬĊ,1455,45330,44,31,33,9,-63,-52,-62,-1,,2014/5/192014-05-25,50200,700397,1404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/19,10:35.4\r\n6,619651,ҵĲϵŮ,1114,1118,37,6,30,7,0,0,0,0,,2014/5/192014-05-25,50200,700397,1404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/19,10:35.4\r\n7,626867,ð,298,2862,10,25,31,8,-14,-24,-13,9999,,2014/5/192014-05-25,50200,700397,1404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/19,10:35.4\r\n8,618522,ع,277,3216,9,17,32,6,-80,-76,-81,-3,,2014/5/192014-05-25,50200,700397,1404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/19,10:35.4\r\n9,618370,ԵϷ,172,172,6,-116,31,4,0,0,0,0,,2014/5/192014-05-25,50200,700397,1404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/19,10:35.5\r\n10,613457,󰮼,148,361,5,10,30,3,-31,5,-28,9999,,2014/5/192014-05-25,50200,700397,1404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/19,10:35.5\r\n1,619279,֩2,15262,50378,396,15,39,19,-47,-16,-47,9999,,2014/5/122014-05-18,35833,706804,1023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/12,10:35.9\r\n2,616513,,8136,8437,236,3,34,24,0,0,0,0,,2014/5/122014-05-18,35833,706804,1023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/12,10:35.9\r\n3,616332,ߴʦ,4447,24974,140,20,32,16,-33,-21,-33,9999,,2014/5/122014-05-18,35833,706804,1023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/12,10:35.9\r\n4,609338,ͬĊ,3885,43875,117,24,33,12,-47,-27,-47,-2,,2014/5/122014-05-18,35833,706804,1023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/12,10:35.9\r\n5,618522,ع,1402,2938,45,10,31,8,-9,54,-9,-1,,2014/5/122014-05-18,35833,706804,1023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/12,10:35.9\r\n6,619444,˼䡤СԲ,408,1385,13,11,32,4,-58,-33,-58,-1,,2014/5/122014-05-18,35833,706804,1023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/12,10:36.0\r\n7,626867,ð,345,2564,11,18,31,7,-19,-20,-17,1,,2014/5/122014-05-18,35833,706804,1023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/12,10:36.0\r\n8,618406,Լð2,283,24245,8,38,37,12,-52,-47,-53,-2,,2014/5/122014-05-18,35833,706804,1023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/12,10:36.0\r\n9,612309,Ϸ,229,230,8,3,30,4,0,0,0,0,,2014/5/122014-05-18,35833,706804,1023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/12,10:36.0\r\n10,613457,󰮼,213,213,7,3,31,5,0,0,0,0,,2014/5/122014-05-18,35833,706804,1023,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/12,10:36.0\r\n1,619279,֩2,28966,35116,748,8,39,30,371,533,378,3,,2014/5/52014-05-11,48615,713340,1361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/5,10:36.4\r\n2,609338,ͬĊ,7324,39991,222,17,33,17,-66,-40,-66,-1,,2014/5/52014-05-11,48615,713340,1361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/5,10:36.4\r\n3,616332,ߴʦ,6635,20526,209,13,32,19,-52,-34,-52,-1,,2014/5/52014-05-11,48615,713340,1361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/5,10:36.5\r\n4,618522,ع,1536,1536,50,3,31,13,0,0,0,0,,2014/5/52014-05-11,48615,713340,1361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/5,10:36.5\r\n5,619444,˼䡤СԲ,971,976,31,4,32,7,0,0,0,0,,2014/5/52014-05-11,48615,713340,1361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/5,10:36.5\r\n6,618406,Լð2,592,23962,16,31,37,14,-83,-68,-83,9999,,2014/5/52014-05-11,48615,713340,1361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/5,10:36.5\r\n7,609017,⣺֮,437,14122,12,17,36,5,-93,-79,-93,-4,,2014/5/52014-05-11,48615,713340,1361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/5,10:36.5\r\n8,626867,ð,427,2219,13,11,32,7,-76,-35,-75,-1,,2014/5/52014-05-11,48615,713340,1361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/5,10:36.5\r\n9,610103,ż,296,296,10,5,30,5,0,0,0,0,,2014/5/52014-05-11,48615,713340,1361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/5,10:36.6\r\n10,616513,,282,301,8,-4,36,50,0,0,0,0,,2014/5/52014-05-11,48615,713340,1361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/5/5,10:36.6\r\n1,609338,ͬĊ,21654,32666,658,10,33,30,97,121,94,9999,,2014/4/282014-05-04,62727,788950,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/28,10:37.0\r\n2,616332,ߴʦ,13862,13891,439,6,32,27,0,0,0,0,,2014/4/282014-05-04,62727,788950,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/28,10:37.0\r\n3,609017,⣺֮,6552,13686,179,10,37,14,-8,26,-8,-1,,2014/4/282014-05-04,62727,788950,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/28,10:37.0\r\n4,619279,֩2,6150,6150,157,1,39,40,0,0,0,0,,2014/4/282014-05-04,62727,788950,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/28,10:37.0\r\n5,622647,ӳ2սʿ,4697,71853,113,31,41,27,-16,-55,-21,-2,,2014/4/282014-05-04,62727,788950,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/28,10:37.0\r\n6,618406,Լð2,3539,23370,95,24,37,26,-17,-50,-19,9999,,2014/4/282014-05-04,62727,788950,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/28,10:37.1\r\n7,626867,ð,1791,1791,54,4,33,18,0,0,0,0,,2014/4/282014-05-04,62727,788950,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/28,10:37.1\r\n8,626109,麧,1362,12527,31,17,44,13,-70,-80,-73,-3,,2014/4/282014-05-04,62727,788950,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/28,10:37.1\r\n9,626697,ħ,934,10775,28,17,33,10,-81,-77,-82,-5,,2014/4/282014-05-04,62727,788950,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/28,10:37.1\r\n10,626002,ռ,877,878,25,5,36,11,0,0,0,0,,2014/4/282014-05-04,62727,788950,1826,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/28,10:37.1\r\n1,609338,ͬĊ,11011,11012,339,3,32,34,0,0,0,0,,2014/4/212014-04-27,38912,714690,1124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/21,10:37.6\r\n2,609017,⣺֮,7133,7133,194,3,37,20,0,0,0,0,,2014/4/212014-04-27,38912,714690,1124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/21,10:37.6\r\n3,622647,ӳ2սʿ,5587,67156,143,24,39,16,-50,-40,-51,-2,,2014/4/212014-04-27,38912,714690,1124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/21,10:37.6\r\n4,626697,ħ,4828,9841,156,10,31,12,-4,84,-4,9999,,2014/4/212014-04-27,38912,714690,1124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/21,10:37.6\r\n5,626109,麧,4488,11165,117,10,38,10,-33,42,-33,-2,,2014/4/212014-04-27,38912,714690,1124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/21,10:37.6\r\n6,618406,Լð2,4255,19831,117,17,36,16,-43,-37,-43,-4,,2014/4/212014-04-27,38912,714690,1124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/21,10:37.7\r\n7,618179,,349,846,12,10,30,3,-30,40,-28,1,,2014/4/212014-04-27,38912,714690,1124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/21,10:37.7\r\n8,626353,ɾ3,144,3467,5,24,29,5,-68,-53,-67,2,,2014/4/212014-04-27,38912,714690,1124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/21,10:37.7\r\n9,626612,ٱ䰮,140,2398,5,17,30,5,-86,-79,-86,-4,,2014/4/212014-04-27,38912,714690,1124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/21,10:37.7\r\n10,613091,ռ,136,8423,5,24,30,4,-83,-70,-83,-3,,2014/4/212014-04-27,38912,714690,1124,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/21,10:37.7\r\n1,622647,ӳ2սʿ,11238,61568,293,17,38,19,-57,-33,-56,9999,,2014/4/142014-04-20,35887,699656,1015,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/14,10:38.2\r\n2,618406,Լð2,7500,15576,207,10,36,18,-7,65,-7,9999,,2014/4/142014-04-20,35887,699656,1015,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/14,10:38.2\r\n3,626109,麧,6678,6678,175,3,38,21,0,0,0,0,,2014/4/142014-04-20,35887,699656,1015,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/14,10:38.2\r\n4,626697,ħ,5012,5013,162,3,31,24,0,0,0,0,,2014/4/142014-04-20,35887,699656,1015,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/14,10:38.2\r\n5,626612,ٱ䰮,977,2258,33,10,30,7,-23,39,-23,2,,2014/4/142014-04-20,35887,699656,1015,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/14,10:38.2\r\n6,623278,,967,2457,27,10,36,6,-35,19,-34,-1,,2014/4/142014-04-20,35887,699656,1015,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/14,10:38.3\r\n7,613091,ռ,815,8286,27,17,30,7,-77,-65,-77,-4,,2014/4/142014-04-20,35887,699656,1015,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/14,10:38.3\r\n8,618179,,497,497,16,3,30,6,0,0,0,0,,2014/4/142014-04-20,35887,699656,1015,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/14,10:38.3\r\n9,618726,׷󲼾,468,468,16,6,30,5,0,0,0,0,,2014/4/142014-04-20,35887,699656,1015,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/14,10:38.3\r\n10,626353,ɾ3,449,3323,15,17,29,7,-68,-61,-69,-4,,2014/4/142014-04-20,35887,699656,1015,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/14,10:38.3\r\n1,622647,ӳ2սʿ,25861,50331,662,10,39,29,6,96,7,9999,,2014/4/72014-04-13,46585,710840,1283,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/7,10:38.8\r\n2,618406,Լð2,8076,8076,223,3,36,32,0,0,0,0,,2014/4/72014-04-13,46585,710840,1283,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/7,10:38.9\r\n3,613091,ռ,3518,7471,115,10,31,10,-11,48,-10,9999,,2014/4/72014-04-13,46585,710840,1283,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/7,10:38.9\r\n4,625416,۾,2083,11920,62,17,34,13,-58,-49,-57,-2,,2014/4/72014-04-13,46585,710840,1283,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/7,10:38.9\r\n5,623278,,1491,1491,41,3,36,10,0,0,0,0,,2014/4/72014-04-13,46585,710840,1283,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/7,10:38.9\r\n6,626353,ɾ3,1421,2874,49,10,29,9,-2,85,-1,9999,,2014/4/72014-04-13,46585,710840,1283,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/7,10:38.9\r\n7,626612,ٱ䰮,1272,1281,42,3,30,13,0,0,0,0,,2014/4/72014-04-13,46585,710840,1283,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/7,10:38.9\r\n8,618964,Ʒɳ,643,41154,17,31,37,8,-83,-72,-82,-4,,2014/4/72014-04-13,46585,710840,1283,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/7,10:39.0\r\n9,597089,,501,10196,13,24,38,11,-65,-75,-71,-2,,2014/4/72014-04-13,46585,710840,1283,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/7,10:39.0\r\n10,619227,ع,499,502,16,3,31,7,0,0,0,0,,2014/4/72014-04-13,46585,710840,1283,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/4/7,10:39.0\r\n1,622647,ӳ2սʿ,24469,24469,620,3,39,53,0,0,0,0,,2014/3/312014-04-06,45313,701445,1252,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/31,10:39.4\r\n2,625416,۾,4936,9837,142,10,35,15,1,75,1,9999,,2014/3/312014-04-06,45313,701445,1252,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/31,10:39.5\r\n3,613091,ռ,3953,3953,127,3,31,17,0,0,0,0,,2014/3/312014-04-06,45313,701445,1252,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/31,10:39.5\r\n4,618964,Ʒɳ,3689,40511,97,24,38,12,-57,-37,-56,-3,,2014/3/312014-04-06,45313,701445,1252,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/31,10:39.5\r\n5,624972,˾ᱦ,1504,4590,47,10,32,7,-51,14,-52,-1,,2014/3/312014-04-06,45313,701445,1252,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/31,10:39.5\r\n6,626353,ɾ3,1454,1454,50,3,29,16,0,0,0,0,,2014/3/312014-04-06,45313,701445,1252,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/31,10:39.5\r\n7,597089,,1434,9696,46,17,31,9,-65,-51,-66,-4,,2014/3/312014-04-06,45313,701445,1252,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/31,10:39.5\r\n8,593948,·,857,2020,27,10,32,6,-26,42,-25,1,,2014/3/312014-04-06,45313,701445,1252,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/31,10:39.6\r\n9,626377,,722,6206,23,17,31,7,-71,-61,-72,-3,,2014/3/312014-04-06,45313,701445,1252,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/31,10:39.6\r\n10,626108,Ӣ֮ս,622,7237,20,17,32,16,-76,-74,-75,-5,,2014/3/312014-04-06,45313,701445,1252,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/31,10:39.6\r\n1,618964,Ʒɳ,8603,36822,223,17,39,18,-43,-28,-43,9999,,2014/3/242014-03-30,32342,703374,954,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/24,10:40.0\r\n2,625416,۾,4900,4900,140,3,35,26,0,0,0,0,,2014/3/242014-03-30,32342,703374,954,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/24,10:40.0\r\n3,597089,,4116,8262,133,10,31,13,-1,83,0,9999,,2014/3/242014-03-30,32342,703374,954,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/24,10:40.0\r\n4,624972,˾ᱦ,3086,3086,99,3,31,15,0,0,0,0,,2014/3/242014-03-30,32342,703374,954,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/24,10:40.1\r\n5,626108,Ӣ֮ս,2627,6615,79,10,33,17,-34,10,-34,-1,,2014/3/242014-03-30,32342,703374,954,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/24,10:40.1\r\n6,626377,,2523,5484,83,10,30,9,-15,71,-14,-1,,2014/3/242014-03-30,32342,703374,954,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/24,10:40.1\r\n7,457429,ѩг,2001,6859,63,14,32,12,-59,-53,-60,-5,,2014/3/242014-03-30,32342,703374,954,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/24,10:40.1\r\n8,621970,,1464,3345,39,10,38,8,-22,53,-20,-2,,2014/3/242014-03-30,32342,703374,954,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/24,10:40.1\r\n9,593948,·,1160,1163,36,3,33,11,0,0,0,0,,2014/3/242014-03-30,32342,703374,954,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/24,10:40.1\r\n10,619662,ѱʿ,859,859,24,3,35,9,0,0,0,0,,2014/3/242014-03-30,32342,703374,954,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/24,10:40.2\r\n1,618964,Ʒɳ,15052,28219,391,10,39,23,14,79,14,9999,,2014/3/172014-03-23,37206,689061,1084,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/17,10:40.5\r\n2,457429,ѩг,4849,4857,158,7,31,14,0,0,0,25,,2014/3/172014-03-23,37206,689061,1084,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/17,10:40.6\r\n3,597089,,4146,4146,134,3,31,24,0,0,0,0,,2014/3/172014-03-23,37206,689061,1084,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/17,10:40.6\r\n4,626108,Ӣ֮ս,3988,3988,120,3,33,28,0,0,0,0,,2014/3/172014-03-23,37206,689061,1084,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/17,10:40.6\r\n5,626377,,2961,2961,97,3,31,19,0,0,0,0,,2014/3/172014-03-23,37206,689061,1084,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/17,10:40.6\r\n6,621970,,1882,1882,49,3,38,15,0,0,0,0,,2014/3/172014-03-23,37206,689061,1084,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/17,10:40.6\r\n7,619261,԰,1041,3067,34,10,31,6,-49,-5,-49,-1,,2014/3/172014-03-23,37206,689061,1084,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/17,10:40.6\r\n8,377124,еս,674,31403,19,24,36,6,-85,-71,-84,-6,,2014/3/172014-03-23,37206,689061,1084,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/17,10:40.7\r\n9,618848,ܶԱ,610,4952,19,17,33,8,-51,-59,-50,-1,,2014/3/172014-03-23,37206,689061,1084,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/17,10:40.7\r\n10,596563,ױʦ,353,353,12,4,29,9,0,0,0,0,,2014/3/172014-03-23,37206,689061,1084,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/17,10:40.7\r\n1,618964,Ʒɳ,13167,13167,342,3,38,35,0,0,0,0,,2014/3/102014-03-16,30924,681982,872,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/10,10:41.2\r\n2,377124,еս,4416,30729,119,17,37,10,-67,-38,-67,-1,,2014/3/102014-03-16,30924,681982,872,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/10,10:41.2\r\n3,341721,2ʷì֮ս,2273,46037,56,24,40,11,-67,-51,-67,-1,,2014/3/102014-03-16,30924,681982,872,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/10,10:41.2\r\n4,618267,,2125,5256,67,10,32,9,-32,69,-32,-1,,2014/3/102014-03-16,30924,681982,872,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/10,10:41.2\r\n5,597207,ѹʱ,2063,5158,67,10,31,8,-33,60,-31,-1,,2014/3/102014-03-16,30924,681982,872,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/10,10:41.2\r\n6,619261,԰,2026,2026,66,3,31,11,0,0,0,0,,2014/3/102014-03-16,30924,681982,872,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/10,10:41.2\r\n7,619201,ɱ,1271,3534,43,10,29,7,-44,67,-41,9999,,2014/3/102014-03-16,30924,681982,872,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/10,10:41.2\r\n8,618848,ܶԱ,1252,4343,38,10,33,7,-59,40,-59,-3,,2014/3/102014-03-16,30924,681982,872,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/10,10:41.3\r\n9,618727,ѩԵ,691,29749,19,40,37,15,-50,-47,-51,9999,,2014/3/102014-03-16,30924,681982,872,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/10,10:41.3\r\n10,617149,168,446,2880,14,13,31,5,-82,-58,-81,-4,,2014/3/102014-03-16,30924,681982,872,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/10,10:41.3\r\n1,377124,еս,13361,26313,364,10,37,20,3,80,4,1,,2014/3/32014-03-09,38816,671578,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/3,10:41.7\r\n2,341721,2ʷì֮ս,6937,43764,172,17,40,17,-58,-43,-58,-1,,2014/3/32014-03-09,38816,671578,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/3,10:41.7\r\n3,618267,,3131,3131,98,3,32,23,0,0,0,0,,2014/3/32014-03-09,38816,671578,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/3,10:41.7\r\n4,597207,ѹʱ,3094,3095,97,3,32,19,0,0,0,0,,2014/3/32014-03-09,38816,671578,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/3,10:41.7\r\n5,618848,ܶԱ,3090,3091,92,3,34,23,0,0,0,0,,2014/3/32014-03-09,38816,671578,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/3,10:41.8\r\n6,617149,168,2427,2434,77,6,31,12,0,0,0,0,,2014/3/32014-03-09,38816,671578,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/3,10:41.8\r\n7,619201,ɱ,2263,2263,73,3,31,20,0,0,0,0,,2014/3/32014-03-09,38816,671578,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/3,10:41.8\r\n8,614577,,1662,40264,52,25,32,10,-70,-54,-70,-5,,2014/3/32014-03-09,38816,671578,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/3,10:41.8\r\n9,618727,ѩԵ,1388,29059,38,33,37,16,-52,-49,-54,-4,,2014/3/32014-03-09,38816,671578,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/3,10:41.8\r\n10,615430,ŷ,669,52381,21,38,32,8,-79,-64,-79,-6,,2014/3/32014-03-09,38816,671578,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/3/3,10:41.8\r\n1,341721,2ʷì֮ս,16493,36827,405,10,41,23,-19,84,-18,9999,,2014/2/242014-03-02,44584,648144,1218,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/24,10:42.4\r\n2,377124,еս,12952,12952,348,3,37,34,0,0,0,0,,2014/2/242014-03-02,44584,648144,1218,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/24,10:42.4\r\n3,614577,,5538,38602,172,18,32,16,-56,-35,-57,-1,,2014/2/242014-03-02,44584,648144,1218,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/24,10:42.4\r\n4,615430,ŷ,3151,51712,101,31,31,14,-53,-28,-54,-1,,2014/2/242014-03-02,44584,648144,1218,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/24,10:42.4\r\n5,618727,ѩԵ,2914,27670,82,26,36,18,-45,-28,-44,9999,,2014/2/242014-03-02,44584,648144,1218,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/24,10:42.4\r\n6,589349,μ֮칬,1506,104213,41,31,37,11,-72,-58,-71,-2,,2014/2/242014-03-02,44584,648144,1218,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/24,10:42.4\r\n7,617157,ǰι,756,12781,25,31,30,13,-55,-40,-55,-1,,2014/2/242014-03-02,44584,648144,1218,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/24,10:42.4\r\n8,619293,ְȥĶ,442,69559,15,31,30,8,-72,-62,-72,-1,,2014/2/242014-03-02,44584,648144,1218,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/24,10:42.5\r\n9,611103,,246,464,8,10,29,5,13,71,13,1,,2014/2/242014-03-02,44584,648144,1218,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/24,10:42.5\r\n10,610352,Ѱ˼,142,291,5,10,28,3,-5,51,-1,2,,2014/2/242014-03-02,44584,648144,1218,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/24,10:42.5\r\n1,341721,2ʷì֮ս,20334,20334,494,3,41,51,0,0,0,0,,2014/2/172014-02-23,55293,695632,1554,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/17,10:43.0\r\n2,614577,,12594,33064,395,11,32,24,-38,38,-31,-1,,2014/2/172014-02-23,55293,695632,1554,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/17,10:43.0\r\n3,615430,ŷ,6772,48561,219,24,31,21,-53,-21,-51,9999,,2014/2/172014-02-23,55293,695632,1554,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/17,10:43.0\r\n4,589349,μ֮칬,5379,102706,140,24,39,16,-72,-44,-70,-2,,2014/2/172014-02-23,55293,695632,1554,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/17,10:43.1\r\n5,618727,ѩԵ,5321,24756,146,19,36,22,-50,-21,-48,-1,,2014/2/172014-02-23,55293,695632,1554,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/17,10:43.1\r\n6,617157,ǰι,1690,12025,55,24,31,18,-57,-38,-54,9999,,2014/2/172014-02-23,55293,695632,1554,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/17,10:43.1\r\n7,619293,ְȥĶ,1587,69118,51,24,31,11,-83,-61,-83,-2,,2014/2/172014-02-23,55293,695632,1554,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/17,10:43.1\r\n8,612628,˭˵ǲᰮ,431,2021,14,10,30,5,-73,-4,-69,-1,,2014/2/172014-02-23,55293,695632,1554,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/17,10:43.1\r\n9,613534,Ů,281,1366,9,10,32,4,-74,-17,-71,-1,,2014/2/172014-02-23,55293,695632,1554,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/17,10:43.1\r\n10,611103,,218,218,8,3,29,8,0,0,0,0,,2014/2/172014-02-23,55293,695632,1554,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/17,10:43.1\r\n1,614577,,20470,20470,576,4,36,48,0,0,0,0,,2014/2/102014-02-16,82957,782068,2324,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/10,10:43.6\r\n2,589349,μ֮칬,19203,97328,459,17,42,30,-58,-33,-58,-1,,2014/2/102014-02-16,82957,782068,2324,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/10,10:43.6\r\n3,615430,ŷ,14446,41789,443,17,33,34,-28,-6,-28,9999,,2014/2/102014-02-16,82957,782068,2324,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/10,10:43.6\r\n4,618727,ѩԵ,10683,19436,283,12,38,34,22,29,19,9999,,2014/2/102014-02-16,82957,782068,2324,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/10,10:43.6\r\n5,619293,ְȥĶ,9294,67531,296,17,31,24,-71,-47,-71,-3,,2014/2/102014-02-16,82957,782068,2324,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/10,10:43.6\r\n6,617157,ǰι,3969,10335,121,17,33,24,-3,15,-1,-1,,2014/2/102014-02-16,82957,782068,2324,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/10,10:43.6\r\n7,612628,˭˵ǲᰮ,1588,1589,45,3,35,15,0,0,0,0,,2014/2/102014-02-16,82957,782068,2324,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/10,10:43.6\r\n8,613534,Ů,1085,1085,30,3,36,12,0,0,0,0,,2014/2/102014-02-16,82957,782068,2324,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/10,10:43.7\r\n9,617164,ܳû֮ᱦܱ,786,24619,23,31,34,20,-53,-18,-52,-2,,2014/2/102014-02-16,82957,782068,2324,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/10,10:43.7\r\n10,618626,,530,2837,18,15,30,8,-71,-53,-71,-4,,2014/2/102014-02-16,82957,782068,2324,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/10,10:43.7\r\n1,589349,μ֮칬,45981,78124,1096,10,42,48,43,104,46,9999,,2014/2/32014-02-09,117483,815182,3285,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/3,10:44.1\r\n2,619293,ְȥĶ,32501,58237,1025,10,32,45,26,93,29,9999,,2014/2/32014-02-09,117483,815182,3285,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/3,10:44.1\r\n3,615430,ŷ,20017,27344,616,10,32,44,173,155,182,9999,,2014/2/32014-02-09,117483,815182,3285,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/3,10:44.1\r\n4,618727,ѩԵ,8752,8752,238,5,37,37,0,0,0,0,,2014/2/32014-02-09,117483,815182,3285,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/3,10:44.1\r\n5,617157,ǰι,4086,6366,123,10,33,28,183,100,191,2,,2014/2/32014-02-09,117483,815182,3285,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/3,10:44.1\r\n6,618626,,1846,2307,61,8,30,14,301,434,309,7,,2014/2/32014-02-09,117483,815182,3285,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/3,10:44.2\r\n7,617164,ܳû֮ᱦܱ,1669,23833,49,24,34,34,-54,-80,-53,-3,,2014/2/32014-02-09,117483,815182,3285,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/3,10:44.2\r\n8,614853,شð2,1576,2047,46,8,34,16,237,358,248,4,,2014/2/32014-02-09,117483,815182,3285,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/3,10:44.2\r\n9,617146,͵̰2,409,32380,10,31,40,27,-88,-94,-89,-4,,2014/2/32014-02-09,117483,815182,3285,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/3,10:44.2\r\n10,396487,һ,153,16009,4,24,43,20,-94,-97,-96,-4,,2014/2/32014-02-09,117483,815182,3285,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/2/3,10:44.2\r\n1,589349,μ֮칬,32143,32143,749,3,43,67,0,0,0,0,,2014/1/272014-02-02,82590,708000,2286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/27,10:44.7\r\n2,619293,ְȥĶ,25697,25735,797,3,32,67,0,0,0,0,,2014/1/272014-02-02,82590,708000,2286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/27,10:44.7\r\n3,615430,ŷ,7325,7326,218,3,34,40,0,0,0,0,,2014/1/272014-02-02,82590,708000,2286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/27,10:44.7\r\n4,617164,ܳû֮ᱦܱ,3597,22164,103,17,35,15,-56,-50,-57,-3,,2014/1/272014-02-02,82590,708000,2286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/27,10:44.7\r\n5,617146,͵̰2,3470,31971,94,24,37,16,-54,-45,-54,-3,,2014/1/272014-02-02,82590,708000,2286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/27,10:44.7\r\n6,396487,һ,2675,15856,83,17,32,12,-63,-51,-63,-3,,2014/1/272014-02-02,82590,708000,2286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/27,10:44.8\r\n7,617157,ǰι,1442,2280,42,3,34,19,0,0,0,0,,2014/1/272014-02-02,82590,708000,2286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/27,10:44.8\r\n8,618816,ϲ,1105,7997,36,23,31,14,-48,-40,-48,-3,,2014/1/272014-02-02,82590,708000,2286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/27,10:44.8\r\n9,618269,ϲ̫֮,1005,8435,33,18,30,11,-64,-58,-63,-5,,2014/1/272014-02-02,82590,708000,2286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/27,10:44.8\r\n10,328433,µϷ,977,13858,30,27,32,13,-54,-48,-54,-4,,2014/1/272014-02-02,82590,708000,2286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/27,10:44.8\r\n1,617164,ܳû֮ᱦܱ,8245,18567,240,10,34,17,-19,97,-18,1,,2014/1/202014-01-26,35423,733523,1063,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/20,10:45.5\r\n2,617146,͵̰2,7492,28501,206,17,36,19,-35,-26,-33,-1,,2014/1/202014-01-26,35423,733523,1063,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/20,10:45.5\r\n3,396487,һ,7198,13181,222,10,32,16,20,110,22,9999,,2014/1/202014-01-26,35423,733523,1063,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/20,10:45.5\r\n4,618269,ϲ̫֮,2780,7429,90,11,31,12,-40,7,-41,9999,,2014/1/202014-01-26,35423,733523,1063,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/20,10:45.6\r\n5,618816,ϲ,2132,6892,68,16,31,16,-33,-38,-34,1,,2014/1/202014-01-26,35423,733523,1063,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/20,10:45.6\r\n6,328433,µϷ,2118,12880,65,20,32,15,-47,-44,-48,-1,,2014/1/202014-01-26,35423,733523,1063,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/20,10:45.6\r\n7,618308,Сħ֮ħĿ,1263,1271,42,4,30,10,0,0,0,0,,2014/1/202014-01-26,35423,733523,1063,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/20,10:45.6\r\n8,613384,2013,978,53098,26,34,38,14,-55,-57,-55,-1,,2014/1/202014-01-26,35423,733523,1063,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/20,10:45.6\r\n9,617157,ǰι,836,838,27,-4,31,16,0,0,0,0,,2014/1/202014-01-26,35423,733523,1063,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/20,10:45.6\r\n10,610928,˽˶,504,71098,14,39,35,15,-62,-64,-62,-2,,2014/1/202014-01-26,35423,733523,1063,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/20,10:45.7\r\n1,617146,͵̰2,11444,21009,308,10,37,21,20,74,22,9999,,2014/1/132014-01-19,46144,709778,1364,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/13,10:46.0\r\n2,617164,ܳû֮ᱦܱ,10159,10322,292,3,35,41,0,0,0,0,,2014/1/132014-01-19,46144,709778,1364,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/13,10:46.0\r\n3,396487,һ,5982,5982,181,3,33,27,0,0,0,0,,2014/1/132014-01-19,46144,709778,1364,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/13,10:46.1\r\n4,618269,ϲ̫֮,4646,4650,154,4,30,22,0,0,0,0,,2014/1/132014-01-19,46144,709778,1364,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/13,10:46.1\r\n5,328433,µϷ,3989,10762,124,13,32,16,-41,-30,-40,-3,,2014/1/132014-01-19,46144,709778,1364,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/13,10:46.1\r\n6,618816,ϲ,3180,4760,103,9,31,15,101,148,104,9999,,2014/1/132014-01-19,46144,709778,1364,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/13,10:46.1\r\n7,613384,2013,2168,52120,57,27,38,13,-56,-55,-56,-4,,2014/1/132014-01-19,46144,709778,1364,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/13,10:46.1\r\n8,610928,˽˶,1324,70594,38,32,35,14,-59,-60,-59,-4,,2014/1/132014-01-19,46144,709778,1364,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/13,10:46.1\r\n9,613414,ȻӢ,899,7319,27,17,33,11,-70,-63,-70,-4,,2014/1/132014-01-19,46144,709778,1364,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/13,10:46.2\r\n10,619451,,766,1446,25,10,30,9,13,50,16,-1,,2014/1/132014-01-19,46144,709778,1364,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/13,10:46.2\r\n1,617146,͵̰2,9564,9565,252,3,38,30,0,0,0,0,,2014/1/62014-01-12,34104,660205,982,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/6,10:46.6\r\n2,328433,µϷ,6773,6773,209,6,32,19,0,0,0,0,,2014/1/62014-01-12,34104,660205,982,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/6,10:46.6\r\n3,613384,2013,4956,49953,130,20,38,14,-71,-41,-70,-2,,2014/1/62014-01-12,34104,660205,982,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/6,10:46.6\r\n4,610928,˽˶,3255,69270,92,25,35,14,-72,-47,-72,-2,,2014/1/62014-01-12,34104,660205,982,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/6,10:46.7\r\n5,613414,ȻӢ,2953,6420,91,10,33,13,-15,32,-15,-1,,2014/1/62014-01-12,34104,660205,982,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/6,10:46.7\r\n6,618816,ϲ,1580,1580,50,2,31,18,0,0,0,0,,2014/1/62014-01-12,34104,660205,982,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/6,10:46.7\r\n7,615471,ȷ,1388,7534,45,13,31,10,-76,-51,-77,-4,,2014/1/62014-01-12,34104,660205,982,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/6,10:46.7\r\n8,617502,ʥ֮,987,2624,32,10,31,9,-40,15,-39,-1,,2014/1/62014-01-12,34104,660205,982,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/6,10:46.7\r\n9,619451,,680,680,22,3,31,11,0,0,0,0,,2014/1/62014-01-12,34104,660205,982,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/6,10:46.7\r\n10,618625,ʷǰ,439,3362,13,13,35,6,-85,-57,-85,-5,,2014/1/62014-01-12,34104,660205,982,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2014/1/6,10:46.8\r\n1,613384,2013,16900,44997,432,13,39,26,-40,-24,-38,9999,,2013/12/302014-01-05,50345,679226,1425,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/30,10:47.1\r\n2,610928,˽˶,11663,66015,328,18,36,26,-47,-46,-45,9999,,2013/12/302014-01-05,50345,679226,1425,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/30,10:47.2\r\n3,615471,ȷ,5904,6146,190,6,31,20,0,0,0,0,,2013/12/302014-01-05,50345,679226,1425,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/30,10:47.2\r\n4,613414,ȻӢ,3489,3467,107,3,33,20,0,0,0,0,,2013/12/302014-01-05,50345,679226,1425,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/30,10:47.2\r\n5,618625,ʷǰ,2935,2923,83,6,35,17,0,0,0,0,,2013/12/302014-01-05,50345,679226,1425,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/30,10:47.2\r\n6,615766,ƥ˹,2844,3617,87,8,33,17,260,304,247,-1,,2013/12/302014-01-05,50345,679226,1425,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/30,10:47.2\r\n7,617502,ʥ֮,1645,1638,53,3,31,17,0,0,0,0,,2013/12/302014-01-05,50345,679226,1425,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/30,10:47.3\r\n8,606641,״ð,1515,2489,45,9,33,16,54,91,53,-4,,2013/12/302014-01-05,50345,679226,1425,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/30,10:47.3\r\n9,615212,,1048,1614,32,9,33,14,84,109,87,-2,,2013/12/302014-01-05,50345,679226,1425,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/30,10:47.3\r\n10,614346,籩,984,31286,23,25,42,18,-70,-77,-72,-7,,2013/12/302014-01-05,50345,679226,1425,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/30,10:47.3\r\n1,613384,2013,28157,28174,697,6,40,32,0,0,0,0,,2013/12/232013-12-29,58322,646900,1526,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/23,10:47.8\r\n2,610928,˽˶,21932,54407,597,11,37,25,-32,19,-36,-1,,2013/12/232013-12-29,58322,646900,1526,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/23,10:47.8\r\n3,614346,籩,3336,30318,81,18,41,15,-67,-63,-69,-1,,2013/12/232013-12-29,58322,646900,1526,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/23,10:47.8\r\n4,606641,״ð,983,983,30,2,33,20,0,0,0,0,,2013/12/232013-12-29,58322,646900,1526,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/23,10:47.8\r\n5,615766,ƥ˹,790,790,25,1,31,20,0,0,0,0,,2013/12/232013-12-29,58322,646900,1526,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/23,10:47.8\r\n6,566774,,690,25788,20,27,34,10,-76,-75,-78,-3,,2013/12/232013-12-29,58322,646900,1526,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/23,10:47.8\r\n7,615212,,570,570,17,2,33,16,0,0,0,0,,2013/12/232013-12-29,58322,646900,1526,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/23,10:47.8\r\n8,612120,ɨ,366,23700,11,31,34,11,-75,-77,-77,-3,,2013/12/232013-12-29,58322,646900,1526,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/23,10:47.9\r\n9,615471,ȷ,285,285,9,-1,31,27,0,0,0,0,,2013/12/232013-12-29,58322,646900,1526,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/23,10:47.9\r\n10,618532,й֮Ϊת,172,172,6,3,31,4,0,0,0,0,,2013/12/232013-12-29,58322,646900,1526,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/23,10:47.9\r\n1,610928,˽˶,32473,32476,931,4,35,47,0,0,0,0,,2013/12/162013-12-22,50055,602759,1423,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/16,10:48.4\r\n2,614346,籩,10095,26982,264,11,38,17,-40,17,-40,-1,,2013/12/162013-12-22,50055,602759,1423,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/16,10:48.4\r\n3,566774,,2884,25098,92,20,31,12,-66,-43,-66,-1,,2013/12/162013-12-22,50055,602759,1423,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/16,10:48.4\r\n4,610952,Ĵ2,1644,17254,46,17,36,8,-75,-55,-75,-1,,2013/12/162013-12-22,50055,602759,1423,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/16,10:48.4\r\n5,612120,ɨ,1482,23334,46,24,32,11,-67,-50,-67,-1,,2013/12/162013-12-22,50055,602759,1423,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/16,10:48.4\r\n6,616731,ɭսʿ,397,4936,12,24,33,12,-49,-41,-49,9999,,2013/12/162013-12-22,50055,602759,1423,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/16,10:48.4\r\n7,602981,,336,43553,7,34,46,10,-82,-74,-81,-2,,2013/12/162013-12-22,50055,602759,1423,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/16,10:48.5\r\n8,614308,,243,243,8,4,31,6,0,0,0,0,,2013/12/162013-12-22,50055,602759,1423,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/16,10:48.5\r\n9,609600,ѻǮ,107,182,3,10,43,2,42,60,-8,1,,2013/12/162013-12-22,50055,602759,1423,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/16,10:48.5\r\n10,612538,Ϸ2ǻԭ,106,17194,2,32,43,10,-78,-74,-78,-3,,2013/12/162013-12-22,50055,602759,1423,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/16,10:48.5\r\n1,614346,籩,16868,16887,441,4,38,34,0,0,0,0,,2013/12/92013-12-15,40341,594559,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/9,10:49.0\r\n2,566774,,8478,22214,269,13,31,20,-38,-11,-39,-1,,2013/12/92013-12-15,40341,594559,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/9,10:49.0\r\n3,610952,Ĵ2,6660,15610,181,10,37,14,-26,69,-25,9999,,2013/12/92013-12-15,40341,594559,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/9,10:49.0\r\n4,612120,ɨ,4544,21852,140,17,32,17,-51,-37,-52,-2,,2013/12/92013-12-15,40341,594559,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/9,10:49.0\r\n5,602981,,1824,43218,38,27,48,13,-63,-65,-67,-1,,2013/12/92013-12-15,40341,594559,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/9,10:49.0\r\n6,616731,ɭսʿ,786,4539,23,17,34,14,-46,-49,-45,9999,,2013/12/92013-12-15,40341,594559,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/9,10:49.0\r\n7,612538,Ϸ2ǻԭ,476,17088,11,25,41,12,-71,-77,-75,-2,,2013/12/92013-12-15,40341,594559,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/9,10:49.0\r\n8,604366,˫,194,504,7,10,29,3,-37,17,-34,-1,,2013/12/92013-12-15,40341,594559,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/9,10:49.1\r\n9,616712,,99,99,3,3,32,4,0,0,0,0,,2013/12/92013-12-15,40341,594559,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/9,10:49.1\r\n10,609600,ѻǮ,75,75,3,3,28,4,0,0,0,0,,2013/12/92013-12-15,40341,594559,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/9,10:49.1\r\n1,566774,,13733,13736,442,6,31,29,0,0,0,0,,2013/12/22013-12-08,41194,593441,1216,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/2,10:49.5\r\n2,612120,ɨ,9202,17308,289,10,32,22,14,71,12,9999,,2013/12/22013-12-08,41194,593441,1216,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/2,10:49.5\r\n3,610952,Ĵ2,8950,8950,241,3,37,31,0,0,0,0,,2013/12/22013-12-08,41194,593441,1216,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/2,10:49.5\r\n4,602981,,4990,41394,114,20,44,14,-65,-52,-67,-3,,2013/12/22013-12-08,41194,593441,1216,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/2,10:49.5\r\n5,612538,Ϸ2ǻԭ,1641,16613,47,18,35,11,-76,-66,-78,-2,,2013/12/22013-12-08,41194,593441,1216,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/2,10:49.6\r\n6,616731,ɭսʿ,1461,3753,43,10,34,13,-36,12,-36,-2,,2013/12/22013-12-08,41194,593441,1216,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/2,10:49.6\r\n7,604366,˫,310,310,10,3,31,5,0,0,0,0,,2013/12/22013-12-08,41194,593441,1216,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/2,10:49.6\r\n8,618535,2ڰ,199,34240,5,31,39,8,-85,-81,-86,-2,,2013/12/22013-12-08,41194,593441,1216,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/2,10:49.6\r\n9,609005,,126,4346,4,17,32,3,-94,-83,-94,-4,,2013/12/22013-12-08,41194,593441,1216,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/2,10:49.6\r\n10,618407,ѿ,103,25386,3,35,35,9,-91,-87,-91,-3,,2013/12/22013-12-08,41194,593441,1216,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/12/2,10:49.6\r\n1,602981,,14136,36404,345,13,41,20,-37,-4,-37,9999,,2013/11/252013-12-01,36869,599982,1054,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/25,10:50.0\r\n2,612120,ɨ,8102,8106,258,3,31,33,0,0,0,0,,2013/11/252013-12-01,36869,599982,1054,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/25,10:50.0\r\n3,612538,Ϸ2ǻԭ,6891,14972,216,11,32,18,-15,35,-14,-1,,2013/11/252013-12-01,36869,599982,1054,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/25,10:50.0\r\n4,616731,ɭսʿ,2292,2292,67,3,34,22,0,0,0,0,,2013/11/252013-12-01,36869,599982,1054,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/25,10:50.0\r\n5,609005,,2023,4220,66,10,31,9,-8,63,-6,9999,,2013/11/252013-12-01,36869,599982,1054,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/25,10:50.1\r\n6,618535,2ڰ,1322,34040,36,24,37,11,-66,-61,-66,-3,,2013/11/252013-12-01,36869,599982,1054,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/25,10:50.1\r\n7,618407,ѿ,1104,25284,34,28,33,13,-61,-60,-62,-3,,2013/11/252013-12-01,36869,599982,1054,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/25,10:50.1\r\n8,617501,ս2,284,5544,9,17,33,6,-82,-77,-83,-2,,2013/11/252013-12-01,36869,599982,1054,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/25,10:50.1\r\n9,614850,֣1405ħѰ,101,101,3,3,32,5,0,0,0,0,,2013/11/252013-12-01,36869,599982,1054,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/25,10:50.1\r\n10,615152,ܶĸҹ,81,5369,2,139,34,63,-40,-36,-40,1,,2013/11/252013-12-01,36869,599982,1054,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/25,10:50.1\r\n1,602981,,22268,22268,547,6,41,31,0,0,0,0,,2013/11/182013-11-24,42561,615468,1169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/18,10:50.5\r\n2,612538,Ϸ2ǻԭ,8081,8081,252,4,32,28,0,0,0,0,,2013/11/182013-11-24,42561,615468,1169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/18,10:50.5\r\n3,618535,2ڰ,3941,32718,106,17,37,13,-75,-54,-74,-2,,2013/11/182013-11-24,42561,615468,1169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/18,10:50.5\r\n4,618407,ѿ,2823,24180,89,21,32,14,-66,-48,-66,-2,,2013/11/182013-11-24,42561,615468,1169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/18,10:50.5\r\n5,609005,,2193,2197,70,3,31,16,0,0,0,0,,2013/11/182013-11-24,42561,615468,1169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/18,10:50.6\r\n6,617501,ս2,1588,5261,51,10,31,8,-57,-4,-57,-3,,2013/11/182013-11-24,42561,615468,1169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/18,10:50.6\r\n7,602795,,414,7360,12,24,35,10,-64,-59,-62,-1,,2013/11/182013-11-24,42561,615468,1169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/18,10:50.6\r\n8,614334,Ұ㰮,269,2964,8,17,34,6,-83,-76,-85,-4,,2013/11/182013-11-24,42561,615468,1169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/18,10:50.6\r\n9,611357,ҵ,219,703,7,10,30,4,-54,-3,-52,-2,,2013/11/182013-11-24,42561,615468,1169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/18,10:50.6\r\n10,615451,ʱ,149,2308,4,17,35,4,-87,-76,-88,-5,,2013/11/182013-11-24,42561,615468,1169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/18,10:50.6\r\n1,618535,2ڰ,15545,28777,399,10,39,22,17,101,19,9999,,2013/11/112013-11-17,33587,611506,976,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/11,10:51.0\r\n2,618407,ѿ,8268,21358,265,14,31,22,-37,-22,-37,9999,,2013/11/112013-11-17,33587,611506,976,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/11,10:51.0\r\n3,617501,ս2,3672,3672,119,3,31,19,0,0,0,0,,2013/11/112013-11-17,33587,611506,976,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/11,10:51.1\r\n4,614334,Ұ㰮,1620,2696,53,10,31,10,51,89,53,1,,2013/11/112013-11-17,33587,611506,976,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/11,10:51.1\r\n5,615451,ʱ,1161,2159,37,10,31,7,16,69,18,1,,2013/11/112013-11-17,33587,611506,976,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/11,10:51.1\r\n6,602795,,1141,6946,32,17,36,11,-48,-51,-48,-3,,2013/11/112013-11-17,33587,611506,976,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/11,10:51.1\r\n7,611357,ҵ,476,483,15,3,31,8,0,0,0,0,,2013/11/112013-11-17,33587,611506,976,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/11,10:51.1\r\n8,614213,׷,310,310,9,3,35,8,0,0,0,0,,2013/11/112013-11-17,33587,611506,976,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/11,10:51.1\r\n9,618536,˹ָ,281,7148,7,18,41,8,-83,-84,-83,-5,,2013/11/112013-11-17,33587,611506,976,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/11,10:51.2\r\n10,616718,Ůռ,201,202,7,7,30,5,0,0,0,61,,2013/11/112013-11-17,33587,611506,976,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/11,10:51.2\r\n1,618535,2ڰ,13232,13232,334,3,40,37,0,0,0,0,,2013/11/42013-11-10,35508,603533,1029,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/4,10:51.6\r\n2,618407,ѿ,13048,13090,421,7,31,27,0,0,0,24,,2013/11/42013-11-10,35508,603533,1029,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/4,10:51.6\r\n3,602795,,2208,5805,61,10,36,10,-39,33,-38,9999,,2013/11/42013-11-10,35508,603533,1029,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/4,10:51.6\r\n4,618536,˹ָ,1683,6867,42,11,40,7,-68,-22,-68,-3,,2013/11/42013-11-10,35508,603533,1029,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/4,10:51.6\r\n5,614334,Ұ㰮,1074,1075,34,3,31,12,0,0,0,0,,2013/11/42013-11-10,35508,603533,1029,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/4,10:51.6\r\n6,615451,ʱ,998,998,31,3,32,11,0,0,0,0,,2013/11/42013-11-10,35508,603533,1029,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/4,10:51.6\r\n7,592078,2,509,24949,13,25,38,6,-88,-73,-88,-5,,2013/11/42013-11-10,35508,603533,1029,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/4,10:51.6\r\n8,618380,Ӥ,366,1769,10,11,36,6,-74,-39,-74,-1,,2013/11/42013-11-10,35508,603533,1029,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/4,10:51.7\r\n9,597096,ɿ,242,242,8,3,32,4,0,0,0,0,,2013/11/42013-11-10,35508,603533,1029,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/4,10:51.7\r\n10,608149,,213,15520,6,24,33,5,-90,-81,-91,-6,,2013/11/42013-11-10,35508,603533,1029,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/11/4,10:51.7\r\n1,618536,˹ָ,5184,5184,131,4,40,18,0,0,0,0,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/28,10:52.1\r\n2,592078,2,4087,24441,108,18,38,13,-55,-43,-55,-1,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/28,10:52.1\r\n3,602795,,3597,3597,99,3,36,22,0,0,0,0,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/28,10:52.1\r\n4,608149,,2167,15307,68,17,32,10,-65,-53,-66,-2,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/28,10:52.1\r\n5,615204,ˮһս,1849,4776,61,11,31,10,-37,-10,-37,-2,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/28,10:52.2\r\n6,606699,˽Bƻ,1519,3058,50,10,30,11,-1,26,-1,-1,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/28,10:52.2\r\n7,618380,Ӥ,1389,1404,38,4,36,13,0,0,0,0,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/28,10:52.2\r\n8,614212,Ʒ,1197,1197,41,6,29,9,0,0,0,0,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/28,10:52.2\r\n9,616744,ħ,937,14192,27,25,34,15,-57,-61,-59,-5,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/28,10:52.2\r\n10,614829,Գ,484,484,16,3,30,8,0,0,0,0,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/28,10:52.2\r\n1,618536,˹ָ,5184,5184,131,4,40,18,0,0,0,0,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/21,10:52.3\r\n2,592078,2,4087,24441,108,18,38,13,-55,-43,-55,-1,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/21,10:52.3\r\n3,602795,,3597,3597,99,3,36,22,0,0,0,0,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/21,10:52.3\r\n4,608149,,2167,15307,68,17,32,10,-65,-53,-66,-2,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/21,10:52.4\r\n5,615204,ˮһս,1849,4776,61,11,31,10,-37,-10,-37,-2,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/21,10:52.4\r\n6,606699,˽Bƻ,1519,3058,50,10,30,11,-1,26,-1,-1,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/21,10:52.4\r\n7,618380,Ӥ,1389,1404,38,4,36,13,0,0,0,0,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/21,10:52.4\r\n8,614212,Ʒ,1197,1197,41,6,29,9,0,0,0,0,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/21,10:52.4\r\n9,616744,ħ,937,14192,27,25,34,15,-57,-61,-59,-5,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/21,10:52.5\r\n10,614829,Գ,484,484,16,3,30,8,0,0,0,0,,2013/10/282013-11-03,25337,599380,738,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/21,10:52.5\r\n1,592078,2,11349,11349,303,4,37,28,0,0,0,0,,2013/10/142013-10-20,34207,577813,991,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/14,10:52.9\r\n2,608149,,6869,6869,218,3,32,26,0,0,0,0,,2013/10/142013-10-20,34207,577813,991,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/14,10:52.9\r\n3,616744,ħ,4949,11101,158,11,31,16,-20,21,-20,-1,,2013/10/142013-10-20,34207,577813,991,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/14,10:52.9\r\n4,617267,úõ,3967,7257,127,9,31,12,21,143,21,9999,,2013/10/142013-10-20,34207,577813,991,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/14,10:52.9\r\n5,591779,ʽ֮,3675,58823,87,23,42,12,-65,-49,-67,-4,,2013/10/142013-10-20,34207,577813,991,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/14,10:53.0\r\n6,612121,ӳ,809,13031,23,21,35,9,-74,-62,-73,-1,,2013/10/142013-10-20,34207,577813,991,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/14,10:53.0\r\n7,617270,,677,8000,19,16,35,8,-82,-72,-83,-4,,2013/10/142013-10-20,34207,577813,991,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/14,10:53.0\r\n8,589509,,420,4307,7,21,62,24,-62,-75,-63,-2,,2013/10/142013-10-20,34207,577813,991,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/14,10:53.0\r\n9,611580,ǳ,370,13424,8,34,48,56,-19,-61,-25,-1,,2013/10/142013-10-20,34207,577813,991,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/14,10:53.0\r\n10,615152,ܶĸҹ,316,4362,9,97,36,77,50,52,60,3,,2013/10/142013-10-20,34207,577813,991,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/14,10:53.0\r\n1,591779,ʽ֮,10442,55148,262,16,40,18,-70,-25,-70,9999,,2013/10/72013-10-13,31255,559731,889,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/7,10:53.5\r\n2,616744,ħ,6152,6152,198,4,31,24,0,0,0,0,,2013/10/72013-10-13,31255,559731,889,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/7,10:53.5\r\n3,617270,,3704,7324,113,9,33,13,2,149,3,9999,,2013/10/72013-10-13,31255,559731,889,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/7,10:53.5\r\n4,617267,úõ,3290,3290,106,2,31,25,0,0,0,0,,2013/10/72013-10-13,31255,559731,889,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/7,10:53.5\r\n5,612121,ӳ,3119,12222,85,14,37,13,-66,-36,-66,-3,,2013/10/72013-10-13,31255,559731,889,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/7,10:53.6\r\n6,589509,,1102,3887,19,14,59,16,-56,-76,-68,-1,,2013/10/72013-10-13,31255,559731,889,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/7,10:53.6\r\n7,617573,ţ,696,11229,20,26,35,11,-80,-51,-80,-3,,2013/10/72013-10-13,31255,559731,889,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/7,10:53.6\r\n8,611580,ǳ,456,13054,10,27,44,29,-49,-66,-55,3,,2013/10/72013-10-13,31255,559731,889,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/7,10:53.6\r\n9,613553,׺,361,3101,10,16,37,8,-79,-56,-79,-3,,2013/10/72013-10-13,31255,559731,889,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/7,10:53.6\r\n10,612672,ȫĿ,248,18086,7,31,34,8,-84,-65,-85,-2,,2013/10/72013-10-13,31255,559731,889,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/10/7,10:53.6\r\n1,591779,ʽ֮,35198,44706,885,9,40,45,270,246,269,9999,,2013/9/302013-10-06,64401,630468,1719,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/30,10:54.1\r\n2,612121,ӳ,9081,9103,248,7,37,25,0,0,0,21,,2013/9/302013-10-06,64401,630468,1719,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/30,10:54.2\r\n3,617270,,3619,3619,110,2,33,32,0,0,0,0,,2013/9/302013-10-06,64401,630468,1719,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/30,10:54.2\r\n4,617573,ţ,3551,10533,99,19,36,28,116,-30,113,9999,,2013/9/302013-10-06,64401,630468,1719,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/30,10:54.2\r\n5,589509,,2507,2785,59,7,43,12,0,0,0,8,,2013/9/302013-10-06,64401,630468,1719,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/30,10:54.2\r\n6,613553,׺,1744,2740,46,9,38,16,75,34,75,9999,,2013/9/302013-10-06,64401,630468,1719,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/30,10:54.2\r\n7,617484,81ũ֮,1647,1955,58,9,29,14,434,273,429,5,,2013/9/302013-10-06,64401,630468,1719,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/30,10:54.2\r\n8,612672,ȫĿ,1596,17837,48,24,33,19,-61,-74,-64,-6,,2013/9/302013-10-06,64401,630468,1719,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/30,10:54.2\r\n9,614862,2,1312,13594,36,25,37,26,37,-60,35,-2,,2013/9/302013-10-06,64401,630468,1719,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/30,10:54.3\r\n10,617710,һ·˳,944,1114,32,8,29,12,480,284,473,5,,2013/9/302013-10-06,64401,630468,1719,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/30,10:54.3\r\n1,591779,ʽ֮,9500,9508,240,2,40,42,0,0,0,0,,2013/9/232013-09-29,25640,550332,731,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/23,10:54.8\r\n2,612672,ȫĿ,4124,16241,131,17,31,14,-47,-18,-47,9999,,2013/9/232013-09-29,25640,550332,731,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/23,10:54.8\r\n3,611580,ǳ,3142,11697,101,13,31,10,-63,-23,-63,-2,,2013/9/232013-09-29,25640,550332,731,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/23,10:54.8\r\n4,617573,ţ,1645,6982,46,12,36,9,-69,-18,-69,-1,,2013/9/232013-09-29,25640,550332,731,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/23,10:54.8\r\n5,612736,,1155,1171,37,6,31,7,0,0,0,0,,2013/9/232013-09-29,25640,550332,731,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/23,10:54.8\r\n6,613553,׺,996,996,27,2,37,13,0,0,0,0,,2013/9/232013-09-29,25640,550332,731,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/23,10:54.9\r\n7,614862,2,959,12282,27,18,36,8,-81,-55,-81,-3,,2013/9/232013-09-29,25640,550332,731,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/23,10:54.9\r\n8,617719,ֿռ,750,15911,20,25,38,9,-70,-51,-70,-3,,2013/9/232013-09-29,25640,550332,731,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/23,10:54.9\r\n9,617191,ǲ˹,640,640,19,3,33,9,0,0,0,0,,2013/9/232013-09-29,25640,550332,731,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/23,10:54.9\r\n10,615152,ܶĸҹ,594,3748,19,76,31,84,50,49,56,9999,,2013/9/232013-09-29,25640,550332,731,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/23,10:54.9\r\n1,611580,ǳ,8538,8555,275,6,31,21,0,0,0,0,,2013/9/162013-09-22,34691,588521,1032,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/16,10:55.3\r\n2,612672,ȫĿ,7840,12117,248,10,32,22,83,92,85,1,,2013/9/162013-09-22,34691,588521,1032,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/16,10:55.3\r\n3,617573,ţ,5337,5337,149,5,36,24,0,0,0,0,,2013/9/162013-09-22,34691,588521,1032,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/16,10:55.3\r\n4,614862,2,5088,11322,140,11,36,18,-18,-9,-19,-3,,2013/9/162013-09-22,34691,588521,1032,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/16,10:55.4\r\n5,617719,ֿռ,2487,15161,65,18,38,15,-52,-64,-58,-3,,2013/9/162013-09-22,34691,588521,1032,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/16,10:55.4\r\n6,617713,5ŵǷ,1432,1432,36,4,40,14,0,0,0,0,,2013/9/162013-09-22,34691,588521,1032,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/16,10:55.4\r\n7,602828,˲ĸǴı,626,8230,14,24,45,20,-60,-71,-64,-2,,2013/9/162013-09-22,34691,588521,1032,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/16,10:55.4\r\n8,616532,Խ,557,1594,18,10,30,7,-46,-15,-47,-1,,2013/9/162013-09-22,34691,588521,1032,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/16,10:55.4\r\n9,608944,һǳ,549,549,18,5,31,7,0,0,0,0,,2013/9/162013-09-22,34691,588521,1032,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/16,10:55.4\r\n10,615152,ܶĸҹ,397,3154,12,69,33,80,-45,-43,-46,-1,,2013/9/162013-09-22,34691,588521,1032,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/16,10:55.5\r\n1,614862,2,6235,6235,173,4,36,20,0,0,0,0,,2013/9/92013-09-15,25660,569680,765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/9,10:56.0\r\n2,617719,ֿռ,5202,12674,157,11,33,13,-30,22,-31,-1,,2013/9/92013-09-15,25660,569680,765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/9,10:56.0\r\n3,612672,ȫĿ,4273,4276,134,3,32,23,0,0,0,0,,2013/9/92013-09-15,25660,569680,765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/9,10:56.0\r\n4,616427,͵ߵ,2243,14422,69,18,32,11,-59,-44,-60,-2,,2013/9/92013-09-15,25660,569680,765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/9,10:56.0\r\n5,602828,˲ĸǴı,1575,7604,38,17,41,16,-52,-50,-53,-2,,2013/9/92013-09-15,25660,569680,765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/9,10:56.0\r\n6,613462,,1118,2445,37,10,30,9,-16,41,-15,1,,2013/9/92013-09-15,25660,569680,765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/9,10:56.0\r\n7,616532,Խ,1037,1037,34,3,30,11,0,0,0,0,,2013/9/92013-09-15,25660,569680,765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/9,10:56.1\r\n8,348955,٪޼͹԰,873,34671,23,27,38,9,-70,-61,-70,-4,,2013/9/92013-09-15,25660,569680,765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/9,10:56.1\r\n9,615152,ܶĸҹ,717,2757,23,62,31,85,50,16,39,-1,,2013/9/92013-09-15,25660,569680,765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/9,10:56.1\r\n10,593849,޴ѧ,593,20873,16,24,38,8,-76,-66,-77,-5,,2013/9/92013-09-15,25660,569680,765,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/9,10:56.1\r\n1,617719,ֿռ,7471,7471,227,4,33,23,0,0,0,0,,2013/9/22013-09-08,27299,568776,811,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/2,10:56.5\r\n2,616427,͵ߵ,5538,12179,175,11,32,16,-15,41,-17,1,,2013/9/22013-09-08,27299,568776,811,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/2,10:56.5\r\n3,602828,˲ĸǴı,3267,6029,82,10,40,17,18,55,17,3,,2013/9/22013-09-08,27299,568776,811,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/2,10:56.5\r\n4,348955,٪޼͹԰,2938,33798,77,20,38,12,-72,-44,-72,-3,,2013/9/22013-09-08,27299,568776,811,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/2,10:56.5\r\n5,593849,޴ѧ,2511,20280,67,17,37,12,-74,-50,-74,-3,,2013/9/22013-09-08,27299,568776,811,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/2,10:56.5\r\n6,614979,Х漣,1963,4913,63,11,31,12,-33,26,-35,-1,,2013/9/22013-09-08,27299,568776,811,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/2,10:56.5\r\n7,613462,,1325,1328,43,3,31,15,0,0,0,0,,2013/9/22013-09-08,27299,568776,811,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/2,10:56.5\r\n8,615152,ܶĸҹ,477,2040,16,55,29,71,-13,-1,-13,1,,2013/9/22013-09-08,27299,568776,811,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/2,10:56.6\r\n9,615855,֮,375,375,13,3,29,10,0,0,0,0,,2013/9/22013-09-08,27299,568776,811,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/2,10:56.6\r\n10,616113,Ħ,332,6819,12,17,29,5,-89,-72,-89,-6,,2013/9/22013-09-08,27299,568776,811,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/9/2,10:56.6\r\n1,348955,٪޼͹԰,10652,30860,280,13,38,24,-47,-18,-48,9999,,2013/8/262013-09-01,40480,594371,1175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/26,10:57.0\r\n2,593849,޴ѧ,9551,17770,261,10,37,23,16,65,18,9999,,2013/8/262013-09-01,40480,594371,1175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/26,10:57.1\r\n3,616427,͵ߵ,6532,6641,211,4,31,28,0,0,0,0,,2013/8/262013-09-01,40480,594371,1175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/26,10:57.1\r\n4,616113,Ħ,3022,6487,103,10,29,14,-13,44,-11,1,,2013/8/262013-09-01,40480,594371,1175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/26,10:57.1\r\n5,614979,Х漣,2950,2950,97,4,30,23,0,0,0,0,,2013/8/262013-09-01,40480,594371,1175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/26,10:57.1\r\n6,602828,˲ĸǴı,2762,2762,70,3,40,23,0,0,0,0,,2013/8/262013-09-01,40480,594371,1175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/26,10:57.1\r\n7,614568,ս,1367,11522,42,17,33,17,-69,-67,-71,-4,,2013/8/262013-09-01,40480,594371,1175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/26,10:57.1\r\n8,616436,̫ƽ,1029,69465,25,33,42,18,-74,-73,-76,-4,,2013/8/262013-09-01,40480,594371,1175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/26,10:57.1\r\n9,615152,ܶĸҹ,549,1563,19,48,29,81,25,20,25,1,,2013/8/262013-09-01,40480,594371,1175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/26,10:57.2\r\n10,612957,صʼĵط,492,1072,16,10,30,8,-15,22,-12,-1,,2013/8/262013-09-01,40480,594371,1175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/26,10:57.2\r\n1,348955,٪޼͹԰,20208,20208,534,6,38,38,0,0,0,0,,2013/8/192013-08-25,47654,587319,1350,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/19,10:57.6\r\n2,593849,޴ѧ,8218,8218,222,3,37,32,0,0,0,0,,2013/8/192013-08-25,47654,587319,1350,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/19,10:57.7\r\n3,614568,ս,4458,10154,142,10,31,19,-22,23,-22,1,,2013/8/192013-08-25,47654,587319,1350,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/19,10:57.7\r\n4,616436,̫ƽ,4017,68436,102,26,39,21,-73,-50,-72,-3,,2013/8/192013-08-25,47654,587319,1350,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/19,10:57.7\r\n5,616113,Ħ,3465,3465,116,3,30,22,0,0,0,0,,2013/8/192013-08-25,47654,587319,1350,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/19,10:57.7\r\n6,613854,һҹϲ,2426,16790,78,17,31,15,-75,-52,-75,-3,,2013/8/192013-08-25,47654,587319,1350,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/19,10:57.7\r\n7,616735,Сʱ2ľʱ,1708,29377,55,18,31,12,-84,-66,-84,-5,,2013/8/192013-08-25,47654,587319,1350,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/19,10:57.7\r\n8,612621,,669,5377,21,13,32,9,-86,-69,-86,-3,,2013/8/192013-08-25,47654,587319,1350,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/19,10:57.7\r\n9,612957,صʼĵط,580,580,19,3,31,12,0,0,0,0,,2013/8/192013-08-25,47654,587319,1350,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/19,10:57.8\r\n10,615152,ܶĸҹ,438,1014,15,41,29,78,40,64,43,-1,,2013/8/192013-08-25,47654,587319,1350,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/19,10:57.8\r\n1,616436,̫ƽ,14751,64418,362,19,41,37,-30,-31,-30,9999,,2013/8/122013-08-18,50288,591759,1488,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/12,10:58.3\r\n2,616735,Сʱ2ľʱ,10589,27670,333,11,32,24,-38,5,-40,9999,,2013/8/122013-08-18,50288,591759,1488,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/12,10:58.3\r\n3,613854,һҹϲ,9686,14364,309,10,31,28,107,119,108,1,,2013/8/122013-08-18,50288,591759,1488,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/12,10:58.3\r\n4,614568,ս,5690,5696,182,3,31,30,0,0,0,0,,2013/8/122013-08-18,50288,591759,1488,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/12,10:58.3\r\n5,612621,,4685,4708,148,6,32,19,0,0,0,0,,2013/8/122013-08-18,50288,591759,1488,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/12,10:58.4\r\n6,615668,ٶ뼤6,1710,40952,49,24,35,24,-66,-72,-68,-3,,2013/8/122013-08-18,50288,591759,1488,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/12,10:58.4\r\n7,589743,һ绨ѩµ,791,2196,25,11,32,12,-44,-37,-44,-1,,2013/8/122013-08-18,50288,591759,1488,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/12,10:58.4\r\n8,617190,Ұ̫2,791,7327,26,18,30,13,-64,-60,-64,-3,,2013/8/122013-08-18,50288,591759,1488,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/12,10:58.4\r\n9,615152,ܶĸҹ,313,575,11,34,30,89,102,66,91,2,,2013/8/122013-08-18,50288,591759,1488,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/12,10:58.4\r\n10,617258,Σ,305,17673,8,28,37,25,-69,-79,-71,-2,,2013/8/122013-08-18,50288,591759,1488,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/12,10:58.4\r\n1,616436,̫ƽ,21119,49667,520,12,41,36,-26,0,-27,9999,,2013/8/52013-08-11,55409,586263,1616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/5,10:59.2\r\n2,616735,Сʱ2ľʱ,17080,17081,553,4,31,43,0,0,0,0,,2013/8/52013-08-11,55409,586263,1616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/5,10:59.2\r\n3,615668,ٶ뼤6,5019,39242,151,17,33,20,-68,-56,-69,-1,,2013/8/52013-08-11,55409,586263,1616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/5,10:59.3\r\n4,613854,һҹϲ,4676,4678,149,3,31,30,0,0,0,0,,2013/8/52013-08-11,55409,586263,1616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/5,10:59.3\r\n5,617190,Ұ̫2,2180,6536,73,11,30,15,-50,5,-50,-2,,2013/8/52013-08-11,55409,586263,1616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/5,10:59.3\r\n6,589743,һ绨ѩµ,1405,1405,44,4,32,14,0,0,0,0,,2013/8/52013-08-11,55409,586263,1616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/5,10:59.3\r\n7,617176,ഺ,1323,2624,47,10,28,12,2,47,4,-2,,2013/8/52013-08-11,55409,586263,1616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/5,10:59.3\r\n8,617258,Σ,991,17368,28,21,35,18,-73,-72,-75,-4,,2013/8/52013-08-11,55409,586263,1616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/5,10:59.3\r\n9,617257,ܶԱ,529,1217,17,10,32,9,-23,8,-17,-2,,2013/8/52013-08-11,55409,586263,1616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/5,10:59.3\r\n10,658914,2013ϺʵӰ,270,797,5,,50,312,0,0,0,0,,2013/8/52013-08-11,55409,586263,1616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/8/5,10:59.4\r\n1,616436,̫ƽ,28548,28548,713,5,40,49,0,0,0,0,,2013/7/292013-08-04,57372,563205,1614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/29,11:00.1\r\n2,615668,ٶ뼤6,15763,34223,482,10,33,29,-15,57,-12,-1,,2013/7/292013-08-04,57372,563205,1614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/29,11:00.1\r\n3,617190,Ұ̫2,4356,4356,147,4,30,31,0,0,0,0,,2013/7/292013-08-04,57372,563205,1614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/29,11:00.1\r\n4,617258,Σ,3647,16377,112,14,33,20,-71,-59,-71,-2,,2013/7/292013-08-04,57372,563205,1614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/29,11:00.1\r\n5,617176,ഺ,1300,1300,45,3,29,18,0,0,0,0,,2013/7/292013-08-04,57372,563205,1614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/29,11:00.1\r\n6,592255,,866,11201,25,18,35,13,-78,-73,-78,-3,,2013/7/292013-08-04,57372,563205,1614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/29,11:00.1\r\n7,617257,ܶԱ,688,688,20,3,34,12,0,0,0,0,,2013/7/292013-08-04,57372,563205,1614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/29,11:00.1\r\n8,613961,2,648,8070,21,20,31,11,-73,-64,-73,-4,,2013/7/292013-08-04,57372,563205,1614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/29,11:00.2\r\n9,615635,ŴӰ3֮ս,341,7598,10,24,34,11,-73,-62,-73,-3,,2013/7/292013-08-04,57372,563205,1614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/29,11:00.2\r\n10,616713,ط,263,21434,8,24,31,10,-87,-83,-87,-5,,2013/7/292013-08-04,57372,563205,1614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/29,11:00.2\r\n1,615668,ٶ뼤6,18460,18460,549,3,34,51,0,0,0,0,,2013/7/222013-07-28,44157,555412,1334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/22,11:00.8\r\n2,617258,Σ,12661,12730,391,7,32,29,0,0,0,17,,2013/7/222013-07-28,44157,555412,1334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/22,11:00.8\r\n3,592255,,3988,10334,110,11,36,16,-37,-4,-35,-1,,2013/7/222013-07-28,44157,555412,1334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/22,11:00.8\r\n4,613961,2,2416,7422,78,13,31,14,-52,-24,-52,-1,,2013/7/222013-07-28,44157,555412,1334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/22,11:00.8\r\n5,616713,ط,2093,21171,67,17,31,13,-80,-61,-79,-4,,2013/7/222013-07-28,44157,555412,1334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/22,11:00.8\r\n6,615635,ŴӰ3֮ս,1284,7257,37,17,34,15,-52,-48,-52,9999,,2013/7/222013-07-28,44157,555412,1334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/22,11:00.8\r\n7,612885,̨,1003,11869,31,18,33,12,-79,-69,-80,-3,,2013/7/222013-07-28,44157,555412,1334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/22,11:00.9\r\n8,608197,ä̽,637,20880,19,25,34,13,-82,-71,-83,-3,,2013/7/222013-07-28,44157,555412,1334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/22,11:00.9\r\n9,593283,ɽͼ,233,29688,5,50,51,99,39,-12,19,6,,2013/7/222013-07-28,44157,555412,1334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/22,11:00.9\r\n10,617173,ɽռ,230,525,8,10,28,7,-22,14,-21,9999,,2013/7/222013-07-28,44157,555412,1334,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/22,11:00.9\r\n1,616713,ط,10279,19078,312,10,33,24,17,91,17,9999,,2013/7/152013-07-21,36822,584206,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/15,11:01.4\r\n2,592255,,6293,6346,169,4,37,24,0,0,0,0,,2013/7/152013-07-21,36822,584206,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/15,11:01.4\r\n3,613961,2,5003,5006,162,6,31,22,0,0,0,0,,2013/7/152013-07-21,36822,584206,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/15,11:01.4\r\n4,612885,̨,4850,10865,151,11,32,18,-19,9,-19,-1,,2013/7/152013-07-21,36822,584206,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/15,11:01.4\r\n5,608197,ä̽,3630,20244,111,18,33,21,-54,-49,-55,-3,,2013/7/152013-07-21,36822,584206,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/15,11:01.4\r\n6,615635,ŴӰ3֮ս,2678,5972,77,10,35,16,-19,52,-18,-1,,2013/7/152013-07-21,36822,584206,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/15,11:01.4\r\n7,614305,Сʱ,1145,48249,35,25,33,12,-77,-68,-77,-3,,2013/7/152013-07-21,36822,584206,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/15,11:01.5\r\n8,388774,ˣ֮,568,39447,14,32,41,17,-78,-75,-79,-2,,2013/7/152013-07-21,36822,584206,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/15,11:01.5\r\n9,604711,׷ٳβ,414,414,14,5,29,11,0,0,0,0,,2013/7/152013-07-21,36822,584206,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/15,11:01.5\r\n10,617173,ɽռ,295,295,11,3,28,10,0,0,0,0,,2013/7/152013-07-21,36822,584206,1111,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/15,11:01.5\r\n1,616713,ط,8799,8799,266,3,33,39,0,0,0,0,,2013/7/82013-07-14,38939,573427,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/8,11:01.9\r\n2,608197,ä̽,7940,16614,249,11,32,25,-8,27,-8,9999,,2013/7/82013-07-14,38939,573427,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/8,11:02.0\r\n3,612885,̨,5958,6015,186,4,32,24,0,0,0,0,,2013/7/82013-07-14,38939,573427,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/8,11:02.0\r\n4,614305,Сʱ,4895,47104,151,18,32,17,-68,-53,-68,-3,,2013/7/82013-07-14,38939,573427,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/8,11:02.0\r\n5,615635,ŴӰ3֮ս,3295,3295,95,3,35,30,0,0,0,0,,2013/7/82013-07-14,38939,573427,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/8,11:02.0\r\n6,388774,ˣ֮,2623,38879,64,25,41,20,-62,-52,-61,-3,,2013/7/82013-07-14,38939,573427,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/8,11:02.0\r\n7,610950,̽,1553,28180,50,24,31,15,-73,-60,-73,-3,,2013/7/82013-07-14,38939,573427,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/8,11:02.0\r\n8,602809,ྯ,1150,1150,37,6,31,9,0,0,0,0,,2013/7/82013-07-14,38939,573427,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/8,11:02.0\r\n9,596555,̫,853,2676,24,10,35,8,-53,-21,-54,-4,,2013/7/82013-07-14,38939,573427,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/8,11:02.1\r\n10,616186,ĳ,564,3361,20,17,29,12,-61,-48,-61,-4,,2013/7/82013-07-14,38939,573427,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/8,11:02.1\r\n1,614305,Сʱ,15359,42209,479,11,32,25,-43,15,-44,9999,,2013/7/12013-07-07,41471,556021,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/1,11:02.6\r\n2,608197,ä̽,8668,8674,270,4,32,34,0,0,0,0,,2013/7/12013-07-07,41471,556021,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/1,11:02.7\r\n3,388774,ˣ֮,6836,36256,166,18,41,25,-48,-47,-49,-1,,2013/7/12013-07-07,41471,556021,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/1,11:02.7\r\n4,610950,̽,5810,26627,184,17,32,22,-49,-43,-50,-1,,2013/7/12013-07-07,41471,556021,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/1,11:02.7\r\n5,596555,̫,1808,1823,52,3,35,14,0,0,0,0,,2013/7/12013-07-07,41471,556021,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/1,11:02.7\r\n6,616186,ĳ,1464,2797,51,10,29,16,10,105,10,-2,,2013/7/12013-07-07,41471,556021,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/1,11:02.7\r\n7,612880,״ð2,487,1066,14,10,34,9,-16,31,-16,-2,,2013/7/12013-07-07,41471,556021,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/1,11:02.7\r\n8,615767,˿,386,386,13,3,30,10,0,0,0,0,,2013/7/12013-07-07,41471,556021,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/1,11:02.7\r\n9,616528,δ,128,130,4,4,29,4,0,0,0,0,,2013/7/12013-07-07,41471,556021,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/1,11:02.8\r\n10,612278,,108,2342,4,24,28,5,-64,-55,-63,-4,,2013/7/12013-07-07,41471,556021,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/7/1,11:02.8\r\n1,614305,Сʱ,26848,26850,851,4,32,52,0,0,0,0,,2013/6/242013-06-30,54987,547252,1655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/24,11:03.2\r\n2,388774,ˣ֮,13208,29420,323,11,41,26,-19,12,-19,-1,,2013/6/242013-06-30,54987,547252,1655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/24,11:03.2\r\n3,610950,̽,11430,20817,367,10,31,25,22,67,22,-1,,2013/6/242013-06-30,54987,547252,1655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/24,11:03.2\r\n4,616186,ĳ,1332,1334,46,3,29,29,0,0,0,0,,2013/6/242013-06-30,54987,547252,1655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/24,11:03.2\r\n5,612880,״ð2,578,578,17,3,34,14,0,0,0,0,,2013/6/242013-06-30,54987,547252,1655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/24,11:03.3\r\n6,612278,,299,2233,10,17,29,6,-70,-54,-70,9999,,2013/6/242013-06-30,54987,547252,1655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/24,11:03.3\r\n7,589309,ǼԺ޽,297,35292,7,34,42,12,-86,-85,-86,-3,,2013/6/242013-06-30,54987,547252,1655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/24,11:03.3\r\n8,593283,ɽͼ,259,29172,7,22,37,5,-92,-86,-92,-5,,2013/6/242013-06-30,54987,547252,1655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/24,11:03.3\r\n9,610867,йϻ,212,53818,6,45,36,10,-81,-83,-82,-4,,2013/6/242013-06-30,54987,547252,1655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/24,11:03.3\r\n10,592927,,93,5000,3,24,33,6,-89,-84,-90,-3,,2013/6/242013-06-30,54987,547252,1655,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/24,11:03.3\r\n1,388774,ˣ֮,16212,16212,399,4,41,35,0,0,0,0,,2013/6/172013-06-23,35468,519671,977,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/17,11:03.7\r\n2,610950,̽,9386,9386,300,3,31,34,0,0,0,0,,2013/6/172013-06-23,35468,519671,977,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/17,11:03.7\r\n3,593283,ɽͼ,3170,28913,83,15,38,9,-85,-52,-84,-2,,2013/6/172013-06-23,35468,519671,977,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/17,11:03.7\r\n4,589309,ǼԺ޽,2111,34995,52,27,40,12,-76,-39,-75,-2,,2013/6/172013-06-23,35468,519671,977,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/17,11:03.8\r\n5,610867,йϻ,1120,53606,33,38,34,10,-74,-44,-74,-2,,2013/6/172013-06-23,35468,519671,977,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/17,11:03.8\r\n6,612278,,1002,1934,35,10,29,9,8,89,9,9999,,2013/6/172013-06-23,35468,519671,977,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/17,11:03.8\r\n7,592927,,885,4907,28,17,32,9,-66,-33,-66,-3,,2013/6/172013-06-23,35468,519671,977,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/17,11:03.8\r\n8,658914,2013ϺʵӰ,388,527,7,,58,203,179,192,178,7,,2013/6/172013-06-23,35468,519671,977,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/17,11:03.8\r\n9,595767,Ư,254,254,6,3,39,7,0,0,0,0,,2013/6/172013-06-23,35468,519671,977,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/17,11:03.8\r\n10,612772,,227,778,7,16,32,7,-46,-12,-46,9999,,2013/6/172013-06-23,35468,519671,977,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/17,11:03.9\r\n1,593283,ɽͼ,20619,25743,537,8,38,28,302,576,302,2,,2013/6/102013-06-16,42172,555306,1149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/10,11:04.8\r\n2,589309,ǼԺ޽,8803,32885,211,20,42,30,11,-43,8,-1,,2013/6/102013-06-16,42172,555306,1149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/10,11:04.8\r\n3,610867,йϻ,4233,52485,126,31,34,21,-19,-48,-21,-1,,2013/6/102013-06-16,42172,555306,1149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/10,11:04.8\r\n4,592927,,2638,4023,83,10,32,17,90,30,88,9999,,2013/6/102013-06-16,42172,555306,1149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/10,11:04.8\r\n5,614660,ǱͧܶԱ3ʺ籦,961,5521,29,17,33,15,271,-17,257,3,,2013/6/102013-06-16,42172,555306,1149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/10,11:04.8\r\n6,612278,,932,932,32,3,29,15,0,0,0,0,,2013/6/102013-06-16,42172,555306,1149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/10,11:04.8\r\n7,596088,ʹռ2013,692,3793,25,17,28,15,335,-5,328,6,,2013/6/102013-06-16,42172,555306,1149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/10,11:04.9\r\n8,610839,ɱ,655,797,21,8,31,8,376,259,384,6,,2013/6/102013-06-16,42172,555306,1149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/10,11:04.9\r\n9,616714,ʥð,511,511,18,7,28,12,0,0,0,38,,2013/6/102013-06-16,42172,555306,1149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/10,11:04.9\r\n10,612772,,424,552,13,9,32,11,240,65,222,6,,2013/6/102013-06-16,42172,555306,1149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/10,11:04.9\r\n1,589309,ǼԺ޽,7948,24081,195,13,41,16,-51,-3,-51,9999,,2013/6/32013-06-09,23506,509006,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/3,11:05.4\r\n2,610867,йϻ,5197,48252,159,24,33,14,-54,-19,-54,9999,,2013/6/32013-06-09,23506,509006,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/3,11:05.4\r\n3,593283,ɽͼ,5124,5124,134,1,38,47,0,0,0,0,,2013/6/32013-06-09,23506,509006,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/3,11:05.4\r\n4,592927,,1385,1385,44,3,32,12,0,0,0,0,,2013/6/32013-06-09,23506,509006,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/3,11:05.4\r\n5,614547,,997,998,33,6,30,7,0,0,0,0,,2013/6/32013-06-09,23506,509006,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/3,11:05.4\r\n6,615499,ԭʼ,558,39462,15,51,37,11,-84,-56,-84,-2,,2013/6/32013-06-09,23506,509006,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/3,11:05.5\r\n7,346818,3,335,75486,8,40,41,8,-72,-59,-72,9999,,2013/6/32013-06-09,23506,509006,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/3,11:05.5\r\n8,614660,ǱͧܶԱ3ʺ籦,259,4559,8,10,32,4,-94,-41,-94,-5,,2013/6/32013-06-09,23506,509006,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/3,11:05.5\r\n9,615765,ս,227,14825,6,31,35,7,-65,-56,-67,9999,,2013/6/32013-06-09,23506,509006,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/3,11:05.5\r\n10,596069,֮սԪ,223,2077,7,10,34,4,-88,-28,-88,-4,,2013/6/32013-06-09,23506,509006,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/6/3,11:05.5\r\n1,589309,ǼԺ޽,16133,16133,397,6,41,31,0,0,0,0,,2013/5/272013-06-02,44047,537093,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/27,11:06.0\r\n2,610867,йϻ,11249,43055,347,17,32,25,-47,-24,-47,-1,,2013/5/272013-06-02,44047,537093,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/27,11:06.0\r\n3,614660,ǱͧܶԱ3ʺ籦,4299,4300,129,3,33,33,0,0,0,0,,2013/5/272013-06-02,44047,537093,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/27,11:06.1\r\n4,615499,ԭʼ,3602,38903,98,44,37,30,18,-20,18,-1,,2013/5/272013-06-02,44047,537093,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/27,11:06.1\r\n5,596088,ʹռ2013,2940,2942,104,3,28,34,0,0,0,0,,2013/5/272013-06-02,44047,537093,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/27,11:06.1\r\n6,596069,֮սԪ,1854,1854,54,3,34,23,0,0,0,0,,2013/5/272013-06-02,44047,537093,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/27,11:06.1\r\n7,346818,3,1193,75152,30,33,40,11,-73,-64,-72,-5,,2013/5/272013-06-02,44047,537093,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/27,11:06.1\r\n8,610627,ʥõ,720,2101,24,10,31,7,-48,-12,-48,-2,,2013/5/272013-06-02,44047,537093,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/27,11:06.1\r\n9,615765,ս,657,14598,19,24,34,10,-76,-63,-76,-5,,2013/5/272013-06-02,44047,537093,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/27,11:06.1\r\n10,596973,սȥഺ,562,71631,16,38,35,9,-75,-68,-76,-5,,2013/5/272013-06-02,44047,537093,1250,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/27,11:06.2\r\n1,610867,йϻ,21031,31806,660,10,32,36,95,125,96,9999,,2013/5/202013-05-26,36046,511995,1080,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/20,11:06.6\r\n2,346818,3,4500,73959,107,26,42,15,-47,-30,-47,9999,,2013/5/202013-05-26,36046,511995,1080,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/20,11:06.6\r\n3,615499,ԭʼ,3065,35301,83,37,37,21,-22,-10,-23,2,,2013/5/202013-05-26,36046,511995,1080,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/20,11:06.7\r\n4,615765,ս,2685,13941,79,17,34,15,-50,-39,-52,9999,,2013/5/202013-05-26,36046,511995,1080,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/20,11:06.7\r\n5,596973,սȥഺ,2290,71069,69,31,33,12,-61,-39,-61,-2,,2013/5/202013-05-26,36046,511995,1080,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/20,11:06.7\r\n6,610627,ʥõ,1381,1381,45,3,31,12,0,0,0,0,,2013/5/202013-05-26,36046,511995,1080,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/20,11:06.7\r\n7,616252,һ·,349,349,11,3,31,7,0,0,0,0,,2013/5/202013-05-26,36046,511995,1080,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/20,11:06.7\r\n8,605809,ȵĽ,307,1661,8,15,38,10,-68,-68,-71,-2,,2013/5/202013-05-26,36046,511995,1080,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/20,11:06.7\r\n9,616145,Շ,287,658,10,11,29,5,-23,18,-22,-2,,2013/5/202013-05-26,36046,511995,1080,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/20,11:06.8\r\n10,608234,2С,25,45,2,29,10,247,96,83,94,4,,2013/5/202013-05-26,36046,511995,1080,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/20,11:06.8\r\n1,610867,йϻ,10774,10776,337,3,32,41,0,0,0,0,,2013/5/132013-05-19,36033,495380,1038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/13,11:07.2\r\n2,346818,3,8436,69459,201,19,42,19,-59,-37,-59,-1,,2013/5/132013-05-19,36033,495380,1038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/13,11:07.2\r\n3,596973,սȥഺ,5854,68778,177,24,33,18,-60,-35,-61,-1,,2013/5/132013-05-19,36033,495380,1038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/13,11:07.3\r\n4,615765,ս,5410,11256,164,10,33,19,-7,63,-8,-1,,2013/5/132013-05-19,36033,495380,1038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/13,11:07.3\r\n5,615499,ԭʼ,3950,32236,107,30,37,24,-27,-14,-27,-1,,2013/5/132013-05-19,36033,495380,1038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/13,11:07.3\r\n6,605809,ȵĽ,967,1354,28,8,34,11,153,262,148,-1,,2013/5/132013-05-19,36033,495380,1038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/13,11:07.3\r\n7,616145,Շ,372,372,12,4,30,7,0,0,0,0,,2013/5/132013-05-19,36033,495380,1038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/13,11:07.3\r\n8,609644,ͬı,39,2240,1,23,27,3,-77,-59,-73,-1,,2013/5/132013-05-19,36033,495380,1038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/13,11:07.3\r\n9,589499,ľ,33,73,1,10,29,2,-19,16,-16,1,,2013/5/132013-05-19,36033,495380,1038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/13,11:07.4\r\n10,594281,ֲ2ȫ淴,29,33806,1,35,36,5,-84,-78,-83,-4,,2013/5/132013-05-19,36033,495380,1038,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/13,11:07.4\r\n1,346818,3,20607,61022,495,12,42,30,-49,8,-48,9999,,2013/5/62013-05-12,47664,494094,1309,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/6,11:07.8\r\n2,596973,սȥഺ,14535,62924,450,17,32,30,-57,-20,-58,9999,,2013/5/62013-05-12,47664,494094,1309,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/6,11:07.8\r\n3,615765,ս,5847,5847,178,3,33,33,0,0,0,0,,2013/5/62013-05-12,47664,494094,1309,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/6,11:07.8\r\n4,615499,ԭʼ,5442,28286,147,23,37,28,-56,-25,-56,-1,,2013/5/62013-05-12,47664,494094,1309,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/6,11:07.8\r\n5,605809,ȵĽ,382,387,11,1,33,16,0,0,0,0,,2013/5/62013-05-12,47664,494094,1309,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/6,11:07.8\r\n6,594281,ֲ2ȫ淴,179,33777,5,28,38,7,-96,-77,-95,-2,,2013/5/62013-05-12,47664,494094,1309,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/6,11:07.8\r\n7,609644,ͬı,168,2201,5,16,31,4,-86,-58,-85,-2,,2013/5/62013-05-12,47664,494094,1309,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/6,11:07.8\r\n8,612420,ֺԼ,158,19278,5,31,30,5,-80,-42,-79,-2,,2013/5/62013-05-12,47664,494094,1309,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/6,11:07.9\r\n9,614757,˼,66,393,2,15,28,4,-74,-42,-71,-2,,2013/5/62013-05-12,47664,494094,1309,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/6,11:07.9\r\n10,589499,ľ,41,41,1,3,30,3,0,0,0,0,,2013/5/62013-05-12,47664,494094,1309,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/5/6,11:07.9\r\n1,346818,3,40416,40416,960,5,42,62,0,0,0,0,,2013/4/292013-05-05,93563,533324,2545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/29,11:08.3\r\n2,596973,սȥഺ,33807,48389,1059,10,32,56,132,119,127,-1,,2013/4/292013-05-05,93563,533324,2545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/29,11:08.3\r\n3,615499,ԭʼ,12381,22844,335,16,37,48,92,-22,91,9999,,2013/4/292013-05-05,93563,533324,2545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/29,11:08.4\r\n4,594281,ֲ2ȫ淴,4200,33597,103,21,41,34,-47,-76,-48,-2,,2013/4/292013-05-05,93563,533324,2545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/29,11:08.4\r\n5,609644,ͬı,1175,2033,36,9,33,12,37,37,36,1,,2013/4/292013-05-05,93563,533324,2545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/29,11:08.4\r\n6,612420,ֺԼ,796,19120,25,24,31,13,-77,-77,-77,-2,,2013/4/292013-05-05,93563,533324,2545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/29,11:08.4\r\n7,614757,˼,252,326,8,8,31,7,239,268,231,3,,2013/4/292013-05-05,93563,533324,2545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/29,11:08.4\r\n8,596800,ͼ,146,51947,4,46,34,16,-87,-91,-88,-3,,2013/4/292013-05-05,93563,533324,2545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/29,11:08.4\r\n9,615792,ټַ,122,161,4,8,29,5,207,199,215,5,,2013/4/292013-05-05,93563,533324,2545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/29,11:08.5\r\n10,605052,ǰֿ,62,62,2,7,30,5,0,0,0,68,,2013/4/292013-05-05,93563,533324,2545,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/29,11:08.5\r\n1,596973,սȥഺ,14576,14583,468,3,31,54,0,0,0,0,,2013/4/222013-04-28,35859,511604,1062,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/22,11:09.1\r\n2,594281,ֲ2ȫ淴,7957,29397,199,14,40,16,-63,-30,-63,-1,,2013/4/222013-04-28,35859,511604,1062,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/22,11:09.1\r\n3,615499,ԭʼ,6446,10463,175,9,37,20,60,173,61,9999,,2013/4/222013-04-28,35859,511604,1062,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/22,11:09.1\r\n4,612420,ֺԼ,3495,18325,111,17,31,13,-59,-28,-59,-2,,2013/4/222013-04-28,35859,511604,1062,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/22,11:09.1\r\n5,596800,ͼ,1150,51801,35,39,32,12,-65,-48,-65,-1,,2013/4/222013-04-28,35859,511604,1062,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/22,11:09.2\r\n6,609644,ͬı,858,858,27,2,32,12,0,0,0,0,,2013/4/222013-04-28,35859,511604,1062,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/22,11:09.2\r\n7,610462,ϷƦ,433,27267,14,31,30,9,-72,-59,-71,-2,,2013/4/222013-04-28,35859,511604,1062,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/22,11:09.2\r\n8,595606,ս,357,14675,11,27,33,8,-69,-59,-69,-2,,2013/4/222013-04-28,35859,511604,1062,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/22,11:09.2\r\n9,595180,ҽ,88,6147,3,25,31,6,-74,-67,-74,-2,,2013/4/222013-04-28,35859,511604,1062,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/22,11:09.2\r\n10,614757,˼,74,74,2,1,30,8,0,0,0,0,,2013/4/222013-04-28,35859,511604,1062,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/22,11:09.2\r\n1,594281,ֲ2ȫ淴,21250,21441,537,7,40,30,0,0,0,8,,2013/4/152013-04-21,40939,526556,1141,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/15,11:09.6\r\n2,612420,ֺԼ,8506,14830,270,10,32,23,35,90,35,9999,,2013/4/152013-04-21,40939,526556,1141,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/15,11:09.6\r\n3,615499,ԭʼ,4017,4017,109,2,37,33,0,0,0,0,,2013/4/152013-04-21,40939,526556,1141,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/15,11:09.6\r\n4,596800,ͼ,3297,50651,103,32,32,18,-57,-47,-57,-3,,2013/4/152013-04-21,40939,526556,1141,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/15,11:09.7\r\n5,610462,ϷƦ,1548,26834,49,24,32,13,-72,-60,-72,-2,,2013/4/152013-04-21,40939,526556,1141,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/15,11:09.7\r\n6,595606,ս,1141,14318,35,20,33,11,-77,-62,-77,-2,,2013/4/152013-04-21,40939,526556,1141,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/15,11:09.7\r\n7,595180,ҽ,343,6059,11,18,32,7,-86,-75,-86,-1,,2013/4/152013-04-21,40939,526556,1141,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/15,11:09.7\r\n8,615223,ħ,188,16385,5,24,36,7,-94,-85,-93,-3,,2013/4/152013-04-21,40939,526556,1141,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/15,11:09.7\r\n9,615202,,162,162,5,3,30,6,0,0,0,0,,2013/4/152013-04-21,40939,526556,1141,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/15,11:09.7\r\n10,614325,̫ǵҸ,113,531,4,10,30,3,-73,-42,-72,-3,,2013/4/152013-04-21,40939,526556,1141,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/15,11:09.8\r\n1,596800,ͼ,7626,47354,241,25,32,23,-49,-14,-49,9999,,2013/4/82013-04-14,30991,512248,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/8,11:10.1\r\n2,612420,ֺԼ,6324,6324,200,3,32,33,0,0,0,0,,2013/4/82013-04-14,30991,512248,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/8,11:10.1\r\n3,610462,ϷƦ,5568,25286,176,17,32,19,-53,-23,-53,-1,,2013/4/82013-04-14,30991,512248,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/8,11:10.1\r\n4,595606,ս,4909,13178,153,13,32,18,-41,-9,-41,-1,,2013/4/82013-04-14,30991,512248,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/8,11:10.2\r\n5,615223,ħ,2929,16196,72,17,41,15,-60,-34,-60,-1,,2013/4/82013-04-14,30991,512248,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/8,11:10.2\r\n6,595180,ҽ,2457,5717,78,11,32,14,-25,28,-24,-1,,2013/4/82013-04-14,30991,512248,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/8,11:10.2\r\n7,614325,̫ǵҸ,413,418,14,3,30,6,0,0,0,0,,2013/4/82013-04-14,30991,512248,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/8,11:10.2\r\n8,602831,˲ֽܿ,287,5393,7,21,40,9,-63,-49,-63,-2,,2013/4/82013-04-14,30991,512248,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/8,11:10.2\r\n9,594281,ֲ2ȫ淴,191,191,5,0,41,54,0,0,0,0,,2013/4/82013-04-14,30991,512248,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/8,11:10.2\r\n10,615250,5,78,20123,2,32,37,8,-68,-63,-68,-3,,2013/4/82013-04-14,30991,512248,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/8,11:10.3\r\n1,596800,ͼ,14928,39728,471,18,32,38,-12,-11,-14,9999,,2013/4/12013-04-07,47076,517314,1430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/1,11:10.7\r\n2,610462,ϷƦ,11761,19718,373,10,32,31,48,90,47,9999,,2013/4/12013-04-07,47076,517314,1430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/1,11:10.7\r\n3,595606,ս,8264,8268,259,6,32,28,0,0,0,0,,2013/4/12013-04-07,47076,517314,1430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/1,11:10.7\r\n4,615223,ħ,7382,13267,182,10,41,25,25,57,23,-1,,2013/4/12013-04-07,47076,517314,1430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/1,11:10.7\r\n5,595180,ҽ,3255,3259,102,4,32,23,0,0,0,0,,2013/4/12013-04-07,47076,517314,1430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/1,11:10.7\r\n6,602831,˲ֽܿ,775,5106,19,14,41,12,-82,-81,-83,-2,,2013/4/12013-04-07,47076,517314,1430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/1,11:10.7\r\n7,615250,5,244,20045,7,25,37,9,-87,-87,-89,-2,,2013/4/12013-04-07,47076,517314,1430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/1,11:10.8\r\n8,590044,¥,116,304,4,11,28,4,-39,-3,-33,9999,,2013/4/12013-04-07,47076,517314,1430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/1,11:10.8\r\n9,605823,Σ5ͷ,98,11030,2,22,40,6,-92,-91,-92,-3,,2013/4/12013-04-07,47076,517314,1430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/1,11:10.8\r\n10,608213,Ҷʣռһս,51,1083,2,17,28,2,-81,-64,-79,-3,,2013/4/12013-04-07,47076,517314,1430,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/4/1,11:10.8\r\n1,596800,ͼ,17052,24800,546,11,31,39,120,88,123,9999,,2013/3/252013-03-31,39434,503198,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/25,11:11.4\r\n2,610462,ϷƦ,7952,7956,254,3,31,40,0,0,0,0,,2013/3/252013-03-31,39434,503198,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/25,11:11.4\r\n3,615223,ħ,5885,5885,148,3,40,32,0,0,0,0,,2013/3/252013-03-31,39434,503198,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/25,11:11.4\r\n4,602831,˲ֽܿ,4311,4332,111,7,39,14,0,0,0,15,,2013/3/252013-03-31,39434,503198,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/25,11:11.4\r\n5,615250,5,1939,19801,60,18,33,11,-75,-61,-75,-3,,2013/3/252013-03-31,39434,503198,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/25,11:11.4\r\n6,605823,Σ5ͷ,1270,10932,32,15,40,8,-83,-69,-83,-3,,2013/3/252013-03-31,39434,503198,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/25,11:11.5\r\n7,608213,Ҷʣռһս,272,1032,9,10,30,4,-64,-13,-64,-2,,2013/3/252013-03-31,39434,503198,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/25,11:11.5\r\n8,590044,¥,188,189,6,4,31,5,0,0,0,0,,2013/3/252013-03-31,39434,503198,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/25,11:11.5\r\n9,608215,Ц,123,6956,4,24,29,5,-86,-74,-86,-5,,2013/3/252013-03-31,39434,503198,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/25,11:11.5\r\n10,595857,ֹɱ,92,423,3,10,31,2,-72,-27,-72,9999,,2013/3/252013-03-31,39434,503198,1185,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/25,11:11.5\r\n1,596800,ͼ,7736,7749,245,4,32,33,0,0,0,0,,2013/3/182013-03-24,27139,521959,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/18,11:12.0\r\n2,615250,5,7615,17862,237,11,32,17,-26,28,-25,-1,,2013/3/182013-03-24,27139,521959,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/18,11:12.0\r\n3,605823,Σ5ͷ,7305,9663,183,8,40,14,210,419,214,2,,2013/3/182013-03-24,27139,521959,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/18,11:12.0\r\n4,608215,Ц,906,6833,30,17,30,8,-70,-50,-70,-2,,2013/3/182013-03-24,27139,521959,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/18,11:12.0\r\n5,608213,Ҷʣռһս,761,761,25,3,30,10,0,0,0,0,,2013/3/182013-03-24,27139,521959,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/18,11:12.1\r\n6,589797,νħƪ,599,124646,16,43,39,9,-76,-66,-76,-2,,2013/3/182013-03-24,27139,521959,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/18,11:12.1\r\n7,341723,1ó,576,31539,11,31,51,12,-70,-71,-74,-1,,2013/3/182013-03-24,27139,521959,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/18,11:12.1\r\n8,566700,,390,7357,10,18,38,7,-85,-78,-85,-5,,2013/3/182013-03-24,27139,521959,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/18,11:12.1\r\n9,555111,,346,6239,9,25,39,14,-66,-60,-68,-2,,2013/3/182013-03-24,27139,521959,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/18,11:12.1\r\n10,595857,ֹɱ,331,331,11,3,31,6,0,0,0,0,,2013/3/182013-03-24,27139,521959,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/18,11:12.1\r\n1,615250,5,10247,10247,318,4,32,28,0,0,0,0,,2013/3/112013-03-17,26159,515219,762,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/11,11:12.6\r\n2,608215,Ц,2994,5927,100,10,30,14,2,99,2,2,,2013/3/112013-03-17,26159,515219,762,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/11,11:12.6\r\n3,566700,,2605,6967,69,11,38,11,-40,14,-40,9999,,2013/3/112013-03-17,26159,515219,762,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/11,11:12.7\r\n4,589797,νħƪ,2466,124047,64,36,39,12,-62,-46,-62,-3,,2013/3/112013-03-17,26159,515219,762,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/11,11:12.7\r\n5,605823,Σ5ͷ,2357,2357,58,1,41,23,0,0,0,0,,2013/3/112013-03-17,26159,515219,762,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/11,11:12.7\r\n6,341723,1ó,1925,30964,42,24,45,14,-64,-48,-65,-4,,2013/3/112013-03-17,26159,515219,762,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/11,11:12.7\r\n7,555111,,1014,5893,27,18,37,17,-57,-50,-58,-2,,2013/3/112013-03-17,26159,515219,762,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/11,11:12.7\r\n8,604129,ٰ,535,4361,17,17,32,8,-74,-61,-75,-2,,2013/3/112013-03-17,26159,515219,762,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/11,11:12.7\r\n9,615231,,413,1162,13,10,31,6,-45,13,-44,-1,,2013/3/112013-03-17,26159,515219,762,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/11,11:12.7\r\n10,590327,,391,392,13,4,31,6,0,0,0,0,,2013/3/112013-03-17,26159,515219,762,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/11,11:12.8\r\n1,589797,νħƪ,6440,121581,167,29,39,17,-56,-31,-56,9999,,2013/3/42013-03-10,27719,497068,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/4,11:13.3\r\n2,341723,1ó,5346,29039,120,17,44,20,-55,-40,-56,9999,,2013/3/42013-03-10,27719,497068,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/4,11:13.3\r\n3,566700,,4363,4363,116,4,38,21,0,0,0,0,,2013/3/42013-03-10,27719,497068,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/4,11:13.3\r\n4,608215,Ц,2933,2933,98,3,30,27,0,0,0,0,,2013/3/42013-03-10,27719,497068,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/4,11:13.3\r\n5,555111,,2330,4880,66,11,36,21,-9,24,-11,-2,,2013/3/42013-03-10,27719,497068,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/4,11:13.3\r\n6,604129,ٰ,2060,3826,67,10,31,12,17,71,18,-1,,2013/3/42013-03-10,27719,497068,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/4,11:13.3\r\n7,566117,ؾй,1130,2827,31,10,36,8,-33,26,-31,-1,,2013/3/42013-03-10,27719,497068,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/4,11:13.4\r\n8,615231,,748,749,24,3,31,12,0,0,0,0,,2013/3/42013-03-10,27719,497068,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/4,11:13.4\r\n9,592544,101,574,19868,18,27,31,11,-69,-58,-68,-5,,2013/3/42013-03-10,27719,497068,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/4,11:13.4\r\n10,592550,ӣ,404,404,12,3,33,11,0,0,0,0,,2013/3/42013-03-10,27719,497068,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/3/4,11:13.4\r\n1,589797,νħƪ,14560,115141,381,22,38,26,-57,-24,-56,9999,,2013/2/252013-03-03,37335,488726,989,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/25,11:13.9\r\n2,341723,1ó,11839,23693,271,10,44,27,0,71,1,9999,,2013/2/252013-03-03,37335,488726,989,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/25,11:13.9\r\n3,555111,,2550,2550,74,4,34,29,0,0,0,0,,2013/2/252013-03-03,37335,488726,989,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/25,11:13.9\r\n4,592544,101,1828,19295,58,20,32,14,-65,-48,-65,-1,,2013/2/252013-03-03,37335,488726,989,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/25,11:14.0\r\n5,604129,ٰ,1765,1765,57,3,31,18,0,0,0,0,,2013/2/252013-03-03,37335,488726,989,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/25,11:14.0\r\n6,566117,ؾй,1697,1697,46,3,37,14,0,0,0,0,,2013/2/252013-03-03,37335,488726,989,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/25,11:14.0\r\n7,614864,̽ܿ,1061,9528,33,16,32,13,-80,-68,-80,-3,,2013/2/252013-03-03,37335,488726,989,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/25,11:14.0\r\n8,611576,ݾ,914,1936,31,10,30,10,-11,54,-11,-3,,2013/2/252013-03-03,37335,488726,989,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/25,11:14.0\r\n9,596648,ҹ΢,317,318,10,3,30,9,0,0,0,0,,2013/2/252013-03-03,37335,488726,989,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/25,11:14.0\r\n10,615230,Ŀ,169,170,6,6,29,6,0,0,0,0,,2013/2/252013-03-03,37335,488726,989,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/25,11:14.1\r\n1,589797,νħƪ,34168,100581,876,15,39,46,-41,-17,-37,9999,,2013/2/182013-02-24,60866,521193,1618,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/18,11:14.6\r\n2,341723,1ó,11854,11854,268,3,44,46,0,0,0,0,,2013/2/182013-02-24,60866,521193,1618,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/18,11:14.7\r\n3,592544,101,5280,17467,166,13,32,21,-57,-20,-53,-1,,2013/2/182013-02-24,60866,521193,1618,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/18,11:14.7\r\n4,614864,̽ܿ,5222,8467,165,9,32,21,61,147,63,-1,,2013/2/182013-02-24,60866,521193,1618,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/18,11:14.7\r\n5,611576,ݾ,1023,1023,34,3,30,17,0,0,0,0,,2013/2/182013-02-24,60866,521193,1618,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/18,11:14.7\r\n6,592438,ͼ,687,16887,19,25,36,17,-73,-50,-72,-1,,2013/2/182013-02-24,60866,521193,1618,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/18,11:14.7\r\n7,610086,2ʥԸ,515,6748,19,25,28,14,-55,-28,-52,2,,2013/2/182013-02-24,60866,521193,1618,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/18,11:14.7\r\n8,612655,һ,512,3180,16,13,32,9,-81,-52,-79,-4,,2013/2/182013-02-24,60866,521193,1618,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/18,11:14.7\r\n9,614593,ǾƵ,350,5757,11,24,32,15,-68,-46,-67,1,,2013/2/182013-02-24,60866,521193,1618,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/18,11:14.8\r\n10,613467,ϲ̫֮ϲ,350,12464,12,32,28,12,-72,-39,-70,-2,,2013/2/182013-02-24,60866,521193,1618,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/18,11:14.8\r\n1,589797,νħƪ,57905,66413,1393,8,42,62,591,630,578,9999,,2013/2/112013-02-17,87247,563759,2257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/11,11:15.3\r\n2,592544,101,12182,12187,351,6,35,36,0,0,0,0,,2013/2/112013-02-17,87247,563759,2257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/11,11:15.3\r\n3,614864,̽ܿ,3245,3245,101,2,32,32,0,0,0,0,,2013/2/112013-02-17,87247,563759,2257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/11,11:15.3\r\n4,612655,һ,2663,2668,76,6,35,20,0,0,0,0,,2013/2/112013-02-17,87247,563759,2257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/11,11:15.3\r\n5,592438,ͼ,2500,16200,68,18,37,31,-61,-76,-65,-3,,2013/2/112013-02-17,87247,563759,2257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/11,11:15.3\r\n6,614536,ԽԽ֮,1903,2713,58,8,33,15,136,190,132,2,,2013/2/112013-02-17,87247,563759,2257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/11,11:15.3\r\n7,610088,007Ļɱ,1310,37608,34,28,38,29,-68,-82,-71,-4,,2013/2/112013-02-17,87247,563759,2257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/11,11:15.4\r\n8,613467,ϲ̫֮ϲ,1269,12114,41,25,31,24,-2,-48,-4,-2,,2013/2/112013-02-17,87247,563759,2257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/11,11:15.4\r\n9,610086,2ʥԸ,1158,6233,39,18,30,20,-30,-63,-32,-4,,2013/2/112013-02-17,87247,563759,2257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/11,11:15.4\r\n10,614593,ǾƵ,1108,5407,32,17,34,25,-60,-76,-63,-6,,2013/2/112013-02-17,87247,563759,2257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/11,11:15.4\r\n1,589797,νħƪ,8381,8508,205,1,41,66,0,0,0,0,,2013/2/42013-02-10,29212,476905,858,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/4,11:15.8\r\n2,592438,ͼ,6445,13700,197,11,33,21,-11,44,-11,9999,,2013/2/42013-02-10,29212,476905,858,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/4,11:15.9\r\n3,610088,007Ļɱ,4084,36298,116,21,35,17,-60,-41,-60,-2,,2013/2/42013-02-10,29212,476905,858,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/4,11:15.9\r\n4,614593,ǾƵ,2743,4299,87,10,31,16,76,108,81,3,,2013/2/42013-02-10,29212,476905,858,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/4,11:15.9\r\n5,610086,2ʥԸ,1666,5075,58,11,29,11,-51,17,-51,-2,,2013/2/42013-02-10,29212,476905,858,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/4,11:15.9\r\n6,613467,ϲ̫֮ϲ,1295,10845,43,18,30,13,-60,-54,-61,-2,,2013/2/42013-02-10,29212,476905,858,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/4,11:15.9\r\n7,614154,Сħ,1248,4046,42,11,30,10,-55,13,-55,-2,,2013/2/42013-02-10,29212,476905,858,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/4,11:15.9\r\n8,614536,ԽԽ֮,805,809,25,1,32,18,0,0,0,0,,2013/2/42013-02-10,29212,476905,858,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/4,11:15.9\r\n9,595639,ŮӼ,630,1082,21,10,30,10,39,81,45,3,,2013/2/42013-02-10,29212,476905,858,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/4,11:16.0\r\n10,612627,ֵ,503,15277,17,27,29,12,-72,-63,-73,-4,,2013/2/42013-02-10,29212,476905,858,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/2/4,11:16.0\r\n1,610088,007Ļɱ,10136,32214,293,14,35,26,-54,-33,-54,9999,0,2013/1/282013-02-03,34877,522315,1093,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/28,11:16.3\r\n2,592438,ͼ,7255,7255,221,4,33,34,0,0,0,0,,2013/1/282013-02-03,34877,522315,1093,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/28,11:16.4\r\n3,610086,2ʥԸ,3408,3409,118,4,29,26,0,0,0,0,,2013/1/282013-02-03,34877,522315,1093,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/28,11:16.4\r\n4,613467,ϲ̫֮ϲ,3255,9550,110,11,30,15,-48,-4,-48,-2,,2013/1/282013-02-03,34877,522315,1093,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/28,11:16.4\r\n5,614154,Сħ,2797,2797,94,4,30,26,0,0,0,0,,2013/1/282013-02-03,34877,522315,1093,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/28,11:16.4\r\n6,612627,ֵ,1816,14774,63,20,29,16,-58,-50,-58,-3,,2013/1/282013-02-03,34877,522315,1093,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/28,11:16.4\r\n7,614593,ǾƵ,1556,1556,48,3,32,19,0,0,0,0,,2013/1/282013-02-03,34877,522315,1093,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/28,11:16.5\r\n8,614166,µ2,896,1494,30,9,30,12,50,107,56,9999,,2013/1/282013-02-03,34877,522315,1093,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/28,11:16.5\r\n9,573880,һʦ,832,28607,22,27,38,17,-63,-66,-63,-5,,2013/1/282013-02-03,34877,522315,1093,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/28,11:16.5\r\n10,596765,ŭС,543,545,19,6,28,12,0,0,0,0,,2013/1/282013-02-03,34877,522315,1093,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/28,11:16.5\r\n1,610088,007Ļɱ,21897,22078,633,7,35,37,0,0,0,8,0,2013/1/212013-01-27,39424,487316,1197,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/21,11:16.9\r\n2,613467,ϲ̫֮ϲ,6293,6295,211,4,30,28,0,0,0,0,,2013/1/212013-01-27,39424,487316,1197,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/21,11:16.9\r\n3,612627,ֵ,4357,12958,149,13,29,19,-49,-27,-49,-1,,2013/1/212013-01-27,39424,487316,1197,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/21,11:16.9\r\n4,573880,һʦ,2228,27775,61,20,37,16,-75,-67,-75,-3,,2013/1/212013-01-27,39424,487316,1197,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/21,11:16.9\r\n5,573367,ʮФ,1277,87563,34,39,37,15,-75,-69,-74,-2,,2013/1/212013-01-27,39424,487316,1197,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/21,11:16.9\r\n6,610009,ه;̩֮,903,126159,28,47,33,15,-71,-68,-71,-2,,2013/1/212013-01-27,39424,487316,1197,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/21,11:17.0\r\n7,614548,³³ѩð,606,608,18,3,34,13,0,0,0,0,,2013/1/212013-01-27,39424,487316,1197,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/21,11:17.0\r\n8,614166,µ2,598,598,19,2,31,16,0,0,0,0,,2013/1/212013-01-27,39424,487316,1197,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/21,11:17.0\r\n9,605657,׷,409,409,13,3,31,11,0,0,0,0,,2013/1/212013-01-27,39424,487316,1197,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/21,11:17.0\r\n10,590372,ִð,267,781,8,9,32,6,-48,-10,-45,-4,,2013/1/212013-01-27,39424,487316,1197,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/21,11:17.0\r\n1,573880,һʦ,8814,25547,240,13,37,20,-47,-19,-49,9999,,2013/1/142013-01-20,29570,480036,885,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/14,11:17.4\r\n2,612627,ֵ,8600,8601,291,6,30,27,0,0,0,0,,2013/1/142013-01-20,29570,480036,885,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/14,11:17.5\r\n3,573367,ʮФ,5137,86286,134,32,38,18,-38,-24,-38,-1,,2013/1/142013-01-20,29570,480036,885,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/14,11:17.5\r\n4,610009,ه;̩֮,3129,125256,95,40,33,16,-46,-38,-47,-1,,2013/1/142013-01-20,29570,480036,885,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/14,11:17.5\r\n5,592980,ᱦ,1890,1890,62,6,31,15,0,0,0,0,,2013/1/142013-01-20,29570,480036,885,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/14,11:17.5\r\n6,590372,ִð,514,514,15,2,34,11,0,0,0,0,,2013/1/142013-01-20,29570,480036,885,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/14,11:17.5\r\n7,611209,Ϻ,482,14915,14,31,34,11,-68,-63,-69,-3,,2013/1/142013-01-20,29570,480036,885,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/14,11:17.5\r\n8,612087,99,300,625,11,10,27,9,-8,11,-4,-3,,2013/1/142013-01-20,29570,480036,885,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/14,11:17.5\r\n9,610088,007Ļɱ,181,181,5,0,40,47,0,0,0,0,0,2013/1/142013-01-20,29570,480036,885,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/14,11:17.6\r\n10,611817,壬Ұ,144,446,5,10,30,4,-52,-21,-53,-4,,2013/1/142013-01-20,29570,480036,885,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/14,11:17.6\r\n1,573880,һʦ,16720,16733,468,6,36,32,0,0,0,0,,2013/1/72013-01-13,33944,466310,965,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/7,11:18.0\r\n2,573367,ʮФ,8260,81148,216,25,38,22,-66,-32,-64,-1,,2013/1/72013-01-13,33944,466310,965,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/7,11:18.0\r\n3,610009,ه;̩֮,5786,122127,178,33,33,19,-72,-40,-72,-1,,2013/1/72013-01-13,33944,466310,965,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/7,11:18.0\r\n4,611209,Ϻ,1493,14433,46,24,33,13,-72,-41,-72,-1,,2013/1/72013-01-13,33944,466310,965,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/7,11:18.0\r\n5,612087,99,325,325,12,3,28,10,0,0,0,0,,2013/1/72013-01-13,33944,466310,965,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/7,11:18.0\r\n6,611817,壬Ұ,299,302,10,3,30,7,0,0,0,0,,2013/1/72013-01-13,33944,466310,965,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/7,11:18.0\r\n7,558001,Ѫ,251,7149,7,25,37,7,-86,-63,-86,-3,,2013/1/72013-01-13,33944,466310,965,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/7,11:18.0\r\n8,613476,201314,167,1307,6,13,28,4,-85,-52,-85,-3,,2013/1/72013-01-13,33944,466310,965,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/7,11:18.1\r\n9,589740,𹿰,96,1047,4,16,26,6,-85,-66,-83,-3,,2013/1/72013-01-13,33944,466310,965,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/7,11:18.1\r\n10,614532,Ҿ,95,669,3,17,30,5,-74,-48,-73,-3,,2013/1/72013-01-13,33944,466310,965,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2013/1/7,11:18.1\r\n1,573367,ʮФ,23961,72888,599,18,40,42,-10,-4,-6,1,,2012/12/312013-01-06,55401,505926,1561,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/31,11:18.6\r\n2,610009,ه;̩֮,20376,116341,626,26,33,40,-25,-8,-21,-1,,2012/12/312013-01-06,55401,505926,1561,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/31,11:18.6\r\n3,611209,Ϻ,5382,12940,161,17,33,27,3,1,6,9999,,2012/12/312013-01-06,55401,505926,1561,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/31,11:18.6\r\n4,558001,Ѫ,1806,6898,47,18,39,18,-25,-30,-20,9999,,2012/12/312013-01-06,55401,505926,1561,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/31,11:18.6\r\n5,613476,201314,1140,1140,39,6,29,13,0,0,0,0,,2012/12/312013-01-06,55401,505926,1561,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/31,11:18.6\r\n6,589740,𹿰,641,951,22,9,29,12,107,135,111,9999,,2012/12/312013-01-06,55401,505926,1561,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/31,11:18.6\r\n7,614532,Ҿ,367,575,12,10,32,9,76,66,73,2,,2012/12/312013-01-06,55401,505926,1561,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/31,11:18.7\r\n8,589925,ط,259,315,10,8,27,9,357,400,364,11,,2012/12/312013-01-06,55401,505926,1561,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/31,11:18.7\r\n9,592893,ʱ,244,244,7,7,34,16,0,0,0,269,,2012/12/312013-01-06,55401,505926,1561,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/31,11:18.7\r\n10,611550,ܻ԰,241,512,8,10,31,7,-11,6,-13,-3,,2012/12/312013-01-06,55401,505926,1561,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/31,11:18.7\r\n1,610009,ه;̩֮,27132,95965,792,19,34,46,-29,-13,-34,9999,,2012/12/242012-12-30,64329,493787,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/24,11:19.1\r\n2,573367,ʮФ,26570,48927,639,11,42,43,19,64,15,9999,,2012/12/242012-12-30,64329,493787,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/24,11:19.1\r\n3,611209,Ϻ,5240,7558,151,10,35,26,126,184,121,2,,2012/12/242012-12-30,64329,493787,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/24,11:19.1\r\n4,558001,Ѫ,2406,5091,59,11,41,16,-10,5,-12,9999,,2012/12/242012-12-30,64329,493787,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/24,11:19.1\r\n5,611325,׼ѩɽ,336,530,10,10,32,6,73,81,54,3,,2012/12/242012-12-30,64329,493787,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/24,11:19.1\r\n6,589740,𹿰,310,310,11,2,29,13,0,0,0,0,,2012/12/242012-12-30,64329,493787,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/24,11:19.2\r\n7,611550,ܻ԰,271,271,9,3,31,8,0,0,0,0,,2012/12/242012-12-30,64329,493787,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/24,11:19.2\r\n8,593912,һĶ,215,36978,6,32,36,23,-84,-90,-84,-2,,2012/12/242012-12-30,64329,493787,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/24,11:19.2\r\n9,614532,Ҿ,208,208,7,3,31,9,0,0,0,0,,2012/12/242012-12-30,64329,493787,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/24,11:19.2\r\n10,596605,,159,159,5,3,34,7,0,0,0,0,,2012/12/242012-12-30,64329,493787,1740,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/24,11:19.2\r\n1,610009,ه;̩֮,37971,68833,1192,12,32,60,23,32,22,9999,,2012/12/172012-12-23,71323,467783,2046,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/17,11:19.7\r\n2,573367,ʮФ,22354,22357,557,4,40,61,0,0,0,0,,2012/12/172012-12-23,71323,467783,2046,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/17,11:19.7\r\n3,353063,ɵƯ,2981,57288,76,32,39,21,-70,-58,-71,-1,,2012/12/172012-12-23,71323,467783,2046,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/17,11:19.7\r\n4,558001,Ѫ,2685,2685,67,4,40,19,0,0,0,0,,2012/12/172012-12-23,71323,467783,2046,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/17,11:19.7\r\n5,611209,Ϻ,2318,2318,69,3,34,33,0,0,0,0,,2012/12/172012-12-23,71323,467783,2046,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/17,11:19.7\r\n6,593912,һĶ,1385,36763,38,25,37,14,-79,-68,-79,-3,,2012/12/172012-12-23,71323,467783,2046,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/17,11:19.7\r\n7,613851,Ϲ,279,2445,10,17,28,5,-72,-52,-72,-3,,2012/12/172012-12-23,71323,467783,2046,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/17,11:19.8\r\n8,611325,׼ѩɽ,194,194,7,3,29,8,0,0,0,0,,2012/12/172012-12-23,71323,467783,2046,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/17,11:19.8\r\n9,594201,޲,161,205,4,216,45,119,0,0,0,0,,2012/12/172012-12-23,71323,467783,2046,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/17,11:19.8\r\n10,611456,ʱ,156,898,3,73,56,202,-16,-16,-16,-2,,2012/12/172012-12-23,71323,467783,2046,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/17,11:19.8\r\n1,610009,ه;̩֮,30851,30863,974,5,32,65,0,0,0,0,,2012/12/102012-12-16,51010,435147,1518,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/10,11:20.1\r\n2,353063,ɵƯ,10072,54307,261,25,39,30,-40,-15,-39,-1,,2012/12/102012-12-16,51010,435147,1518,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/10,11:20.1\r\n3,593912,һĶ,6561,35377,177,18,37,21,-56,-35,-57,-1,,2012/12/102012-12-16,51010,435147,1518,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/10,11:20.2\r\n4,613851,Ϲ,1006,2165,34,10,29,9,-13,60,-11,9999,,2012/12/102012-12-16,51010,435147,1518,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/10,11:20.2\r\n5,587840,ʢ,670,7603,19,18,35,9,-77,-65,-78,-2,,2012/12/102012-12-16,51010,435147,1518,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/10,11:20.2\r\n6,405109,2012ĩ,477,58687,13,1130,36,14,-57,-47,-56,-1,,2012/12/102012-12-16,51010,435147,1518,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/10,11:20.2\r\n7,589237,Ŀ,311,893,7,27,43,133,133,117,130,1,,2012/12/102012-12-16,51010,435147,1518,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/10,11:20.2\r\n8,611456,ʱ,186,742,3,66,56,202,206,117,184,3,,2012/12/102012-12-16,51010,435147,1518,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/10,11:20.2\r\n9,612557,߳,175,730,6,11,31,6,-68,-42,-68,-3,,2012/12/102012-12-16,51010,435147,1518,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/10,11:20.2\r\n10,614215,Ծ,152,152,5,3,29,5,0,0,0,0,,2012/12/102012-12-16,51010,435147,1518,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/10,11:20.3\r\n1,353063,ɵƯ,16662,44235,431,18,39,41,-4,9,-1,9999,,2012/12/32012-12-09,38588,405439,1051,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/3,11:20.7\r\n2,593912,һĶ,15074,28816,412,11,37,32,10,54,11,9999,,2012/12/32012-12-09,38588,405439,1051,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/3,11:20.7\r\n3,587840,ʢ,2922,6933,87,11,34,15,-27,8,-28,9999,,2012/12/32012-12-09,38588,405439,1051,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/3,11:20.7\r\n4,613851,Ϲ,1159,1159,39,3,30,16,0,0,0,0,,2012/12/32012-12-09,38588,405439,1051,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/3,11:20.7\r\n5,405109,2012ĩ,1104,58210,31,1123,36,17,-62,-64,-61,-1,,2012/12/32012-12-09,38588,405439,1051,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/3,11:20.7\r\n6,612557,߳,545,556,18,4,31,10,0,0,0,0,,2012/12/32012-12-09,38588,405439,1051,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/3,11:20.8\r\n7,596138,ս,280,25297,9,32,33,6,-82,-70,-82,-2,,2012/12/32012-12-09,38588,405439,1051,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/3,11:20.8\r\n8,589237,Ŀ,133,583,3,20,43,126,17253,66,12902,46,,2012/12/32012-12-09,38588,405439,1051,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/3,11:20.8\r\n9,605157,޵ƻ,85,6381,2,34,37,15,-61,-67,-58,-2,,2012/12/32012-12-09,38588,405439,1051,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/3,11:20.8\r\n10,602959,ػ,80,2822,2,24,33,9,-45,-57,-42,-2,,2012/12/32012-12-09,38588,405439,1051,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/12/3,11:20.8\r\n1,353063,ɵƯ,17309,27573,435,11,40,46,69,62,77,9999,,2012/11/262012-12-02,40896,408063,1099,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/26,11:21.2\r\n2,593912,һĶ,13733,13742,370,4,37,44,0,0,0,0,,2012/11/262012-12-02,40896,408063,1099,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/26,11:21.2\r\n3,587840,ʢ,4004,4011,120,4,33,22,0,0,0,0,,2012/11/262012-12-02,40896,408063,1099,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/26,11:21.2\r\n4,405109,2012ĩ,2931,57106,79,1116,37,16,-68,-48,-67,-2,,2012/11/262012-12-02,40896,408063,1099,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/26,11:21.2\r\n5,596138,ս,1524,25017,48,25,32,10,-69,-51,-69,-2,,2012/11/262012-12-02,40896,408063,1099,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/26,11:21.2\r\n6,590133,޼ʬ,217,516,8,10,28,5,-27,33,-25,2,,2012/11/262012-12-02,40896,408063,1099,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/26,11:21.2\r\n7,605157,޵ƻ,215,6296,6,27,39,12,-74,-67,-74,-3,,2012/11/262012-12-02,40896,408063,1099,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/26,11:21.3\r\n8,602959,ػ,147,2742,4,17,35,7,-80,-73,-79,-3,,2012/11/262012-12-02,40896,408063,1099,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/26,11:21.3\r\n9,605974,Ҹ,129,129,4,6,30,6,0,0,0,0,,2012/11/262012-12-02,40896,408063,1099,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/26,11:21.3\r\n10,612246,Ӣ,126,301,4,10,29,3,-28,33,-25,1,,2012/11/262012-12-02,40896,408063,1099,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/26,11:21.3\r\n1,353063,ɵƯ,10264,10264,247,4,42,42,0,0,0,0,,2012/11/192012-11-25,28767,412759,778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/19,11:21.7\r\n2,405109,2012ĩ,9060,54175,241,1109,38,25,0,789108,0,233,,2012/11/192012-11-25,28767,412759,778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/19,11:21.7\r\n3,596138,ս,4888,23493,153,18,32,16,-48,-30,-48,-2,,2012/11/192012-11-25,28767,412759,778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/19,11:21.8\r\n4,605157,޵ƻ,840,6081,22,20,39,15,-63,-61,-64,-2,,2012/11/192012-11-25,28767,412759,778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/19,11:21.8\r\n5,602959,ػ,721,2595,20,10,36,9,-62,-17,-61,-2,,2012/11/192012-11-25,28767,412759,778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/19,11:21.8\r\n6,396492,Ӱ4,612,21314,18,32,35,13,-65,-60,-66,-2,,2012/11/192012-11-25,28767,412759,778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/19,11:21.8\r\n7,610215,̫2Ӣ,330,11811,8,32,40,7,-81,-74,-81,-2,,2012/11/192012-11-25,28767,412759,778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/19,11:21.8\r\n8,590133,޼ʬ,299,299,10,3,29,9,0,0,0,0,,2012/11/192012-11-25,28767,412759,778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/19,11:21.8\r\n9,603304,Ӱ׷,273,1191,9,13,30,7,-70,-57,-71,-3,,2012/11/192012-11-25,28767,412759,778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/19,11:21.8\r\n10,593935,Ұ׻,187,583,6,10,30,4,-53,-10,-51,-2,,2012/11/192012-11-25,28767,412759,778,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/19,11:21.9\r\n1,596138,ս,9338,18606,296,11,32,21,1,59,1,9999,,2012/11/122012-11-18,21175,441387,641,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/12,11:22.5\r\n2,605157,޵ƻ,2280,5240,60,13,38,17,-23,-21,-24,2,,2012/11/122012-11-18,21175,441387,641,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/12,11:22.5\r\n3,602959,ػ,1874,1874,51,3,37,19,0,0,0,0,,2012/11/122012-11-18,21175,441387,641,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/12,11:22.5\r\n4,396492,Ӱ4,1758,20702,53,25,33,16,-49,-49,-49,-1,,2012/11/122012-11-18,21175,441387,641,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/12,11:22.5\r\n5,610215,̫2Ӣ,1756,11482,45,25,39,10,-52,-45,-52,-3,,2012/11/122012-11-18,21175,441387,641,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/12,11:22.5\r\n6,603304,Ӱ׷,918,919,31,6,30,10,0,0,0,0,,2012/11/122012-11-18,21175,441387,641,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/12,11:22.5\r\n7,609069,,448,991,15,10,29,8,-18,42,-15,9999,,2012/11/122012-11-18,21175,441387,641,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/12,11:22.6\r\n8,593935,Ұ׻,396,397,13,3,31,7,0,0,0,0,,2012/11/122012-11-18,21175,441387,641,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/12,11:22.6\r\n9,589237,Ŀ,343,391,8,-1,44,122,0,0,0,0,,2012/11/122012-11-18,21175,441387,641,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/12,11:22.6\r\n10,593691,һα,308,308,10,6,32,8,0,0,0,0,,2012/11/122012-11-18,21175,441387,641,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/12,11:22.6\r\n1,596138,ս,9267,9267,293,4,32,34,0,0,0,0,,2012/11/52012-11-11,23936,434331,713,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/5,11:23.0\r\n2,610215,̫2Ӣ,3635,9726,93,18,39,12,-33,18,-31,9999,,2012/11/52012-11-11,23936,434331,713,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/5,11:23.0\r\n3,396492,Ӱ4,3417,18944,103,18,33,15,-52,-38,-53,-2,,2012/11/52012-11-11,23936,434331,713,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/5,11:23.0\r\n4,605157,޵ƻ,2957,2960,80,6,37,17,0,0,0,0,,2012/11/52012-11-11,23936,434331,713,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/5,11:23.0\r\n5,566512,ȫ,1067,11280,32,23,33,12,-61,-48,-63,-2,,2012/11/52012-11-11,23936,434331,713,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/5,11:23.1\r\n6,612124,ѩ11,546,785,11,11,49,28,128,-30,97,3,,2012/11/52012-11-11,23936,434331,713,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/5,11:23.1\r\n7,609069,,543,543,18,3,30,13,0,0,0,0,,2012/11/52012-11-11,23936,434331,713,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/5,11:23.1\r\n8,594376,ٰһ,351,351,12,3,30,8,0,0,0,0,,2012/11/52012-11-11,23936,434331,713,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/5,11:23.1\r\n9,594617,Х֮,305,15615,9,31,35,10,-72,-66,-71,-4,,2012/11/52012-11-11,23936,434331,713,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/5,11:23.1\r\n10,613385,,293,1168,10,13,30,6,-66,-49,-66,-4,,2012/11/52012-11-11,23936,434331,713,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/11/5,11:23.1\r\n1,396492,Ӱ4,7173,15527,221,11,33,20,-14,42,-15,9999,,2012/10/292012-11-04,21284,422400,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/29,11:23.6\r\n2,610215,̫2Ӣ,5421,6091,136,11,40,20,710,3038,1265,5,,2012/10/292012-11-04,21284,422400,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/29,11:23.6\r\n3,566512,ȫ,2763,10213,86,16,32,16,-38,-37,-38,-1,,2012/10/292012-11-04,21284,422400,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/29,11:23.6\r\n4,612684,˹,1322,1322,37,6,35,10,0,0,0,0,,2012/10/292012-11-04,21284,422400,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/29,11:23.7\r\n5,594617,Х֮,1078,15310,30,24,36,11,-64,-55,-63,-2,,2012/10/292012-11-04,21284,422400,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/29,11:23.7\r\n6,613385,,865,875,29,6,30,9,0,0,0,0,,2012/10/292012-11-04,21284,422400,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/29,11:23.7\r\n7,591771,ĺ֮4ϣ,861,2937,26,13,33,9,-59,-52,-60,-3,,2012/10/292012-11-04,21284,422400,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/29,11:23.7\r\n8,610434,е,524,1847,20,47,26,50,-27,-27,-27,-2,,2012/10/292012-11-04,21284,422400,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/29,11:23.7\r\n9,612124,ѩ11,239,239,6,4,42,10,0,0,0,0,,2012/10/292012-11-04,21284,422400,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/29,11:23.8\r\n10,602848,쫷Ӫ2,179,11549,5,29,33,8,-79,-77,-79,-5,,2012/10/292012-11-04,21284,422400,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/29,11:23.8\r\n1,396492,Ӱ4,8354,8354,259,4,32,34,0,0,0,0,,2012/10/222012-10-28,22265,423795,681,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/22,11:24.2\r\n2,566512,ȫ,4422,7449,140,9,32,16,46,155,50,1,,2012/10/222012-10-28,22265,423795,681,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/22,11:24.2\r\n3,594617,Х֮,2965,14232,80,17,37,14,-54,-39,-51,-2,,2012/10/222012-10-28,22265,423795,681,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/22,11:24.2\r\n4,591771,ĺ֮4ϣ,2076,2076,66,6,31,11,0,0,0,0,,2012/10/222012-10-28,22265,423795,681,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/22,11:24.2\r\n5,602848,쫷Ӫ2,841,11371,26,22,33,9,-74,-59,-75,-3,,2012/10/222012-10-28,22265,423795,681,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/22,11:24.2\r\n6,610434,е,713,1323,28,40,26,50,82,24,77,4,,2012/10/222012-10-28,22265,423795,681,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/22,11:24.2\r\n7,610215,̫2Ӣ,670,670,10,4,67,46,0,0,0,0,,2012/10/222012-10-28,22265,423795,681,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/22,11:24.2\r\n8,596830,·,453,2653,16,17,29,8,-63,-51,-62,-4,,2012/10/222012-10-28,22265,423795,681,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/22,11:24.3\r\n9,605242,ȿ,275,1078,8,13,36,10,-66,-67,-69,-3,,2012/10/222012-10-28,22265,423795,681,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/22,11:24.3\r\n10,590269,̫1㿪ʼ,265,14682,7,32,40,8,-72,-65,-71,-5,,2012/10/222012-10-28,22265,423795,681,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/22,11:24.3\r\n1,594617,Х֮,6424,11267,164,10,39,17,33,122,32,1,,2012/10/152012-10-21,19830,446538,579,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/15,11:24.8\r\n2,602848,쫷Ӫ2,3293,10529,103,15,32,15,-42,-27,-42,-1,,2012/10/152012-10-21,19830,446538,579,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/15,11:24.8\r\n3,566512,ȫ,3027,3027,94,2,32,28,0,0,0,0,,2012/10/152012-10-21,19830,446538,579,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/15,11:24.8\r\n4,596830,·,1235,2200,42,10,30,10,28,83,31,3,,2012/10/152012-10-21,19830,446538,579,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/15,11:24.8\r\n5,590269,̫1㿪ʼ,943,14417,23,25,42,10,-53,-54,-54,-2,,2012/10/152012-10-21,19830,446538,579,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/15,11:24.8\r\n6,605242,ȿ,803,803,24,6,33,10,0,0,0,0,,2012/10/152012-10-21,19830,446538,579,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/15,11:24.8\r\n7,566084,ʹ,594,12875,17,24,35,11,-63,-66,-65,-2,,2012/10/152012-10-21,19830,446538,579,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/15,11:24.9\r\n8,596122,ع,554,10606,17,23,33,9,-70,-62,-70,-4,,2012/10/152012-10-21,19830,446538,579,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/15,11:24.9\r\n9,604029,ѵ׷,552,1190,19,10,30,7,-13,42,-12,1,,2012/10/152012-10-21,19830,446538,579,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/15,11:24.9\r\n10,610434,е,391,610,16,33,25,35,217,89,214,4,,2012/10/152012-10-21,19830,446538,579,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/15,11:24.9\r\n1,602848,쫷Ӫ2,5674,7237,178,8,32,19,263,515,264,8,,2012/10/82012-10-14,21247,452216,621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/8,11:25.4\r\n2,594617,Х֮,4844,4844,124,3,39,29,0,0,0,0,,2012/10/82012-10-14,21247,452216,621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/8,11:25.4\r\n3,590269,̫1㿪ʼ,2008,13474,49,18,41,10,-75,-40,-75,-2,,2012/10/82012-10-14,21247,452216,621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/8,11:25.4\r\n4,596122,ع,1820,10053,57,16,32,12,-72,-41,-72,-1,,2012/10/82012-10-14,21247,452216,621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/8,11:25.4\r\n5,566084,ʹ,1619,12281,49,17,33,11,-79,-50,-80,-3,,2012/10/82012-10-14,21247,452216,621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/8,11:25.4\r\n6,589209,ͭȸ̨,1166,9959,36,19,32,11,-79,-47,-79,-2,,2012/10/82012-10-14,21247,452216,621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/8,11:25.4\r\n7,596830,·,965,965,32,3,30,14,0,0,0,0,,2012/10/82012-10-14,21247,452216,621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/8,11:25.4\r\n8,596049,Σչϵ,709,6043,21,18,34,9,-75,-54,-76,-3,,2012/10/82012-10-14,21247,452216,621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/8,11:25.5\r\n9,588879,¹ԭ,673,13773,14,30,47,28,-68,-53,-68,-2,,2012/10/82012-10-14,21247,452216,621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/8,11:25.5\r\n10,604029,ѵ׷,638,638,21,3,30,11,0,0,0,0,,2012/10/82012-10-14,21247,452216,621,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/8,11:25.5\r\n1,590269,̫1㿪ʼ,8064,11466,201,11,40,24,137,49,135,9999,,2012/10/12012-10-07,39495,495787,1139,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/1,11:25.9\r\n2,566084,ʹ,7898,10662,241,10,33,27,186,170,184,1,,2012/10/12012-10-07,39495,495787,1139,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/1,11:25.9\r\n3,596122,ع,6536,8233,199,9,33,24,289,277,290,4,,2012/10/12012-10-07,39495,495787,1139,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/1,11:25.9\r\n4,589209,ͭȸ̨,5536,8793,170,12,33,26,70,11,67,-2,,2012/10/12012-10-07,39495,495787,1139,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/1,11:25.9\r\n5,596049,Σչϵ,2891,5334,86,11,34,17,18,22,21,9999,,2012/10/12012-10-07,39495,495787,1139,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/1,11:25.9\r\n6,613207,״ð,2142,2366,62,8,35,20,856,737,846,6,,2012/10/12012-10-07,39495,495787,1139,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/1,11:25.9\r\n7,588879,¹ԭ,2101,13100,45,23,47,41,-23,-73,-35,-3,,2012/10/12012-10-07,39495,495787,1139,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/1,11:25.9\r\n8,605129,2,1744,33158,51,34,35,26,-1,-57,-6,-2,,2012/10/12012-10-07,39495,495787,1139,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/1,11:26.0\r\n9,602848,쫷Ӫ2,1563,1563,49,1,32,32,0,0,0,0,,2012/10/12012-10-07,39495,495787,1139,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/1,11:26.0\r\n10,608204,Ů֮ԼĴѩ,361,410,12,8,29,8,624,533,618,6,,2012/10/12012-10-07,39495,495787,1139,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/10/1,11:26.0\r\n1,590269,̫1㿪ʼ,3399,3402,85,4,40,15,0,0,0,0,,2012/9/242012-09-30,21034,418194,609,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/24,11:26.6\r\n2,589209,ͭȸ̨,3257,3257,101,5,32,17,0,0,0,0,,2012/9/242012-09-30,21034,418194,609,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/24,11:26.6\r\n3,566084,ʹ,2764,2764,85,3,33,26,0,0,0,0,,2012/9/242012-09-30,21034,418194,609,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/24,11:26.6\r\n4,588879,¹ԭ,2726,10999,69,16,39,17,-54,-53,-58,-3,,2012/9/242012-09-30,21034,418194,609,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/24,11:26.7\r\n5,596049,Σչϵ,2443,2443,71,4,34,17,0,0,0,0,,2012/9/242012-09-30,21034,418194,609,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/24,11:26.7\r\n6,605129,2,1752,31415,54,27,32,12,-65,-49,-65,-4,,2012/9/242012-09-30,21034,418194,609,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/24,11:26.7\r\n7,596122,ع,1678,1697,51,2,33,23,0,0,0,0,,2012/9/242012-09-30,21034,418194,609,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/24,11:26.7\r\n8,602960,˹,818,22321,21,29,39,10,-74,-56,-73,-5,,2012/9/242012-09-30,21034,418194,609,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/24,11:26.7\r\n9,566673,ڰʿ,583,33837,15,35,38,12,-73,-59,-73,-5,,2012/9/242012-09-30,21034,418194,609,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/24,11:26.7\r\n10,603688,Ů,539,1523,19,11,29,6,-45,2,-43,-4,,2012/9/242012-09-30,21034,418194,609,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/24,11:26.8\r\n1,588879,¹ԭ,5943,8274,164,9,36,19,155,409,164,4,,2012/9/172012-09-23,19948,387406,565,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/17,11:27.2\r\n2,605129,2,5077,29662,155,20,33,18,-46,-29,-46,-1,,2012/9/172012-09-23,19948,387406,565,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/17,11:27.3\r\n3,602960,˹,3115,21503,78,22,40,16,-47,-32,-47,-1,,2012/9/172012-09-23,19948,387406,565,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/17,11:27.3\r\n4,566673,ڰʿ,2155,33255,56,28,39,18,-44,-44,-45,-1,,2012/9/172012-09-23,19948,387406,565,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/17,11:27.3\r\n5,385555,֩,1487,30672,37,28,40,14,-47,-42,-46,-1,,2012/9/172012-09-23,19948,387406,565,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/17,11:27.3\r\n6,603688,Ů,983,983,33,4,30,11,0,0,0,0,,2012/9/172012-09-23,19948,387406,565,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/17,11:27.3\r\n7,612946,³ð3D,481,1217,14,10,33,8,-35,3,-32,-1,,2012/9/172012-09-23,19948,387406,565,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/17,11:27.3\r\n8,608245,ͯ,357,1017,12,10,30,5,-46,17,-45,-1,,2012/9/172012-09-23,19948,387406,565,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/17,11:27.3\r\n9,594313,ǳӪ,73,73,3,3,28,4,0,0,0,0,,2012/9/172012-09-23,19948,387406,565,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/17,11:27.4\r\n10,593944,ҵ,64,64,2,3,29,3,0,0,0,0,,2012/9/172012-09-23,19948,387406,565,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/17,11:27.4\r\n1,605129,2,9455,24585,290,13,33,23,-38,4,-38,9999,,2012/9/102012-09-16,26359,399534,736,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/10,11:28.1\r\n2,602960,˹,5902,18389,148,15,40,21,-39,-13,-39,9999,,2012/9/102012-09-16,26359,399534,736,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/10,11:28.1\r\n3,566673,ڰʿ,3859,31099,102,21,38,19,-44,-26,-44,9999,,2012/9/102012-09-16,26359,399534,736,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/10,11:28.2\r\n4,385555,֩,2805,29185,69,21,41,15,-45,-28,-44,9999,,2012/9/102012-09-16,26359,399534,736,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/10,11:28.2\r\n5,588879,¹ԭ,2331,2331,62,2,37,37,0,0,0,0,,2012/9/102012-09-16,26359,399534,736,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/10,11:28.2\r\n6,612946,³ð3D,736,736,21,3,34,12,0,0,0,0,,2012/9/102012-09-16,26359,399534,736,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/10,11:28.2\r\n7,608245,ͯ,661,661,22,3,30,10,0,0,0,0,,2012/9/102012-09-16,26359,399534,736,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/10,11:28.2\r\n8,595608,ʧӵ,210,15530,6,34,34,27,-58,-40,-57,-3,,2012/9/102012-09-16,26359,399534,736,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/10,11:28.2\r\n9,594117,԰,58,127,2,10,29,2,-16,29,-13,9999,,2012/9/102012-09-16,26359,399534,736,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/10,11:28.3\r\n10,590255,Ӷʨ2,50,7088,2,31,28,3,-45,-33,-44,-4,,2012/9/102012-09-16,26359,399534,736,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/10,11:28.3\r\n1,605129,2,15130,15130,468,6,32,39,0,0,0,0,,2012/9/32012-09-09,37927,398545,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/3,11:29.1\r\n2,602960,˹,9692,12486,241,8,40,29,247,520,253,1,,2012/9/32012-09-09,37927,398545,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/3,11:29.2\r\n3,566673,ڰʿ,6912,27240,181,14,38,24,-66,-46,-67,-1,,2012/9/32012-09-09,37927,398545,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/3,11:29.2\r\n4,385555,֩,5066,26381,122,14,41,19,-76,-55,-76,-3,,2012/9/32012-09-09,37927,398545,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/3,11:29.2\r\n5,595608,ʧӵ,505,15320,14,27,36,38,14,-67,4,-1,,2012/9/32012-09-09,37927,398545,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/3,11:29.2\r\n6,590255,Ӷʨ2,90,7038,3,24,29,4,-68,-39,-67,9999,,2012/9/32012-09-09,37927,398545,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/3,11:29.2\r\n7,555826,,86,21531,3,752,26,26,56676,2963,5026,64,,2012/9/32012-09-09,37927,398545,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/3,11:29.2\r\n8,609692,HOLDס,78,4360,3,18,30,3,-77,-45,-75,-3,,2012/9/32012-09-09,37927,398545,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/3,11:29.2\r\n9,594117,԰,69,69,2,3,30,3,0,0,0,0,,2012/9/32012-09-09,37927,398545,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/3,11:29.3\r\n10,612679,ֲù,45,1416,2,24,30,4,-53,-23,-55,1,,2012/9/32012-09-09,37927,398545,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/9/3,11:29.3\r\n1,385555,֩,21037,21315,518,7,41,37,0,0,0,11,,2012/8/272012-09-02,46034,381163,1206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/27,11:29.6\r\n2,566673,ڰʿ,20095,20329,547,7,37,40,0,0,0,12,,2012/8/272012-09-02,46034,381163,1206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/27,11:29.6\r\n3,602960,˹,2794,2794,68,1,41,51,0,0,0,0,,2012/8/272012-09-02,46034,381163,1206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/27,11:29.6\r\n4,595608,ʧӵ,442,14815,14,20,33,12,-93,-86,-93,-3,,2012/8/272012-09-02,46034,381163,1206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/27,11:29.7\r\n5,609692,HOLDס,341,4282,11,11,32,7,-91,-70,-91,-1,,2012/8/272012-09-02,46034,381163,1206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/27,11:29.7\r\n6,590255,Ӷʨ2,277,6948,10,17,29,7,-93,-79,-92,-1,,2012/8/272012-09-02,46034,381163,1206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/27,11:29.7\r\n7,593828,,223,23112,6,27,35,12,-95,-90,-95,-5,,2012/8/272012-09-02,46034,381163,1206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/27,11:29.7\r\n8,597102,Ұ̫,153,7089,6,24,27,9,-82,-71,-80,-1,,2012/8/272012-09-02,46034,381163,1206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/27,11:29.7\r\n9,596403,߾,136,2844,4,17,31,6,-92,-78,-92,-3,,2012/8/272012-09-02,46034,381163,1206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/27,11:29.7\r\n10,559514,ռ,119,2150,4,24,27,15,-69,-63,-69,9999,,2012/8/272012-09-02,46034,381163,1206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/27,11:29.8\r\n1,595608,ʧӵ,6725,14373,207,13,32,25,-12,-8,-14,9999,,2012/8/202012-08-26,29946,462867,903,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/20,11:30.2\r\n2,593828,,4577,22889,127,20,36,24,-32,-32,-33,9999,,2012/8/202012-08-26,29946,462867,903,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/20,11:30.2\r\n3,604230,ʱ4½Ư,4386,44743,116,31,38,25,-15,-16,-15,9999,,2012/8/202012-08-26,29946,462867,903,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/20,11:30.2\r\n4,609692,HOLDס,3936,3941,121,4,33,23,0,0,0,0,,2012/8/202012-08-26,29946,462867,903,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/20,11:30.2\r\n5,590255,Ӷʨ2,3892,6671,125,10,31,19,40,82,41,-1,,2012/8/202012-08-26,29946,462867,903,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/20,11:30.2\r\n6,596403,߾,1655,2708,52,10,32,17,57,65,61,9999,,2012/8/202012-08-26,29946,462867,903,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/20,11:30.2\r\n7,597102,Ұ̫,864,6937,28,17,31,12,-63,-53,-63,-2,,2012/8/202012-08-26,29946,462867,903,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/20,11:30.3\r\n8,612679,ֲù,739,1275,25,10,30,14,38,52,37,2,,2012/8/202012-08-26,29946,462867,903,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/20,11:30.3\r\n9,594595,ЦǶʿ,387,387,12,4,31,11,0,0,0,0,,2012/8/202012-08-26,29946,462867,903,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/20,11:30.3\r\n10,559514,ռ,383,2031,14,17,27,18,-50,-49,-50,-1,,2012/8/202012-08-26,29946,462867,903,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/20,11:30.3\r\n1,595608,ʧӵ,7643,7648,240,6,32,27,0,0,0,0,,2012/8/132012-08-19,30064,455964,910,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/13,11:30.7\r\n2,593828,,6778,18312,190,13,36,24,-41,-29,-42,-1,,2012/8/132012-08-19,30064,455964,910,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/13,11:30.7\r\n3,604230,ʱ4½Ư,5144,40357,136,24,38,25,-34,-38,-34,-1,,2012/8/132012-08-19,30064,455964,910,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/13,11:30.7\r\n4,590255,Ӷʨ2,2779,2779,89,3,31,25,0,0,0,0,,2012/8/132012-08-19,30064,455964,910,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/13,11:30.7\r\n5,597102,Ұ̫,2333,6072,76,10,31,15,-38,31,-34,-2,,2012/8/132012-08-19,30064,455964,910,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/13,11:30.7\r\n6,596403,߾,1053,1053,32,3,32,17,0,0,0,0,,2012/8/132012-08-19,30064,455964,910,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/13,11:30.8\r\n7,358284,еʦ,899,8581,28,18,32,14,-70,-66,-71,-3,,2012/8/132012-08-19,30064,455964,910,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/13,11:30.8\r\n8,603658,̫һ,820,3254,27,13,31,12,-66,-58,-67,-3,,2012/8/132012-08-19,30064,455964,910,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/13,11:30.8\r\n9,559514,ռ,774,1648,28,10,27,19,-11,24,-10,-3,,2012/8/132012-08-19,30064,455964,910,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/13,11:30.8\r\n10,612679,ֲù,536,536,18,3,30,15,0,0,0,0,,2012/8/132012-08-19,30064,455964,910,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/13,11:30.8\r\n1,593828,,11530,11534,328,6,35,29,0,0,0,0,,2012/8/62012-08-12,31572,452034,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/6,11:31.4\r\n2,604230,ʱ4½Ư,7849,35213,206,17,38,23,-48,-40,-48,-1,,2012/8/62012-08-12,31572,452034,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/6,11:31.4\r\n3,597102,Ұ̫,3739,3740,116,3,32,31,0,0,0,0,,2012/8/62012-08-12,31572,452034,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/6,11:31.4\r\n4,358284,еʦ,3014,7682,96,11,31,17,-35,3,-36,-2,,2012/8/62012-08-12,31572,452034,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/6,11:31.4\r\n5,603658,̫һ,2434,2434,81,6,30,16,0,0,0,0,,2012/8/62012-08-12,31572,452034,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/6,11:31.5\r\n6,559514,ռ,874,874,32,3,28,26,0,0,0,0,,2012/8/62012-08-12,31572,452034,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/6,11:31.5\r\n7,596043,㶨,755,1506,26,10,29,10,1,42,2,-1,,2012/8/62012-08-12,31572,452034,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/6,11:31.5\r\n8,592176,ڽ,334,5081,10,17,33,8,-87,-78,-88,-5,,2012/8/62012-08-12,31572,452034,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/6,11:31.5\r\n9,603078,˹Ĺ,147,1295,3,17,48,6,-76,-77,-79,9999,,2012/8/62012-08-12,31572,452034,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/6,11:31.5\r\n10,588953,,140,5777,4,28,32,9,-79,-76,-80,-3,,2012/8/62012-08-12,31572,452034,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/8/6,11:31.5\r\n1,604230,ʱ4½Ư,14996,27364,394,10,38,26,21,107,22,9999,,2012/7/302012-08-05,28071,449749,804,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/30,11:31.9\r\n2,358284,еʦ,4668,4668,149,4,31,26,0,0,0,0,,2012/7/302012-08-05,28071,449749,804,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/30,11:31.9\r\n3,592176,ڽ,2526,4748,82,10,31,14,14,82,15,1,,2012/7/302012-08-05,28071,449749,804,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/30,11:31.9\r\n4,589501,Ƥ2,996,70162,25,39,40,15,-66,-63,-65,-1,,2012/7/302012-08-05,28071,449749,804,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/30,11:31.9\r\n5,573396,Ĵ,986,19062,31,25,32,11,-70,-59,-70,-3,,2012/7/302012-08-05,28071,449749,804,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/30,11:31.9\r\n6,596043,㶨,751,751,25,3,30,14,0,0,0,0,,2012/7/302012-08-05,28071,449749,804,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/30,11:31.9\r\n7,588953,,674,5637,22,21,31,11,-66,-55,-66,-1,,2012/7/302012-08-05,28071,449749,804,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/30,11:31.9\r\n8,595595,,666,17264,20,31,33,11,-70,-58,-71,-3,,2012/7/302012-08-05,28071,449749,804,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/30,11:32.0\r\n9,603078,˹Ĺ,615,1148,14,10,43,7,15,18,14,-1,,2012/7/302012-08-05,28071,449749,804,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/30,11:32.0\r\n10,595867,ַ,375,378,12,4,30,8,0,0,0,0,,2012/7/302012-08-05,28071,449749,804,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/30,11:32.0\r\n1,604230,ʱ4½Ư,12368,12368,323,3,38,45,0,0,0,0,,2012/7/232012-07-29,27998,428481,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/23,11:32.4\r\n2,573396,Ĵ,3321,18076,103,18,32,15,-52,-29,-51,-1,,2012/7/232012-07-29,27998,428481,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/23,11:32.4\r\n3,589501,Ƥ2,2912,69166,72,32,41,16,-49,-33,-48,-1,,2012/7/232012-07-29,27998,428481,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/23,11:32.4\r\n4,592176,ڽ,2222,2222,71,3,31,22,0,0,0,0,,2012/7/232012-07-29,27998,428481,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/23,11:32.4\r\n5,595595,,2216,16598,68,24,32,16,-45,-21,-45,-2,,2012/7/232012-07-29,27998,428481,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/23,11:32.4\r\n6,588953,,1960,4963,63,14,31,14,-35,-10,-35,-2,,2012/7/232012-07-29,27998,428481,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/23,11:32.4\r\n7,611587,󶵡,731,4480,24,20,30,11,-54,-30,-54,-2,,2012/7/232012-07-29,27998,428481,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/23,11:32.4\r\n8,603078,˹Ĺ,533,533,13,3,42,7,0,0,0,0,,2012/7/232012-07-29,27998,428481,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/23,11:32.5\r\n9,595603,ʮ¼,350,1907,12,17,29,11,-57,-47,-57,-3,,2012/7/232012-07-29,27998,428481,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/23,11:32.5\r\n10,610945,̽,346,752,11,10,31,8,-15,27,-13,-1,,2012/7/232012-07-29,27998,428481,798,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/23,11:32.5\r\n1,573396,Ĵ,6941,14754,212,11,33,22,-11,53,-11,1,,2012/7/162012-07-22,25307,418586,753,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/16,11:33.2\r\n2,589501,Ƥ2,5708,66254,139,25,41,21,-44,-28,-43,-1,,2012/7/162012-07-22,25307,418586,753,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/16,11:33.2\r\n3,595595,,4038,14382,123,17,33,23,-34,-25,-34,9999,,2012/7/162012-07-22,25307,418586,753,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/16,11:33.2\r\n4,588953,,2999,3002,96,7,31,20,0,0,0,28,,2012/7/162012-07-22,25307,418586,753,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/16,11:33.3\r\n5,611587,󶵡,1585,3749,52,13,31,17,-27,-13,-27,-1,,2012/7/162012-07-22,25307,418586,753,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/16,11:33.3\r\n6,595603,ʮ¼,814,1557,27,10,30,13,10,57,10,2,,2012/7/162012-07-22,25307,418586,753,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/16,11:33.3\r\n7,566546,˹3,800,20916,20,45,40,25,-1,2,-1,9999,,2012/7/162012-07-22,25307,418586,753,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/16,11:33.3\r\n8,611819,սǶӵ۹,598,1784,21,11,28,9,-50,6,-50,-2,,2012/7/162012-07-22,25307,418586,753,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/16,11:33.3\r\n9,610945,̽,406,406,13,3,31,11,0,0,0,0,,2012/7/162012-07-22,25307,418586,753,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/16,11:33.3\r\n10,608237,Ħׯ԰2,256,2352,8,18,34,11,-60,-58,-60,-1,,2012/7/162012-07-22,25307,418586,753,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/16,11:33.4\r\n1,589501,Ƥ2,10187,60546,246,18,41,26,-54,-35,-54,9999,,2012/7/92012-07-15,32859,416982,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/9,11:33.9\r\n2,573396,Ĵ,7809,7813,238,4,33,38,0,0,0,0,,2012/7/92012-07-15,32859,416982,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/9,11:33.9\r\n3,595595,,6074,10344,186,10,33,26,42,90,45,-1,,2012/7/92012-07-15,32859,416982,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/9,11:33.9\r\n4,611587,󶵡,2164,2165,71,6,30,20,0,0,0,0,,2012/7/92012-07-15,32859,416982,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/9,11:33.9\r\n5,589150,䵱֮,1428,3376,47,10,30,13,-26,31,-24,-2,,2012/7/92012-07-15,32859,416982,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/9,11:33.9\r\n6,611819,սǶӵ۹,1186,1186,42,4,28,19,0,0,0,0,,2012/7/92012-07-15,32859,416982,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/9,11:33.9\r\n7,566546,˹3,805,20117,20,38,40,26,-37,-40,-37,-2,,2012/7/92012-07-15,32859,416982,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/9,11:33.9\r\n8,595603,ʮ¼,743,743,25,3,30,19,0,0,0,0,,2012/7/92012-07-15,32859,416982,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/9,11:34.0\r\n9,608237,Ħׯ԰2,641,2096,19,11,33,11,-56,-26,-56,-5,,2012/7/92012-07-15,32859,416982,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/9,11:34.0\r\n10,611571,,380,751,13,10,30,10,3,26,5,9999,,2012/7/92012-07-15,32859,416982,956,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/9,11:34.0\r\n1,589501,Ƥ2,21984,50358,531,11,41,37,-23,47,-24,9999,,2012/7/22012-07-08,36875,400195,987,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/2,11:34.3\r\n2,595595,,4265,4270,128,3,33,34,0,0,0,0,,2012/7/22012-07-08,36875,400195,987,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/2,11:34.3\r\n3,589150,䵱֮,1941,1948,62,3,31,23,0,0,0,0,,2012/7/22012-07-08,36875,400195,987,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/2,11:34.3\r\n4,608237,Ħׯ԰2,1456,1456,44,4,33,19,0,0,0,0,,2012/7/22012-07-08,36875,400195,987,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/2,11:34.4\r\n5,566546,˹3,1283,19311,32,31,40,25,-43,-55,-44,-1,,2012/7/22012-07-08,36875,400195,987,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/2,11:34.4\r\n6,602842,Ϸ,1250,17159,33,25,38,19,-59,-60,-62,-4,,2012/7/22012-07-08,36875,400195,987,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/2,11:34.4\r\n7,588648,ƦӢ֮ȫ濪ս,1111,8556,35,20,32,16,-61,-54,-61,-4,,2012/7/22012-07-08,36875,400195,987,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/2,11:34.4\r\n8,596524,2˹,990,2816,35,11,28,11,-46,14,-46,-3,,2012/7/22012-07-08,36875,400195,987,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/2,11:34.4\r\n9,590475,֮Σ,396,1103,14,11,29,9,-44,8,-43,-1,,2012/7/22012-07-08,36875,400195,987,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/2,11:34.4\r\n10,611571,,370,372,12,3,30,12,0,0,0,0,,2012/7/22012-07-08,36875,400195,987,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/7/2,11:34.5\r\n1,589501,Ƥ2,28375,28375,696,4,41,71,0,0,0,0,,2012/6/252012-07-01,43764,392503,1170,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/25,11:34.8\r\n2,602842,Ϸ,3018,15908,87,18,35,20,-55,-41,-56,-1,,2012/6/252012-07-01,43764,392503,1170,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/25,11:34.9\r\n3,588648,ƦӢ֮ȫ濪ս,2839,7446,91,13,31,19,-38,-11,-38,9999,,2012/6/252012-07-01,43764,392503,1170,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/25,11:34.9\r\n4,566546,˹3,2252,18029,58,24,39,21,-53,-39,-53,-2,,2012/6/252012-07-01,43764,392503,1170,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/25,11:34.9\r\n5,596524,2˹,1826,1826,65,4,28,24,0,0,0,0,,2012/6/252012-07-01,43764,392503,1170,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/25,11:34.9\r\n6,594058,,983,2606,32,11,31,12,-39,-3,-38,9999,,2012/6/252012-07-01,43764,392503,1170,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/25,11:34.9\r\n7,593764,3,949,50122,23,38,40,16,-69,-60,-70,-3,,2012/6/252012-07-01,43764,392503,1170,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/25,11:34.9\r\n8,590475,֮Σ,706,706,25,4,29,17,0,0,0,0,,2012/6/252012-07-01,43764,392503,1170,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/25,11:34.9\r\n9,610004,¸Ҵ˵,610,2520,16,13,39,10,-68,-54,-69,-4,,2012/6/252012-07-01,43764,392503,1170,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/25,11:35.0\r\n10,593979,ҳ뱳,346,1122,13,40,26,77,143,48,127,5,,2012/6/252012-07-01,43764,392503,1170,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/25,11:35.0\r\n1,602842,Ϸ,6683,12890,196,11,34,27,8,24,7,9999,,2012/6/182012-06-24,26432,391617,764,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/18,11:35.3\r\n2,566546,˹3,4783,15777,122,17,39,26,-13,-40,-14,9999,,2012/6/182012-06-24,26432,391617,764,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/18,11:35.3\r\n3,588648,ƦӢ֮ȫ濪ս,4607,4607,146,6,32,27,0,0,0,0,,2012/6/182012-06-24,26432,391617,764,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/18,11:35.3\r\n4,593764,3,3096,49173,77,31,40,21,-35,-45,-35,-1,,2012/6/182012-06-24,26432,391617,764,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/18,11:35.3\r\n5,610004,¸Ҵ˵,1910,1910,50,6,38,15,0,0,0,0,,2012/6/182012-06-24,26432,391617,764,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/18,11:35.3\r\n6,594058,,1618,1623,51,4,32,19,0,0,0,0,,2012/6/182012-06-24,26432,391617,764,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/18,11:35.4\r\n7,603685,ع,854,1339,27,9,32,12,76,115,77,1,,2012/6/182012-06-24,26432,391617,764,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/18,11:35.4\r\n8,596552,һ,641,3321,20,17,33,13,-60,-58,-62,-4,,2012/6/182012-06-24,26432,391617,764,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/18,11:35.4\r\n9,596913,ҹҪվ,452,981,15,11,30,11,-14,-3,-14,-2,,2012/6/182012-06-24,26432,391617,764,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/18,11:35.4\r\n10,610966,ɾ,275,2244,9,17,30,10,-73,-69,-73,-5,,2012/6/182012-06-24,26432,391617,764,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/18,11:35.4\r\n1,602842,Ϸ,6207,6207,183,4,34,31,0,0,0,0,,2012/6/112012-06-17,22751,395340,648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/11,11:35.7\r\n2,566546,˹3,5500,10995,142,10,39,18,0,60,1,9999,,2012/6/112012-06-17,22751,395340,648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/11,11:35.8\r\n3,593764,3,4780,46076,119,24,40,18,-48,-34,-47,-2,,2012/6/112012-06-17,22751,395340,648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/11,11:35.8\r\n4,596552,һ,1598,2680,51,10,31,15,49,101,52,1,,2012/6/112012-06-17,22751,395340,648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/11,11:35.8\r\n5,610966,ɾ,1009,1968,35,10,29,12,5,78,7,1,,2012/6/112012-06-17,22751,395340,648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/11,11:35.8\r\n6,610881,,546,1183,18,10,31,9,-13,47,-12,1,,2012/6/112012-06-17,22751,395340,648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/11,11:35.8\r\n7,596913,ҹҪվ,528,528,18,4,30,12,0,0,0,0,,2012/6/112012-06-17,22751,395340,648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/11,11:35.8\r\n8,603685,ع,484,484,15,2,32,15,0,0,0,0,,2012/6/112012-06-17,22751,395340,648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/11,11:35.8\r\n9,609952,,384,56432,10,44,40,16,-74,-73,-74,-6,,2012/6/112012-06-17,22751,395340,648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/11,11:35.9\r\n10,608249,2012ϲϼϲ,340,340,11,3,31,10,0,0,0,0,,2012/6/112012-06-17,22751,395340,648,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/11,11:35.9\r\n1,593764,3,9172,41296,225,17,41,22,-46,-24,-47,9999,,2012/6/42012-06-10,23141,392294,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/4,11:36.2\r\n2,566546,˹3,5495,5495,141,3,39,29,0,0,0,0,,2012/6/42012-06-10,23141,392294,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/4,11:36.2\r\n3,609952,,1471,56048,37,37,40,16,-50,-41,-51,9999,,2012/6/42012-06-10,23141,392294,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/4,11:36.3\r\n4,604222,ѩ֮ħħ,1235,4045,39,10,31,12,-56,15,-57,9999,,2012/6/42012-06-10,23141,392294,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/4,11:36.3\r\n5,596552,һ,1074,1082,34,3,32,19,0,0,0,0,,2012/6/42012-06-10,23141,392294,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/4,11:36.3\r\n6,610966,ɾ,959,959,33,3,29,20,0,0,0,0,,2012/6/42012-06-10,23141,392294,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/4,11:36.3\r\n7,610881,,630,637,20,3,32,14,0,0,0,0,,2012/6/42012-06-10,23141,392294,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/4,11:36.3\r\n8,591970,,606,1910,15,11,40,10,-53,-5,-53,-2,,2012/6/42012-06-10,23141,392294,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/4,11:36.3\r\n9,594650,һҹ,457,962,15,10,31,7,-9,54,-5,-2,,2012/6/42012-06-10,23141,392294,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/4,11:36.4\r\n10,596607,˫,407,409,13,3,33,11,0,0,0,0,,2012/6/42012-06-10,23141,392294,627,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/6/4,11:36.4\r\n1,593764,3,17137,32124,426,10,40,32,14,77,16,9999,,2012/5/282012-06-03,32390,386526,876,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/28,11:37.1\r\n2,602908,溣,3503,3503,99,3,35,38,0,0,0,0,,2012/5/282012-06-03,32390,386526,876,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/28,11:37.1\r\n3,609952,,2931,54577,75,30,39,20,-52,-49,-50,-1,0,2012/5/282012-06-03,32390,386526,876,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/28,11:37.2\r\n4,604222,ѩ֮ħħ,2810,2810,91,3,31,32,0,0,0,0,,2012/5/282012-06-03,32390,386526,876,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/28,11:37.2\r\n5,610956,ǱͧܶԱ2,1589,1589,45,3,35,29,0,0,0,0,,2012/5/282012-06-03,32390,386526,876,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/28,11:37.2\r\n6,591970,,1303,1303,33,4,40,20,0,0,0,0,,2012/5/282012-06-03,32390,386526,876,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/28,11:37.2\r\n7,594650,һҹ,503,505,15,3,33,12,0,0,0,0,,2012/5/282012-06-03,32390,386526,876,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/28,11:37.2\r\n8,596098,սʿ̹֮,479,479,14,3,35,15,0,0,0,0,,2012/5/282012-06-03,32390,386526,876,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/28,11:37.2\r\n9,603725,Ǵս,451,3717,14,17,31,8,-71,-61,-71,-6,,2012/5/282012-06-03,32390,386526,876,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/28,11:37.3\r\n10,593979,ҳ뱳,189,270,7,12,25,28,131,-7,123,4,,2012/5/282012-06-03,32390,386526,876,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/28,11:37.3\r\n1,593764,3,14987,14987,367,3,41,48,0,0,0,0,,2012/5/212012-05-27,26665,356559,688,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/21,11:37.8\r\n2,609952,,6138,51646,151,23,41,20,-52,-24,-50,-1,0,2012/5/212012-05-27,26665,356559,688,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/21,11:37.8\r\n3,603725,Ǵս,1542,3266,49,10,31,10,-11,81,-9,9999,,2012/5/212012-05-27,26665,356559,688,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/21,11:37.8\r\n4,392023,ǹ,1155,3784,31,13,38,10,-56,-29,-55,-2,,2012/5/212012-05-27,26665,356559,688,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/21,11:37.8\r\n5,610525,¿ˡ ڵذ,452,1436,13,18,34,14,-21,-21,-21,4,,2012/5/212012-05-27,26665,356559,688,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/21,11:37.8\r\n6,595839,Ǵ,377,808,12,10,30,5,-13,50,-10,4,,2012/5/212012-05-27,26665,356559,688,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/21,11:37.8\r\n7,596420,̩̹˺3D,367,94478,9,48,43,15,-64,-53,-63,-3,,2012/5/212012-05-27,26665,356559,688,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/21,11:37.8\r\n8,595191,ƽٰ,316,14921,10,35,31,8,-57,-42,-56,-2,,2012/5/212012-05-27,26665,356559,688,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/21,11:37.9\r\n9,602933,ս,288,30906,8,40,35,10,-65,-55,-65,-4,,2012/5/212012-05-27,26665,356559,688,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/21,11:37.9\r\n10,594309,ӰӰ,251,1726,8,17,32,6,-63,-52,-64,-3,,2012/5/212012-05-27,26665,356559,688,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/21,11:37.9\r\n1,609952,,12677,45508,303,16,42,30,-39,-20,-39,9999,0,2012/5/142012-05-20,22742,348668,598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/14,11:38.3\r\n2,392023,ǹ,2628,2628,69,6,38,15,0,0,0,0,,2012/5/142012-05-20,22742,348668,598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/14,11:38.3\r\n3,603725,Ǵս,1724,1724,54,3,32,20,0,0,0,0,,2012/5/142012-05-20,22742,348668,598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/14,11:38.3\r\n4,596420,̩̹˺3D,1024,94111,24,41,43,19,-49,-44,-49,-2,,2012/5/142012-05-20,22742,348668,598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/14,11:38.3\r\n5,602933,ս,826,30619,24,33,35,13,-54,-47,-55,-2,,2012/5/142012-05-20,22742,348668,598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/14,11:38.3\r\n6,595191,ƽٰ,739,14605,23,28,32,11,-55,-35,-53,-2,,2012/5/142012-05-20,22742,348668,598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/14,11:38.4\r\n7,594309,ӰӰ,679,1475,22,10,31,8,-15,44,-15,-1,,2012/5/142012-05-20,22742,348668,598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/14,11:38.4\r\n8,589524,׷,606,1492,19,10,32,8,-30,19,-29,-3,,2012/5/142012-05-20,22742,348668,598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/14,11:38.4\r\n9,610525,¿ˡ ڵذ,570,984,17,11,34,14,38,2,36,-2,,2012/5/142012-05-20,22742,348668,598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/14,11:38.4\r\n10,595839,Ǵ,431,431,14,3,31,8,0,0,0,0,,2012/5/142012-05-20,22742,348668,598,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/14,11:38.4\r\n1,609952,,20894,32832,498,9,42,40,75,208,78,9999,0,2012/5/72012-05-13,29656,337553,754,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/7,11:38.7\r\n2,596420,̩̹˺3D,2013,93087,46,34,44,21,-77,-58,-77,9999,,2012/5/72012-05-13,29656,337553,754,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/7,11:38.7\r\n3,602933,ս,1809,29793,53,26,34,15,-77,-49,-77,9999,,2012/5/72012-05-13,29656,337553,754,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/7,11:38.8\r\n4,595191,ƽٰ,1631,13866,49,21,33,15,-73,-47,-73,9999,,2012/5/72012-05-13,29656,337553,754,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/7,11:38.8\r\n5,589524,׷,868,886,27,3,33,14,0,0,0,0,,2012/5/72012-05-13,29656,337553,754,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/7,11:38.8\r\n6,594309,ӰӰ,796,796,26,3,31,13,0,0,0,0,,2012/5/72012-05-13,29656,337553,754,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/7,11:38.8\r\n7,610525,¿ˡ ڵذ,413,414,12,4,34,11,0,0,0,0,,2012/5/72012-05-13,29656,337553,754,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/7,11:38.8\r\n8,573026,ԽԺ,331,337,11,6,30,7,0,0,0,0,,2012/5/72012-05-13,29656,337553,754,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/7,11:38.8\r\n9,592018,Ӱ,292,821,10,10,29,5,-45,15,-42,-1,,2012/5/72012-05-13,29656,337553,754,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/7,11:38.8\r\n10,588435,ɱ,150,1859,5,16,33,8,-87,-76,-87,-4,,2012/5/72012-05-13,29656,337553,754,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/5/7,11:38.9\r\n1,609952,,11938,11938,279,2,43,69,0,0,0,0,0,2012/4/302012-05-06,39521,353475,1035,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/30,11:39.7\r\n2,596420,̩̹˺3D,8869,91074,197,27,45,37,-21,-23,-22,-1,,2012/4/302012-05-06,39521,353475,1035,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/30,11:39.7\r\n3,602933,ս,7870,27984,230,19,34,34,-8,-12,-9,-1,,2012/4/302012-05-06,39521,353475,1035,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/30,11:39.7\r\n4,595191,ƽٰ,6001,12235,182,14,33,29,-4,-3,-6,-1,,2012/4/302012-05-06,39521,353475,1035,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/30,11:39.7\r\n5,336024,ս2ʱ,1516,5601,40,17,38,22,-13,-34,-13,-1,,2012/4/302012-05-06,39521,353475,1035,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/30,11:39.7\r\n6,588435,ɱ,1154,1708,35,9,33,14,108,129,106,9999,,2012/4/302012-05-06,39521,353475,1035,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/30,11:39.7\r\n7,609111,ƥ,953,2334,28,14,34,14,-31,-41,-33,-2,,2012/4/302012-05-06,39521,353475,1035,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/30,11:39.8\r\n8,592018,Ӱ,529,529,17,3,31,10,0,0,0,0,,2012/4/302012-05-06,39521,353475,1035,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/30,11:39.8\r\n9,596078,Ǵè,276,388,10,8,26,8,146,155,146,-2,,2012/4/302012-05-06,39521,353475,1035,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/30,11:39.8\r\n10,565649,ж,64,1613,2,25,26,5,-20,-40,-20,-2,,2012/4/302012-05-06,39521,353475,1035,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/30,11:39.8\r\n1,596420,̩̹˺3D,11283,82205,254,20,44,37,-57,-37,-57,9999,,2012/4/232012-04-29,30294,334889,828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/23,11:40.4\r\n2,602933,ս,8549,20114,253,12,34,33,-26,-7,-26,9999,,2012/4/232012-04-29,30294,334889,828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/23,11:40.4\r\n3,595191,ƽٰ,6227,6234,193,7,32,30,0,0,0,15,,2012/4/232012-04-29,30294,334889,828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/23,11:40.4\r\n4,336024,ս2ʱ,1739,4086,46,10,38,17,-26,23,-23,-1,,2012/4/232012-04-29,30294,334889,828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/23,11:40.4\r\n5,609111,ƥ,1379,1380,42,7,33,12,0,0,0,26,,2012/4/232012-04-29,30294,334889,828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/23,11:40.4\r\n6,588435,ɱ,555,555,17,2,33,16,0,0,0,0,,2012/4/232012-04-29,30294,334889,828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/23,11:40.4\r\n7,596078,Ǵè,112,112,4,1,26,8,0,0,0,0,,2012/4/232012-04-29,30294,334889,828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/23,11:40.4\r\n8,565649,ж,80,1549,3,18,26,4,-82,-62,-81,-4,,2012/4/232012-04-29,30294,334889,828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/23,11:40.5\r\n9,609714,ŦԼж,61,1179,2,17,27,3,-84,-64,-82,-4,,2012/4/232012-04-29,30294,334889,828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/23,11:40.5\r\n10,596269,һ,34,496,1,17,28,3,-79,-61,-78,-3,,2012/4/232012-04-29,30294,334889,828,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/23,11:40.5\r\n1,596420,̩̹˺3D,26531,70922,595,13,45,55,-40,-9,-40,9999,,2012/4/162012-04-22,42409,321835,1064,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/16,11:40.8\r\n2,602933,ս,11565,11565,341,5,34,41,0,0,0,0,,2012/4/162012-04-22,42409,321835,1064,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/16,11:40.8\r\n3,336024,ս2ʱ,2347,2347,60,3,39,27,0,0,0,0,,2012/4/162012-04-22,42409,321835,1064,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/16,11:40.9\r\n4,565649,ж,458,1469,16,11,29,7,-55,-2,-54,-1,,2012/4/162012-04-22,42409,321835,1064,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/16,11:40.9\r\n5,609714,ŦԼж,368,1118,13,10,29,6,-51,34,-50,9999,,2012/4/162012-04-22,42409,321835,1064,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/16,11:40.9\r\n6,595851,־,191,7014,6,24,33,7,-82,-75,-82,-4,,2012/4/162012-04-22,42409,321835,1064,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/16,11:40.9\r\n7,596269,һ,158,462,6,10,29,5,-48,31,-45,1,,2012/4/162012-04-22,42409,321835,1064,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/16,11:40.9\r\n8,596041,廨Ь,119,4321,4,23,30,6,-82,-77,-82,-2,,2012/4/162012-04-22,42409,321835,1064,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/16,11:40.9\r\n9,590528,ĵδ,118,308,4,10,29,5,-38,22,-36,1,,2012/4/162012-04-22,42409,321835,1064,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/16,11:41.0\r\n10,604052,֮ŭ,112,16005,3,24,42,8,-88,-84,-88,-6,,2012/4/162012-04-22,42409,321835,1064,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/16,11:41.0\r\n1,596420,̩̹˺3D,44391,44391,998,6,44,84,0,0,0,0,,2012/4/92012-04-15,50811,325065,1199,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/9,11:41.3\r\n2,595851,־,1043,6823,31,17,33,9,-74,-51,-74,9999,,2012/4/92012-04-15,50811,325065,1199,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/9,11:41.3\r\n3,565649,ж,1011,1012,34,4,30,15,0,0,0,0,,2012/4/92012-04-15,50811,325065,1199,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/9,11:41.3\r\n4,604052,֮ŭ,927,15893,22,17,42,11,-91,-79,-91,-3,,2012/4/92012-04-15,50811,325065,1199,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/9,11:41.3\r\n5,609714,ŦԼж,750,750,25,3,30,17,0,0,0,0,,2012/4/92012-04-15,50811,325065,1199,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/9,11:41.3\r\n6,596041,廨Ь,677,4202,22,16,31,8,-75,-51,-75,-2,,2012/4/92012-04-15,50811,325065,1199,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/9,11:41.4\r\n7,590338,ڇ;,489,2641,17,15,29,8,-75,-48,-74,-2,,2012/4/92012-04-15,50811,325065,1199,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/9,11:41.4\r\n8,596269,һ,304,304,10,3,30,12,0,0,0,0,,2012/4/92012-04-15,50811,325065,1199,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/9,11:41.4\r\n9,348314,ս,296,25962,8,31,36,8,-90,-75,-90,-6,,2012/4/92012-04-15,50811,325065,1199,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/9,11:41.4\r\n10,590528,ĵδ,191,191,6,3,30,9,0,0,0,0,,2012/4/92012-04-15,50811,325065,1199,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/9,11:41.4\r\n1,604052,֮ŭ,10557,14966,256,10,41,26,139,144,136,9999,,2012/4/22012-04-08,24877,383869,690,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/2,11:41.7\r\n2,595851,־,4007,5780,122,10,33,18,128,113,124,2,,2012/4/22012-04-08,24877,383869,690,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/2,11:41.7\r\n3,348314,ս,3107,25666,80,24,39,21,-20,-41,-20,-1,,2012/4/22012-04-08,24877,383869,690,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/2,11:41.8\r\n4,596041,廨Ь,2695,3525,85,9,32,15,225,316,221,1,,2012/4/22012-04-08,24877,383869,690,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/2,11:41.8\r\n5,590338,ڇ;,1937,2152,65,8,30,15,803,827,829,6,,2012/4/22012-04-08,24877,383869,690,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/2,11:41.8\r\n6,559517,,1176,5981,36,17,32,14,-48,-49,-52,-3,,2012/4/22012-04-08,24877,383869,690,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/2,11:41.8\r\n7,594690,׷,252,4786,7,25,35,12,-67,-75,-71,-1,,2012/4/22012-04-08,24877,383869,690,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/2,11:41.8\r\n8,592061,׷,246,3080,7,24,33,14,-57,-70,-60,-1,,2012/4/22012-04-08,24877,383869,690,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/2,11:41.8\r\n9,572854,̨Ʈѩ,139,167,5,8,31,4,406,433,427,13,,2012/4/22012-04-08,24877,383869,690,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/2,11:41.9\r\n10,590503,ҽ,127,7014,4,32,33,14,-58,-72,-59,-1,,2012/4/22012-04-08,24877,383869,690,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/4/2,11:41.9\r\n1,604052,֮ŭ,4409,4409,109,3,41,27,0,0,0,0,,2012/3/262012-04-01,16637,340895,483,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/26,11:42.2\r\n2,348314,ս,3893,22558,100,17,39,15,-61,-33,-60,-1,,2012/3/262012-04-01,16637,340895,483,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/26,11:42.2\r\n3,559517,,2245,4805,75,10,30,15,-12,88,-11,-1,,2012/3/262012-04-01,16637,340895,483,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/26,11:42.2\r\n4,595851,־,1754,1773,54,3,32,17,0,0,0,0,,2012/3/262012-04-01,16637,340895,483,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/26,11:42.2\r\n5,596041,廨Ь,830,830,27,2,31,20,0,0,0,0,,2012/3/262012-04-01,16637,340895,483,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/26,11:42.3\r\n6,594690,׷,773,4534,25,18,31,10,-57,-43,-57,-3,,2012/3/262012-04-01,16637,340895,483,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/26,11:42.3\r\n7,592061,׷,570,2834,18,17,31,10,-56,-45,-56,-3,,2012/3/262012-04-01,16637,340895,483,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/26,11:42.3\r\n8,590270,޸100,365,2448,13,17,29,7,-68,-50,-67,-3,,2012/3/262012-04-01,16637,340895,483,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/26,11:42.3\r\n9,590503,ҽ,302,6887,9,25,33,9,-66,-53,-65,-3,,2012/3/262012-04-01,16637,340895,483,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/26,11:42.3\r\n10,592262,ս,215,11768,6,34,33,12,-64,-57,-62,-3,,2012/3/262012-04-01,16637,340895,483,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/26,11:42.3\r\n1,348314,ս,9862,18665,248,10,40,26,12,109,13,9999,,2012/3/192012-03-25,19858,341404,570,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/19,11:42.9\r\n2,559517,,2560,2560,84,3,30,31,0,0,0,0,,2012/3/192012-03-25,19858,341404,570,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/19,11:42.9\r\n3,594690,׷,1818,3761,58,11,31,13,-6,32,-6,9999,,2012/3/192012-03-25,19858,341404,570,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/19,11:42.9\r\n4,592061,׷,1290,2265,42,10,31,12,32,81,34,1,,2012/3/192012-03-25,19858,341404,570,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/19,11:42.9\r\n5,590270,޸100,1137,2083,38,10,30,11,20,99,24,1,,2012/3/192012-03-25,19858,341404,570,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/19,11:42.9\r\n6,590503,ҽ,878,6585,27,18,33,13,-60,-55,-62,-4,,2012/3/192012-03-25,19858,341404,570,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/19,11:43.0\r\n7,592262,ս,600,11553,17,27,36,14,-64,-58,-66,-3,,2012/3/192012-03-25,19858,341404,570,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/19,11:43.0\r\n8,588511,ʳŮ2012,263,263,8,3,32,7,0,0,0,0,,2012/3/192012-03-25,19858,341404,570,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/19,11:43.0\r\n9,594347,ٳ֮սҪ,232,474,7,10,31,6,-4,43,-2,4,,2012/3/192012-03-25,19858,341404,570,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/19,11:43.0\r\n10,359941,е4,181,67167,5,58,36,15,-61,-57,-63,1,,2012/3/192012-03-25,19858,341404,570,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/19,11:43.0\r\n1,348314,ս,8804,8804,219,3,40,47,0,0,0,0,,2012/3/122012-03-18,21270,347653,603,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/12,11:45.9\r\n2,590503,ҽ,2221,5708,70,11,32,15,-36,16,-37,9999,,2012/3/122012-03-18,21270,347653,603,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/12,11:45.9\r\n3,594690,׷,1942,1943,62,4,31,19,0,0,0,0,,2012/3/122012-03-18,21270,347653,603,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/12,11:46.0\r\n4,592262,ս,1654,10953,49,20,34,17,-58,-39,-59,-3,,2012/3/122012-03-18,21270,347653,603,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/12,11:46.0\r\n5,592061,׷,975,975,31,3,31,17,0,0,0,0,,2012/3/122012-03-18,21270,347653,603,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/12,11:46.0\r\n6,590270,޸100,946,946,31,3,31,17,0,0,0,0,,2012/3/122012-03-18,21270,347653,603,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/12,11:46.0\r\n7,590370,ռ2ص,870,38465,21,38,41,13,-63,-41,-63,-4,,2012/3/122012-03-18,21270,347653,603,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/12,11:46.0\r\n8,596609,,724,2118,23,11,31,9,-48,-1,-48,-1,,2012/3/122012-03-18,21270,347653,603,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/12,11:46.0\r\n9,603204,ǳСع֮ʱ,669,2668,19,13,35,10,-67,-31,-66,-5,,2012/3/122012-03-18,21270,347653,603,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/12,11:46.0\r\n10,318789,֮,565,4398,16,22,36,11,-69,-53,-69,-5,,2012/3/122012-03-18,21270,347653,603,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/12,11:46.1\r\n1,592262,ս,3950,9299,120,13,33,25,-26,-20,-27,9999,,2012/3/52012-03-11,20463,353163,608,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/5,11:48.1\r\n2,590503,ҽ,3486,3487,112,4,31,28,0,0,0,0,,2012/3/52012-03-11,20463,353163,608,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/5,11:48.1\r\n3,590370,ռ2ص,2361,37595,58,31,41,21,-39,-40,-39,-1,,2012/3/52012-03-11,20463,353163,608,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/5,11:48.1\r\n4,603204,ǳСع֮ʱ,1999,1999,56,6,36,20,0,0,0,0,,2012/3/52012-03-11,20463,353163,608,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/5,11:48.1\r\n5,318789,֮,1849,3833,50,15,37,18,-6,14,-3,-1,,2012/3/52012-03-11,20463,353163,608,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/5,11:48.1\r\n6,359941,е4,1523,66519,42,44,36,23,-37,-40,-39,-3,,2012/3/52012-03-11,20463,353163,608,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/5,11:48.2\r\n7,596609,,1392,1394,44,4,32,17,0,0,0,0,,2012/3/52012-03-11,20463,353163,608,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/5,11:48.2\r\n8,356886,ֱ,566,566,18,2677,32,14,0,0,0,0,,2012/3/52012-03-11,20463,353163,608,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/5,11:48.2\r\n9,596124,ڣǱﷸ,499,1182,16,10,31,10,-27,23,-24,9999,,2012/3/52012-03-11,20463,353163,608,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/5,11:48.2\r\n10,608255,Ĵ,487,1301,17,11,29,10,-40,-9,-37,-2,,2012/3/52012-03-11,20463,353163,608,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/3/5,11:48.2\r\n1,592262,ս,5349,5349,164,6,33,28,0,0,0,0,,2012/2/272012-03-04,20265,343456,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/27,11:48.9\r\n2,590370,ռ2ص,3848,35235,95,24,40,21,-44,-30,-44,-1,,2012/2/272012-03-04,20265,343456,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/27,11:48.9\r\n3,359941,е4,2400,64996,69,37,35,23,-46,-37,-47,-1,,2012/2/272012-03-04,20265,343456,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/27,11:49.0\r\n4,318789,֮,1965,1984,52,8,38,21,10468,16886,15018,14,,2012/2/272012-03-04,20265,343456,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/27,11:49.0\r\n5,573627,ֵĴ2,1383,4717,38,13,36,14,-59,-44,-58,-2,,2012/2/272012-03-04,20265,343456,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/27,11:49.0\r\n6,596052,,1007,13447,29,21,35,15,-69,-58,-70,-2,,2012/2/272012-03-04,20265,343456,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/27,11:49.0\r\n7,596560,˫Ǽм,947,2088,31,10,30,11,-17,48,-15,9999,,2012/2/272012-03-04,20265,343456,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/27,11:49.0\r\n8,608255,Ĵ,815,815,27,4,30,15,0,0,0,0,,2012/2/272012-03-04,20265,343456,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/27,11:49.0\r\n9,596124,ڣǱﷸ,683,683,21,3,32,16,0,0,0,0,,2012/2/272012-03-04,20265,343456,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/27,11:49.1\r\n10,588421,Ը,514,8356,16,24,31,11,-65,-55,-64,-5,,2012/2/272012-03-04,20265,343456,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/27,11:49.1\r\n1,590370,ռ2ص,6841,31387,169,17,41,26,-53,-27,-49,9999,,2012/2/202012-02-26,23749,355922,671,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/20,11:49.4\r\n2,359941,е4,4480,62596,129,30,35,27,-47,-21,-43,1,,2012/2/202012-02-26,23749,355922,671,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/20,11:49.5\r\n3,573627,ֵĴ2,3334,3334,90,6,37,19,0,0,0,0,,2012/2/202012-02-26,23749,355922,671,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/20,11:49.5\r\n4,596052,,3245,12440,96,14,34,21,-65,-34,-62,-2,,2012/2/202012-02-26,23749,355922,671,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/20,11:49.5\r\n5,588421,Ը,1475,7842,46,17,32,14,-66,-40,-62,-1,,2012/2/202012-02-26,23749,355922,671,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/20,11:49.5\r\n6,592670,ѪӢ,1446,3000,45,10,32,15,-7,42,-8,-1,,2012/2/202012-02-26,23749,355922,671,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/20,11:49.5\r\n7,596560,˫Ǽм,1141,1141,37,3,31,18,0,0,0,0,,2012/2/202012-02-26,23749,355922,671,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/20,11:49.5\r\n8,573766,ݽ,444,444,14,3,33,12,0,0,0,0,,2012/2/202012-02-26,23749,355922,671,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/20,11:49.6\r\n9,6013,ſջ,419,419,13,3,31,12,0,0,0,0,,2012/2/202012-02-26,23749,355922,671,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/20,11:49.6\r\n10,588867,Ļð,248,1454,9,13,29,11,-79,-59,-77,-4,,2012/2/202012-02-26,23749,355922,671,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/20,11:49.6\r\n1,590370,ռ2ص,14512,24546,333,10,44,37,45,90,39,1,,2012/2/132012-02-19,40993,370375,1077,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/13,11:50.0\r\n2,596052,,9193,9195,254,7,36,37,0,0,0,30,,2012/2/132012-02-19,40993,370375,1077,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/13,11:50.0\r\n3,359941,е4,8412,58116,227,23,37,38,-40,-43,-44,-2,,2012/2/132012-02-19,40993,370375,1077,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/13,11:50.0\r\n4,588421,Ը,4283,6367,121,10,35,22,106,112,94,-1,,2012/2/132012-02-19,40993,370375,1077,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/13,11:50.0\r\n5,592670,ѪӢ,1554,1554,49,3,32,23,0,0,0,0,,2012/2/132012-02-19,40993,370375,1077,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/13,11:50.1\r\n6,588867,Ļð,1205,1206,37,6,32,20,0,0,0,0,,2012/2/132012-02-19,40993,370375,1077,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/13,11:50.1\r\n7,593891,ߺ֮2,780,1978,21,11,37,11,-35,-28,-41,-3,,2012/2/132012-02-19,40993,370375,1077,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/13,11:50.1\r\n8,593888,ҹ̸,352,683,11,10,34,11,7,15,-2,3,,2012/2/132012-02-19,40993,370375,1077,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/13,11:50.1\r\n9,597326,,150,203,5,8,33,7,178,233,168,10,,2012/2/132012-02-19,40993,370375,1077,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/13,11:50.1\r\n10,588037,ˮӰ,123,123,4,3,31,8,0,0,0,0,,2012/2/132012-02-19,40993,370375,1077,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/13,11:50.1\r\n1,359941,е4,13912,49704,404,16,34,38,-46,-19,-45,9999,,2012/2/62012-02-12,33064,355848,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/6,11:50.5\r\n2,590370,ռ2ص,10033,10033,239,3,42,51,0,0,0,0,,2012/2/62012-02-12,33064,355848,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/6,11:50.5\r\n3,588421,Ը,2081,2084,62,3,33,24,0,0,0,0,,2012/2/62012-02-12,33064,355848,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/6,11:50.5\r\n4,593891,ߺ֮2,1197,1199,36,4,33,14,0,0,0,0,,2012/2/62012-02-12,33064,355848,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/6,11:50.5\r\n5,588454,,1070,2578,34,10,31,12,-29,15,-27,9999,,2012/2/62012-02-12,33064,355848,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/6,11:50.5\r\n6,590198,̽Ħ˹2,1031,18698,31,29,33,19,-56,-37,-56,-4,,2012/2/62012-02-12,33064,355848,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/6,11:50.5\r\n7,590512,ս,693,12881,21,27,32,15,-63,-42,-63,-4,,2012/2/62012-02-12,33064,355848,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/6,11:50.6\r\n8,594661,һ,486,5145,16,21,31,12,-67,-49,-66,-2,,2012/2/62012-02-12,33064,355848,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/6,11:50.6\r\n9,595726,Ҳ,454,4357,15,21,31,16,-60,-43,-60,-1,,2012/2/62012-02-12,33064,355848,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/6,11:50.6\r\n10,596408,Ǳϲ,432,8419,14,24,32,12,-73,-55,-73,-6,,2012/2/62012-02-12,33064,355848,928,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/2/6,11:50.6\r\n1,359941,е4,25572,35792,736,9,35,56,150,246,156,9999,,2012/1/302012-02-05,39832,364443,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/30,11:51.0\r\n2,590198,̽Ħ˹2,2338,17667,70,22,33,27,-66,-41,-65,9999,,2012/1/302012-02-05,39832,364443,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/30,11:51.0\r\n3,590512,ս,1877,12187,57,20,33,23,-67,-43,-66,9999,,2012/1/302012-02-05,39832,364443,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/30,11:51.0\r\n4,596408,Ǳϲ,1600,7987,50,17,32,21,-68,-43,-67,9999,,2012/1/302012-02-05,39832,364443,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/30,11:51.0\r\n5,588454,,1508,1508,47,3,32,19,0,0,0,0,,2012/1/302012-02-05,39832,364443,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/30,11:51.1\r\n6,594661,һ,1479,4660,47,14,32,18,-53,-26,-52,1,,2012/1/302012-02-05,39832,364443,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/30,11:51.1\r\n7,596448,ϲ̫֮Ĵ,1328,16397,45,25,29,16,-66,-32,-64,-1,,2012/1/302012-02-05,39832,364443,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/30,11:51.1\r\n8,595726,Ҳ,1137,3903,36,14,31,23,-59,-39,-59,9999,,2012/1/302012-02-05,39832,364443,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/30,11:51.1\r\n9,589861,ħʦ,997,17052,30,25,33,21,-76,-55,-75,-4,,2012/1/302012-02-05,39832,364443,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/30,11:51.1\r\n10,596405,칬棩,533,4772,16,26,33,20,-62,-30,-59,-1,,2012/1/302012-02-05,39832,364443,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/30,11:51.1\r\n1,359941,е4,10220,10221,287,2,36,76,0,0,0,0,,2012/1/232012-01-29,47492,379362,1406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/23,11:51.5\r\n2,590198,̽Ħ˹2,6873,15329,202,15,34,47,5,-24,1,-1,,2012/1/232012-01-29,47492,379362,1406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/23,11:51.5\r\n3,590512,ս,5732,10311,170,13,34,39,26,-8,22,-1,,2012/1/232012-01-29,47492,379362,1406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/23,11:51.5\r\n4,596408,Ǳϲ,4986,6387,149,10,33,35,256,113,254,1,,2012/1/232012-01-29,47492,379362,1406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/23,11:51.5\r\n5,589861,ħʦ,4125,16056,120,18,34,38,-8,-37,-11,-2,,2012/1/232012-01-29,47492,379362,1406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/23,11:51.5\r\n6,596448,ϲ̫֮Ĵ,3854,15069,124,18,31,30,-1,-32,-4,-2,,2012/1/232012-01-29,47492,379362,1406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/23,11:51.5\r\n7,594661,һ,3168,3181,97,7,33,28,0,0,0,11,,2012/1/232012-01-29,47492,379362,1406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/23,11:51.5\r\n8,595726,Ҳ,2766,2766,88,7,31,33,0,0,0,65,,2012/1/232012-01-29,47492,379362,1406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/23,11:51.6\r\n9,596405,칬棩,1399,4238,39,19,36,34,41,-29,35,-3,,2012/1/232012-01-29,47492,379362,1406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/23,11:51.6\r\n10,596543,Ҽӣħð,1236,2143,35,13,36,32,36,-35,36,-2,,2012/1/232012-01-29,47492,379362,1406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/23,11:51.6\r\n1,590198,̽Ħ˹2,6562,8457,200,8,33,35,247,446,256,5,,2012/1/162012-01-22,25594,328511,782,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/16,11:51.9\r\n2,590512,ս,4563,4579,140,6,33,29,0,0,0,0,,2012/1/162012-01-22,25594,328511,782,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/16,11:52.0\r\n3,589861,ħʦ,4468,11931,134,11,33,27,-40,-6,-39,-2,,2012/1/162012-01-22,25594,328511,782,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/16,11:52.0\r\n4,596448,ϲ̫֮Ĵ,3875,11215,130,11,30,21,-47,-1,-47,-2,,2012/1/162012-01-22,25594,328511,782,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/16,11:52.0\r\n5,596408,Ǳϲ,1401,1401,42,3,33,21,0,0,0,0,,2012/1/162012-01-22,25594,328511,782,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/16,11:52.0\r\n6,596405,칬棩,994,2839,29,12,35,18,-46,-38,-46,1,,2012/1/162012-01-22,25594,328511,782,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/16,11:52.0\r\n7,595206,Щ꣬һ׷Ů,924,7298,28,17,33,15,-74,-68,-75,-4,,2012/1/162012-01-22,25594,328511,782,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/16,11:52.0\r\n8,596543,Ҽӣħð,907,907,25,6,36,16,0,0,0,0,,2012/1/162012-01-22,25594,328511,782,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/16,11:52.0\r\n9,596398,׼ҹ,602,602,20,5,30,11,0,0,0,0,,2012/1/162012-01-22,25594,328511,782,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/16,11:52.1\r\n10,588865,ŷɼ,500,53309,10,39,50,18,-82,-85,-85,-5,,2012/1/162012-01-22,25594,328511,782,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/16,11:52.1\r\n1,589861,ħʦ,7462,7462,219,4,34,41,0,0,0,0,,2012/1/92012-01-15,30136,345995,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/9,11:52.4\r\n2,596448,ϲ̫֮Ĵ,7338,7340,246,4,30,40,0,0,0,0,,2012/1/92012-01-15,30136,345995,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/9,11:52.4\r\n3,595206,Щ꣬һ׷Ů,3592,6374,112,10,32,19,29,74,33,9999,,2012/1/92012-01-15,30136,345995,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/9,11:52.4\r\n4,573968,ʮ,3034,58565,75,32,40,20,-61,-47,-60,-3,,2012/1/92012-01-15,30136,345995,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/9,11:52.4\r\n5,588865,ŷɼ,2851,52809,66,32,43,19,-62,-46,-61,-3,,2012/1/92012-01-15,30136,345995,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/9,11:52.5\r\n6,590198,̽Ħ˹2,1893,1894,56,1,34,54,0,0,0,0,,2012/1/92012-01-15,30136,345995,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/9,11:52.5\r\n7,596405,칬棩,1844,1845,54,5,34,21,0,0,0,0,,2012/1/92012-01-15,30136,345995,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/9,11:52.5\r\n8,593838,ܵ,593,11010,18,24,33,14,-75,-61,-74,-4,,2012/1/92012-01-15,30136,345995,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/9,11:52.5\r\n9,596409,հ,246,1860,8,16,32,12,-76,-68,-76,-4,,2012/1/92012-01-15,30136,345995,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/9,11:52.5\r\n10,592178,ɱŷ,229,579,8,10,30,7,-34,-2,-30,-1,,2012/1/92012-01-15,30136,345995,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/9,11:52.5\r\n1,573968,ʮ,7832,55530,190,25,41,27,-41,-13,-43,9999,,2012/1/22012-01-08,24961,330238,656,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/2,11:52.8\r\n2,588865,ŷɼ,7486,49957,172,25,44,26,-36,-10,-37,9999,,2012/1/22012-01-08,24961,330238,656,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/2,11:52.9\r\n3,595206,Щ꣬һ׷Ů,2782,2782,84,3,33,25,0,0,0,0,,2012/1/22012-01-08,24961,330238,656,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/2,11:52.9\r\n4,593838,ܵ,2340,10417,68,17,34,20,-42,-27,-44,-1,,2012/1/22012-01-08,24961,330238,656,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/2,11:52.9\r\n5,596409,հ,1025,1614,32,9,33,16,73,172,68,2,,2012/1/22012-01-08,24961,330238,656,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/2,11:52.9\r\n6,590015,ʹ,832,2315,25,13,33,12,-44,-8,-45,-2,,2012/1/22012-01-08,24961,330238,656,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/2,11:52.9\r\n7,592083,լӰ,730,1611,22,11,33,14,-18,5,-20,-1,,2012/1/22012-01-08,24961,330238,656,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/2,11:52.9\r\n8,594600,֮,520,4298,16,18,33,11,-62,-58,-63,-3,,2012/1/22012-01-08,24961,330238,656,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/2,11:52.9\r\n9,592178,ɱŷ,350,350,11,3,32,10,0,0,0,0,,2012/1/22012-01-08,24961,330238,656,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/2,11:53.0\r\n10,596540,ѻ,323,733,10,10,31,9,-22,19,-24,-2,,2012/1/22012-01-08,24961,330238,656,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2012/1/2,11:53.0\r\n1,573968,ʮ,13350,47699,331,18,40,41,-34,-24,-30,9999,,2011/12/262012-01-01,34434,312298,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/26,11:53.5\r\n2,588865,ŷɼ,11755,42471,274,18,43,37,-32,-24,-28,9999,,2011/12/262012-01-01,34434,312298,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/26,11:53.5\r\n3,593838,ܵ,4046,8077,122,10,33,26,0,48,20,9999,,2011/12/262012-01-01,34434,312298,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/26,11:53.5\r\n4,590015,ʹ,1488,1484,46,6,32,21,0,0,0,0,,2011/12/262012-01-01,34434,312298,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/26,11:53.5\r\n5,594600,֮,1362,3778,43,11,32,12,-44,3,-37,-1,,2011/12/262012-01-01,34434,312298,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/26,11:53.5\r\n6,592083,լӰ,886,881,28,4,32,18,0,0,0,0,,2011/12/262012-01-01,34434,312298,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/26,11:53.5\r\n7,596409,հ,592,590,19,2,32,26,0,0,0,0,,2011/12/262012-01-01,34434,312298,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/26,11:53.6\r\n8,596540,ѻ,413,410,14,3,30,15,0,0,0,0,,2011/12/262012-01-01,34434,312298,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/26,11:53.6\r\n9,590231,2012,116,115,4,2,28,13,0,0,0,0,,2011/12/262012-01-01,34434,312298,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/26,11:53.6\r\n10,596433,˫˴Լ,94,94,3,3,29,7,0,0,0,0,,2011/12/262012-01-01,34434,312298,898,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/26,11:53.6\r\n1,573968,ʮ,20091,34454,473,11,42,45,40,76,35,9999,,2011/12/192011-12-25,44521,302370,1048,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/19,11:54.0\r\n2,588865,ŷɼ,17363,30796,382,11,45,39,29,57,23,9999,,2011/12/192011-12-25,44521,302370,1048,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/19,11:54.0\r\n3,593838,ܵ,4049,4063,101,3,40,33,0,0,0,0,,2011/12/192011-12-25,44521,302370,1048,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/19,11:54.0\r\n4,594600,֮,2418,2420,69,4,35,20,0,0,0,0,,2011/12/192011-12-25,44521,302370,1048,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/19,11:54.1\r\n5,589662,,114,13946,4,27,30,6,-92,-81,-92,-2,,2011/12/192011-12-25,44521,302370,1048,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/19,11:54.1\r\n6,594456,Ӱ,94,94,3,6,28,5,0,0,0,0,,2011/12/192011-12-25,44521,302370,1048,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/19,11:54.1\r\n7,475099,ɵֱ,75,1268,2,18,34,9,-83,-80,-84,-2,,2011/12/192011-12-25,44521,302370,1048,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/19,11:54.1\r\n8,589389,,39,5000,2,94,26,223,-26,-19,-1,9,,2011/12/192011-12-25,44521,302370,1048,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/19,11:54.1\r\n9,593515,ȷ,29,29,1,3,37,6,0,0,0,0,,2011/12/192011-12-25,44521,302370,1048,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/19,11:54.1\r\n10,596123,׷,25,482,1,17,25,3,-87,-75,-86,1,,2011/12/192011-12-25,44521,302370,1048,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/19,11:54.2\r\n1,573968,ʮ,14361,14364,352,4,41,58,0,0,0,0,,2011/12/122011-12-18,32626,275150,816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/12,11:54.5\r\n2,588865,ŷɼ,13434,13434,311,4,43,51,0,0,0,0,,2011/12/122011-12-18,32626,275150,816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/12,11:54.5\r\n3,589662,,1478,13831,46,20,32,13,-71,-46,-70,-2,,2011/12/122011-12-18,32626,275150,816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/12,11:54.5\r\n4,591968,֮ս,527,2062,15,13,35,10,-66,-45,-65,-2,,2011/12/122011-12-18,32626,275150,816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/12,11:54.5\r\n5,475099,ɵֱ,450,1192,14,11,32,12,-39,-2,-40,2,,2011/12/122011-12-18,32626,275150,816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/12,11:54.5\r\n6,591933,ħ,399,3588,11,20,36,11,-69,-54,-69,-3,,2011/12/122011-12-18,32626,275150,816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/12,11:54.5\r\n7,392721,ռ,260,12044,7,34,38,14,-73,-56,-71,-3,,2011/12/122011-12-18,32626,275150,816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/12,11:54.6\r\n8,593142,ɣ,237,587,8,10,30,7,-32,21,-31,4,,2011/12/122011-12-18,32626,275150,816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/12,11:54.6\r\n9,429996,ħ,213,1743,7,17,30,10,-73,-56,-72,-4,,2011/12/122011-12-18,32626,275150,816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/12,11:54.6\r\n10,594581,ħ,209,1976,7,18,30,9,-74,-62,-73,-4,,2011/12/122011-12-18,32626,275150,816,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/12,11:54.6\r\n1,589662,,5027,12353,152,13,33,22,-31,-4,-33,9999,,2011/12/52011-12-11,15110,283533,456,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/5,11:54.9\r\n2,591968,֮ս,1535,1535,43,6,35,15,0,0,0,0,,2011/12/52011-12-11,15110,283533,456,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/5,11:54.9\r\n3,591933,ħ,1304,3189,36,13,37,16,-31,-16,-31,9999,,2011/12/52011-12-11,15110,283533,456,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/5,11:54.9\r\n4,392721,ռ,952,11785,24,27,39,22,-40,-40,-42,9999,,2011/12/52011-12-11,15110,283533,456,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/5,11:54.9\r\n5,429996,ħ,801,1530,26,10,31,15,10,68,10,3,,2011/12/52011-12-11,15110,283533,456,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/5,11:54.9\r\n6,594581,ħ,795,1767,26,11,30,12,-18,23,-15,1,,2011/12/52011-12-11,15110,283533,456,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/5,11:55.0\r\n7,475099,ɵֱ,743,743,24,4,31,19,0,0,0,0,,2011/12/52011-12-11,15110,283533,456,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/5,11:55.0\r\n8,592135,׸ȭ,711,13032,19,34,38,26,-37,-43,-42,-2,,2011/12/52011-12-11,15110,283533,456,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/5,11:55.0\r\n9,590371,2011,570,7318,18,18,31,12,-71,-60,-71,-7,,2011/12/52011-12-11,15110,283533,456,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/5,11:55.0\r\n10,592414,ʧ33,508,32054,15,34,34,16,-62,-59,-63,-5,,2011/12/52011-12-11,15110,283533,456,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/12/5,11:55.0\r\n1,589662,,7304,7326,225,6,32,32,0,0,0,0,,2011/11/282011-12-04,19237,288102,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/28,11:55.3\r\n2,590371,2011,1977,6747,63,11,32,16,-59,-15,-59,-1,,2011/11/282011-12-04,19237,288102,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/28,11:55.3\r\n3,591933,ħ,1886,1886,52,6,36,19,0,0,0,0,,2011/11/282011-12-04,19237,288102,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/28,11:55.4\r\n4,392721,ռ,1587,10833,41,20,38,23,-58,-57,-59,-1,,2011/11/282011-12-04,19237,288102,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/28,11:55.4\r\n5,592414,ʧ33,1334,31547,40,27,33,18,-68,-62,-69,-3,,2011/11/282011-12-04,19237,288102,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/28,11:55.4\r\n6,592135,׸ȭ,1127,12321,32,27,35,25,-56,-58,-59,-2,,2011/11/282011-12-04,19237,288102,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/28,11:55.4\r\n7,594581,ħ,964,972,31,4,31,18,0,0,0,0,,2011/11/282011-12-04,19237,288102,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/28,11:55.4\r\n8,429996,ħ,729,729,24,3,31,23,0,0,0,0,,2011/11/282011-12-04,19237,288102,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/28,11:55.4\r\n9,593078,,423,431,14,3,31,11,0,0,0,0,,2011/11/282011-12-04,19237,288102,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/28,11:55.5\r\n10,590026,޶,392,395,13,3,30,14,0,0,0,0,,2011/11/282011-12-04,19237,288102,587,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/28,11:55.5\r\n1,590371,2011,4770,4770,152,4,31,33,0,0,0,0,,2011/11/212011-11-27,20045,280593,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/21,11:55.8\r\n2,592414,ʧ33,4199,30213,131,20,32,22,-53,-30,-53,-1,,2011/11/212011-11-27,20045,280593,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/21,11:55.8\r\n3,392721,ռ,3735,9246,101,13,37,24,-32,-16,-31,-1,,2011/11/212011-11-27,20045,280593,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/21,11:55.8\r\n4,592135,׸ȭ,2566,11194,79,20,32,26,-26,-21,-27,-1,,2011/11/212011-11-27,20045,280593,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/21,11:55.8\r\n5,596384,ս,1386,7112,38,17,36,17,-48,-37,-49,-1,,2011/11/212011-11-27,20045,280593,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/21,11:55.8\r\n6,588477,Ů֮ɽ,1266,3377,41,10,31,12,-40,29,-39,-1,,2011/11/212011-11-27,20045,280593,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/21,11:55.9\r\n7,596412,Ӣӣеǰ,915,915,31,3,30,21,0,0,0,0,,2011/11/212011-11-27,20045,280593,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/21,11:55.9\r\n8,594291,ҹ,567,567,19,3,31,15,0,0,0,0,,2011/11/212011-11-27,20045,280593,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/21,11:55.9\r\n9,592671,,421,18301,13,31,32,16,-57,-48,-57,-3,,2011/11/212011-11-27,20045,280593,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/21,11:55.9\r\n10,593366,̽2011Ĭ15,43,2769,2,24,27,7,-73,-61,-72,-3,,2011/11/212011-11-27,20045,280593,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/21,11:55.9\r\n1,592414,ʧ33,8891,26013,278,13,32,32,-48,-6,-49,9999,,2011/11/142011-11-20,24072,274048,723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/14,11:56.2\r\n2,392721,ռ,5511,5511,148,6,37,30,0,0,0,0,,2011/11/142011-11-20,24072,274048,723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/14,11:56.2\r\n3,592135,׸ȭ,3481,8628,108,13,32,28,-32,-26,-30,-1,,2011/11/142011-11-20,24072,274048,723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/14,11:56.3\r\n4,596384,ս,2675,5726,74,10,36,20,-12,57,-10,-1,,2011/11/142011-11-20,24072,274048,723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/14,11:56.3\r\n5,588477,Ů֮ɽ,2111,2111,68,3,31,25,0,0,0,0,,2011/11/142011-11-20,24072,274048,723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/14,11:56.3\r\n6,592671,,977,17880,30,24,32,19,-65,-58,-66,-2,,2011/11/142011-11-20,24072,274048,723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/14,11:56.3\r\n7,593366,̽2011Ĭ15,158,2726,6,17,28,9,-80,-69,-79,-2,,2011/11/142011-11-20,24072,274048,723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/14,11:56.3\r\n8,591775,ǿ,88,1472,3,18,31,7,-78,-66,-77,-2,,2011/11/142011-11-20,24072,274048,723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/14,11:56.3\r\n9,591749,תɽ,43,404,1,18,29,9,-67,-64,-66,-2,,2011/11/142011-11-20,24072,274048,723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/14,11:56.4\r\n10,595601,ս,17,117,1,10,26,3,-83,-43,-82,-2,,2011/11/142011-11-20,24072,274048,723,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/14,11:56.4\r\n1,592414,ʧ33,17118,17123,542,6,32,59,0,0,0,0,,2011/11/72011-11-13,30176,274960,939,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/7,11:56.7\r\n2,592135,׸ȭ,5147,5147,154,6,34,29,0,0,0,0,,2011/11/72011-11-13,30176,274960,939,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/7,11:56.7\r\n3,596384,ս,3051,3051,82,3,37,36,0,0,0,0,,2011/11/72011-11-13,30176,274960,939,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/7,11:56.7\r\n4,592671,,2818,16903,90,17,31,23,-66,-55,-66,-3,,2011/11/72011-11-13,30176,274960,939,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/7,11:56.7\r\n5,593366,̽2011Ĭ15,788,2569,27,10,29,14,-56,-4,-54,-3,,2011/11/72011-11-13,30176,274960,939,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/7,11:56.7\r\n6,591775,ǿ,403,1385,12,11,33,11,-59,-29,-59,-3,,2011/11/72011-11-13,30176,274960,939,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/7,11:56.7\r\n7,591749,תɽ,132,361,4,11,30,10,-42,-24,-41,4,,2011/11/72011-11-13,30176,274960,939,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/7,11:56.8\r\n8,595601,ս,101,101,4,3,28,9,0,0,0,0,,2011/11/72011-11-13,30176,274960,939,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/7,11:56.8\r\n9,565984,̵,83,6312,2,25,33,8,-88,-83,-87,-5,,2011/11/72011-11-13,30176,274960,939,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/7,11:56.8\r\n10,573717,,76,763,2,13,31,8,-89,-84,-89,-5,,2011/11/72011-11-13,30176,274960,939,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/11/7,11:56.8\r\n1,592671,,8177,14086,264,10,31,30,38,104,38,9999,,2011/10/312011-11-06,15218,265075,491,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/31,11:57.1\r\n2,593366,̽2011Ĭ15,1781,1781,60,3,30,30,0,0,0,0,,2011/10/312011-11-06,15218,265075,491,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/31,11:57.1\r\n3,591775,ǿ,982,982,30,4,33,19,0,0,0,0,,2011/10/312011-11-06,15218,265075,491,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/31,11:57.1\r\n4,565984,̵,716,6229,19,18,37,10,-67,-59,-67,-2,,2011/10/312011-11-06,15218,265075,491,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/31,11:57.2\r\n5,573717,,685,688,23,6,30,12,0,0,0,0,,2011/10/312011-11-06,15218,265075,491,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/31,11:57.2\r\n6,589892,֮ɿ,577,1427,19,11,31,9,-32,-3,-31,-2,,2011/10/312011-11-06,15218,265075,491,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/31,11:57.2\r\n7,457021,ɳʿ,368,368,12,4,32,10,0,0,0,0,,2011/10/312011-11-06,15218,265075,491,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/31,11:57.2\r\n8,593928,Ҹ,345,2871,11,18,33,8,-70,-59,-70,-5,,2011/10/312011-11-06,15218,265075,491,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/31,11:57.2\r\n9,595222,3D,329,871,10,11,33,8,-39,-22,-37,-3,,2011/10/312011-11-06,15218,265075,491,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/31,11:57.2\r\n10,596140,ڰս,262,262,9,4,30,12,0,0,0,0,,2011/10/312011-11-06,15218,265075,491,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/31,11:57.3\r\n1,592671,,5909,5909,192,3,31,45,0,0,0,0,,2011/10/242011-10-30,12986,245899,408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/24,11:57.6\r\n2,565984,̵,2176,5512,58,11,38,12,-35,14,-33,-1,,2011/10/242011-10-30,12986,245899,408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/24,11:57.6\r\n3,593928,Ҹ,1149,2526,36,11,32,11,-17,28,-15,9999,,2011/10/242011-10-30,12986,245899,408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/24,11:57.6\r\n4,589892,֮ɿ,848,850,28,4,31,13,0,0,0,0,,2011/10/242011-10-30,12986,245899,408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/24,11:57.6\r\n5,592225,ֹ,681,4386,22,18,31,12,-60,-48,-60,-3,,2011/10/242011-10-30,12986,245899,408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/24,11:57.6\r\n6,595222,3D,542,542,16,4,35,10,0,0,0,0,,2011/10/242011-10-30,12986,245899,408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/24,11:57.7\r\n7,589540,ʱͬ,279,520,10,10,29,7,15,111,24,3,,2011/10/242011-10-30,12986,245899,408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/24,11:57.7\r\n8,587844,ߴ˵,271,16835,10,33,27,11,-76,-65,-75,-4,,2011/10/242011-10-30,12986,245899,408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/24,11:57.7\r\n9,596139,˫,194,752,6,13,32,8,-65,-54,-66,-2,,2011/10/242011-10-30,12986,245899,408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/24,11:57.7\r\n10,589389,,178,4647,6,38,32,51,-46,-62,-46,-1,,2011/10/242011-10-30,12986,245899,408,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/24,11:57.7\r\n1,565984,̵,3336,3336,86,4,39,21,0,0,0,0,,2011/10/172011-10-23,11264,248438,344,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/17,11:58.0\r\n2,592225,ֹ,1704,3706,55,11,31,15,-15,34,-14,1,,2011/10/172011-10-23,11264,248438,344,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/17,11:58.0\r\n3,593928,Ҹ,1377,1377,42,4,33,17,0,0,0,0,,2011/10/172011-10-23,11264,248438,344,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/17,11:58.1\r\n4,587844,ߴ˵,1133,16565,39,26,29,15,-57,-50,-53,-3,,2011/10/172011-10-23,11264,248438,344,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/17,11:58.1\r\n5,589472,,770,14737,24,25,32,11,-68,-53,-67,-3,,2011/10/172011-10-23,11264,248438,344,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/17,11:58.1\r\n6,594218,,595,1263,21,10,29,11,-11,53,-10,-2,,2011/10/172011-10-23,11264,248438,344,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/17,11:58.1\r\n7,596139,˫,557,557,18,6,31,10,0,0,0,0,,2011/10/172011-10-23,11264,248438,344,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/17,11:58.1\r\n8,351451,һҹ,345,778,11,10,32,8,-20,18,-19,-2,,2011/10/172011-10-23,11264,248438,344,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/17,11:58.1\r\n9,589389,,329,4468,11,31,31,36,-50,-70,-49,-4,,2011/10/172011-10-23,11264,248438,344,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/17,11:58.2\r\n10,589540,ʱͬ,242,242,8,3,31,11,0,0,0,0,,2011/10/172011-10-23,11264,248438,344,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/17,11:58.2\r\n1,587844,ߴ˵,2662,15432,83,19,32,16,-60,-31,-59,1,,2011/10/102011-10-16,10957,240767,345,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/10,11:58.5\r\n2,589472,,2426,13967,74,18,33,16,-65,-30,-65,-1,,2011/10/102011-10-16,10957,240767,345,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/10,11:58.5\r\n3,592225,ֹ,2002,2002,64,4,31,24,0,0,0,0,,2011/10/102011-10-16,10957,240767,345,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/10,11:58.5\r\n4,594218,,668,668,23,3,29,19,0,0,0,0,,2011/10/102011-10-16,10957,240767,345,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/10,11:58.5\r\n5,589389,,663,4139,21,24,32,21,-14,-29,-10,9999,,2011/10/102011-10-16,10957,240767,345,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/10,11:58.6\r\n6,351451,һҹ,432,432,13,3,33,12,0,0,0,0,,2011/10/102011-10-16,10957,240767,345,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/10,11:58.6\r\n7,491203,Ԩ,407,10141,10,38,39,17,-73,-51,-71,-4,,2011/10/102011-10-16,10957,240767,345,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/10,11:58.6\r\n8,588808,,240,241,7,4,32,8,0,0,0,0,,2011/10/102011-10-16,10957,240767,345,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/10,11:58.6\r\n9,591782,񱩷ɳ,231,4876,7,32,33,11,-54,-23,-52,-3,,2011/10/102011-10-16,10957,240767,345,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/10,11:58.6\r\n10,593535,ֻ֢,217,217,7,3,31,10,0,0,0,0,,2011/10/102011-10-16,10957,240767,345,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/10,11:58.6\r\n1,589472,,6909,11541,212,11,33,32,50,89,51,1,,2011/10/32011-10-09,20147,265618,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/3,11:59.1\r\n2,587844,ߴ˵,6633,12770,200,12,33,27,8,58,9,-1,,2011/10/32011-10-09,20147,265618,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/3,11:59.1\r\n3,491203,Ԩ,1491,9734,36,31,41,28,11,-18,11,9999,,2011/10/32011-10-09,20147,265618,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/3,11:59.1\r\n4,594334,ʥʿ,1436,2442,53,10,27,20,43,139,45,1,,2011/10/32011-10-09,20147,265618,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/3,11:59.1\r\n5,589389,,773,3477,23,17,34,17,-41,-54,-43,-1,,2011/10/32011-10-09,20147,265618,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/3,11:59.2\r\n6,591782,񱩷ɳ,498,4645,15,25,34,17,-24,-41,-20,9999,,2011/10/32011-10-09,20147,265618,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/3,11:59.2\r\n7,595854,׷3DNA,461,2155,12,17,40,17,-27,-57,-28,9999,,2011/10/32011-10-09,20147,265618,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/3,11:59.2\r\n8,589639,׼ռ,400,533,12,9,32,10,205,208,212,4,,2011/10/32011-10-09,20147,265618,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/3,11:59.2\r\n9,332101,ӳ,343,8263,9,31,38,19,-24,-47,-26,-1,,2011/10/32011-10-09,20147,265618,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/3,11:59.2\r\n10,591755,,217,323,7,10,32,8,106,114,111,3,,2011/10/32011-10-09,20147,265618,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/10/3,11:59.2\r\n1,587844,ߴ˵,6137,6137,184,5,33,39,0,0,0,0,,2011/9/262011-10-02,17678,236288,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/26,11:59.7\r\n2,589472,,4619,4631,140,4,33,40,0,0,0,0,,2011/9/262011-10-02,17678,236288,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/26,11:59.7\r\n3,491203,Ԩ,1341,8243,32,24,41,21,-26,-35,-26,-2,,2011/9/262011-10-02,17678,236288,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/26,11:59.8\r\n4,589389,,1306,2703,40,10,33,14,-7,32,-5,-1,,2011/9/262011-10-02,17678,236288,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/26,11:59.8\r\n5,594334,ʥʿ,1005,1005,36,3,28,33,0,0,0,0,,2011/9/262011-10-02,17678,236288,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/26,11:59.8\r\n6,591782,񱩷ɳ,657,4147,18,18,36,13,-60,-54,-58,-4,,2011/9/262011-10-02,17678,236288,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/26,11:59.8\r\n7,595854,׷3DNA,631,1695,16,10,39,10,-38,13,-34,-2,,2011/9/262011-10-02,17678,236288,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/26,11:59.8\r\n8,332101,ӳ,452,7921,12,24,37,14,-61,-60,-61,-4,,2011/9/262011-10-02,17678,236288,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/26,11:59.8\r\n9,593844,լ,330,815,12,10,29,9,-32,26,-30,-2,,2011/9/262011-10-02,17678,236288,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/26,11:59.9\r\n10,589748,ȫ,184,5790,6,25,32,9,-77,-71,-77,-4,,2011/9/262011-10-02,17678,236288,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/26,11:59.9\r\n1,491203,Ԩ,1808,6903,44,17,41,18,-39,-22,-40,1,,2011/9/192011-09-25,10485,217764,295,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/19,12:00.2\r\n2,591782,񱩷ɳ,1652,3490,44,11,38,14,-10,33,-7,2,,2011/9/192011-09-25,10485,217764,295,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/19,12:00.2\r\n3,589389,,1398,1398,42,3,33,19,0,0,0,0,,2011/9/192011-09-25,10485,217764,295,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/19,12:00.2\r\n4,332101,ӳ,1157,7469,31,17,37,14,-61,-45,-61,-3,,2011/9/192011-09-25,10485,217764,295,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/19,12:00.3\r\n5,595854,׷3DNA,1022,1064,24,3,42,18,0,0,0,0,,2011/9/192011-09-25,10485,217764,295,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/19,12:00.3\r\n6,589748,ȫ,811,5606,25,18,33,12,-63,-44,-63,-3,,2011/9/192011-09-25,10485,217764,295,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/19,12:00.3\r\n7,593844,լ,485,485,16,3,29,16,0,0,0,0,,2011/9/192011-09-25,10485,217764,295,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/19,12:00.3\r\n8,588262,,467,4183,15,17,32,9,-72,-53,-72,-3,,2011/9/192011-09-25,10485,217764,295,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/19,12:00.3\r\n9,425134,ɪ3ռԾ,414,414,15,3,28,14,0,0,0,0,,2011/9/192011-09-25,10485,217764,295,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/19,12:00.3\r\n10,589504,µع,375,739,13,10,30,8,3,55,7,-3,,2011/9/192011-09-25,10485,217764,295,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/19,12:00.4\r\n1,332101,ӳ,2986,6312,80,10,37,19,-10,43,-10,9999,,2011/9/122011-09-18,14709,228629,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/12,12:00.7\r\n2,491203,Ԩ,2976,5095,72,10,41,24,40,105,42,1,,2011/9/122011-09-18,14709,228629,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/12,12:00.7\r\n3,589748,ȫ,2189,4795,66,11,33,18,-16,12,-15,-1,,2011/9/122011-09-18,14709,228629,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/12,12:00.7\r\n4,591782,񱩷ɳ,1837,1837,47,4,39,20,0,0,0,0,,2011/9/122011-09-18,14709,228629,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/12,12:00.7\r\n5,588262,,1692,3716,52,10,33,15,-16,38,-15,-1,,2011/9/122011-09-18,14709,228629,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/12,12:00.8\r\n6,474611,Դ,597,6512,18,20,33,18,-67,-72,-69,-1,,2011/9/122011-09-18,14709,228629,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/12,12:00.8\r\n7,589504,µع,364,364,12,3,31,12,0,0,0,0,,2011/9/122011-09-18,14709,228629,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/12,12:00.8\r\n8,315054,ܶԱ2,237,7415,6,26,37,19,-57,-73,-56,1,,2011/9/122011-09-18,14709,228629,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/12,12:00.8\r\n9,590196,2,228,20842,7,32,33,12,-81,-79,-81,-3,,2011/9/122011-09-18,14709,228629,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/12,12:00.8\r\n10,589821,,165,6553,4,80,41,50,-44,-50,-55,3,,2011/9/122011-09-18,14709,228629,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/12,12:00.8\r\n1,332101,ӳ,3326,3326,89,3,38,31,0,0,0,0,,2011/9/52011-09-11,17579,246278,494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/5,12:01.5\r\n2,589748,ȫ,2598,2606,78,4,33,23,0,0,0,0,,2011/9/52011-09-11,17579,246278,494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/5,12:01.5\r\n3,491203,Ԩ,2119,2119,51,3,42,34,0,0,0,0,,2011/9/52011-09-11,17579,246278,494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/5,12:01.5\r\n4,588262,,2025,2025,61,3,33,24,0,0,0,0,,2011/9/52011-09-11,17579,246278,494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/5,12:01.5\r\n5,474611,Դ,1820,5914,58,13,31,17,-56,-32,-57,-4,,2011/9/52011-09-11,17579,246278,494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/5,12:01.5\r\n6,590196,2,1217,20614,37,25,33,14,-70,-49,-69,-4,,2011/9/52011-09-11,17579,246278,494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/5,12:01.5\r\n7,591934,,713,25005,19,33,38,14,-72,-54,-72,-4,,2011/9/52011-09-11,17579,246278,494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/5,12:01.5\r\n8,588446,ΰҵ,559,40477,10,89,57,90,-23,-58,-36,1,,2011/9/52011-09-11,17579,246278,494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/5,12:01.6\r\n9,315054,ܶԱ2,549,7178,15,19,37,11,-78,-64,-78,-5,,2011/9/52011-09-11,17579,246278,494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/5,12:01.6\r\n10,593938,,434,8055,13,55,34,61,-44,-48,-40,-2,,2011/9/52011-09-11,17579,246278,494,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/9/5,12:01.6\r\n1,474611,Դ,4094,4095,135,6,30,26,0,0,0,0,,2011/8/292011-09-04,19982,268825,588,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/29,12:01.9\r\n2,590196,2,3994,19397,120,18,33,23,-49,-25,-49,-1,,2011/8/292011-09-04,19982,268825,588,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/29,12:01.9\r\n3,591934,,2542,24292,68,26,37,24,-48,-19,-48,-1,,2011/8/292011-09-04,19982,268825,588,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/29,12:01.9\r\n4,315054,ܶԱ2,2541,6629,68,12,37,19,-38,-10,-37,-1,,2011/8/292011-09-04,19982,268825,588,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/29,12:01.9\r\n5,339971,ʥ(),1127,39754,29,32,39,18,-54,-35,-55,-1,,2011/8/292011-09-04,19982,268825,588,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/29,12:01.9\r\n6,589793,ν3,936,106559,23,46,41,20,-54,-38,-54,-1,,2011/8/292011-09-04,19982,268825,588,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/29,12:02.0\r\n7,589844,豦,873,1829,30,11,29,14,-8,22,-6,1,,2011/8/292011-09-04,19982,268825,588,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/29,12:02.0\r\n8,593938,,771,7621,21,48,37,53,-14,-22,-25,1,,2011/8/292011-09-04,19982,268825,588,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/29,12:02.0\r\n9,588446,ΰҵ,722,39919,15,82,47,59,31,-30,-24,3,,2011/8/292011-09-04,19982,268825,588,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/29,12:02.0\r\n10,379773,Ů׼,643,3621,21,17,30,14,-61,-46,-62,-4,,2011/8/292011-09-04,19982,268825,588,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/29,12:02.0\r\n1,590196,2,7887,15403,235,11,34,33,5,47,6,1,,2011/8/222011-08-28,28402,285780,823,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/22,12:02.5\r\n2,591934,,4917,21749,132,19,37,38,-39,-31,-38,-1,,2011/8/222011-08-28,28402,285780,823,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/22,12:02.5\r\n3,315054,ܶԱ2,4088,4089,108,5,38,27,0,0,0,0,,2011/8/222011-08-28,28402,285780,823,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/22,12:02.5\r\n4,339971,ʥ(),2453,38627,64,25,38,26,-55,-51,-56,-1,,2011/8/222011-08-28,28402,285780,823,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/22,12:02.5\r\n5,589793,ν3,2038,105622,49,39,41,27,-50,-48,-51,-1,,2011/8/222011-08-28,28402,285780,823,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/22,12:02.5\r\n6,379773,Ů׼,1667,2978,56,10,30,20,30,68,33,9999,,2011/8/222011-08-28,28402,285780,823,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/22,12:02.5\r\n7,589879,޼֮,977,1777,33,10,30,16,22,49,27,9999,,2011/8/222011-08-28,28402,285780,823,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/22,12:02.5\r\n8,589844,豦,953,956,32,4,29,18,0,0,0,0,,2011/8/222011-08-28,28402,285780,823,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/22,12:02.6\r\n9,593938,,896,6849,28,41,32,55,-32,-29,-32,-4,,2011/8/222011-08-28,28402,285780,823,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/22,12:02.6\r\n10,589821,,702,5682,20,59,35,68,0,-24,-10,-1,,2011/8/222011-08-28,28402,285780,823,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/22,12:02.6\r\n1,591934,,8110,16832,213,12,38,42,-7,13,-4,1,,2011/8/152011-08-21,32271,280398,913,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/15,12:02.9\r\n2,590196,2,7516,7516,222,4,34,46,0,0,0,0,,2011/8/152011-08-21,32271,280398,913,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/15,12:02.9\r\n3,339971,ʥ(),5465,36174,145,18,38,28,-56,-41,-55,-2,,2011/8/152011-08-21,32271,280398,913,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/15,12:03.0\r\n4,589793,ν3,4109,103584,101,32,41,29,-46,-35,-46,-1,,2011/8/152011-08-21,32271,280398,913,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/15,12:03.0\r\n5,593938,,1324,5953,41,34,32,58,-27,-11,-24,-1,,2011/8/152011-08-21,32271,280398,913,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/15,12:03.0\r\n6,379773,Ů׼,1286,1311,42,3,31,26,0,0,0,0,,2011/8/152011-08-21,32271,280398,913,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/15,12:03.0\r\n7,589879,޼֮,800,800,26,3,31,18,0,0,0,0,,2011/8/152011-08-21,32271,280398,913,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/15,12:03.0\r\n8,588446,ΰҵ,724,38648,22,68,34,61,-26,-9,-19,-2,,2011/8/152011-08-21,32271,280398,913,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/15,12:03.0\r\n9,589821,,705,4981,23,52,31,57,-22,-9,-19,-2,,2011/8/152011-08-21,32271,280398,913,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/15,12:03.0\r\n10,432631,,601,789,19,10,31,23,219,160,213,3,,2011/8/152011-08-21,32271,280398,913,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/15,12:03.1\r\n1,339971,ʥ(),12353,30709,325,11,38,37,-33,19,-29,9999,,2011/8/82011-08-14,35376,274435,950,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/8,12:03.5\r\n2,591934,,8722,8722,222,5,39,49,0,0,0,0,,2011/8/82011-08-14,35376,274435,950,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/8,12:03.5\r\n3,589793,ν3,7638,99475,187,25,41,35,-54,-42,-53,-1,,2011/8/82011-08-14,35376,274435,950,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/8,12:03.5\r\n4,593938,,1811,4629,54,27,33,68,-1,12,-4,-1,,2011/8/82011-08-14,35376,274435,950,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/8,12:03.5\r\n5,594624,Ħׯ԰,987,987,35,4,28,21,0,0,0,0,,2011/8/82011-08-14,35376,274435,950,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/8,12:03.6\r\n6,588446,ΰҵ,976,37924,27,61,37,69,27,38,20,9999,,2011/8/82011-08-14,35376,274435,950,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/8,12:03.6\r\n7,589821,,903,4276,28,45,32,65,-16,4,-9,-2,,2011/8/82011-08-14,35376,274435,950,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/8,12:03.6\r\n8,559184,,350,1086,12,10,29,10,-52,11,-49,-1,,2011/8/82011-08-14,35376,274435,950,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/8,12:03.6\r\n9,589715,޼֮Σٵ,320,320,11,3,29,13,0,0,0,0,,2011/8/82011-08-14,35376,274435,950,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/8,12:03.6\r\n10,590079,֮Ѱҷ,284,4259,10,18,27,10,-77,-68,-77,-6,,2011/8/82011-08-14,35376,274435,950,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/8,12:03.6\r\n1,339971,ʥ(),18356,18356,459,4,40,63,0,0,0,0,,2011/8/12011-08-07,42379,264036,1094,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/1,12:04.0\r\n2,589793,ν3,16667,91838,397,18,42,43,-54,-40,-54,-1,,2011/8/12011-08-07,42379,264036,1094,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/1,12:04.0\r\n3,593938,,1827,2819,57,20,32,79,151,80,126,1,,2011/8/12011-08-07,42379,264036,1094,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/1,12:04.0\r\n4,590079,֮Ѱҷ,1258,3975,45,11,28,15,-54,4,-53,-2,,2011/8/12011-08-07,42379,264036,1094,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/1,12:04.0\r\n5,589821,,1071,3373,31,38,35,74,-30,-15,-29,-2,,2011/8/12011-08-07,42379,264036,1094,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/1,12:04.0\r\n6,588446,ΰҵ,769,36947,22,54,35,79,218,-9,125,2,,2011/8/12011-08-07,42379,264036,1094,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/1,12:04.1\r\n7,559184,,736,736,24,3,31,22,0,0,0,0,,2011/8/12011-08-07,42379,264036,1094,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/1,12:04.1\r\n8,590260,µ,313,8824,11,31,29,15,-45,-42,-45,-3,,2011/8/12011-08-07,42379,264036,1094,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/1,12:04.1\r\n9,593940,ˮʯ,225,225,7,3,30,17,0,0,0,0,,2011/8/12011-08-07,42379,264036,1094,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/1,12:04.1\r\n10,594369,Сǿһ,217,344,8,10,26,12,71,111,76,3,,2011/8/12011-08-07,42379,264036,1094,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/8/1,12:04.1\r\n1,589793,ν3,36128,75171,871,11,41,56,-7,51,-6,9999,,2011/7/252011-07-31,43998,249472,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/25,12:04.7\r\n2,590079,֮Ѱҷ,2716,2716,97,4,28,33,0,0,0,0,,2011/7/252011-07-31,43998,249472,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/25,12:04.7\r\n3,589821,,1525,2303,43,31,35,89,151,155,139,1,,2011/7/252011-07-31,43998,249472,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/25,12:04.7\r\n4,593938,,728,991,25,13,29,63,178,112,174,7,,2011/7/252011-07-31,43998,249472,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/25,12:04.7\r\n5,590260,µ,563,8511,19,24,29,16,-64,-55,-63,-2,,2011/7/252011-07-31,43998,249472,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/25,12:04.7\r\n6,589482,,447,16807,13,28,33,15,-72,-67,-72,-4,,2011/7/252011-07-31,43998,249472,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/25,12:04.7\r\n7,590452,,285,475,9,17,33,58,64,1,39,8,,2011/7/252011-07-31,43998,249472,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/25,12:04.8\r\n8,588446,ΰҵ,242,36179,10,47,25,32,-52,-54,-42,-1,,2011/7/252011-07-31,43998,249472,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/25,12:04.8\r\n9,588934,֮׻,185,324,1,34,125,304,1030,-60,120,18,,2011/7/252011-07-31,43998,249472,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/25,12:04.8\r\n10,588510,ջ,181,10179,5,34,39,22,-67,-80,-75,-5,,2011/7/252011-07-31,43998,249472,1131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/25,12:04.8\r\n1,589793,ν3,39042,39043,924,4,42,91,0,0,0,0,,2011/7/182011-07-24,47015,249927,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/18,12:05.2\r\n2,589482,,1577,16360,47,21,33,17,-69,-50,-68,-1,,2011/7/182011-07-24,47015,249927,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/18,12:05.2\r\n3,590260,µ,1562,7948,52,17,30,19,-61,-39,-60,-1,,2011/7/182011-07-24,47015,249927,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/18,12:05.2\r\n4,589821,,607,778,18,24,33,95,690,351,712,15,,2011/7/182011-07-24,47015,249927,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/18,12:05.2\r\n5,588510,ջ,557,9998,18,27,30,18,-62,-50,-62,-1,,2011/7/182011-07-24,47015,249927,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/18,12:05.2\r\n6,475399,ս,538,2869,17,15,31,17,-72,-59,-71,-3,,2011/7/182011-07-24,47015,249927,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/18,12:05.3\r\n7,588446,ΰҵ,504,35937,17,40,30,26,-64,-57,-62,-2,,2011/7/182011-07-24,47015,249927,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/18,12:05.3\r\n8,589895,,376,1528,11,14,34,12,-67,-55,-66,-2,,2011/7/182011-07-24,47015,249927,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/18,12:05.3\r\n9,588610,ǹ,344,811,13,10,27,11,-26,15,-22,9999,,2011/7/182011-07-24,47015,249927,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/18,12:05.3\r\n10,588502,һҹδ,262,579,9,10,29,10,-17,12,-12,1,,2011/7/182011-07-24,47015,249927,1183,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/18,12:05.3\r\n1,589482,,5074,14783,149,14,34,27,-48,-31,-48,9999,,2011/7/112011-07-17,19191,267553,597,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/11,12:05.8\r\n2,590260,µ,4013,6386,130,10,31,29,69,145,72,2,,2011/7/112011-07-17,19191,267553,597,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/11,12:05.8\r\n3,475399,ս,1893,2331,59,8,32,24,332,437,335,6,,2011/7/112011-07-17,19191,267553,597,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/11,12:05.8\r\n4,588510,ջ,1479,9441,49,20,30,23,-45,-45,-45,-1,,2011/7/112011-07-17,19191,267553,597,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/11,12:05.8\r\n5,588446,ΰҵ,1399,35433,45,33,31,29,-56,-49,-55,-3,,2011/7/112011-07-17,19191,267553,597,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/11,12:05.8\r\n6,589895,,1152,1152,33,7,35,16,0,0,0,0,,2011/7/112011-07-17,19191,267553,597,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/11,12:05.8\r\n7,594319,ܶԱ,693,6130,20,24,35,20,-54,-54,-53,-2,,2011/7/112011-07-17,19191,267553,597,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/11,12:05.9\r\n8,591769,;׷,577,577,20,6,29,13,0,0,0,0,,2011/7/112011-07-17,19191,267553,597,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/11,12:05.9\r\n9,588610,ǹ,468,468,16,3,29,16,0,0,0,0,,2011/7/112011-07-17,19191,267553,597,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/11,12:05.9\r\n10,587734,ϵ,460,1140,14,10,33,12,-32,-12,-31,-3,,2011/7/112011-07-17,19191,267553,597,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/11,12:05.9\r\n1,589482,,9697,9709,287,7,34,36,0,0,0,18,,2011/7/42011-07-10,23565,261466,720,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/4,12:06.2\r\n2,588446,ΰҵ,3176,34033,100,26,32,33,-66,-54,-63,-1,,2011/7/42011-07-10,23565,261466,720,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/4,12:06.2\r\n3,588510,ջ,2696,7962,88,13,30,23,-49,-25,-50,-1,,2011/7/42011-07-10,23565,261466,720,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/4,12:06.2\r\n4,590260,µ,2373,2373,75,3,31,41,0,0,0,0,0,2011/7/42011-07-10,23565,261466,720,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/4,12:06.3\r\n5,594319,ܶԱ,1514,5437,43,17,35,20,-32,-26,-31,-1,,2011/7/42011-07-10,23565,261466,720,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/4,12:06.3\r\n6,579720,ռ,917,1724,30,9,30,18,14,86,20,1,,2011/7/42011-07-10,23565,261466,720,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/4,12:06.3\r\n7,587734,ϵ,680,680,20,3,33,16,0,0,0,0,,2011/7/42011-07-10,23565,261466,720,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/4,12:06.3\r\n8,589310,,679,1484,22,10,31,16,-16,30,-11,9999,,2011/7/42011-07-10,23565,261466,720,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/4,12:06.3\r\n9,475399,ս,438,438,14,1,32,29,0,0,0,0,,2011/7/42011-07-10,23565,261466,720,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/4,12:06.4\r\n10,350725,è2,322,60943,7,44,46,37,-89,-93,-91,-7,,2011/7/42011-07-10,23565,261466,720,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/7/4,12:06.4\r\n1,588446,ΰҵ,9282,30857,273,19,34,42,-15,-31,-12,9999,,2011/6/272011-07-03,25402,258925,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/27,12:06.7\r\n2,588510,ջ,5260,5266,175,6,30,34,0,0,0,0,,2011/6/272011-07-03,25402,258925,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/27,12:06.8\r\n3,350725,è2,3037,60622,82,37,37,29,-34,-42,-33,-1,,2011/6/272011-07-03,25402,258925,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/27,12:06.8\r\n4,594319,ܶԱ,2233,3922,62,10,36,22,32,84,36,-1,,2011/6/272011-07-03,25402,258925,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/27,12:06.8\r\n5,587713,ѩ,1570,3194,47,10,34,19,-3,25,-2,-1,,2011/6/272011-07-03,25402,258925,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/27,12:06.8\r\n6,588691,װ,1480,2718,48,10,31,17,20,64,24,-1,,2011/6/272011-07-03,25402,258925,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/27,12:06.8\r\n7,579720,ռ,807,807,25,2,32,27,0,0,0,0,,2011/6/272011-07-03,25402,258925,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/27,12:06.8\r\n8,589310,,805,805,24,3,33,23,0,0,0,0,,2011/6/272011-07-03,25402,258925,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/27,12:06.8\r\n9,370427,ձȺ4ι,195,46109,4,45,44,40,-58,-67,-64,-2,,2011/6/272011-07-03,25402,258925,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/27,12:06.9\r\n10,589909,ٶ뼤5,180,25041,5,53,37,43,-53,-68,-58,-1,,2011/6/272011-07-03,25402,258925,767,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/27,12:06.9\r\n1,588446,ΰҵ,10888,21574,312,12,35,33,2,14,5,9999,,2011/6/202011-06-26,22727,243605,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/20,12:07.2\r\n2,350725,è2,4631,57584,123,30,38,26,-22,-20,-21,9999,,2011/6/202011-06-26,22727,243605,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/20,12:07.2\r\n3,594319,ܶԱ,1689,1689,46,3,37,30,0,0,0,0,,2011/6/202011-06-26,22727,243605,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/20,12:07.2\r\n4,587713,ѩ,1621,1624,47,3,34,24,0,0,0,0,,2011/6/202011-06-26,22727,243605,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/20,12:07.3\r\n5,588691,װ,1238,1238,39,3,32,23,0,0,0,0,,2011/6/202011-06-26,22727,243605,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/20,12:07.3\r\n6,589921,ʺƽ,741,5661,24,24,31,18,-13,-23,-14,-1,,2011/6/202011-06-26,22727,243605,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/20,12:07.3\r\n7,370427,ձȺ4ι,469,45914,12,38,38,37,-84,-89,-84,-4,,2011/6/202011-06-26,22727,243605,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/20,12:07.3\r\n8,589875,еа,431,664,16,10,28,10,86,114,94,-1,,2011/6/202011-06-26,22727,243605,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/20,12:07.3\r\n9,589909,ٶ뼤5,387,24861,12,46,33,33,-76,-79,-76,-5,,2011/6/202011-06-26,22727,243605,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/20,12:07.4\r\n10,594298,Ϸ2,315,1351,11,17,29,13,-26,-38,-28,-4,,2011/6/202011-06-26,22727,243605,652,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/20,12:07.4\r\n1,588446,ΰҵ,10685,10686,298,5,36,36,0,0,0,0,,2011/6/132011-06-19,22951,238279,642,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/13,12:07.7\r\n2,350725,è2,5937,52953,154,23,38,26,-54,-38,-54,-1,,2011/6/132011-06-19,22951,238279,642,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/13,12:07.7\r\n3,370427,ձȺ4ι,2894,45445,78,31,37,26,-51,-37,-50,-1,,2011/6/132011-06-19,22951,238279,642,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/13,12:07.7\r\n4,589909,ٶ뼤5,1588,24474,49,39,33,29,-39,-29,-39,-1,,2011/6/132011-06-19,22951,238279,642,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/13,12:07.7\r\n5,589921,ʺƽ,856,4920,28,17,31,16,-65,-53,-65,-1,,2011/6/132011-06-19,22951,238279,642,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/13,12:07.7\r\n6,594298,Ϸ2,425,1036,15,10,29,11,-31,3,-29,9999,,2011/6/132011-06-19,22951,238279,642,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/13,12:07.7\r\n7,589875,еа,232,232,8,3,29,12,0,0,0,0,,2011/6/132011-06-19,22951,238279,642,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/13,12:07.7\r\n8,589941,B32,151,1415,5,17,30,11,-76,-69,-76,-3,,2011/6/132011-06-19,22951,238279,642,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/13,12:07.8\r\n9,591766,¼,39,215,2,14,25,7,-78,-71,-75,-2,,2011/6/132011-06-19,22951,238279,642,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/13,12:07.8\r\n10,330880,ٶ뼤,21,1301,1,1022,28,27,-38,-38,-37,2,,2011/6/132011-06-19,22951,238279,642,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/13,12:07.8\r\n1,350725,è2,12826,47016,336,16,38,35,-45,-14,-46,9999,,2011/6/62011-06-12,25622,251509,716,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/6,12:08.1\r\n2,370427,ձȺ4ι,5920,42551,156,24,38,33,-25,-10,-27,9999,,2011/6/62011-06-12,25622,251509,716,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/6,12:08.1\r\n3,589909,ٶ뼤5,2605,22887,80,32,33,34,-9,-5,-11,9999,,2011/6/62011-06-12,25622,251509,716,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/6,12:08.1\r\n4,589921,ʺƽ,2424,4064,78,10,31,22,48,104,50,9999,,2011/6/62011-06-12,25622,251509,716,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/6,12:08.2\r\n5,589941,B32,630,1264,21,10,30,14,-1,36,-1,9999,,2011/6/62011-06-12,25622,251509,716,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/6,12:08.2\r\n6,594298,Ϸ2,611,612,21,3,29,16,0,0,0,0,,2011/6/62011-06-12,25622,251509,716,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/6,12:08.2\r\n7,591766,¼,176,176,6,7,27,8,0,0,0,87,,2011/6/62011-06-12,25622,251509,716,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/6,12:08.2\r\n8,588861,,101,141,5,10,21,74,147,42,139,3,,2011/6/62011-06-12,25622,251509,716,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/6,12:08.2\r\n9,573978,,71,5805,2,34,29,8,-65,-65,-67,-2,,2011/6/62011-06-12,25622,251509,716,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/6,12:08.2\r\n10,579274,µ,48,1980,2,31,31,8,-65,-66,-66,-2,,2011/6/62011-06-12,25622,251509,716,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/6/6,12:08.3\r\n1,350725,è2,23349,34189,625,9,37,56,115,208,117,1,,2011/5/302011-06-05,37676,251033,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/30,12:08.6\r\n2,370427,ձȺ4ι,7937,36631,213,17,37,40,-45,-39,-44,-1,,2011/5/302011-06-05,37676,251033,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/30,12:08.6\r\n3,589909,ٶ뼤5,2876,20282,89,25,32,36,-33,-36,-34,9999,,2011/5/302011-06-05,37676,251033,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/30,12:08.6\r\n4,589921,ʺƽ,1641,1641,52,3,32,30,0,0,0,0,,2011/5/302011-06-05,37676,251033,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/30,12:08.6\r\n5,589941,B32,634,634,21,3,30,19,0,0,0,0,,2011/5/302011-06-05,37676,251033,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/30,12:08.6\r\n6,581960,Ӣ֮Ӵ˵,486,2861,18,24,27,23,114,13,121,9999,,2011/5/302011-06-05,37676,251033,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/30,12:08.7\r\n7,573978,,204,5734,7,27,28,9,-68,-58,-66,-3,,2011/5/302011-06-05,37676,251033,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/30,12:08.7\r\n8,579274,µ,135,1932,5,24,30,8,-62,-54,-61,-3,,2011/5/302011-06-05,37676,251033,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/30,12:08.7\r\n9,330880,ٶ뼤,44,1247,2,1008,29,30,-38,-36,-35,-1,,2011/5/302011-06-05,37676,251033,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/30,12:08.7\r\n10,590369,Լð,44,13868,1,59,33,28,30,-20,36,-1,,2011/5/302011-06-05,37676,251033,1050,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/30,12:08.7\r\n1,370427,ձȺ4ι,14416,28693,382,10,38,44,1,90,6,9999,,2011/5/232011-05-29,31335,219179,868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/23,12:09.1\r\n2,350725,è2,10841,10841,288,2,38,79,0,0,0,0,,2011/5/232011-05-29,31335,219179,868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/23,12:09.1\r\n3,589909,ٶ뼤5,4276,17406,135,18,32,35,-36,-33,-36,-1,,2011/5/232011-05-29,31335,219179,868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/23,12:09.1\r\n4,573978,,634,5530,21,20,30,10,-61,-40,-58,9999,,2011/5/232011-05-29,31335,219179,868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/23,12:09.1\r\n5,579274,µ,357,1797,12,17,30,10,-55,-39,-53,9999,,2011/5/232011-05-29,31335,219179,868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/23,12:09.1\r\n6,581960,Ӣ֮Ӵ˵,227,2374,8,17,28,12,-70,-54,-69,9999,,2011/5/232011-05-29,31335,219179,868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/23,12:09.2\r\n7,391900,,218,9697,6,22,34,14,-87,-81,-86,-4,,2011/5/232011-05-29,31335,219179,868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/23,12:09.2\r\n8,330880,ٶ뼤,71,1203,2,1001,31,29,-42,-37,-40,9999,,2011/5/232011-05-29,31335,219179,868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/23,12:09.2\r\n9,590369,Լð,34,13824,1,52,35,17,-79,-75,-76,-2,,2011/5/232011-05-29,31335,219179,868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/23,12:09.2\r\n10,589158,,30,30,1,3,26,6,0,0,0,0,,2011/5/232011-05-29,31335,219179,868,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/23,12:09.2\r\n1,370427,ձȺ4ι,14278,14278,361,3,40,78,0,0,0,0,,2011/5/162011-05-22,26443,216760,741,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/16,12:09.6\r\n2,589909,ٶ뼤5,6676,13130,210,11,32,36,3,47,5,-1,,2011/5/162011-05-22,26443,216760,741,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/16,12:09.6\r\n3,391900,,1691,9479,46,15,37,18,-71,-55,-70,-1,,2011/5/162011-05-22,26443,216760,741,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/16,12:09.6\r\n4,573978,,1608,4896,51,13,32,15,-51,-20,-50,-1,,2011/5/162011-05-22,26443,216760,741,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/16,12:09.6\r\n5,579274,µ,788,1440,25,10,32,12,21,86,25,1,,2011/5/162011-05-22,26443,216760,741,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/16,12:09.6\r\n6,581960,Ӣ֮Ӵ˵,765,2147,26,10,29,17,-45,18,-44,-2,,2011/5/162011-05-22,26443,216760,741,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/16,12:09.6\r\n7,590369,Լð,157,13790,4,45,40,17,-71,-63,-70,9999,,2011/5/162011-05-22,26443,216760,741,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/16,12:09.7\r\n8,330880,ٶ뼤,122,1132,4,994,32,31,-6,28,-5,2,,2011/5/162011-05-22,26443,216760,741,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/16,12:09.7\r\n9,587699,Ƴ,105,15693,3,27,32,7,-84,-76,-83,-4,,2011/5/162011-05-22,26443,216760,741,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/16,12:09.7\r\n10,588488,ٻŮĻ,57,13944,2,34,29,7,-84,-76,-82,-2,,2011/5/162011-05-22,26443,216760,741,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/16,12:09.7\r\n1,589909,ٶ뼤5,6452,6454,200,4,32,51,0,0,0,0,,2011/5/92011-05-15,19756,221204,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/9,12:10.0\r\n2,391900,,5792,7789,156,8,37,28,190,385,197,2,,2011/5/92011-05-15,19756,221204,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/9,12:10.0\r\n3,573978,,3268,3288,102,6,32,24,0,0,0,0,,2011/5/92011-05-15,19756,221204,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/9,12:10.1\r\n4,581960,Ӣ֮Ӵ˵,1382,1382,47,3,30,36,0,0,0,0,,2011/5/92011-05-15,19756,221204,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/9,12:10.1\r\n5,587699,Ƴ,672,15587,20,20,34,10,-87,-72,-86,-4,,2011/5/92011-05-15,19756,221204,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/9,12:10.1\r\n6,579274,µ,652,652,20,3,33,18,0,0,0,0,,2011/5/92011-05-15,19756,221204,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/9,12:10.1\r\n7,590369,Լð,537,13633,13,38,40,21,-79,-70,-79,-5,,2011/5/92011-05-15,19756,221204,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/9,12:10.1\r\n8,588488,ٻŮĻ,347,13887,11,27,31,9,-86,-71,-85,-5,,2011/5/92011-05-15,19756,221204,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/9,12:10.1\r\n9,573698,Σ,136,2303,4,17,31,10,-90,-79,-89,-4,,2011/5/92011-05-15,19756,221204,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/9,12:10.2\r\n10,330880,ٶ뼤,129,1010,4,987,32,41,47997,5682,9839,39,,2011/5/92011-05-15,19756,221204,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/9,12:10.2\r\n1,587699,Ƴ,5033,14915,146,13,34,21,-49,-11,-50,9999,,2011/5/22011-05-08,15969,230962,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/2,12:10.6\r\n2,590369,Լð,2546,13096,63,31,41,30,-11,2,-13,1,,2011/5/22011-05-08,15969,230962,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/2,12:10.6\r\n3,588488,ٻŮĻ,2425,13540,74,20,33,18,-41,-25,-40,-1,,2011/5/22011-05-08,15969,230962,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/2,12:10.6\r\n4,391900,,1997,1997,52,1,38,46,0,0,0,0,,2011/5/22011-05-08,15969,230962,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/2,12:10.7\r\n5,573698,Σ,1316,2167,41,10,32,19,55,125,54,9999,,2011/5/22011-05-08,15969,230962,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/2,12:10.7\r\n6,587766,B+̽,1231,2200,38,10,33,16,27,91,28,-2,,2011/5/22011-05-08,15969,230962,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/2,12:10.7\r\n7,471568,٣ھӥ,478,835,15,10,32,13,34,107,36,1,,2011/5/22011-05-08,15969,230962,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/2,12:10.7\r\n8,388212,Ůع,177,4565,4,24,43,15,-64,-75,-71,-2,,2011/5/22011-05-08,15969,230962,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/2,12:10.7\r\n9,6456,ٻŮĻ,132,280,4,9,32,8,-11,48,-12,1,,2011/5/22011-05-08,15969,230962,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/2,12:10.7\r\n10,593916,,132,287,5,10,25,12,-15,19,-13,-1,,2011/5/22011-05-08,15969,230962,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/5/2,12:10.8\r\n1,587699,Ƴ,9880,9882,295,6,34,37,0,0,0,0,,2011/4/252011-05-01,20750,231645,616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/25,12:11.8\r\n2,588488,ٻŮĻ,4085,11116,123,13,33,23,-42,-24,-39,-1,,2011/4/252011-05-01,20750,231645,616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/25,12:11.8\r\n3,590369,Լð,2848,10550,73,24,39,35,5,-18,4,-1,,2011/4/252011-05-01,20750,231645,616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/25,12:11.8\r\n4,587766,B+̽,969,969,29,3,33,23,0,0,0,0,,2011/4/252011-05-01,20750,231645,616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/25,12:11.8\r\n5,573698,Σ,851,851,27,3,32,28,0,0,0,0,,2011/4/252011-05-01,20750,231645,616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/25,12:11.8\r\n6,388212,Ůع,495,4388,14,17,36,13,-73,-68,-75,-2,,2011/4/252011-05-01,20750,231645,616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/25,12:11.8\r\n7,592190,ս,459,7484,14,20,34,9,-81,-66,-81,-4,,2011/4/252011-05-01,20750,231645,616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/25,12:11.9\r\n8,471568,٣ھӥ,357,357,11,3,32,20,0,0,0,0,,2011/4/252011-05-01,20750,231645,616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/25,12:11.9\r\n9,593916,,155,155,6,3,26,16,0,0,0,0,,2011/4/252011-05-01,20750,231645,616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/25,12:11.9\r\n10,6456,ٻŮĻ,148,148,5,2,32,13,0,0,0,0,,2011/4/252011-05-01,20750,231645,616,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/25,12:11.9\r\n1,588488,ٻŮĻ,7031,7031,201,6,35,28,0,0,0,0,,2011/4/182011-04-24,15312,218716,443,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/18,12:12.2\r\n2,590369,Լð,2712,7702,69,17,39,27,-3,-15,-4,9999,,2011/4/182011-04-24,15312,218716,443,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/18,12:12.2\r\n3,592190,ս,2435,7025,71,13,34,16,-47,-19,-48,-2,,2011/4/182011-04-24,15312,218716,443,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/18,12:12.3\r\n4,388212,Ůع,1817,3893,56,10,33,16,-12,46,-12,-1,,2011/4/182011-04-24,15312,218716,443,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/18,12:12.3\r\n5,588622,Ů,482,9433,15,25,33,12,-65,-52,-65,-1,,2011/4/182011-04-24,15312,218716,443,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/18,12:12.3\r\n6,302456,ս˳,438,1431,15,13,30,11,-55,-43,-55,-1,,2011/4/182011-04-24,15312,218716,443,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/18,12:12.3\r\n7,589827,Ů,128,1361,4,17,29,8,-73,-63,-72,-1,,2011/4/182011-04-24,15312,218716,443,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/18,12:12.3\r\n8,552241,ս,53,3126,2,24,29,9,-79,-71,-77,9999,,2011/4/182011-04-24,15312,218716,443,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/18,12:12.3\r\n9,588931,Ӳ2㵽,52,2303,2,24,29,8,-71,-65,-68,9999,,2011/4/182011-04-24,15312,218716,443,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/18,12:12.4\r\n10,588765,ҹ,35,822,1,23,28,9,-64,-59,-62,1,,2011/4/182011-04-24,15312,218716,443,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/18,12:12.4\r\n1,592190,ս,4588,4590,137,6,33,24,0,0,0,0,,2011/4/112011-04-17,13557,213402,406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/11,12:12.8\r\n2,590369,Լð,2802,4990,72,10,39,24,28,63,29,1,,2011/4/112011-04-17,13557,213402,406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/11,12:12.8\r\n3,388212,Ůع,2074,2076,64,3,33,27,0,0,0,0,,2011/4/112011-04-17,13557,213402,406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/11,12:12.8\r\n4,588622,Ů,1371,8951,42,18,33,17,-69,-53,-69,-3,,2011/4/112011-04-17,13557,213402,406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/11,12:12.8\r\n5,302456,ս˳,978,993,32,6,30,14,0,0,0,0,,2011/4/112011-04-17,13557,213402,406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/11,12:12.8\r\n6,589827,Ů,482,1233,16,10,31,11,-36,6,-34,9999,,2011/4/112011-04-17,13557,213402,406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/11,12:12.8\r\n7,306340,ɼ֮ս,393,22579,12,31,33,13,-85,-68,-85,-5,,2011/4/112011-04-17,13557,213402,406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/11,12:12.9\r\n8,552241,ս,255,3072,8,17,31,11,-86,-72,-86,-4,,2011/4/112011-04-17,13557,213402,406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/11,12:12.9\r\n9,588931,Ӳ2㵽,181,2251,6,17,32,8,-86,-74,-86,-4,,2011/4/112011-04-17,13557,213402,406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/11,12:12.9\r\n10,592682,,124,399,4,10,30,8,-55,-28,-53,-1,,2011/4/112011-04-17,13557,213402,406,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/11,12:12.9\r\n1,588622,Ů,4425,7579,133,11,33,26,42,49,43,1,,2011/4/42011-04-10,15267,225685,464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/4,12:13.2\r\n2,306340,ɼ֮ս,2677,22186,83,24,32,28,-31,-45,-32,-1,,2011/4/42011-04-10,15267,225685,464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/4,12:13.2\r\n3,590369,Լð,2188,2188,56,3,39,31,0,0,0,0,,2011/4/42011-04-10,15267,225685,464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/4,12:13.2\r\n4,552241,ս,1826,2817,57,10,32,22,85,91,89,-1,,2011/4/42011-04-10,15267,225685,464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/4,12:13.2\r\n5,588931,Ӳ2㵽,1283,2071,40,10,32,15,63,75,68,-1,,2011/4/42011-04-10,15267,225685,464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/4,12:13.3\r\n6,589827,Ů,751,752,24,3,32,18,0,0,0,0,,2011/4/42011-04-10,15267,225685,464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/4,12:13.3\r\n7,588765,ҹ,487,691,17,9,29,15,140,181,148,9999,,2011/4/42011-04-10,15267,225685,464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/4,12:13.3\r\n8,588802,ܶ,336,520,11,9,30,12,86,115,95,2,,2011/4/42011-04-10,15267,225685,464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/4,12:13.3\r\n9,592682,,275,275,9,3,31,12,0,0,0,0,,2011/4/42011-04-10,15267,225685,464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/4,12:13.3\r\n10,589847,լܶԱ,263,465,9,10,30,11,33,27,37,-2,,2011/4/42011-04-10,15267,225685,464,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/4/4,12:13.3\r\n1,306340,ɼ֮ս,3853,19509,122,17,32,22,-53,-37,-53,9999,,2011/3/282011-04-03,11581,204336,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/28,12:13.6\r\n2,588622,Ů,3122,3154,93,4,33,27,0,0,0,0,,2011/3/282011-04-03,11581,204336,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/28,12:13.7\r\n3,552241,ս,989,992,30,3,33,22,0,0,0,0,,2011/3/282011-04-03,11581,204336,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/28,12:13.7\r\n4,588931,Ӳ2㵽,788,788,24,3,33,16,0,0,0,0,,2011/3/282011-04-03,11581,204336,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/28,12:13.7\r\n5,591912,ع,735,2133,26,13,28,14,-47,-32,-46,-3,,2011/3/282011-04-03,11581,204336,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/28,12:13.7\r\n6,590518,ߣ;,685,1680,22,10,31,11,-31,11,-28,-3,,2011/3/282011-04-03,11581,204336,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/28,12:13.7\r\n7,588765,ҹ,203,203,7,2,30,17,0,0,0,0,,2011/3/282011-04-03,11581,204336,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/28,12:13.7\r\n8,589847,լܶԱ,198,202,6,3,30,10,0,0,0,0,,2011/3/282011-04-03,11581,204336,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/28,12:13.7\r\n9,573874,Ц,192,2177,7,18,29,8,-75,-65,-73,-5,,2011/3/282011-04-03,11581,204336,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/28,12:13.8\r\n10,588802,ܶ,181,184,6,2,32,13,0,0,0,0,,2011/3/282011-04-03,11581,204336,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/28,12:13.8\r\n1,306340,ɼ֮ս,8249,15656,261,10,32,30,11,98,13,9999,,2011/3/212011-03-27,12901,207236,415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/21,12:14.1\r\n2,591912,ع,1398,1398,48,6,29,17,0,0,0,0,,2011/3/212011-03-27,12901,207236,415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/21,12:14.1\r\n3,590518,ߣ;,993,994,30,3,33,16,0,0,0,0,,2011/3/212011-03-27,12901,207236,415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/21,12:14.1\r\n4,573874,Ц,784,1984,25,11,32,10,-35,-12,-34,9999,,2011/3/212011-03-27,12901,207236,415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/21,12:14.1\r\n5,591734,ؼĺ,338,11361,9,30,37,13,-73,-71,-77,-2,,2011/3/212011-03-27,12901,207236,415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/21,12:14.1\r\n6,587986,ʣ,263,265,9,6,28,8,0,0,0,0,,2011/3/212011-03-27,12901,207236,415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/21,12:14.1\r\n7,852,Ѱᱦ,258,3128,9,17,29,9,-80,-70,-80,-5,,2011/3/212011-03-27,12901,207236,415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/21,12:14.2\r\n8,573890,ɽ,257,6911,8,25,32,9,-76,-66,-76,-3,,2011/3/212011-03-27,12901,207236,415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/21,12:14.2\r\n9,589663,,68,1036,2,17,28,7,-83,-76,-83,-3,,2011/3/212011-03-27,12901,207236,415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/21,12:14.2\r\n10,588622,Ů,31,32,1,-3,32,121,0,0,0,0,,2011/3/212011-03-27,12901,207236,415,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/21,12:14.2\r\n1,306340,ɼ֮ս,7408,7408,231,3,32,53,0,0,0,0,,2011/3/142011-03-20,13630,207055,432,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/14,12:14.5\r\n2,852,Ѱᱦ,1294,2870,43,10,30,13,-18,64,-15,1,,2011/3/142011-03-20,13630,207055,432,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/14,12:14.5\r\n3,591734,ؼĺ,1275,11022,39,23,33,16,-61,-41,-62,-2,,2011/3/142011-03-20,13630,207055,432,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/14,12:14.6\r\n4,573874,Ц,1200,1200,38,4,32,14,0,0,0,0,,2011/3/142011-03-20,13630,207055,432,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/14,12:14.6\r\n5,573890,ɽ,1058,6653,32,18,33,13,-66,-45,-65,-3,,2011/3/142011-03-20,13630,207055,432,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/14,12:14.6\r\n6,589663,,410,968,14,10,28,10,-26,22,-25,9999,,2011/3/142011-03-20,13630,207055,432,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/14,12:14.6\r\n7,591789,Ϯ60,226,545,7,10,31,8,-29,37,-24,1,,2011/3/142011-03-20,13630,207055,432,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/14,12:14.6\r\n8,588593,е,154,19320,5,37,33,10,-83,-76,-84,-3,,2011/3/142011-03-20,13630,207055,432,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/14,12:14.7\r\n9,590250,,144,13576,4,36,35,13,-86,-80,-87,-5,,2011/3/142011-03-20,13630,207055,432,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/14,12:14.7\r\n10,588854,,105,1016,4,17,28,9,-77,-71,-77,-3,,2011/3/142011-03-20,13630,207055,432,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/14,12:14.7\r\n1,591734,ؼĺ,3286,9748,103,16,32,25,-21,-24,-20,9999,,2011/3/72011-03-13,12118,208595,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/7,12:15.0\r\n2,573890,ɽ,3085,5595,93,11,33,20,23,42,28,9999,,2011/3/72011-03-13,12118,208595,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/7,12:15.1\r\n3,852,Ѱᱦ,1576,1576,51,3,31,26,0,0,0,0,,2011/3/72011-03-13,12118,208595,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/7,12:15.1\r\n4,590250,,1003,13432,32,29,32,21,-32,-37,-31,9999,,2011/3/72011-03-13,12118,208595,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/7,12:15.1\r\n5,588593,е,912,19166,29,30,32,15,-48,-46,-45,-2,,2011/3/72011-03-13,12118,208595,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/7,12:15.1\r\n6,589663,,557,558,19,3,29,16,0,0,0,0,,2011/3/72011-03-13,12118,208595,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/7,12:15.1\r\n7,588854,,451,911,16,10,28,12,-2,31,5,-1,,2011/3/72011-03-13,12118,208595,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/7,12:15.1\r\n8,591789,Ϯ60,319,319,10,3,33,14,0,0,0,0,,2011/3/72011-03-13,12118,208595,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/7,12:15.1\r\n9,300005,,230,1404,7,17,34,12,-51,-50,-46,-4,,2011/3/72011-03-13,12118,208595,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/7,12:15.2\r\n10,573365,ʮ,179,179,6,4,28,8,0,0,0,0,,2011/3/72011-03-13,12118,208595,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/3/7,12:15.2\r\n1,591734,ؼĺ,4146,6462,128,9,32,24,79,186,82,2,,2011/2/282011-03-06,12064,208121,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/28,12:15.5\r\n2,573890,ɽ,2501,2510,72,4,35,22,0,0,0,0,,2011/2/282011-03-06,12064,208121,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/28,12:15.5\r\n3,588593,е,1740,18254,53,23,33,15,-57,-36,-57,-2,,2011/2/282011-03-06,12064,208121,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/28,12:15.6\r\n4,590250,,1485,12429,46,22,33,19,-54,-41,-55,-2,,2011/2/282011-03-06,12064,208121,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/28,12:15.6\r\n5,300005,,471,1175,13,10,37,11,-33,8,-31,1,,2011/2/282011-03-06,12064,208121,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/28,12:15.6\r\n6,588854,,460,460,15,3,30,15,0,0,0,0,,2011/2/282011-03-06,12064,208121,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/28,12:15.6\r\n7,338202,,443,13795,12,27,38,13,-70,-60,-70,-3,,2011/2/282011-03-06,12064,208121,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/28,12:15.6\r\n8,589812,ǿ,161,16436,5,35,30,10,-82,-72,-80,-3,,2011/2/282011-03-06,12064,208121,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/28,12:15.6\r\n9,588514,֪Ů,150,6455,5,32,32,9,-67,-50,-66,-2,,2011/2/282011-03-06,12064,208121,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/28,12:15.7\r\n10,555073,һ,131,131,4,3,32,9,0,0,0,0,,2011/2/282011-03-06,12064,208121,368,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/28,12:15.7\r\n1,588593,е,4072,16514,122,16,33,22,-58,-19,-54,9999,,2011/2/212011-02-27,14429,216096,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/21,12:16.2\r\n2,590250,,3256,10944,101,15,32,24,-51,-15,-47,9999,,2011/2/212011-02-27,14429,216096,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/21,12:16.2\r\n3,591734,ؼĺ,2315,2316,71,2,33,37,0,0,0,0,,2011/2/212011-02-27,14429,216096,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/21,12:16.2\r\n4,338202,,1501,13352,38,20,39,18,-65,-34,-61,-1,,2011/2/212011-02-27,14429,216096,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/21,12:16.2\r\n5,589812,ǿ,877,16275,28,28,32,15,-66,-26,-63,-1,,2011/2/212011-02-27,14429,216096,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/21,12:16.2\r\n6,300005,,704,704,19,3,38,18,0,0,0,0,,2011/2/212011-02-27,14429,216096,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/21,12:16.2\r\n7,588514,֪Ů,451,6305,14,25,32,13,-56,-18,-51,-1,,2011/2/212011-02-27,14429,216096,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/21,12:16.3\r\n8,588420,⴫,359,18561,11,33,34,10,-68,-33,-65,-3,,2011/2/212011-02-27,14429,216096,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/21,12:16.3\r\n9,589502,,262,4949,9,25,30,12,-60,-24,-56,-2,,2011/2/212011-02-27,14429,216096,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/21,12:16.3\r\n10,590084,ҰHK,198,2797,6,28,31,18,-66,-20,-63,-2,,2011/2/212011-02-27,14429,216096,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/21,12:16.3\r\n1,588593,е,9782,12442,266,9,37,40,268,274,255,3,,2011/2/142011-02-20,28072,246853,771,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/14,12:16.6\r\n2,590250,,6626,7688,191,8,35,39,524,717,517,7,,2011/2/142011-02-20,28072,246853,771,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/14,12:16.6\r\n3,338202,,4233,11852,97,13,44,30,-44,-33,-48,-2,,2011/2/142011-02-20,28072,246853,771,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/14,12:16.7\r\n4,589812,ǿ,2572,15398,74,21,35,29,-51,-36,-53,-2,,2011/2/142011-02-20,28072,246853,771,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/14,12:16.7\r\n5,588420,⴫,1110,18203,30,26,37,20,-68,-50,-69,-2,,2011/2/142011-02-20,28072,246853,771,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/14,12:16.7\r\n6,588514,֪Ů,1029,5854,29,18,35,22,-54,-47,-56,-1,,2011/2/142011-02-20,28072,246853,771,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/14,12:16.7\r\n7,589502,,652,4688,20,18,33,20,-65,-56,-66,-1,,2011/2/142011-02-20,28072,246853,771,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/14,12:16.7\r\n8,590084,ҰHK,576,2599,17,21,34,38,-42,-32,-44,2,,2011/2/142011-02-20,28072,246853,771,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/14,12:16.7\r\n9,572979,èܶԱ,446,4453,12,18,36,20,-71,-57,-69,-2,,2011/2/142011-02-20,28072,246853,771,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/14,12:16.8\r\n10,589061,Լ,387,455,13,8,31,14,472,431,472,5,,2011/2/142011-02-20,28072,246853,771,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/14,12:16.8\r\n1,338202,,7615,7619,185,6,41,38,0,0,0,0,,2011/2/72011-02-13,29820,251629,832,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/7,12:17.1\r\n2,589812,ǿ,5246,12826,156,14,34,40,-31,-19,-30,-1,,2011/2/72011-02-13,29820,251629,832,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/7,12:17.1\r\n3,588420,⴫,3482,17092,96,19,36,31,-42,-28,-42,-1,,2011/2/72011-02-13,29820,251629,832,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/7,12:17.1\r\n4,588593,е,2660,2660,75,2,35,42,0,0,0,0,,2011/2/72011-02-13,29820,251629,832,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/7,12:17.1\r\n5,588514,֪Ů,2237,4825,65,11,34,27,-13,4,-10,-1,,2011/2/72011-02-13,29820,251629,832,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/7,12:17.1\r\n6,589502,,1841,4036,58,11,32,26,-16,14,-13,1,,2011/2/72011-02-13,29820,251629,832,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/7,12:17.1\r\n7,572979,èܶԱ,1559,4007,40,11,39,28,-36,-6,-33,-2,,2011/2/72011-02-13,29820,251629,832,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/7,12:17.2\r\n8,589926,ϲ̫֮궥,1432,13541,47,24,31,24,-46,-30,-43,-5,,2011/2/72011-02-13,29820,251629,832,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/7,12:17.2\r\n9,590250,,1062,1062,31,1,34,52,0,0,0,0,,2011/2/72011-02-13,29820,251629,832,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/7,12:17.2\r\n10,590084,ҰHK,996,2022,30,14,33,46,-3,-40,-3,-2,,2011/2/72011-02-13,29820,251629,832,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/2/7,12:17.2\r\n1,589812,ǿ,7578,7579,224,7,34,46,0,0,0,21,,2011/1/312011-02-06,28660,229275,813,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/31,12:17.5\r\n2,588420,⴫,6025,13610,167,12,36,39,-20,-22,-22,-1,,2011/1/312011-02-06,28660,229275,813,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/31,12:17.6\r\n3,589926,ϲ̫֮궥,2640,12109,83,17,32,30,-39,-51,-42,9999,,2011/1/312011-02-06,28660,229275,813,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/31,12:17.6\r\n4,588514,֪Ů,2584,2588,72,4,36,31,0,0,0,0,,2011/1/312011-02-06,28660,229275,813,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/31,12:17.6\r\n5,572979,èܶԱ,2443,2449,61,4,40,39,0,0,0,0,,2011/1/312011-02-06,28660,229275,813,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/31,12:17.6\r\n6,573920,,2395,20019,65,19,37,28,-66,-65,-67,-4,,2011/1/312011-02-06,28660,229275,813,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/31,12:17.6\r\n7,589502,,2195,2196,66,4,33,34,0,0,0,0,,2011/1/312011-02-06,28660,229275,813,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/31,12:17.6\r\n8,590084,ҰHK,1027,1027,31,7,33,29,0,0,0,129,,2011/1/312011-02-06,28660,229275,813,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/31,12:17.6\r\n9,393712,ս,755,11626,15,28,50,34,-48,-65,-54,-5,,2011/1/312011-02-06,28660,229275,813,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/31,12:17.7\r\n10,408836,Ǵ3,485,12114,13,31,39,32,-54,-65,-56,-5,,2011/1/312011-02-06,28660,229275,813,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/31,12:17.7\r\n1,588420,⴫,7579,7585,213,5,36,39,0,0,0,0,,2011/1/242011-01-30,22680,223259,654,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/24,12:18.0\r\n2,573920,,7118,17625,199,12,36,30,-32,3,-31,-1,,2011/1/242011-01-30,22680,223259,654,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/24,12:18.0\r\n3,589926,ϲ̫֮궥,4311,9470,142,10,30,25,-16,69,-15,-1,,2011/1/242011-01-30,22680,223259,654,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/24,12:18.0\r\n4,393712,ս,1454,10871,33,21,44,27,-51,-57,-52,-1,,2011/1/242011-01-30,22680,223259,654,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/24,12:18.0\r\n5,408836,Ǵ3,1046,11629,28,24,37,25,-53,-53,-51,-1,,2011/1/242011-01-30,22680,223259,654,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/24,12:18.0\r\n6,573439,ӵ,573,65181,16,46,37,19,-60,-64,-61,-1,,2011/1/242011-01-30,22680,223259,654,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/24,12:18.0\r\n7,588459,ǳ2,202,47127,6,40,36,14,-77,-76,-77,-1,,2011/1/242011-01-30,22680,223259,654,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/24,12:18.1\r\n8,591772,񾯹,188,254,7,21,26,183,185,214,176,9999,,2011/1/242011-01-30,22680,223259,654,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/24,12:18.1\r\n9,592163,Ϸ֮Сˮ,129,129,4,4,29,7,0,0,0,0,,2011/1/242011-01-30,22680,223259,654,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/24,12:18.1\r\n10,589385,ҹ,11,3053,0,38,27,16,-88,-91,-87,-3,,2011/1/242011-01-30,22680,223259,654,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/24,12:18.1\r\n1,573920,,10506,10506,289,5,36,45,0,0,0,0,,2011/1/172011-01-23,23471,198669,659,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/17,12:18.5\r\n2,589926,ϲ̫֮궥,5158,5159,167,3,31,49,0,0,0,0,,2011/1/172011-01-23,23471,198669,659,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/17,12:18.5\r\n3,393712,ս,2997,9417,68,14,44,24,-53,-46,-54,-2,,2011/1/172011-01-23,23471,198669,659,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/17,12:18.5\r\n4,408836,Ǵ3,2203,10583,58,17,38,24,-44,-39,-44,-2,,2011/1/172011-01-23,23471,198669,659,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/17,12:18.5\r\n5,573439,ӵ,1443,64608,40,39,36,18,-54,-45,-53,-2,,2011/1/172011-01-23,23471,198669,659,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/17,12:18.5\r\n6,588459,ǳ2,868,46926,24,33,36,14,-62,-51,-61,-2,,2011/1/172011-01-23,23471,198669,659,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/17,12:18.5\r\n7,589385,ҹ,93,3042,3,31,28,12,-53,-47,-50,-2,,2011/1/172011-01-23,23471,198669,659,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/17,12:18.6\r\n8,591772,񾯹,66,66,3,14,25,209,0,0,0,0,,2011/1/172011-01-23,23471,198669,659,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/17,12:18.6\r\n9,572857,һ·,21,719,1,24,27,6,-67,-59,-66,-3,,2011/1/172011-01-23,23471,198669,659,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/17,12:18.6\r\n10,573862,Ϲ¶,18,18223,1,51,22,35,-29,-53,15,-1,,2011/1/172011-01-23,23471,198669,659,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/17,12:18.6\r\n1,393712,ս,6410,6420,147,7,44,28,0,0,0,12,,2011/1/102011-01-16,16292,184065,414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/10,12:19.2\r\n2,408836,Ǵ3,3968,8381,103,10,39,26,-10,31,-2,1,,2011/1/102011-01-16,16292,184065,414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/10,12:19.2\r\n3,573439,ӵ,3146,63165,86,32,37,20,-52,-34,-51,-2,,2011/1/102011-01-16,16292,184065,414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/10,12:19.2\r\n4,588459,ǳ2,2298,46058,61,26,37,18,-58,-42,-57,-2,,2011/1/102011-01-16,16292,184065,414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/10,12:19.2\r\n5,589385,ҹ,199,2949,7,24,30,12,-63,-47,-61,-1,,2011/1/102011-01-16,16292,184065,414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/10,12:19.3\r\n6,572857,һ·,63,698,2,17,27,8,-79,-64,-77,-1,,2011/1/102011-01-16,16292,184065,414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/10,12:19.3\r\n7,588788,ǰ,60,398,2,18,30,16,-62,-46,-62,9999,,2011/1/102011-01-16,16292,184065,414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/10,12:19.3\r\n8,589984,,34,400,1,17,27,8,-80,-69,-77,-2,,2011/1/102011-01-16,16292,184065,414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/10,12:19.3\r\n9,573862,Ϲ¶,26,18205,1,44,35,15,-71,-79,-74,-1,,2011/1/102011-01-16,16292,184065,414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/10,12:19.3\r\n10,590383,ʧ,20,50,1,10,26,5,-34,6,-25,9999,,2011/1/102011-01-16,16292,184065,414,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/10,12:19.3\r\n1,573439,ӵ,6622,60019,176,25,38,28,-56,-17,-56,1,,2011/1/32011-01-09,17992,187945,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/3,12:19.8\r\n2,588459,ǳ2,5505,43760,144,19,38,24,-65,-31,-66,-1,,2011/1/32011-01-09,17992,187945,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/3,12:19.8\r\n3,408836,Ǵ3,4411,4412,105,3,42,35,0,0,0,0,,2011/1/32011-01-09,17992,187945,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/3,12:19.9\r\n4,589385,ҹ,533,2750,17,17,31,17,-53,-34,-55,-1,,2011/1/32011-01-09,17992,187945,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/3,12:19.9\r\n5,572857,һ·,304,634,10,10,30,12,-8,75,-4,-1,,2011/1/32011-01-09,17992,187945,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/3,12:19.9\r\n6,589984,,168,366,6,10,31,11,-15,63,-12,9999,,2011/1/32011-01-09,17992,187945,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/3,12:19.9\r\n7,588788,ǰ,159,338,5,11,30,22,-11,77,-14,9999,,2011/1/32011-01-09,17992,187945,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/3,12:19.9\r\n8,573862,Ϲ¶,87,18180,3,37,30,12,-73,-50,-72,-3,,2011/1/32011-01-09,17992,187945,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/3,12:19.9\r\n9,588176,ܱ,73,173,3,10,28,9,-27,24,-25,9999,,2011/1/32011-01-09,17992,187945,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/3,12:20.0\r\n10,590383,ʧ,30,30,1,3,29,7,0,0,0,0,,2011/1/32011-01-09,17992,187945,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2011/1/3,12:20.0\r\n1,588459,ǳ2,15838,38255,424,12,37,50,-29,13,-24,9999,,2010/12/272011-01-02,33656,198787,917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/27,12:20.4\r\n2,573439,ӵ,15208,53398,404,18,38,53,-26,-12,-23,9999,,2010/12/272011-01-02,33656,198787,917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/27,12:20.4\r\n3,589385,ҹ,1135,2217,38,10,30,24,5,85,18,9999,,2010/12/272011-01-02,33656,198787,917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/27,12:20.4\r\n4,572857,һ·,330,330,11,3,31,22,0,0,0,0,,2010/12/272011-01-02,33656,198787,917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/27,12:20.4\r\n5,573862,Ϲ¶,327,18093,10,30,33,21,-53,-63,-53,-1,,2010/12/272011-01-02,33656,198787,917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/27,12:20.5\r\n6,589984,,197,197,6,3,32,20,0,0,0,0,,2010/12/272011-01-02,33656,198787,917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/27,12:20.5\r\n7,588788,ǰ,179,179,6,4,29,46,0,0,0,0,,2010/12/272011-01-02,33656,198787,917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/27,12:20.5\r\n8,588499,Ц,104,15131,4,31,24,16,-67,-70,-61,-3,,2010/12/272011-01-02,33656,198787,917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/27,12:20.5\r\n9,588176,ܱ,100,100,3,3,29,15,0,0,0,0,,2010/12/272011-01-02,33656,198787,917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/27,12:20.5\r\n10,339970,ʥ(),68,12126,2,45,43,56,-5,-27,4,-4,,2010/12/272011-01-02,33656,198787,917,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/27,12:20.5\r\n1,588459,ǳ2,22423,22449,561,5,40,74,0,0,0,0,,2010/12/202010-12-26,45274,197532,1166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/20,12:21.0\r\n2,573439,ӵ,20414,38222,527,11,39,61,15,32,10,-1,,2010/12/202010-12-26,45274,197532,1166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/20,12:21.1\r\n3,589385,ҹ,1084,1084,32,3,34,38,0,0,0,0,,2010/12/202010-12-26,45274,197532,1166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/20,12:21.1\r\n4,573862,Ϲ¶,693,17767,21,23,33,16,-78,-72,-78,-2,,2010/12/202010-12-26,45274,197532,1166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/20,12:21.1\r\n5,588499,Ц,315,15028,11,24,28,12,-85,-78,-84,-2,,2010/12/202010-12-26,45274,197532,1166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/20,12:21.1\r\n6,339970,ʥ(),72,12058,2,38,48,40,-74,-92,-80,-2,,2010/12/202010-12-26,45274,197532,1166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/20,12:21.1\r\n7,589024,ҽļ,37,37,1,-2,48,64,0,0,0,0,,2010/12/202010-12-26,45274,197532,1166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/20,12:21.1\r\n8,,,32,,1,,29,14,0,0,0,-3,,2010/12/202010-12-26,45274,197532,1166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/20,12:21.1\r\n9,338499,èͷӥ,31,2979,1,45,31,23,-52,-71,-47,-1,,2010/12/202010-12-26,45274,197532,1166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/20,12:21.2\r\n10,417248,Σ4ս,25,13542,1,41,32,10,-86,-80,-83,-4,,2010/12/202010-12-26,45274,197532,1166,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/20,12:21.2\r\n1,573439,ӵ,17797,17808,477,4,37,73,0,0,0,0,,2010/12/132010-12-19,24139,176134,677,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/13,12:21.6\r\n2,573862,Ϲ¶,3210,17074,98,16,33,20,-65,-34,-65,-1,,2010/12/132010-12-19,24139,176134,677,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/13,12:21.6\r\n3,588499,Ц,2112,14712,69,17,31,17,-69,-39,-68,-1,,2010/12/132010-12-19,24139,176134,677,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/13,12:21.6\r\n4,339970,ʥ(),276,11985,8,31,36,16,-65,-52,-66,-1,,2010/12/132010-12-19,24139,176134,677,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/13,12:21.6\r\n5,,,221,,7,,32,14,0,0,0,-1,,2010/12/132010-12-19,24139,176134,677,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/13,12:21.6\r\n6,417248,Σ4ս,176,13517,5,34,39,11,-68,-57,-66,-1,,2010/12/132010-12-19,24139,176134,677,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/13,12:21.6\r\n7,593750,ַ,73,451,2,188,36,33,-67,-40,-67,-1,,2010/12/132010-12-19,24139,176134,677,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/13,12:21.7\r\n8,338499,èͷӥ,66,2947,2,38,35,12,-58,-34,-57,9999,,2010/12/132010-12-19,24139,176134,677,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/13,12:21.7\r\n9,376616,ع,56,741,2,20,27,10,-65,-48,-63,-2,,2010/12/132010-12-19,24139,176134,677,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/13,12:21.7\r\n10,588550,һ,27,1536,1,158,19,62,12,-11,15,2,,2010/12/132010-12-19,24139,176134,677,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/13,12:21.7\r\n1,573862,Ϲ¶,9199,13864,276,9,33,38,97,238,102,1,,2010/12/62010-12-12,18856,183829,576,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/6,12:22.2\r\n2,588499,Ц,6842,12601,216,10,32,32,19,121,22,-1,,2010/12/62010-12-12,18856,183829,576,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/6,12:22.2\r\n3,339970,ʥ(),788,11709,23,24,35,23,-58,-57,-60,1,,2010/12/62010-12-12,18856,183829,576,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/6,12:22.3\r\n4,,,657,,20,,33,22,0,0,0,1,,2010/12/62010-12-12,18856,183829,576,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/6,12:22.3\r\n5,417248,Σ4ս,546,13341,14,27,40,15,-73,-64,-73,-2,,2010/12/62010-12-12,18856,183829,576,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/6,12:22.3\r\n6,593750,ַ,217,379,6,181,36,59,34,102,37,5,,2010/12/62010-12-12,18856,183829,576,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/6,12:22.3\r\n7,376616,ع,161,684,6,13,29,14,-69,-63,-70,-1,,2010/12/62010-12-12,18856,183829,576,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/6,12:22.3\r\n8,338499,èͷӥ,156,2882,4,31,36,18,-27,-33,-26,2,,2010/12/62010-12-12,18856,183829,576,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/6,12:22.3\r\n9,589179,Сҵֵ,60,1252,2,18,31,12,-86,-86,-86,-2,,2010/12/62010-12-12,18856,183829,576,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/6,12:22.4\r\n10,396384,Σʱ,50,6376,2,34,28,14,-79,-75,-78,-1,,2010/12/62010-12-12,18856,183829,576,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/12/6,12:22.4\r\n1,588499,Ц,5759,5759,177,3,33,59,0,0,0,0,,2010/11/292010-12-05,18041,174363,544,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/29,12:22.9\r\n2,573862,Ϲ¶,4665,4665,136,2,34,64,0,0,0,0,,2010/11/292010-12-05,18041,174363,544,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/29,12:22.9\r\n3,417248,Σ4ս,2053,12794,50,20,41,20,-54,-35,-54,-1,,2010/11/292010-12-05,18041,174363,544,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/29,12:23.0\r\n4,339970,ʥ(),1877,10921,56,17,34,25,-60,-41,-62,-3,,2010/11/292010-12-05,18041,174363,544,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/29,12:23.0\r\n5,,,1480,,46,,32,23,0,0,0,-2,,2010/11/292010-12-05,18041,174363,544,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/29,12:23.0\r\n6,376616,ع,523,524,18,6,29,16,0,0,0,0,,2010/11/292010-12-05,18041,174363,544,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/29,12:23.0\r\n7,589179,Сҵֵ,434,1192,14,11,31,13,-43,-12,-42,-3,,2010/11/292010-12-05,18041,174363,544,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/29,12:23.0\r\n8,573057,,277,711,11,11,26,11,-36,5,-33,-1,,2010/11/292010-12-05,18041,174363,544,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/29,12:23.0\r\n9,396384,Σʱ,239,6326,8,27,29,15,-65,-54,-64,-4,,2010/11/292010-12-05,18041,174363,544,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/29,12:23.1\r\n10,338499,èͷӥ,213,2726,6,24,36,17,-57,-39,-55,-4,,2010/11/292010-12-05,18041,174363,544,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/29,12:23.1\r\n1,339970,ʥ(),4729,9044,146,10,32,38,10,99,10,1,,2010/11/222010-11-28,15713,169748,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/22,12:23.6\r\n2,417248,Σ4ս,4420,10742,108,13,41,28,-30,-21,-31,-1,,2010/11/222010-11-28,15713,169748,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/22,12:23.6\r\n3,,,3367,,109,,31,38,0,0,0,9999,,2010/11/222010-11-28,15713,169748,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/22,12:23.6\r\n4,589179,Сҵֵ,757,758,24,4,32,19,0,0,0,0,,2010/11/222010-11-28,15713,169748,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/22,12:23.7\r\n5,396384,Σʱ,674,6087,23,20,30,20,-54,-57,-54,-1,,2010/11/222010-11-28,15713,169748,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/22,12:23.7\r\n6,338499,èͷӥ,492,2513,13,17,38,22,-29,-43,-26,-1,,2010/11/222010-11-28,15713,169748,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/22,12:23.7\r\n7,573057,,434,434,16,4,27,18,0,0,0,0,,2010/11/222010-11-28,15713,169748,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/22,12:23.7\r\n8,588616,¿,207,849,7,24,28,27,-5,-31,-6,1,,2010/11/222010-11-28,15713,169748,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/22,12:23.7\r\n9,588497,ɫ,115,1257,4,20,28,9,-67,-60,-67,-3,,2010/11/222010-11-28,15713,169748,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/22,12:23.7\r\n10,588550,һ,97,1445,5,137,20,59,-23,-17,-14,1,,2010/11/222010-11-28,15713,169748,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/22,12:23.7\r\n1,417248,Σ4ս,6322,6322,158,6,40,32,0,0,0,0,,2010/11/152010-11-21,17668,174702,520,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/15,12:24.1\r\n2,339970,ʥ(),4315,4315,133,3,33,69,0,0,0,0,,2010/11/152010-11-21,17668,174702,520,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/15,12:24.1\r\n3,,,3122,,98,,32,72,0,0,0,0,,2010/11/152010-11-21,17668,174702,520,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/15,12:24.1\r\n4,396384,Σʱ,1475,5413,49,13,30,19,-63,-36,-62,-3,,2010/11/152010-11-21,17668,174702,520,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/15,12:24.1\r\n5,338499,èͷӥ,695,2021,18,10,39,17,-48,-14,-46,-3,,2010/11/152010-11-21,17668,174702,520,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/15,12:24.1\r\n6,588497,ɫ,349,1142,12,13,28,11,-55,-34,-54,-1,,2010/11/152010-11-21,17668,174702,520,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/15,12:24.1\r\n7,588160,ҵҰŮ2,262,1950,9,17,28,10,-69,-49,-68,-3,,2010/11/152010-11-21,17668,174702,520,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/15,12:24.2\r\n8,573512,,229,6787,7,25,31,9,-76,-59,-75,-5,,2010/11/152010-11-21,17668,174702,520,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/15,12:24.2\r\n9,588616,¿,217,642,8,17,28,20,-4,-44,-12,-1,,2010/11/152010-11-21,17668,174702,520,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/15,12:24.2\r\n10,573594,36,165,543,6,13,27,9,-55,-37,-54,-3,,2010/11/152010-11-21,17668,174702,520,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/15,12:24.2\r\n1,396384,Σʱ,3937,3937,129,6,31,31,0,0,0,0,,2010/11/82010-11-14,10065,172187,325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/8,12:24.5\r\n2,338499,èͷӥ,1325,1325,33,3,41,27,0,0,0,0,,2010/11/82010-11-14,10065,172187,325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/8,12:24.5\r\n3,573512,,941,6557,29,18,32,14,-66,-48,-65,-2,,2010/11/82010-11-14,10065,172187,325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/8,12:24.5\r\n4,588160,ҵҰŮ2,845,1688,29,10,29,16,0,60,4,-1,,2010/11/82010-11-14,10065,172187,325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/8,12:24.6\r\n5,588497,ɫ,781,793,27,6,29,16,0,0,0,0,,2010/11/82010-11-14,10065,172187,325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/8,12:24.6\r\n6,588863,֮ɸ,411,2249,14,17,29,14,-63,-51,-63,-4,,2010/11/82010-11-14,10065,172187,325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/8,12:24.6\r\n7,573594,36,371,378,13,6,28,12,0,0,0,0,,2010/11/82010-11-14,10065,172187,325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/8,12:24.6\r\n8,588616,¿,227,426,9,10,26,12,15,29,29,1,,2010/11/82010-11-14,10065,172187,325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/8,12:24.6\r\n9,572692,ʽ֮ͨ۹,156,28593,5,47,33,12,-70,-58,-70,-4,,2010/11/82010-11-14,10065,172187,325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/8,12:24.6\r\n10,588550,һ,125,1224,6,123,21,50,20,-5,18,4,,2010/11/82010-11-14,10065,172187,325,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/8,12:24.7\r\n1,573512,,2731,5616,84,11,32,20,-5,41,-5,9999,,2010/11/12010-11-07,8600,164120,276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/1,12:24.9\r\n2,588863,֮ɸ,1102,1837,38,10,29,18,50,106,51,3,,2010/11/12010-11-07,8600,164120,276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/1,12:24.9\r\n3,588160,ҵҰŮ2,843,843,28,3,31,25,0,0,0,0,,2010/11/12010-11-07,8600,164120,276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/1,12:24.9\r\n4,472875,2,544,4935,16,24,34,18,-44,-39,-47,-1,,2010/11/12010-11-07,8600,164120,276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/1,12:25.0\r\n5,572692,ʽ֮ͨ۹,529,28436,16,40,33,16,-53,-48,-54,-3,,2010/11/12010-11-07,8600,164120,276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/1,12:25.0\r\n6,391089,֮ս,512,1365,14,13,37,14,-40,-28,-39,-2,,2010/11/12010-11-07,8600,164120,276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/1,12:25.0\r\n7,573941,ӽ,480,481,16,6,29,12,0,0,0,0,,2010/11/12010-11-07,8600,164120,276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/1,12:25.0\r\n8,589571,,342,1681,11,17,30,15,-53,-47,-54,-2,,2010/11/12010-11-07,8600,164120,276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/1,12:25.0\r\n9,588616,¿,197,199,7,3,29,13,0,0,0,0,,2010/11/12010-11-07,8600,164120,276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/1,12:25.0\r\n10,573547,ħ֮Ƽɵ,194,3688,5,24,38,12,-64,-54,-64,-2,,2010/11/12010-11-07,8600,164120,276,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/11/1,12:25.1\r\n1,573512,,2883,2885,89,4,32,30,0,0,0,0,,2010/10/252010-10-31,10022,164165,316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/25,12:25.3\r\n2,572692,ʽ֮ͨ۹,1121,27907,35,33,32,19,-49,-37,-48,-1,,2010/10/252010-10-31,10022,164165,316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/25,12:25.3\r\n3,472875,2,974,4391,30,17,32,20,-47,-42,-47,-1,,2010/10/252010-10-31,10022,164165,316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/25,12:25.4\r\n4,391089,֮ս,853,853,23,6,37,17,0,0,0,0,,2010/10/252010-10-31,10022,164165,316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/25,12:25.4\r\n5,588863,֮ɸ,736,736,25,3,29,25,0,0,0,0,,2010/10/252010-10-31,10022,164165,316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/25,12:25.4\r\n6,589571,,731,1339,25,10,29,17,20,64,25,-1,,2010/10/252010-10-31,10022,164165,316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/25,12:25.4\r\n7,566417,οռ,638,46006,19,61,34,28,-27,-24,-26,-3,,2010/10/252010-10-31,10022,164165,316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/25,12:25.4\r\n8,573547,ħ֮Ƽɵ,539,3494,14,17,38,15,-65,-57,-65,-5,,2010/10/252010-10-31,10022,164165,316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/25,12:25.4\r\n9,588258,άվ,297,653,11,11,27,12,-17,13,-12,-2,,2010/10/252010-10-31,10022,164165,316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/25,12:25.5\r\n10,573535,ҵǰ̸,292,572,11,10,28,11,4,45,10,-1,,2010/10/252010-10-31,10022,164165,316,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/25,12:25.5\r\n1,572692,ʽ֮ͨ۹,2183,26787,67,26,33,23,-41,-27,-40,9999,,2010/10/182010-10-24,9760,163176,302,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/18,12:25.7\r\n2,472875,2,1827,3417,57,10,32,22,15,62,17,9999,,2010/10/182010-10-24,9760,163176,302,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/18,12:25.8\r\n3,573547,ħ֮Ƽɵ,1534,2955,40,10,39,18,8,64,11,9999,,2010/10/182010-10-24,9760,163176,302,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/18,12:25.8\r\n4,566417,οռ,872,45368,25,54,35,28,-33,-34,-32,9999,,2010/10/182010-10-24,9760,163176,302,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/18,12:25.8\r\n5,589571,,608,608,20,3,31,22,0,0,0,0,,2010/10/182010-10-24,9760,163176,302,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/18,12:25.8\r\n6,589387,,553,1468,19,13,30,16,-40,-30,-41,-1,,2010/10/182010-10-24,9760,163176,302,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/18,12:25.8\r\n7,588258,άվ,356,356,12,4,29,15,0,0,0,0,,2010/10/182010-10-24,9760,163176,302,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/18,12:25.8\r\n8,573937,,321,6336,10,27,31,15,-61,-52,-59,-2,,2010/10/182010-10-24,9760,163176,302,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/18,12:25.9\r\n9,573535,ҵǰ̸,281,281,10,3,29,15,0,0,0,0,,2010/10/182010-10-24,9760,163176,302,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/18,12:25.9\r\n10,573967,ɽ֮,267,14392,8,40,32,13,-52,-40,-52,-3,,2010/10/182010-10-24,9760,163176,302,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/18,12:25.9\r\n1,572692,ʽ֮ͨ۹,3722,24603,112,19,33,28,-62,-35,-62,9999,,2010/10/112010-10-17,11764,165297,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/11,12:26.2\r\n2,472875,2,1589,1590,48,3,33,31,0,0,0,0,,2010/10/112010-10-17,11764,165297,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/11,12:26.2\r\n3,573547,ħ֮Ƽɵ,1421,1421,36,3,40,27,0,0,0,0,,2010/10/112010-10-17,11764,165297,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/11,12:26.2\r\n4,566417,οռ,1294,44496,37,47,35,28,-67,-40,-67,-2,,2010/10/112010-10-17,11764,165297,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/11,12:26.2\r\n5,589387,,915,915,31,6,29,19,0,0,0,0,,2010/10/112010-10-17,11764,165297,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/11,12:26.2\r\n6,573937,,820,6015,26,20,32,18,-65,-43,-64,-3,,2010/10/112010-10-17,11764,165297,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/11,12:26.3\r\n7,573967,ɽ֮,552,14125,17,33,32,16,-69,-45,-68,-2,,2010/10/112010-10-17,11764,165297,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/11,12:26.3\r\n8,573959,ơ,394,13119,12,27,32,13,-78,-57,-78,-4,,2010/10/112010-10-17,11764,165297,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/11,12:26.3\r\n9,443753,˫,348,348,12,6,29,13,0,0,0,0,,2010/10/112010-10-17,11764,165297,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/11,12:26.3\r\n10,589759,Σ,205,206,7,6,28,11,0,0,0,0,,2010/10/112010-10-17,11764,165297,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/11,12:26.3\r\n1,572692,ʽ֮ͨ۹,9843,20881,297,12,33,48,-11,30,-10,9999,,2010/10/42010-10-10,21285,182326,653,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/4,12:26.7\r\n2,566417,οռ,3905,43202,115,40,34,51,-1,-2,0,9999,,2010/10/42010-10-10,21285,182326,653,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/4,12:26.7\r\n3,573937,,2351,5195,71,13,33,29,-17,-15,-18,1,,2010/10/42010-10-10,21285,182326,653,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/4,12:26.7\r\n4,573959,ơ,1807,12725,55,20,33,25,-41,-35,-41,-1,,2010/10/42010-10-10,21285,182326,653,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/4,12:26.7\r\n5,573967,ɽ֮,1777,13573,54,26,33,28,-29,-23,-29,9999,,2010/10/42010-10-10,21285,182326,653,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/4,12:26.7\r\n6,588608,۹,483,765,17,10,29,25,71,96,73,9999,,2010/10/42010-10-10,21285,182326,653,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/4,12:26.7\r\n7,588613,®ɽ2010,315,315,11,6,28,13,0,0,0,0,,2010/10/42010-10-10,21285,182326,653,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/4,12:26.7\r\n8,589547,,141,505,6,19,23,20,-14,-2,-18,9999,,2010/10/42010-10-10,21285,182326,653,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/4,12:26.8\r\n9,460297,Ⱦе,138,138,5,7,27,14,0,0,0,76,,2010/10/42010-10-10,21285,182326,653,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/4,12:26.8\r\n10,474599,ħʦѧͽ,133,6095,5,32,27,23,-44,-50,-42,-3,,2010/10/42010-10-10,21285,182326,653,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/10/4,12:26.8\r\n1,572692,ʽ֮ͨ۹,11023,11038,331,5,33,69,0,0,0,0,,2010/9/272010-10-03,24561,177971,749,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/27,12:27.1\r\n2,566417,οռ,3962,39297,115,33,34,50,-43,-40,-44,9999,,2010/9/272010-10-03,24561,177971,749,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/27,12:27.1\r\n3,573959,ơ,3069,10918,94,13,33,28,-61,-39,-61,-2,,2010/9/272010-10-03,24561,177971,749,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/27,12:27.1\r\n4,573937,,2844,2844,87,6,33,30,0,0,0,0,,2010/9/272010-10-03,24561,177971,749,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/27,12:27.2\r\n5,573967,ɽ֮,2510,11796,76,19,33,30,-51,-45,-51,-2,,2010/9/272010-10-03,24561,177971,749,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/27,12:27.2\r\n6,588608,۹,282,282,10,3,29,28,0,0,0,0,,2010/9/272010-10-03,24561,177971,749,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/27,12:27.2\r\n7,474599,ħʦѧͽ,237,5961,9,25,27,20,-78,-68,-76,-3,,2010/9/272010-10-03,24561,177971,749,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/27,12:27.2\r\n8,589547,,164,365,7,12,22,23,-18,-34,-9,-2,,2010/9/272010-10-03,24561,177971,749,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/27,12:27.2\r\n9,642014,,93,518,3,-357,34,28,0,0,0,0,,2010/9/272010-10-03,24561,177971,749,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/27,12:27.3\r\n10,555641,ʷ4,70,8884,2,49,31,30,-2,-23,4,-2,,2010/9/272010-10-03,24561,177971,749,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/27,12:27.3\r\n1,573959,ơ,7849,7849,239,6,33,43,0,0,0,0,,2010/9/202010-09-26,22047,171783,675,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/20,12:27.6\r\n2,566417,οռ,6947,35334,205,26,34,53,-1,-20,0,-1,,2010/9/202010-09-26,22047,171783,675,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/20,12:27.6\r\n3,573967,ɽ֮,5100,9287,155,12,33,34,22,15,25,-1,,2010/9/202010-09-26,22047,171783,675,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/20,12:27.6\r\n4,474599,ħʦѧͽ,1078,5724,36,18,30,26,-43,-53,-42,-1,,2010/9/202010-09-26,22047,171783,675,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/20,12:27.7\r\n5,642014,,403,425,12,-364,33,46,0,0,0,0,,2010/9/202010-09-26,22047,171783,675,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/20,12:27.7\r\n6,589547,,200,201,8,5,25,17,0,0,0,0,,2010/9/202010-09-26,22047,171783,675,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/20,12:27.7\r\n7,573277,2׷,101,490,4,18,24,18,-42,-52,-39,-2,,2010/9/202010-09-26,22047,171783,675,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/20,12:27.7\r\n8,555641,ʷ4,71,8814,2,42,33,22,35,-30,44,3,,2010/9/202010-09-26,22047,171783,675,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/20,12:27.7\r\n9,560724,,68,323,3,1944,25,26,-37,-52,-38,-3,,2010/9/202010-09-26,22047,171783,675,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/20,12:27.7\r\n10,555826,,54,21422,2,38,31,10,-87,-86,-86,-6,,2010/9/202010-09-26,22047,171783,675,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/20,12:27.8\r\n1,566417,οռ,7022,28387,206,19,34,42,-38,-17,-37,9999,,2010/9/132010-09-19,14296,153881,434,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/13,12:28.0\r\n2,573967,ɽ֮,4184,4186,124,5,34,31,0,0,0,0,,2010/9/132010-09-19,14296,153881,434,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/13,12:28.0\r\n3,474599,ħʦѧͽ,1886,4646,61,11,31,21,-32,17,-30,-1,,2010/9/132010-09-19,14296,153881,434,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/13,12:28.1\r\n4,555826,,412,21369,13,31,32,11,-67,-51,-67,-1,,2010/9/132010-09-19,14296,153881,434,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/13,12:28.1\r\n5,573277,2׷,173,389,7,11,25,15,-19,12,-16,1,,2010/9/132010-09-19,14296,153881,434,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/13,12:28.1\r\n6,560724,,108,256,4,1937,25,21,-11,6,-3,4,,2010/9/132010-09-19,14296,153881,434,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/13,12:28.1\r\n7,589318,,96,362,4,31,26,184,-19,-28,-15,4,,2010/9/132010-09-19,14296,153881,434,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/13,12:28.1\r\n8,566405,ɽ,84,64933,2,60,37,11,-63,-56,-63,-3,,2010/9/132010-09-19,14296,153881,434,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/13,12:28.1\r\n9,573935,,77,5253,3,27,31,8,-82,-69,-81,-5,,2010/9/132010-09-19,14296,153881,434,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/13,12:28.1\r\n10,588857,춹,54,175,2,11,27,5,-55,-30,-50,-1,,2010/9/132010-09-19,14296,153881,434,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/13,12:28.2\r\n1,566417,οռ,11335,21366,328,12,35,56,13,24,15,9999,,2010/9/62010-09-12,17230,155841,517,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/6,12:28.4\r\n2,474599,ħʦѧͽ,2760,2760,87,4,32,35,0,0,0,0,,2010/9/62010-09-12,17230,155841,517,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/6,12:28.5\r\n3,555826,,1261,20956,39,24,33,16,-63,-41,-64,-1,,2010/9/62010-09-12,17230,155841,517,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/6,12:28.5\r\n4,573935,,422,5175,13,20,32,12,-73,-53,-73,-1,,2010/9/62010-09-12,17230,155841,517,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/6,12:28.5\r\n5,566405,ɽ,228,64849,6,53,37,13,-57,-44,-60,1,,2010/9/62010-09-12,17230,155841,517,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/6,12:28.5\r\n6,573277,2׷,213,215,8,4,26,20,0,0,0,0,,2010/9/62010-09-12,17230,155841,517,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/6,12:28.5\r\n7,555641,ʷ4,205,8691,5,28,38,14,-72,-61,-70,-3,,2010/9/62010-09-12,17230,155841,517,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/6,12:28.5\r\n8,351211,ķ֮,122,2951,4,21,33,11,-81,-68,-81,-3,,2010/9/62010-09-12,17230,155841,517,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/6,12:28.5\r\n9,588857,춹,121,121,4,4,30,8,0,0,0,0,,2010/9/62010-09-12,17230,155841,517,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/6,12:28.6\r\n10,560724,,121,148,4,1930,27,23,411,401,396,6,,2010/9/62010-09-12,17230,155841,517,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/9/6,12:28.6\r\n1,566417,οռ,10031,10031,286,5,35,61,0,0,0,0,,2010/8/302010-09-05,17932,167007,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/30,12:28.9\r\n2,555826,,3430,19695,107,17,32,26,-63,-34,-63,-1,,2010/8/302010-09-05,17932,167007,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/30,12:28.9\r\n3,573935,,1548,4753,48,13,32,21,-52,-20,-52,-1,,2010/8/302010-09-05,17932,167007,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/30,12:28.9\r\n4,555641,ʷ4,744,8486,18,21,42,19,-68,-45,-66,-1,,2010/8/302010-09-05,17932,167007,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/30,12:28.9\r\n5,351211,ķ֮,657,2829,20,14,33,19,-70,-50,-69,-1,,2010/8/302010-09-05,17932,167007,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/30,12:28.9\r\n6,566405,ɽ,535,64621,16,46,34,18,-59,-37,-58,-1,,2010/8/302010-09-05,17932,167007,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/30,12:28.9\r\n7,588533,,364,2813,12,18,30,14,-67,-45,-66,-1,,2010/8/302010-09-05,17932,167007,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/30,12:29.0\r\n8,588476,ͨ,203,5248,7,25,28,14,-65,-41,-64,-1,,2010/8/302010-09-05,17932,167007,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/30,12:29.0\r\n9,573373,Ĵ幫Ԣ,74,2265,3,24,27,13,-69,-49,-67,-1,,2010/8/302010-09-05,17932,167007,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/30,12:29.0\r\n10,589318,,39,148,1,17,30,25,-52,-61,-44,1,,2010/8/302010-09-05,17932,167007,531,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/30,12:29.0\r\n1,555826,,9162,16265,286,10,32,46,29,101,32,9999,,2010/8/232010-08-29,20802,189277,629,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/23,12:29.4\r\n2,573935,,3198,3205,101,6,32,35,0,0,0,0,,2010/8/232010-08-29,20802,189277,629,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/23,12:29.4\r\n3,555641,ʷ4,2325,7741,53,14,44,30,-57,-45,-57,-1,,2010/8/232010-08-29,20802,189277,629,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/23,12:29.4\r\n4,351211,ķ֮,2170,2172,64,7,34,30,0,0,0,33,,2010/8/232010-08-29,20802,189277,629,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/23,12:29.4\r\n5,566405,ɽ,1312,64086,37,39,36,27,-63,-48,-63,-2,,2010/8/232010-08-29,20802,189277,629,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/23,12:29.4\r\n6,588533,,1097,2449,35,11,31,24,-19,6,-17,1,,2010/8/232010-08-29,20802,189277,629,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/23,12:29.4\r\n7,588476,ͨ,579,5045,20,18,29,23,-80,-66,-79,-3,,2010/8/232010-08-29,20802,189277,629,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/23,12:29.5\r\n8,573373,Ĵ幫Ԣ,239,2191,8,17,29,20,-82,-70,-82,-2,,2010/8/232010-08-29,20802,189277,629,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/23,12:29.5\r\n9,573381,ȫǽ䱸,110,8798,4,24,30,11,-93,-81,-93,-4,,2010/8/232010-08-29,20802,189277,629,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/23,12:29.5\r\n10,588600,Ѫ³,87,246,3,11,27,12,-45,-31,-39,9999,,2010/8/232010-08-29,20802,189277,629,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/23,12:29.5\r\n1,555826,,7103,7103,216,3,33,69,0,0,0,0,,2010/8/162010-08-22,25330,188285,743,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/16,12:30.0\r\n2,555641,ʷ4,5415,5416,121,7,45,38,0,0,0,34,,2010/8/162010-08-22,25330,188285,743,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/16,12:30.0\r\n3,566405,ɽ,3504,62774,99,32,36,37,-40,-40,-38,-2,,2010/8/162010-08-22,25330,188285,743,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/16,12:30.0\r\n4,588476,ͨ,2876,4466,96,11,30,39,81,79,86,9999,,2010/8/162010-08-22,25330,188285,743,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/16,12:30.0\r\n5,573381,ȫǽ䱸,1696,8687,54,17,31,31,-55,-51,-56,-3,,2010/8/162010-08-22,25330,188285,743,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/16,12:30.0\r\n6,573373,Ĵ幫Ԣ,1356,1952,46,10,30,33,128,165,134,-1,,2010/8/162010-08-22,25330,188285,743,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/16,12:30.0\r\n7,588533,,1352,1352,43,4,32,30,0,0,0,0,,2010/8/162010-08-22,25330,188285,743,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/16,12:30.1\r\n8,588858,ķǷð,668,5050,22,20,30,32,-60,-61,-60,-5,,2010/8/162010-08-22,25330,188285,743,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/16,12:30.1\r\n9,588817,,616,962,21,10,30,31,78,61,83,-2,,2010/8/162010-08-22,25330,188285,743,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/16,12:30.1\r\n10,588600,Ѫ³,158,159,5,4,30,14,0,0,0,0,,2010/8/162010-08-22,25330,188285,743,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/16,12:30.1\r\n1,566405,ɽ,5861,59269,160,25,37,36,-53,-42,-52,9999,,2010/8/92010-08-15,15246,147819,466,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/9,12:30.5\r\n2,573381,ȫǽ䱸,3790,6991,122,10,31,34,18,80,22,9999,,2010/8/92010-08-15,15246,147819,466,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/9,12:30.5\r\n3,588858,ķǷð,1661,4382,56,13,30,31,-39,-20,-39,9999,,2010/8/92010-08-15,15246,147819,466,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/9,12:30.5\r\n4,588476,ͨ,1590,1590,52,4,31,37,0,0,0,0,,2010/8/92010-08-15,15246,147819,466,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/9,12:30.5\r\n5,573373,Ĵ幫Ԣ,595,595,20,3,30,38,0,0,0,0,,2010/8/92010-08-15,15246,147819,466,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/9,12:30.5\r\n6,588859,̽,454,2085,11,17,40,19,-55,-43,-54,-2,,2010/8/92010-08-15,15246,147819,466,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/9,12:30.6\r\n7,588817,,346,346,11,3,31,28,0,0,0,0,,2010/8/92010-08-15,15246,147819,466,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/9,12:30.6\r\n8,588645,С޺,268,2312,9,24,31,25,-56,-53,-55,-3,,2010/8/92010-08-15,15246,147819,466,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/9,12:30.6\r\n9,588550,һ,159,804,6,32,25,130,-41,-36,-42,-1,,2010/8/92010-08-15,15246,147819,466,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/9,12:30.6\r\n10,573906,ҵŮϰ,139,1215,5,17,29,12,-76,-64,-76,-4,,2010/8/92010-08-15,15246,147819,466,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/9,12:30.6\r\n1,566405,ɽ,12553,53409,338,18,37,44,-46,-25,-46,9999,,2010/8/22010-08-08,21886,167943,635,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/2,12:31.0\r\n2,573381,ȫǽ䱸,3201,3201,100,3,32,50,0,0,0,0,,2010/8/22010-08-08,21886,167943,635,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/2,12:31.0\r\n3,588858,ķǷð,2721,2721,91,6,30,40,0,0,0,0,,2010/8/22010-08-08,21886,167943,635,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/2,12:31.1\r\n4,588859,̽,999,1631,24,10,41,23,58,117,69,9999,,2010/8/22010-08-08,21886,167943,635,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/2,12:31.1\r\n5,588645,С޺,608,2044,19,17,32,26,-38,-33,-40,-3,,2010/8/22010-08-08,21886,167943,635,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/2,12:31.1\r\n6,573906,ҵŮϰ,588,1076,20,10,29,18,21,89,23,9999,,2010/8/22010-08-08,21886,167943,635,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/2,12:31.1\r\n7,573549,,300,795,11,12,29,17,-39,-14,-38,-2,,2010/8/22010-08-08,21886,167943,635,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/2,12:31.1\r\n8,588550,һ,272,645,11,25,25,142,-2,3,-3,1,,2010/8/22010-08-08,21886,167943,635,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/2,12:31.1\r\n9,588643,Σս,221,9090,7,34,33,20,-68,-55,-67,-6,,2010/8/22010-08-08,21886,167943,635,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/2,12:31.1\r\n10,393699,ܶԱ3,166,11671,4,54,45,23,-47,-40,-46,-3,,2010/8/22010-08-08,21886,167943,635,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/8/2,12:31.2\r\n1,566405,ɽ,23371,40856,628,11,37,62,34,67,38,9999,,2010/7/262010-08-01,28215,162608,781,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/26,12:31.4\r\n2,588645,С޺,986,1436,32,10,31,30,119,142,127,4,,2010/7/262010-08-01,28215,162608,781,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/26,12:31.4\r\n3,588643,Σս,684,8869,20,27,33,27,-57,-57,-59,-1,,2010/7/262010-08-01,28215,162608,781,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/26,12:31.4\r\n4,588859,̽,631,631,14,3,44,30,0,0,0,0,,2010/7/262010-08-01,28215,162608,781,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/26,12:31.5\r\n5,573549,,492,495,17,5,29,23,0,0,0,0,,2010/7/262010-08-01,28215,162608,781,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/26,12:31.5\r\n6,573906,ҵŮϰ,488,488,16,3,30,28,0,0,0,0,,2010/7/262010-08-01,28215,162608,781,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/26,12:31.5\r\n7,393699,ܶԱ3,313,11505,7,47,46,25,-53,-56,-54,-2,,2010/7/262010-08-01,28215,162608,781,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/26,12:31.5\r\n8,573908,Ʋ2֮Ĵ,289,5544,9,24,31,16,-75,-68,-76,-5,,2010/7/262010-08-01,28215,162608,781,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/26,12:31.5\r\n9,588550,һ,278,373,11,18,25,150,218,116,212,3,,2010/7/262010-08-01,28215,162608,781,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/26,12:31.5\r\n10,573888,ǹ֮,263,12580,9,31,31,18,-77,-73,-77,-6,,2010/7/262010-08-01,28215,162608,781,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/26,12:31.5\r\n1,566405,ɽ,17472,17485,455,4,38,75,0,0,0,0,,2010/7/192010-07-25,24155,164057,672,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/19,12:31.8\r\n2,588643,Σս,1587,8186,50,20,32,28,-52,-39,-51,-1,,2010/7/192010-07-25,24155,164057,672,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/19,12:31.8\r\n3,573908,Ʋ2֮Ĵ,1163,5254,38,17,30,22,-57,-40,-56,9999,,2010/7/192010-07-25,24155,164057,672,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/19,12:31.8\r\n4,573888,ǹ֮,1154,12316,37,24,31,21,-62,-44,-61,-2,,2010/7/192010-07-25,24155,164057,672,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/19,12:31.9\r\n5,393699,ܶԱ3,663,11192,15,40,45,24,-44,-35,-41,-1,,2010/7/192010-07-25,24155,164057,672,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/19,12:31.9\r\n6,588645,С޺,451,451,14,3,32,32,0,0,0,0,,2010/7/192010-07-25,24155,164057,672,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/19,12:31.9\r\n7,573969,7Ű,367,1703,14,17,26,14,-53,-43,-51,-1,,2010/7/192010-07-25,24155,164057,672,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/19,12:31.9\r\n8,588722,ɫ,320,807,11,11,29,16,-34,-11,-32,-1,,2010/7/192010-07-25,24155,164057,672,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/19,12:31.9\r\n9,588642,μ,301,2822,12,24,26,17,-62,-47,-61,-4,,2010/7/192010-07-25,24155,164057,672,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/19,12:31.9\r\n10,587927,˼ʻ,163,1755,5,24,30,15,-60,-49,-58,-2,,2010/7/192010-07-25,24155,164057,672,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/19,12:32.0\r\n1,588643,Σս,3316,6598,103,13,32,35,1,12,0,1,,2010/7/122010-07-18,13782,171541,437,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/12,12:32.4\r\n2,573888,ǹ֮,3022,11162,96,17,32,30,-32,-14,-33,-1,,2010/7/122010-07-18,13782,171541,437,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/12,12:32.4\r\n3,573908,Ʋ2֮Ĵ,2694,4091,87,10,31,29,93,152,99,1,,2010/7/122010-07-18,13782,171541,437,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/12,12:32.4\r\n4,393699,ܶԱ3,1180,10529,25,33,47,27,-18,-18,-19,-1,,2010/7/122010-07-18,13782,171541,437,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/12,12:32.4\r\n5,588642,μ,789,2521,29,17,27,23,-32,-15,-33,9999,,2010/7/122010-07-18,13782,171541,437,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/12,12:32.4\r\n6,573969,7Ű,781,1336,29,10,27,16,41,92,43,1,,2010/7/122010-07-18,13782,171541,437,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/12,12:32.5\r\n7,588722,ɫ,487,487,16,4,30,21,0,0,0,0,,2010/7/122010-07-18,13782,171541,437,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/12,12:32.5\r\n8,587927,˼ʻ,408,1592,13,17,32,18,-37,-37,-36,-2,,2010/7/122010-07-18,13782,171541,437,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/12,12:32.5\r\n9,558013,ˮܽ,272,715,10,10,28,16,-37,-36,-37,9999,,2010/7/122010-07-18,13782,171541,437,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/12,12:32.5\r\n10,573881,սɲ,228,4482,8,27,30,17,-55,-47,-54,-2,,2010/7/122010-07-18,13782,171541,437,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/12,12:32.5\r\n1,573888,ǹ֮,4461,8141,142,10,31,39,21,76,25,9999,,2010/7/52010-07-11,15000,166343,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/5,12:32.8\r\n2,588643,Σս,3282,3283,102,6,32,39,0,0,0,0,,2010/7/52010-07-11,15000,166343,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/5,12:32.8\r\n3,393699,ܶԱ3,1431,9349,31,26,46,27,-37,-34,-38,-1,,2010/7/52010-07-11,15000,166343,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/5,12:32.8\r\n4,573908,Ʋ2֮Ĵ,1397,1397,44,3,32,37,0,0,0,0,,2010/7/52010-07-11,15000,166343,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/5,12:32.8\r\n5,588642,μ,1165,1732,44,10,26,28,106,127,115,3,,2010/7/52010-07-11,15000,166343,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/5,12:32.9\r\n6,587927,˼ʻ,647,1184,20,10,33,18,20,46,27,3,,2010/7/52010-07-11,15000,166343,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/5,12:32.9\r\n7,573969,7Ű,555,555,20,3,28,22,0,0,0,0,,2010/7/52010-07-11,15000,166343,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/5,12:32.9\r\n8,573881,սɲ,506,4254,17,20,30,19,-70,-61,-71,-4,,2010/7/52010-07-11,15000,166343,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/5,12:32.9\r\n9,558013,ˮܽ,431,442,16,3,28,17,0,0,0,0,,2010/7/52010-07-11,15000,166343,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/5,12:32.9\r\n10,475544,,393,4471,13,20,31,16,-77,-65,-77,-7,,2010/7/52010-07-11,15000,166343,474,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/7/5,12:32.9\r\n1,573888,ǹ֮,3679,3679,114,3,32,54,0,0,0,0,,2010/6/282010-07-04,13765,156846,421,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/28,12:33.2\r\n2,393699,ܶԱ3,2270,7918,50,19,46,28,-11,-16,-10,-1,,2010/6/282010-07-04,13765,156846,421,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/28,12:33.2\r\n3,475544,,1718,4078,56,13,31,25,-27,-9,-26,-1,,2010/6/282010-07-04,13765,156846,421,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/28,12:33.2\r\n4,573881,սɲ,1711,3748,57,13,30,25,-16,-4,-15,-1,,2010/6/282010-07-04,13765,156846,421,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/28,12:33.3\r\n5,381538,,816,4420,24,18,34,19,-51,-46,-51,-1,,2010/6/282010-07-04,13765,156846,421,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/28,12:33.3\r\n6,591698,80,729,1153,24,,30,20,75,131,87,3,,2010/6/282010-07-04,13765,156846,421,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/28,12:33.3\r\n7,573954,Ҷǰ,595,1225,20,10,30,16,-5,40,0,-2,,2010/6/282010-07-04,13765,156846,421,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/28,12:33.3\r\n8,588642,μ,566,567,20,3,28,30,0,0,0,0,,2010/6/282010-07-04,13765,156846,421,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/28,12:33.3\r\n9,587927,˼ʻ,537,537,16,3,34,21,0,0,0,0,,2010/6/282010-07-04,13765,156846,421,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/28,12:33.3\r\n10,573589,,282,1283,10,17,30,17,-45,-47,-43,-2,,2010/6/282010-07-04,13765,156846,421,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/28,12:33.4\r\n1,393699,ܶԱ3,2539,5648,55,12,46,27,-18,-6,-19,9999,,2010/6/212010-06-27,12045,153010,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/21,12:33.6\r\n2,475544,,2360,2360,75,6,31,30,0,0,0,0,,2010/6/212010-06-27,12045,153010,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/21,12:33.6\r\n3,573881,սɲ,2037,2037,67,6,31,29,0,0,0,0,,2010/6/212010-06-27,12045,153010,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/21,12:33.7\r\n4,381538,,1652,3604,49,11,34,22,-15,11,-14,9999,,2010/6/212010-06-27,12045,153010,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/21,12:33.7\r\n5,573954,Ҷǰ,624,630,20,3,31,22,0,0,0,0,,2010/6/212010-06-27,12045,153010,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/21,12:33.7\r\n6,372499,˹ӣʱ֮,590,15592,18,31,33,21,-77,-61,-77,-3,,2010/6/212010-06-27,12045,153010,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/21,12:33.7\r\n7,365526,ޱ,517,4234,15,17,33,19,-80,-66,-81,-5,,2010/6/212010-06-27,12045,153010,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/21,12:33.7\r\n8,573589,,509,1001,17,10,31,16,4,30,5,-2,,2010/6/212010-06-27,12045,153010,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/21,12:33.7\r\n9,591698,80,416,423,13,,32,25,5317,28944,6061,17,,2010/6/212010-06-27,12045,153010,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/21,12:33.7\r\n10,588601,ڇ;,314,3533,12,24,26,17,-76,-59,-75,-5,,2010/6/212010-06-27,12045,153010,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/21,12:33.8\r\n1,393699,ܶԱ3,3108,3109,68,5,46,31,0,0,0,0,,2010/6/142010-06-20,14181,157878,424,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/14,12:34.0\r\n2,365526,ޱ,2598,3717,80,10,33,33,132,61,141,1,,2010/6/142010-06-20,14181,157878,424,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/14,12:34.1\r\n3,372499,˹ӣʱ֮,2541,15002,79,24,32,36,-1,-38,0,-2,,2010/6/142010-06-20,14181,157878,424,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/14,12:34.1\r\n4,381538,,1952,1952,57,4,34,28,0,0,0,0,,2010/6/142010-06-20,14181,157878,424,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/14,12:34.1\r\n5,588601,ڇ;,1297,3219,48,17,27,28,7,-26,8,-3,,2010/6/142010-06-20,14181,157878,424,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/14,12:34.1\r\n6,573589,,492,492,16,3,31,20,0,0,0,0,,2010/6/142010-06-20,14181,157878,424,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/14,12:34.1\r\n7,588445,ȹԢ,394,1833,14,17,28,22,-46,-60,-45,-3,,2010/6/142010-06-20,14181,157878,424,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/14,12:34.1\r\n8,573868,ҡdeԼ,371,441,13,8,28,16,430,424,460,3,,2010/6/142010-06-20,14181,157878,424,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/14,12:34.1\r\n9,588458,㵥,360,418,13,8,28,18,521,497,565,4,,2010/6/142010-06-20,14181,157878,424,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/14,12:34.2\r\n10,630897,γ31¼,145,225,5,10,28,18,79,8,82,-1,,2010/6/142010-06-20,14181,157878,424,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/14,12:34.2\r\n1,372499,˹ӣʱ֮,2570,12461,79,17,33,23,-55,-27,-56,9999,,2010/6/72010-06-13,7513,141568,244,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/7,12:34.9\r\n2,588601,ڇ;,1215,1922,44,10,27,19,72,151,79,3,,2010/6/72010-06-13,7513,141568,244,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/7,12:34.9\r\n3,365526,ޱ,1119,1119,33,3,34,22,0,0,0,0,,2010/6/72010-06-13,7513,141568,244,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/7,12:34.9\r\n4,588445,ȹԢ,725,1439,25,10,29,16,2,79,4,9999,,2010/6/72010-06-13,7513,141568,244,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/7,12:34.9\r\n5,343426,ѱ,456,8844,11,31,43,13,-74,-43,-76,-3,,2010/6/72010-06-13,7513,141568,244,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/7,12:34.9\r\n6,362377,عر,373,746,12,10,30,13,0,56,3,1,,2010/6/72010-06-13,7513,141568,244,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/7,12:35.0\r\n7,346817,2,207,17390,7,38,32,11,-77,-62,-78,-4,,2010/6/72010-06-13,7513,141568,244,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/7,12:35.0\r\n8,307888,߶Ȼ,173,584,6,11,31,10,-32,-2,-30,1,,2010/6/72010-06-13,7513,141568,244,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/7,12:35.0\r\n9,630897,γ31¼,81,81,3,3,28,11,0,0,0,0,,2010/6/72010-06-13,7513,141568,244,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/7,12:35.0\r\n10,572968,2,72,72,3,4,26,8,0,0,0,0,,2010/6/72010-06-13,7513,141568,244,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/6/7,12:35.0\r\n1,372499,˹ӣʱ֮,5728,9891,178,10,32,38,38,96,40,9999,,2010/5/312010-06-06,12069,144354,378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/31,12:35.3\r\n2,343426,ѱ,1774,8388,44,24,40,31,-2,-31,5,9999,,2010/5/312010-06-06,12069,144354,378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/31,12:35.3\r\n3,346817,2,902,17183,29,31,31,19,-47,-43,-45,9999,,2010/5/312010-06-06,12069,144354,378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/31,12:35.3\r\n4,588445,ȹԢ,714,714,24,3,29,27,0,0,0,0,,2010/5/312010-06-06,12069,144354,378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/31,12:35.3\r\n5,588601,ڇ;,707,707,25,3,28,27,0,0,0,0,,2010/5/312010-06-06,12069,144354,378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/31,12:35.4\r\n6,573472,սʿ֮¶â,602,603,17,6,35,23,0,0,0,0,,2010/5/312010-06-06,12069,144354,378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/31,12:35.4\r\n7,362377,عر,373,374,12,3,31,20,0,0,0,0,,2010/5/312010-06-06,12069,144354,378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/31,12:35.4\r\n8,572828,Ҷ2ʦ,299,22840,10,41,31,13,-66,-60,-64,-4,,2010/5/312010-06-06,12069,144354,378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/31,12:35.4\r\n9,307888,߶Ȼ,255,411,8,4,32,14,0,0,0,0,,2010/5/312010-06-06,12069,144354,378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/31,12:35.4\r\n10,479330,ֻ,137,1654,5,24,28,11,-67,-55,-65,-5,,2010/5/312010-06-06,12069,144354,378,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/31,12:35.4\r\n1,372499,˹ӣʱ֮,4163,4163,128,3,33,53,0,0,0,0,,2010/5/242010-05-30,10033,135930,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/24,12:35.7\r\n2,343426,ѱ,1809,6614,42,17,43,20,-32,-21,-29,9999,,2010/5/242010-05-30,10033,135930,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/24,12:35.7\r\n3,346817,2,1700,16281,53,24,32,19,-47,-23,-46,-2,,2010/5/242010-05-30,10033,135930,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/24,12:35.7\r\n4,572828,Ҷ2ʦ,889,22541,27,34,32,14,-48,-26,-48,-1,,2010/5/242010-05-30,10033,135930,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/24,12:35.8\r\n5,479330,ֻ,412,1517,14,17,30,14,-40,-21,-38,-1,,2010/5/242010-05-30,10033,135930,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/24,12:35.8\r\n6,430776,ս,272,531,10,10,28,10,5,76,12,9999,,2010/5/242010-05-30,10033,135930,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/24,12:35.8\r\n7,345352,Χ,163,489,6,12,28,11,-50,-25,-49,-2,,2010/5/242010-05-30,10033,135930,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/24,12:35.8\r\n8,588433,è,78,1072,4,38,19,39,620,207,412,12,,2010/5/242010-05-30,10033,135930,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/24,12:35.8\r\n9,573568,Ц֮Ӽ,77,768,3,24,29,10,-48,-28,-48,-2,,2010/5/242010-05-30,10033,135930,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/24,12:35.8\r\n10,317408,֮ս,68,17113,2,45,42,14,-41,-24,-36,-1,,2010/5/242010-05-30,10033,135930,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/24,12:35.9\r\n1,346817,2,3212,14581,98,17,33,28,-44,-26,-44,9999,,2010/5/172010-05-23,9726,139869,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/17,12:38.4\r\n2,343426,ѱ,2659,4805,59,10,45,23,24,68,24,1,,2010/5/172010-05-23,9726,139869,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/17,12:38.4\r\n3,572828,Ҷ2ʦ,1726,21652,52,27,33,20,-41,-25,-39,-1,,2010/5/172010-05-23,9726,139869,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/17,12:38.4\r\n4,479330,ֻ,681,1105,22,10,30,18,61,96,64,9999,,2010/5/172010-05-23,9726,139869,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/17,12:38.4\r\n5,345352,Χ,324,325,11,5,28,16,0,0,0,0,,2010/5/172010-05-23,9726,139869,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/17,12:38.5\r\n6,430776,ս,258,259,9,3,30,16,0,0,0,0,,2010/5/172010-05-23,9726,139869,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/17,12:38.5\r\n7,573568,Ц֮Ӽ,149,691,5,17,29,13,-54,-55,-54,-1,,2010/5/172010-05-23,9726,139869,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/17,12:38.5\r\n8,573451,ռƥ,125,231,5,10,27,9,19,60,24,9999,,2010/5/172010-05-23,9726,139869,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/17,12:38.5\r\n9,317408,֮ս,115,17045,3,38,45,17,-69,-74,-69,-4,,2010/5/172010-05-23,9726,139869,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/17,12:38.5\r\n10,572815,ְ,102,12392,4,39,26,11,-65,-53,-60,-3,,2010/5/172010-05-23,9726,139869,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/17,12:38.5\r\n1,346817,2,5715,11369,175,10,33,37,1,83,3,1,,2010/5/102010-05-16,12668,142764,370,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/10,12:40.0\r\n2,572828,Ҷ2ʦ,2904,19927,85,20,34,25,-57,-35,-58,-1,,2010/5/102010-05-16,12668,142764,370,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/10,12:40.0\r\n3,343426,ѱ,2146,2146,48,3,45,31,0,0,0,0,,2010/5/102010-05-16,12668,142764,370,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/10,12:40.0\r\n4,479330,ֻ,423,423,14,3,31,22,0,0,0,0,,2010/5/102010-05-16,12668,142764,370,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/10,12:40.0\r\n5,317408,֮ս,377,16929,8,31,46,14,-79,-64,-78,-2,,2010/5/102010-05-16,12668,142764,370,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/10,12:40.0\r\n6,573568,Ц֮Ӽ,324,542,11,10,29,13,51,97,54,1,,2010/5/102010-05-16,12668,142764,370,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/10,12:40.0\r\n7,572815,ְ,290,12290,10,32,30,13,-75,-59,-74,-3,,2010/5/102010-05-16,12668,142764,370,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/10,12:40.1\r\n8,573451,ռƥ,105,106,4,3,28,12,0,0,0,0,,2010/5/102010-05-16,12668,142764,370,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/10,12:40.1\r\n9,566783,,85,2928,3,25,31,9,-80,-66,-77,-4,,2010/5/102010-05-16,12668,142764,370,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/10,12:40.1\r\n10,588495,,46,46,2,,30,12,0,0,0,0,,2010/5/102010-05-16,12668,142764,370,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/10,12:40.1\r\n1,572828,Ҷ2ʦ,6802,17023,204,13,33,38,-33,7,-34,9999,,2010/5/32010-05-09,17091,149918,502,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/3,12:40.8\r\n2,346817,2,5654,5654,170,3,33,65,0,0,0,0,,2010/5/32010-05-09,17091,149918,502,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/3,12:40.8\r\n3,317408,֮ս,1783,16553,37,24,49,23,-54,-32,-54,-1,,2010/5/32010-05-09,17091,149918,502,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/3,12:40.8\r\n4,572815,ְ,1165,12000,37,25,31,20,-52,-35,-52,-1,,2010/5/32010-05-09,17091,149918,502,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/3,12:40.8\r\n5,566783,,419,2843,12,18,35,14,-58,-51,-60,-1,,2010/5/32010-05-09,17091,149918,502,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/3,12:40.8\r\n6,588433,è,229,945,9,17,26,21,-40,-35,-38,-1,,2010/5/32010-05-09,17091,149918,502,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/3,12:40.8\r\n7,573568,Ц֮Ӽ,214,218,7,3,29,17,0,0,0,0,,2010/5/32010-05-09,17091,149918,502,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/3,12:40.9\r\n8,573400,͵,162,1503,5,24,31,20,-51,-52,-53,-2,,2010/5/32010-05-09,17091,149918,502,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/3,12:40.9\r\n9,565287,AB,119,227,4,11,28,11,12,41,16,1,,2010/5/32010-05-09,17091,149918,502,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/3,12:40.9\r\n10,435038,,117,219,4,9,29,10,16,150,28,1,,2010/5/32010-05-09,17091,149918,502,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/5/3,12:40.9\r\n1,572828,Ҷ2ʦ,10220,10221,307,6,33,62,0,0,0,0,,2010/4/262010-05-02,19429,149660,553,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/26,12:41.4\r\n2,317408,֮ս,3913,14770,80,17,49,34,-31,-18,-29,-1,,2010/4/262010-05-02,19429,149660,553,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/26,12:41.4\r\n3,572815,ְ,2447,10835,77,18,32,27,-39,-26,-40,-1,,2010/4/262010-05-02,19429,149660,553,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/26,12:41.4\r\n4,566783,,1004,2424,30,11,34,17,-29,2,-29,-1,,2010/4/262010-05-02,19429,149660,553,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/26,12:41.4\r\n5,588433,è,378,717,14,10,27,22,12,18,11,1,,2010/4/262010-05-02,19429,149660,553,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/26,12:41.4\r\n6,573400,͵,333,1341,11,17,30,21,-48,-41,-49,-2,,2010/4/262010-05-02,19429,149660,553,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/26,12:41.4\r\n7,299356,˿ɾ,283,22709,6,38,48,29,-13,-34,-13,9999,,2010/4/262010-05-02,19429,149660,553,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/26,12:41.5\r\n8,467345,±,256,1237,9,17,30,18,-52,-44,-53,-3,,2010/4/262010-05-02,19429,149660,553,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/26,12:41.5\r\n9,303851,,147,133308,2,119,85,113,40,26,50,-1,,2010/4/262010-05-02,19429,149660,553,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/26,12:41.5\r\n10,565287,AB,106,108,4,4,29,13,0,0,0,0,,2010/4/262010-05-02,19429,149660,553,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/26,12:41.5\r\n1,317408,֮ս,5645,10857,113,10,50,40,8,80,12,9999,,2010/4/192010-04-25,13481,125586,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/19,12:42.0\r\n2,572815,ְ,4033,8389,129,11,31,34,-7,35,-5,9999,,2010/4/192010-04-25,13481,125586,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/19,12:42.0\r\n3,566783,,1417,1419,42,4,34,25,0,0,0,0,,2010/4/192010-04-25,13481,125586,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/19,12:42.0\r\n4,573400,͵,637,1008,22,10,29,24,78,66,80,3,,2010/4/192010-04-25,13481,125586,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/19,12:42.0\r\n5,467345,±,533,982,18,10,29,21,20,60,22,1,,2010/4/192010-04-25,13481,125586,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/19,12:42.0\r\n6,588433,è,338,338,13,3,27,23,0,0,0,0,,2010/4/192010-04-25,13481,125586,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/19,12:42.0\r\n7,299356,˿ɾ,326,22426,7,31,48,22,-79,-83,-80,-4,,2010/4/192010-04-25,13481,125586,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/19,12:42.0\r\n8,303851,,105,133161,1,112,90,95,-19,-24,-26,3,,2010/4/192010-04-25,13481,125586,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/19,12:42.1\r\n9,557941,δ,95,5872,3,27,27,9,-86,-75,-84,-5,,2010/4/192010-04-25,13481,125586,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/19,12:42.1\r\n10,573901,,76,3718,3,27,29,9,-85,-76,-85,-5,,2010/4/192010-04-25,13481,125586,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/19,12:42.1\r\n1,317408,֮ս,5212,5212,101,3,51,64,0,0,0,0,,2010/4/122010-04-18,14545,139163,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/12,12:42.5\r\n2,572815,ְ,4346,4355,135,4,32,48,0,0,0,0,,2010/4/122010-04-18,14545,139163,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/12,12:42.5\r\n3,299356,˿ɾ,1554,22100,34,24,46,19,-72,-47,-71,-2,,2010/4/122010-04-18,14545,139163,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/12,12:42.5\r\n4,557941,δ,679,5776,22,20,30,15,-68,-42,-67,-2,,2010/4/122010-04-18,14545,139163,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/12,12:42.5\r\n5,573901,,511,3642,18,20,29,15,-66,-39,-64,-2,,2010/4/122010-04-18,14545,139163,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/12,12:42.6\r\n6,467345,±,443,449,15,3,30,28,0,0,0,0,,2010/4/122010-04-18,14545,139163,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/12,12:42.6\r\n7,573400,͵,357,371,12,3,30,22,0,0,0,0,,2010/4/122010-04-18,14545,139163,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/12,12:42.6\r\n8,573348,ʫ,265,1646,9,17,31,12,-67,-47,-66,-3,,2010/4/122010-04-18,14545,139163,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/12,12:42.6\r\n9,573585,Ծ,258,1803,9,18,29,12,-68,-50,-66,-3,,2010/4/122010-04-18,14545,139163,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/12,12:42.6\r\n10,573086,Խⱦ,212,13019,7,32,30,12,-79,-61,-78,-6,,2010/4/122010-04-18,14545,139163,385,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/12,12:42.6\r\n1,299356,˿ɾ,5492,20546,116,17,47,34,-34,-18,-34,9999,,2010/4/52010-04-11,12691,146340,348,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/5,12:43.0\r\n2,557941,δ,2133,5097,68,13,31,25,-28,-3,-29,9999,,2010/4/52010-04-11,12691,146340,348,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/5,12:43.0\r\n3,573901,,1487,3131,49,13,30,26,-9,4,-10,1,,2010/4/52010-04-11,12691,146340,348,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/5,12:43.0\r\n4,573086,Խⱦ,1003,12807,32,25,31,20,-46,-34,-46,-1,,2010/4/52010-04-11,12691,146340,348,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/5,12:43.0\r\n5,573348,ʫ,799,1381,25,10,32,19,38,77,41,1,,2010/4/52010-04-11,12691,146340,348,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/5,12:43.0\r\n6,573585,Ծ,796,1545,26,11,31,17,6,35,9,-1,,2010/4/52010-04-11,12691,146340,348,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/5,12:43.0\r\n7,324707,µ,231,231,7,4,31,13,0,0,0,0,,2010/4/52010-04-11,12691,146340,348,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/5,12:43.1\r\n8,303851,,166,132927,2,98,82,127,-13,13,-15,-1,,2010/4/52010-04-11,12691,146340,348,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/5,12:43.1\r\n9,466095,޿ռ,139,677,5,39,29,25,64,102,66,1,,2010/4/52010-04-11,12691,146340,348,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/5,12:43.1\r\n10,666900,,84,84,3,,33,17,0,0,0,0,,2010/4/52010-04-11,12691,146340,348,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/4/5,12:43.1\r\n1,299356,˿ɾ,8338,15054,177,10,47,42,24,68,22,9999,,2010/3/292010-04-04,16819,146440,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/29,12:43.4\r\n2,557941,δ,2945,2965,95,6,31,35,0,0,0,0,,2010/3/292010-04-04,16819,146440,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/29,12:43.4\r\n3,573086,Խⱦ,1864,11804,59,18,32,24,-61,-52,-60,-1,,2010/3/292010-04-04,16819,146440,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/29,12:43.4\r\n4,573901,,1630,1644,55,6,30,30,0,0,0,0,,2010/3/292010-04-04,16819,146440,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/29,12:43.4\r\n5,573585,Ծ,749,749,24,4,32,21,0,0,0,0,,2010/3/292010-04-04,16819,146440,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/29,12:43.5\r\n6,573348,ʫ,577,582,18,3,32,24,0,0,0,0,,2010/3/292010-04-04,16819,146440,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/29,12:43.5\r\n7,303851,,190,132761,2,91,80,167,-80,-98,-86,-4,,2010/3/292010-04-04,16819,146440,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/29,12:43.5\r\n8,555833,ܿѷ֮,139,2862,5,22,30,11,-79,-72,-79,-4,,2010/3/292010-04-04,16819,146440,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/29,12:43.5\r\n9,471984,,106,1217,4,17,28,12,-83,-76,-81,-4,,2010/3/292010-04-04,16819,146440,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/29,12:43.5\r\n10,466095,޿ռ,85,537,3,32,29,31,1938,311,1685,15,,2010/3/292010-04-04,16819,146440,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/29,12:43.5\r\n1,299356,˿ɾ,6716,6717,145,3,46,58,0,0,0,0,,2010/3/222010-03-28,14479,136841,382,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/22,12:43.9\r\n2,573086,Խⱦ,4729,9940,147,11,32,29,-9,58,-8,-1,,2010/3/222010-03-28,14479,136841,382,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/22,12:44.0\r\n3,303851,,950,132571,17,84,54,30,-52,-41,-50,-1,,2010/3/222010-03-28,14479,136841,382,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/22,12:44.0\r\n4,555833,ܿѷ֮,662,2724,22,15,31,15,-56,-34,-56,-1,,2010/3/222010-03-28,14479,136841,382,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/22,12:44.0\r\n5,471984,,613,1111,21,10,30,15,23,87,28,9999,,2010/3/222010-03-28,14479,136841,382,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/22,12:44.0\r\n6,381919,̽Ħ˹,239,7821,8,32,32,13,-61,-45,-61,-2,,2010/3/222010-03-28,14479,136841,382,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/22,12:44.0\r\n7,482554,Ի,96,672,3,17,30,9,-62,-51,-63,2,,2010/3/222010-03-28,14479,136841,382,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/22,12:44.0\r\n8,572830,عǿ,86,1851,3,24,27,8,-68,-53,-67,-2,,2010/3/222010-03-28,14479,136841,382,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/22,12:44.0\r\n9,460168,K20,69,782,2,17,30,7,-73,-62,-74,-1,,2010/3/222010-03-28,14479,136841,382,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/22,12:44.1\r\n10,432305,Ҫͷ,58,1072,2,23,26,12,-62,-53,-59,9999,,2010/3/222010-03-28,14479,136841,382,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/22,12:44.1\r\n1,573086,Խⱦ,5210,5210,160,4,33,50,0,0,0,0,,2010/3/152010-03-21,11494,130815,339,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/15,12:44.4\r\n2,303851,,1993,131621,35,77,57,35,-43,-19,-46,-1,,2010/3/152010-03-21,11494,130815,339,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/15,12:44.5\r\n3,555833,ܿѷ֮,1515,2061,49,8,31,22,177,468,190,5,,2010/3/152010-03-21,11494,130815,339,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/15,12:44.5\r\n4,381919,̽Ħ˹,613,7582,19,25,32,18,-64,-40,-65,-2,,2010/3/152010-03-21,11494,130815,339,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/15,12:44.5\r\n5,471984,,497,498,16,3,31,22,0,0,0,0,,2010/3/152010-03-21,11494,130815,339,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/15,12:44.5\r\n6,572830,عǿ,264,1765,9,17,28,12,-72,-51,-71,-2,,2010/3/152010-03-21,11494,130815,339,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/15,12:44.5\r\n7,572814,С,259,15662,9,36,29,15,-81,-63,-80,-4,,2010/3/152010-03-21,11494,130815,339,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/15,12:44.5\r\n8,460168,K20,255,714,9,10,29,11,-45,22,-42,1,,2010/3/152010-03-21,11494,130815,339,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/15,12:44.6\r\n9,482554,Ի,254,576,9,10,29,12,-21,57,-20,1,,2010/3/152010-03-21,11494,130815,339,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/15,12:44.6\r\n10,432305,Ҫͷ,155,1014,5,16,28,14,-72,-58,-71,-3,,2010/3/152010-03-21,11494,130815,339,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/15,12:44.6\r\n1,303851,,3481,129628,64,70,54,53,-4,-10,0,9999,,2010/3/82010-03-14,11785,132754,342,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/8,12:44.9\r\n2,381919,̽Ħ˹,1721,6968,54,18,32,31,-29,-31,-29,9999,,2010/3/82010-03-14,11785,132754,342,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/8,12:44.9\r\n3,572814,С,1341,15403,45,29,30,27,-28,-28,-26,9999,,2010/3/82010-03-14,11785,132754,342,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/8,12:44.9\r\n4,572830,عǿ,947,1500,33,10,29,20,71,119,84,2,,2010/3/82010-03-14,11785,132754,342,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/8,12:44.9\r\n5,573873,ȫ,690,12798,22,32,31,22,-45,-39,-43,-1,,2010/3/82010-03-14,11785,132754,342,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/8,12:45.0\r\n6,486345,Ĺ;,552,989,19,10,29,21,27,66,30,2,,2010/3/82010-03-14,11785,132754,342,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/8,12:45.0\r\n7,432305,Ҫͷ,551,859,19,9,30,20,79,171,88,3,,2010/3/82010-03-14,11785,132754,342,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/8,12:45.0\r\n8,555833,ܿѷ֮,546,546,17,1,32,43,0,0,0,0,,2010/3/82010-03-14,11785,132754,342,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/8,12:45.0\r\n9,460168,K20,459,459,15,3,30,22,0,0,0,0,,2010/3/82010-03-14,11785,132754,342,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/8,12:45.0\r\n10,482554,Ի,322,322,11,3,30,23,0,0,0,0,,2010/3/82010-03-14,11785,132754,342,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/8,12:45.0\r\n1,303851,,3629,126146,64,63,57,48,-36,-20,-38,9999,,2010/3/12010-03-07,12710,137670,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/1,12:45.4\r\n2,381919,̽Ħ˹,2432,5247,77,11,32,30,-14,37,-14,1,,2010/3/12010-03-07,12710,137670,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/1,12:45.4\r\n3,572814,С,1871,14062,61,22,30,27,-52,-24,-50,-1,,2010/3/12010-03-07,12710,137670,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/1,12:45.4\r\n4,573873,ȫ,1246,12108,39,25,32,23,-55,-29,-55,9999,,2010/3/12010-03-07,12710,137670,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/1,12:45.5\r\n5,572852,,638,13668,20,33,32,20,-56,-33,-57,9999,,2010/3/12010-03-07,12710,137670,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/1,12:45.5\r\n6,572830,عǿ,553,553,18,3,31,24,0,0,0,0,,2010/3/12010-03-07,12710,137670,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/1,12:45.5\r\n7,590183,72 2011,475,3494,16,-340,30,29,0,0,0,0,,2010/3/12010-03-07,12710,137670,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/1,12:45.5\r\n8,486345,Ĺ;,434,437,15,3,29,26,0,0,0,0,,2010/3/12010-03-07,12710,137670,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/1,12:45.5\r\n9,573394,ϲ2010,376,5840,13,26,30,16,-69,-40,-70,-3,,2010/3/12010-03-07,12710,137670,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/1,12:45.5\r\n10,432305,Ҫͷ,307,307,10,2,31,28,0,0,0,0,,2010/3/12010-03-07,12710,137670,359,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/3/1,12:45.6\r\n1,303851,,5687,122517,104,56,55,62,-43,-12,-41,9999,,2010/2/222010-02-28,20654,156602,589,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/22,12:46.1\r\n2,572814,С,3868,12191,124,15,31,40,-43,-15,-40,9999,,2010/2/222010-02-28,20654,156602,589,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/22,12:46.1\r\n3,381919,̽Ħ˹,2816,2816,89,4,32,48,0,0,0,0,,2010/2/222010-02-28,20654,156602,589,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/22,12:46.1\r\n4,573873,ȫ,2790,10862,86,18,32,37,-44,-19,-40,-1,,2010/2/222010-02-28,20654,156602,589,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/22,12:46.1\r\n5,572852,,1455,13030,46,26,32,31,-47,-13,-43,-1,,2010/2/222010-02-28,20654,156602,589,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/22,12:46.1\r\n6,573394,ϲ2010,1232,5464,42,19,29,32,-52,-19,-49,-1,,2010/2/222010-02-28,20654,156602,589,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/22,12:46.1\r\n7,590183,72 2011,1012,3019,34,-347,30,45,0,0,0,0,,2010/2/222010-02-28,20654,156602,589,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/22,12:46.1\r\n8,566782,,761,4538,24,20,32,24,-55,-25,-51,-1,,2010/2/222010-02-28,20654,156602,589,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/22,12:46.1\r\n9,573891,ϲ̫֮,465,12342,18,31,26,20,-74,-34,-70,-3,,2010/2/222010-02-28,20654,156602,589,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/22,12:46.2\r\n10,300095,Ǿֲ,153,938,6,21,26,18,-55,-23,-51,-1,,2010/2/222010-02-28,20654,156602,589,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/22,12:46.2\r\n1,303851,,9979,116830,177,49,56,93,23,-3,20,9999,,2010/2/152010-02-21,33098,168846,884,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/15,12:46.5\r\n2,572814,С,6805,8323,206,8,33,57,348,611,443,5,,2010/2/152010-02-21,33098,168846,884,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/15,12:46.5\r\n3,573873,ȫ,4942,8073,144,11,34,50,61,87,75,9999,,2010/2/152010-02-21,33098,168846,884,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/15,12:46.5\r\n4,572852,,2770,11576,81,19,34,47,-21,-36,-24,-2,,2010/2/152010-02-21,33098,168846,884,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/15,12:46.6\r\n5,573394,ϲ2010,2566,4232,83,12,31,50,54,43,58,9999,,2010/2/152010-02-21,33098,168846,884,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/15,12:46.6\r\n6,573891,ϲ̫֮,1762,11878,58,24,30,44,8,-22,7,9999,,2010/2/152010-02-21,33098,168846,884,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/15,12:46.6\r\n7,566782,,1707,3777,49,13,35,36,-18,-28,-20,-3,,2010/2/152010-02-21,33098,168846,884,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/15,12:46.6\r\n8,590183,72 2011,1508,2007,47,-354,32,59,0,0,0,0,,2010/2/152010-02-21,33098,168846,884,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/15,12:46.6\r\n9,300095,Ǿֲ,338,785,12,14,28,29,-24,-50,-26,9999,,2010/2/152010-02-21,33098,168846,884,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/15,12:46.6\r\n10,425135,ɪ2,295,295,11,6,27,22,0,0,0,0,,2010/2/152010-02-21,33098,168846,884,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/15,12:46.7\r\n1,303851,,8126,106851,147,42,55,75,-31,-35,-34,9999,,2010/2/82010-02-14,23257,142097,599,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/8,12:46.9\r\n2,572852,,3511,8806,106,12,33,40,-33,-19,-34,9999,,2010/2/82010-02-14,23257,142097,599,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/8,12:47.0\r\n3,573873,ȫ,3069,3131,82,4,37,53,0,0,0,0,,2010/2/82010-02-14,23257,142097,599,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/8,12:47.0\r\n4,566782,,2070,2070,61,6,34,33,0,0,0,0,,2010/2/82010-02-14,23257,142097,599,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/8,12:47.0\r\n5,573394,ϲ2010,1663,1666,53,5,32,46,0,0,0,0,,2010/2/82010-02-14,23257,142097,599,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/8,12:47.0\r\n6,573891,ϲ̫֮,1624,10116,55,17,30,32,-60,-56,-61,-3,,2010/2/82010-02-14,23257,142097,599,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/8,12:47.0\r\n7,572814,С,1518,1518,38,1,40,75,0,0,0,0,,2010/2/82010-02-14,23257,142097,599,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/8,12:47.0\r\n8,590183,72 2011,498,499,14,-361,35,35,0,0,0,0,,2010/2/82010-02-14,23257,142097,599,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/8,12:47.0\r\n9,300095,Ǿֲ,446,447,16,7,27,19,0,0,0,23,,2010/2/82010-02-14,23257,142097,599,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/8,12:47.1\r\n10,566781,,240,9730,8,24,31,18,-84,-79,-83,-6,,2010/2/82010-02-14,23257,142097,599,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/8,12:47.1\r\n1,303851,,11698,98725,222,35,53,73,-26,-14,-27,9999,,2010/2/12010-02-07,23711,142948,615,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/1,12:47.4\r\n2,572852,,5276,5295,162,5,33,49,0,0,0,0,,2010/2/12010-02-07,23711,142948,615,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/1,12:47.4\r\n3,573891,ϲ̫֮,4015,8492,139,10,29,36,-10,77,-8,-1,,2010/2/12010-02-07,23711,142948,615,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/1,12:47.4\r\n4,566781,,1513,9490,46,17,33,23,-66,-52,-66,-1,,2010/2/12010-02-07,23711,142948,615,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/1,12:47.4\r\n5,555642,ڼع,696,6651,25,24,28,25,-60,-51,-58,-1,,2010/2/12010-02-07,23711,142948,615,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/1,12:47.4\r\n6,587814,èû,143,143,6,3,25,16,0,0,0,0,,2010/2/12010-02-07,23711,142948,615,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/1,12:47.5\r\n7,565480,̽2009ڵ׷,115,857,5,25,25,27,-60,-51,-55,-2,,2010/2/12010-02-07,23711,142948,615,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/1,12:47.5\r\n8,588443,ʿ֮ۻ,69,430,3,16,24,15,-67,-63,-65,-2,,2010/2/12010-02-07,23711,142948,615,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/1,12:47.5\r\n9,573873,ȫ,62,62,2,-3,37,41,0,0,0,0,,2010/2/12010-02-07,23711,142948,615,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/1,12:47.5\r\n10,573455,ж,55,230,2,17,30,36,-40,-34,-39,-2,,2010/2/12010-02-07,23711,142948,615,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/2/1,12:47.5\r\n1,303851,,15908,87027,303,28,52,86,-19,-32,-23,9999,,2010/1/252010-01-31,27414,133880,682,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/25,12:47.8\r\n2,573891,ϲ̫֮,4477,4477,151,3,30,68,0,0,0,0,,2010/1/252010-01-31,27414,133880,682,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/25,12:47.9\r\n3,566781,,4453,7977,136,10,33,33,26,80,32,-1,,2010/1/252010-01-31,27414,133880,682,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/25,12:47.9\r\n4,555642,ڼع,1736,5954,59,17,29,29,-32,-33,-30,-1,,2010/1/252010-01-31,27414,133880,682,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/25,12:47.9\r\n5,565480,̽2009ڵ׷,287,741,10,18,28,30,-20,-21,-14,-1,,2010/1/252010-01-31,27414,133880,682,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/25,12:47.9\r\n6,588443,ʿ֮ۻ,210,361,8,9,25,16,40,158,54,9999,,2010/1/252010-01-31,27414,133880,682,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/25,12:47.9\r\n7,572813,ʮΧ,103,27906,4,46,25,21,-59,-63,-48,-2,,2010/1/252010-01-31,27414,133880,682,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/25,12:47.9\r\n8,573455,ж,93,175,3,10,31,38,13,0,22,-1,,2010/1/252010-01-31,27414,133880,682,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/25,12:48.0\r\n9,572852,,19,19,0,-2,41,148,0,0,0,0,,2010/1/252010-01-31,27414,133880,682,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/25,12:48.0\r\n10,560514,ϲ,17,19,0,2102,37,92,0,0,0,0,,2010/1/252010-01-31,27414,133880,682,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/25,12:48.0\r\n1,303851,,19757,71119,393,21,50,76,-16,-31,-22,9999,,2010/1/182010-01-24,26801,122553,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/18,12:48.5\r\n2,566781,,3524,3524,103,3,34,45,0,0,0,0,,2010/1/182010-01-24,26801,122553,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/18,12:48.5\r\n3,555642,ڼع,2557,4218,85,10,30,28,54,105,59,-1,,2010/1/182010-01-24,26801,122553,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/18,12:48.5\r\n4,565480,̽2009ڵ׷,358,454,12,11,31,27,272,373,381,1,,2010/1/182010-01-24,26801,122553,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/18,12:48.5\r\n5,572813,ʮΧ,249,27803,8,39,32,15,-62,-56,-62,-2,,2010/1/182010-01-24,26801,122553,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/18,12:48.5\r\n6,588443,ʿ֮ۻ,150,151,5,2,28,26,0,0,0,0,,2010/1/182010-01-24,26801,122553,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/18,12:48.5\r\n7,573455,ж,82,82,2,3,33,31,0,0,0,0,,2010/1/182010-01-24,26801,122553,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/18,12:48.5\r\n8,572844,ǹİ,20,24374,1,46,25,8,-85,-73,-83,-4,,2010/1/182010-01-24,26801,122553,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/18,12:48.6\r\n9,559607,Ԭ¡ƽ,19,334,1,220,38,104,555,500,380,5,,2010/1/182010-01-24,26801,122553,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/18,12:48.6\r\n10,405109,2012ĩ,14,45096,0,73,33,15,-33,-37,-26,-4,,2010/1/182010-01-24,26801,122553,614,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/18,12:48.6\r\n1,303851,,23495,51362,503,14,47,67,-15,-8,-21,9999,,2010/1/112010-01-17,26184,112332,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/11,12:49.0\r\n2,555642,ڼع,1661,1661,53,3,31,36,0,0,0,0,,2010/1/112010-01-17,26184,112332,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/11,12:49.0\r\n3,572813,ʮΧ,656,27554,21,32,32,17,-34,-16,-32,-1,,2010/1/112010-01-17,26184,112332,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/11,12:49.0\r\n4,572844,ǹİ,134,24354,5,39,29,12,-59,-56,-57,-1,,2010/1/112010-01-17,26184,112332,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/11,12:49.0\r\n5,565480,̽2009ڵ׷,96,96,2,4,39,27,0,0,0,0,,2010/1/112010-01-17,26184,112332,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/11,12:49.0\r\n6,405109,2012ĩ,21,45082,1,66,37,13,-45,-37,-46,-1,,2010/1/112010-01-17,26184,112332,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/11,12:49.0\r\n7,573946,ҹ⳵,20,1263,1,27,22,9,-27,-13,-28,-1,,2010/1/112010-01-17,26184,112332,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/11,12:49.0\r\n8,555295,,16,6610,1,40,24,8,-61,-58,-57,-4,,2010/1/112010-01-17,26184,112332,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/11,12:49.1\r\n9,3334,2,15,5662,1,40,20,12,-41,-47,-15,-2,,2010/1/112010-01-17,26184,112332,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/11,12:49.1\r\n10,588438,Է,15,15,1,2,22,12,0,0,0,0,,2010/1/112010-01-17,26184,112332,591,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/11,12:49.1\r\n1,303851,,27614,27867,638,7,43,78,0,0,0,7,,2010/1/42010-01-10,29134,112046,687,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/4,12:49.5\r\n2,572813,ʮΧ,990,26898,30,25,33,21,-89,-71,-88,-1,,2010/1/42010-01-10,29134,112046,687,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/4,12:49.5\r\n3,572844,ǹİ,327,24220,11,32,30,12,-91,-73,-90,-1,,2010/1/42010-01-10,29134,112046,687,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/4,12:49.5\r\n4,555295,,41,6594,2,33,28,7,-95,-82,-94,-1,,2010/1/42010-01-10,29134,112046,687,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/4,12:49.5\r\n5,405109,2012ĩ,38,45061,1,59,36,15,-92,-79,-93,1,,2010/1/42010-01-10,29134,112046,687,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/4,12:49.6\r\n6,573946,ҹ⳵,27,1243,1,20,22,10,-96,-87,-95,-1,,2010/1/42010-01-10,29134,112046,687,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/4,12:49.6\r\n7,3334,2,25,5647,1,33,29,7,-96,-87,-96,-3,,2010/1/42010-01-10,29134,112046,687,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/4,12:49.6\r\n8,573368,˿,16,672,1,20,26,13,-95,-85,-94,-1,,2010/1/42010-01-10,29134,112046,687,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/4,12:49.6\r\n9,317033,Ǵ2˹,9,6640,0,584,22,166,19099,2400,17900,98,,2010/1/42010-01-10,29134,112046,687,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/4,12:49.6\r\n10,588389,Ĺ,8,113,0,38,25,394,-19,-50,23,11,,2010/1/42010-01-10,29134,112046,687,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2010/1/4,12:49.6\r\n1,572813,ʮΧ,8731,25909,262,18,33,53,-18,-2,-13,9999,,2009/12/282010-01-03,15865,124887,493,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/28,12:50.2\r\n2,572844,ǹİ,3451,23893,110,25,31,33,-18,-8,-12,9999,,2009/12/282010-01-03,15865,124887,493,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/28,12:50.2\r\n3,555295,,852,6553,27,26,32,24,6,2,17,9999,,2009/12/282010-01-03,15865,124887,493,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/28,12:50.2\r\n4,3334,2,671,5622,21,26,33,22,-7,-6,0,9999,,2009/12/282010-01-03,15865,124887,493,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/28,12:50.2\r\n5,573946,ҹ⳵,628,1216,23,13,27,26,7,28,18,9999,,2009/12/282010-01-03,15865,124887,493,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/28,12:50.2\r\n6,405109,2012ĩ,489,45023,15,52,33,44,4,-19,6,9999,,2009/12/282010-01-03,15865,124887,493,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/28,12:50.3\r\n7,573368,˿,296,656,10,13,29,33,-7,8,3,9999,,2009/12/282010-01-03,15865,124887,493,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/28,12:50.3\r\n8,303851,,253,253,5,0,50,97,0,0,0,0,,2009/12/282010-01-03,15865,124887,493,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/28,12:50.3\r\n9,334943,ع,168,2719,4,41,38,37,210,104,200,-1,,2009/12/282010-01-03,15865,124887,493,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/28,12:50.3\r\n10,587809,ǰ;,44,68,2,13,26,13,81,23,83,2,,2009/12/282010-01-03,15865,124887,493,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/28,12:50.3\r\n1,572813,ʮΧ,10595,17178,301,11,35,60,61,96,53,1,,2009/12/212009-12-27,18025,126161,529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/21,12:50.8\r\n2,572844,ǹİ,4192,20442,125,18,34,35,-43,-31,-46,-1,,2009/12/212009-12-27,18025,126161,529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/21,12:50.8\r\n3,555295,,804,5701,23,19,35,21,-51,-48,-54,9999,,2009/12/212009-12-27,18025,126161,529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/21,12:50.9\r\n4,3334,2,721,4951,21,19,35,21,-51,-48,-54,9999,,2009/12/212009-12-27,18025,126161,529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/21,12:50.9\r\n5,573946,ҹ⳵,588,588,20,6,30,28,0,0,0,0,,2009/12/212009-12-27,18025,126161,529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/21,12:50.9\r\n6,405109,2012ĩ,470,44534,14,45,33,33,-47,-37,-49,-1,,2009/12/212009-12-27,18025,126161,529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/21,12:50.9\r\n7,573368,˿,319,360,10,6,32,34,0,0,0,0,,2009/12/212009-12-27,18025,126161,529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/21,12:50.9\r\n8,334943,ع,54,2552,1,34,36,25,-25,-32,-24,-1,,2009/12/212009-12-27,18025,126161,529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/21,12:50.9\r\n9,559983,ʮȫ,27,4510,1,514,22,125,398,560,643,7,,2009/12/212009-12-27,18025,126161,529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/21,12:51.0\r\n10,361561,ľ,27,8067,1,31,25,12,-72,-65,-69,-4,,2009/12/212009-12-27,18025,126161,529,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/21,12:51.0\r\n1,572844,ǹİ,7379,16250,231,11,32,45,-17,66,-13,9999,,2009/12/142009-12-20,18375,130919,566,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/14,12:51.5\r\n2,572813,ʮΧ,6583,6583,197,4,33,77,0,0,0,0,,2009/12/142009-12-20,18375,130919,566,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/14,12:51.5\r\n3,555295,,1633,4897,50,12,33,23,-50,-11,-49,-1,,2009/12/142009-12-20,18375,130919,566,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/14,12:51.5\r\n4,3334,2,1480,4230,45,12,33,24,-46,-7,-44,-1,,2009/12/142009-12-20,18375,130919,566,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/14,12:51.5\r\n5,405109,2012ĩ,882,44065,27,38,32,41,-61,-65,-62,-1,,2009/12/142009-12-20,18375,130919,566,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/14,12:51.5\r\n6,361561,ľ,96,8040,4,24,27,13,-90,-82,-89,-1,,2009/12/142009-12-20,18375,130919,566,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/14,12:51.6\r\n7,334943,ع,72,2497,2,27,37,22,-70,-70,-68,-1,,2009/12/142009-12-20,18375,130919,566,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/14,12:51.6\r\n8,668329,Ĺ,43,115,1,,37,141,137,63,148,7,,2009/12/142009-12-20,18375,130919,566,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/14,12:51.6\r\n9,573368,˿,41,41,1,-1,28,107,0,0,0,0,,2009/12/142009-12-20,18375,130919,566,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/14,12:51.6\r\n10,559638,ˮĹ,26,100,1,,37,108,39,57,49,4,,2009/12/142009-12-20,18375,130919,566,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/14,12:51.6\r\n1,572844,ǹİ,8871,8871,266,4,33,85,0,0,0,0,,2009/12/72009-12-13,18879,124647,577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/7,12:52.3\r\n2,555295,,3260,3263,98,5,33,40,0,0,0,0,,2009/12/72009-12-13,18879,124647,577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/7,12:52.3\r\n3,3334,2,2735,2750,81,5,34,40,0,0,0,0,,2009/12/72009-12-13,18879,124647,577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/7,12:52.3\r\n4,405109,2012ĩ,2260,43182,72,31,32,38,-69,-52,-68,-3,,2009/12/72009-12-13,18879,124647,577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/7,12:52.4\r\n5,361561,ľ,957,7944,32,17,30,21,-77,-57,-76,-3,,2009/12/72009-12-13,18879,124647,577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/7,12:52.4\r\n6,334943,ع,238,2426,6,20,39,21,-74,-59,-73,-3,,2009/12/72009-12-13,18879,124647,577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/7,12:52.4\r\n7,471441,ھ,127,1227,4,17,28,15,-79,-65,-78,-3,,2009/12/72009-12-13,18879,124647,577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/7,12:52.4\r\n8,565338,ĺ֮,126,1084,4,18,28,17,-75,-62,-74,-3,,2009/12/72009-12-13,18879,124647,577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/7,12:52.4\r\n9,572690,è,42,1845,2,24,23,11,-81,-69,-79,-3,,2009/12/72009-12-13,18879,124647,577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/7,12:52.4\r\n10,4438,ȥ,33,130,1,11,24,8,-65,-42,-62,-2,,2009/12/72009-12-13,18879,124647,577,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/12/7,12:52.5\r\n1,405109,2012ĩ,7187,40923,225,24,32,58,-34,-17,-34,9999,,2009/11/302009-12-06,14004,112353,444,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/30,12:52.8\r\n2,361561,ľ,4093,6988,132,10,31,38,42,121,43,9999,,2009/11/302009-12-06,14004,112353,444,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/30,12:52.8\r\n3,334943,ع,932,2188,23,13,41,31,-26,-15,-25,9999,,2009/11/302009-12-06,14004,112353,444,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/30,12:52.8\r\n4,471441,ھ,597,1099,20,10,30,23,19,74,21,1,,2009/11/302009-12-06,14004,112353,444,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/30,12:52.9\r\n5,565338,ĺ֮,503,958,17,11,30,24,11,19,12,1,,2009/11/302009-12-06,14004,112353,444,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/30,12:52.9\r\n6,572690,è,223,1803,9,17,26,16,-67,-55,-66,-2,,2009/11/302009-12-06,14004,112353,444,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/30,12:52.9\r\n7,573366,û,99,826,4,17,28,25,-72,-70,-71,9999,,2009/11/302009-12-06,14004,112353,444,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/30,12:52.9\r\n8,4438,ȥ,95,96,4,4,26,12,0,0,0,0,,2009/11/302009-12-06,14004,112353,444,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/30,12:52.9\r\n9,573478,ҵƳֵ,33,239,1,17,26,14,-62,-68,-56,-1,,2009/11/302009-12-06,14004,112353,444,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/30,12:52.9\r\n10,565288,춯,27,603,1,74,31,188,-36,-51,-33,9999,,2009/11/302009-12-06,14004,112353,444,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/30,12:53.0\r\n1,405109,2012ĩ,10905,33735,342,17,32,73,-26,-22,-26,9999,,2009/11/232009-11-29,17438,110159,551,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/23,12:53.4\r\n2,361561,ľ,2889,2895,93,3,31,58,0,0,0,0,,2009/11/232009-11-29,17438,110159,551,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/23,12:53.4\r\n3,334943,ع,1256,1256,30,6,42,36,0,0,0,0,,2009/11/232009-11-29,17438,110159,551,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/23,12:53.4\r\n4,572690,è,685,1579,26,10,27,21,-23,28,-20,-2,,2009/11/232009-11-29,17438,110159,551,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/23,12:53.5\r\n5,471441,ھ,503,503,17,3,30,33,0,0,0,0,,2009/11/232009-11-29,17438,110159,551,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/23,12:53.5\r\n6,565338,ĺ֮,454,455,15,4,30,26,0,0,0,0,,2009/11/232009-11-29,17438,110159,551,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/23,12:53.5\r\n7,573366,û,349,727,12,10,28,26,-7,22,-5,-4,,2009/11/232009-11-29,17438,110159,551,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/23,12:53.5\r\n8,573478,ҵƳֵ,88,206,3,10,30,10,-23,17,-26,-3,,2009/11/232009-11-29,17438,110159,551,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/23,12:53.5\r\n9,573673,˶ܿѷ,43,4507,1,33,32,12,-69,-72,-68,-5,,2009/11/232009-11-29,17438,110159,551,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/23,12:53.5\r\n10,565288,춯,43,576,1,67,32,137,58,10,44,1,,2009/11/232009-11-29,17438,110159,551,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/23,12:53.6\r\n1,405109,2012ĩ,14823,22830,460,10,32,76,85,130,91,9999,,2009/11/162009-11-22,16890,100908,535,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/16,12:54.1\r\n2,572690,è,894,895,32,3,28,33,0,0,0,0,,2009/11/162009-11-22,16890,100908,535,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/16,12:54.2\r\n3,573366,û,374,377,13,3,29,34,0,0,0,0,,2009/11/162009-11-22,16890,100908,535,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/16,12:54.2\r\n4,573673,˶ܿѷ,139,4464,4,26,33,11,-76,-69,-77,-1,,2009/11/162009-11-22,16890,100908,535,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/16,12:54.2\r\n5,573478,ҵƳֵ,115,118,4,3,29,15,0,0,0,0,,2009/11/162009-11-22,16890,100908,535,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/16,12:54.2\r\n6,1992,ͯľ,93,4331,4,31,25,11,-72,-63,-70,-2,,2009/11/162009-11-22,16890,100908,535,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/16,12:54.2\r\n7,350587,ش,82,3083,3,24,30,10,-87,-75,-87,-5,,2009/11/162009-11-22,16890,100908,535,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/16,12:54.2\r\n8,573446,ǰ,45,745,2,20,24,7,-83,-68,-81,-3,,2009/11/162009-11-22,16890,100908,535,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/16,12:54.2\r\n9,573438,ǿܲ,29,2080,1,31,24,7,-88,-71,-86,-2,,2009/11/162009-11-22,16890,100908,535,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/16,12:54.3\r\n10,559677,,27,20503,1,55,33,7,-89,-78,-89,-4,,2009/11/162009-11-22,16890,100908,535,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/16,12:54.3\r\n1,405109,2012ĩ,8006,8006,241,3,33,91,0,0,0,0,,2009/11/92009-11-15,11041,103424,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/9,12:55.0\r\n2,350587,ش,623,3001,21,17,30,18,-56,-32,-55,9999,,2009/11/92009-11-15,11041,103424,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/9,12:55.0\r\n3,573673,˶ܿѷ,589,4325,18,19,32,15,-62,-38,-62,-2,,2009/11/92009-11-15,11041,103424,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/9,12:55.0\r\n4,1992,ͯľ,336,4238,12,24,27,13,-57,-34,-56,-1,,2009/11/92009-11-15,11041,103424,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/9,12:55.0\r\n5,573446,ǰ,259,699,10,13,26,13,-40,-16,-39,1,,2009/11/92009-11-15,11041,103424,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/9,12:55.1\r\n6,559677,,249,20475,8,48,32,14,-65,-45,-64,-2,,2009/11/92009-11-15,11041,103424,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/9,12:55.1\r\n7,573438,ǿܲ,231,2052,8,24,28,15,-51,-30,-49,-2,,2009/11/92009-11-15,11041,103424,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/9,12:55.1\r\n8,457432,,172,2802,6,1683,29,13,-57,-38,-56,-1,,2009/11/92009-11-15,11041,103424,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/9,12:55.1\r\n9,573921,峯,155,305,6,10,26,11,3,74,12,-1,,2009/11/92009-11-15,11041,103424,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/9,12:55.1\r\n10,572817,찮,69,179,3,14,23,10,-36,-17,-30,9999,,2009/11/92009-11-15,11041,103424,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/9,12:55.2\r\n1,573673,˶ܿѷ,1557,3735,49,12,32,24,-29,6,-29,9999,,2009/11/22009-11-08,6672,111231,227,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/2,12:55.8\r\n2,350587,ش,1411,2378,47,10,30,28,46,109,46,2,,2009/11/22009-11-08,6672,111231,227,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/2,12:55.8\r\n3,1992,ͯľ,780,3902,28,17,28,19,-47,-34,-48,-1,,2009/11/22009-11-08,6672,111231,227,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/2,12:55.8\r\n4,559677,,702,20227,21,41,33,22,-44,-34,-46,-1,,2009/11/22009-11-08,6672,111231,227,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/2,12:55.8\r\n5,573438,ǿܲ,469,1821,16,17,29,21,-42,-32,-44,1,,2009/11/22009-11-08,6672,111231,227,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/2,12:55.8\r\n6,573446,ǰ,434,440,16,6,27,18,0,0,0,0,,2009/11/22009-11-08,6672,111231,227,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/2,12:55.9\r\n7,457432,,400,2630,13,1676,30,18,-51,-43,-52,-2,,2009/11/22009-11-08,6672,111231,227,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/2,12:55.9\r\n8,573921,峯,150,150,5,3,28,17,0,0,0,0,,2009/11/22009-11-08,6672,111231,227,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/2,12:55.9\r\n9,377420,㵺,132,2183,5,24,28,12,-61,-47,-63,-2,,2009/11/22009-11-08,6672,111231,227,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/2,12:55.9\r\n10,572817,찮,109,109,4,7,26,12,0,0,0,0,,2009/11/22009-11-08,6672,111231,227,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/11/2,12:55.9\r\n1,573673,˶ܿѷ,2178,2179,68,5,32,36,0,0,0,0,,2009/10/262009-11-01,8704,115834,300,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/26,12:56.7\r\n2,1992,ͯľ,1468,3122,54,10,27,24,-11,47,-9,9999,,2009/10/262009-11-01,8704,115834,300,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/26,12:56.7\r\n3,559677,,1260,19524,40,34,32,27,-40,-31,-38,-2,,2009/10/262009-11-01,8704,115834,300,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/26,12:56.7\r\n4,350587,ش,964,968,32,3,30,40,0,0,0,0,,2009/10/262009-11-01,8704,115834,300,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/26,12:56.8\r\n5,457432,,812,2230,28,1669,29,21,-43,-25,-42,-2,,2009/10/262009-11-01,8704,115834,300,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/26,12:56.8\r\n6,573438,ǿܲ,804,1352,29,10,28,26,47,108,53,9999,,2009/10/262009-11-01,8704,115834,300,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/26,12:56.8\r\n7,377420,㵺,340,2051,12,17,27,16,-55,-45,-53,-3,,2009/10/262009-11-01,8704,115834,300,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/26,12:56.8\r\n8,566769,ҵ,241,39192,9,47,27,19,-63,-56,-63,-3,,2009/10/262009-11-01,8704,115834,300,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/26,12:56.8\r\n9,573885,ǳ,100,1380,4,24,24,16,-67,-58,-63,-2,,2009/10/262009-11-01,8704,115834,300,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/26,12:56.8\r\n10,566772,ع008,67,1216,2,23,28,11,-68,-60,-67,-2,,2009/10/262009-11-01,8704,115834,300,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/26,12:56.8\r\n1,559677,,2090,18264,64,27,33,29,-41,-25,-40,9999,,2009/10/192009-10-25,8256,112462,289,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/19,12:57.7\r\n2,1992,ͯľ,1644,1654,59,3,28,39,0,0,0,0,,2009/10/192009-10-25,8256,112462,289,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/19,12:57.7\r\n3,457432,,1417,1417,49,1662,29,28,1051136,349860,1061393,78,,2009/10/192009-10-25,8256,112462,289,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/19,12:57.7\r\n4,377420,㵺,747,1711,27,10,28,19,-22,31,-21,-1,,2009/10/192009-10-25,8256,112462,289,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/19,12:57.7\r\n5,566769,ҵ,658,38951,24,40,27,23,-58,-46,-56,-3,,2009/10/192009-10-25,8256,112462,289,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/19,12:57.7\r\n6,573438,ǿܲ,546,547,19,3,29,35,0,0,0,0,,2009/10/192009-10-25,8256,112462,289,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/19,12:57.7\r\n7,573885,ǳ,302,1280,11,17,27,19,-53,-42,-51,-3,,2009/10/192009-10-25,8256,112462,289,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/19,12:57.8\r\n8,566772,ع008,212,1148,7,16,29,14,-66,-50,-67,-3,,2009/10/192009-10-25,8256,112462,289,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/19,12:57.8\r\n9,572885,ϲ,162,419,6,12,29,13,-37,-25,-35,-2,,2009/10/192009-10-25,8256,112462,289,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/19,12:57.8\r\n10,572691,ʿ,92,1938,4,28,26,13,-67,-52,-65,-4,,2009/10/192009-10-25,8256,112462,289,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/19,12:57.8\r\n1,559677,,3539,16174,107,20,33,37,-46,-22,-45,9999,,2009/10/122009-10-18,8498,108418,286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/12,12:58.1\r\n2,566769,ҵ,1578,38293,55,33,29,28,-68,-39,-65,9999,,2009/10/122009-10-18,8498,108418,286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/12,12:58.1\r\n3,377420,㵺,964,964,34,3,29,32,0,0,0,0,,2009/10/122009-10-18,8498,108418,286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/12,12:58.1\r\n4,573885,ǳ,641,978,23,10,27,22,92,108,98,1,,2009/10/122009-10-18,8498,108418,286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/12,12:58.2\r\n5,566772,ع008,620,936,22,9,28,20,98,171,105,1,,2009/10/122009-10-18,8498,108418,286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/12,12:58.2\r\n6,572691,ʿ,281,1846,10,21,27,17,-63,-38,-62,-3,,2009/10/122009-10-18,8498,108418,286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/12,12:58.2\r\n7,572885,ϲ,257,257,8,5,30,14,0,0,0,0,,2009/10/122009-10-18,8498,108418,286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/12,12:58.2\r\n8,573384,ּ,159,970,5,17,31,14,-69,-50,-70,-4,,2009/10/122009-10-18,8498,108418,286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/12,12:58.2\r\n9,565288,춯,67,342,2,25,27,30,6,-38,-7,3,,2009/10/122009-10-18,8498,108418,286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/12,12:58.2\r\n10,577773,,56,886,2,21,30,11,-80,-64,-80,-3,,2009/10/122009-10-18,8498,108418,286,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/12,12:58.3\r\n1,559677,,6514,12635,195,13,33,52,7,13,8,1,,2009/10/52009-10-11,14498,118706,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/5,12:58.7\r\n2,566769,ҵ,4897,36715,156,26,31,48,-42,-18,-41,-1,,2009/10/52009-10-11,14498,118706,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/5,12:58.7\r\n3,572691,ʿ,758,1565,27,14,28,28,-5,-10,-4,9999,,2009/10/52009-10-11,14498,118706,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/5,12:58.7\r\n4,573384,ּ,505,812,17,10,29,23,65,95,72,1,,2009/10/52009-10-11,14498,118706,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/5,12:58.7\r\n5,573885,ǳ,334,337,12,3,28,23,0,0,0,0,,2009/10/52009-10-11,14498,118706,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/5,12:58.7\r\n6,566772,ع008,313,316,11,2,29,27,0,0,0,0,,2009/10/52009-10-11,14498,118706,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/5,12:58.8\r\n7,577773,,284,831,9,14,30,19,-39,-43,-40,-3,,2009/10/52009-10-11,14498,118706,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/5,12:58.8\r\n8,573395,С,209,364,9,11,23,24,35,38,41,-1,,2009/10/52009-10-11,14498,118706,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/5,12:58.8\r\n9,573550,ʥǰ,205,415,5,13,38,19,-2,-8,2,-3,,2009/10/52009-10-11,14498,118706,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/5,12:58.8\r\n10,573599,¹,104,191,5,13,23,19,20,2,23,-2,,2009/10/52009-10-11,14498,118706,462,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/10/5,12:58.8\r\n1,566769,ҵ,8380,31818,262,19,32,66,-28,-42,-28,9999,,2009/9/282009-10-04,16839,114311,528,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/28,12:59.3\r\n2,559677,,6099,6122,181,6,34,55,0,0,0,0,,2009/9/282009-10-04,16839,114311,528,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/28,12:59.3\r\n3,572691,ʿ,795,808,28,7,28,26,0,0,0,14,,2009/9/282009-10-04,16839,114311,528,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/28,12:59.4\r\n4,577773,,462,547,15,7,30,18,0,0,0,1,,2009/9/282009-10-04,16839,114311,528,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/28,12:59.4\r\n5,573384,ּ,307,307,10,3,31,27,0,0,0,0,,2009/9/282009-10-04,16839,114311,528,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/28,12:59.4\r\n6,573550,ʥǰ,210,210,5,6,40,17,0,0,0,0,,2009/9/282009-10-04,16839,114311,528,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/28,12:59.4\r\n7,573395,С,155,155,7,4,24,23,0,0,0,0,,2009/9/282009-10-04,16839,114311,528,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/28,12:59.4\r\n8,573599,¹,87,87,4,6,24,15,0,0,0,0,,2009/9/282009-10-04,16839,114311,528,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/28,12:59.4\r\n9,559603,ʼҴ,66,66,3,5,26,15,0,0,0,0,,2009/9/282009-10-04,16839,114311,528,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/28,12:59.5\r\n10,565288,춯,46,212,2,11,21,13,-66,-52,-63,-7,,2009/9/282009-10-04,16839,114311,528,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/28,12:59.5\r\n1,566769,ҵ,11635,23438,364,12,32,53,-1,38,3,9999,,2009/9/212009-09-27,12629,94863,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/21,12:59.9\r\n2,573533,ţ,190,1091,7,17,26,14,-51,-40,-51,9999,,2009/9/212009-09-27,12629,94863,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/21,12:59.9\r\n3,565288,춯,133,166,6,4,23,17,0,0,0,0,,2009/9/212009-09-27,12629,94863,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/21,13:00.0\r\n4,573437,սеŮˣ,104,698,3,20,33,62,-32,-38,-41,9999,,2009/9/212009-09-27,12629,94863,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/21,13:00.0\r\n5,577773,,85,85,3,0,31,30,0,0,0,0,,2009/9/212009-09-27,12629,94863,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/21,13:00.0\r\n6,559862,è,81,81,3,3,27,12,0,0,0,0,,2009/9/212009-09-27,12629,94863,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/21,13:00.0\r\n7,396636,ݻμ,58,7902,1,55,44,14,-61,-56,-62,-2,,2009/9/212009-09-27,12629,94863,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/21,13:00.0\r\n8,334963,ֲӣ۾ߵ,39,12681,1,52,30,11,-78,-69,-77,-5,,2009/9/212009-09-27,12629,94863,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/21,13:00.0\r\n9,369224,氮֮,32,527,1,24,33,8,-48,-53,-54,1,,2009/9/212009-09-27,12629,94863,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/21,13:00.1\r\n10,297384,ǳ,27,9185,1,46,29,7,-76,-65,-76,-3,,2009/9/212009-09-27,12629,94863,402,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/21,13:00.1\r\n1,566769,ҵ,11795,11804,353,5,33,71,0,0,0,0,,2009/9/142009-09-20,13636,97133,420,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/14,13:00.4\r\n2,573533,ţ,388,901,15,10,26,17,-24,35,-21,2,,2009/9/142009-09-20,13636,97133,420,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/14,13:00.4\r\n3,334963,ֲӣ۾ߵ,175,12642,6,45,30,15,-72,-58,-72,-2,,2009/9/142009-09-20,13636,97133,420,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/14,13:00.5\r\n4,573437,սеŮˣ,153,594,5,13,29,65,-65,94,180,1,,2009/9/142009-09-20,13636,97133,420,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/14,13:00.5\r\n5,396636,ݻμ,149,7844,3,48,43,16,-64,-51,-64,1,,2009/9/142009-09-20,13636,97133,420,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/14,13:00.5\r\n6,565879,,116,3879,4,24,28,9,-80,-67,-79,-4,,2009/9/142009-09-20,13636,97133,420,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/14,13:00.5\r\n7,297384,ǳ,116,9158,4,39,29,11,-79,-69,-78,-4,,2009/9/142009-09-20,13636,97133,420,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/14,13:00.5\r\n8,572883,,100,4992,4,34,27,11,-76,-63,-75,-1,,2009/9/142009-09-20,13636,97133,420,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/14,13:00.5\r\n9,573534,Ƿʮǧ,78,173,3,100,24,15,-18,-31,-3,6,,2009/9/142009-09-20,13636,97133,420,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/14,13:00.6\r\n10,369224,氮֮,63,494,2,17,29,9,-74,-67,-75,-1,,2009/9/142009-09-20,13636,97133,420,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/14,13:00.6\r\n1,334963,ֲӣ۾ߵ,635,12467,20,38,31,23,-28,-22,-28,1,,2009/9/72009-09-13,5238,102599,164,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/7,13:01.0\r\n2,565879,,586,3763,20,17,30,14,-61,-35,-61,-1,,2009/9/72009-09-13,5238,102599,164,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/7,13:01.0\r\n3,297384,ǳ,557,9042,18,32,31,16,-36,-21,-36,9999,,2009/9/72009-09-13,5238,102599,164,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/7,13:01.0\r\n4,573533,ţ,513,514,19,3,28,28,0,0,0,0,,2009/9/72009-09-13,5238,102599,164,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/7,13:01.0\r\n5,573437,սеŮˣ,440,441,2,6,236,45,0,0,0,0,,2009/9/72009-09-13,5238,102599,164,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/7,13:01.0\r\n6,396636,ݻμ,413,7695,10,41,43,22,-28,-15,-28,-1,,2009/9/72009-09-13,5238,102599,164,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/7,13:01.0\r\n7,572883,,412,4892,15,27,28,16,-37,-29,-35,-3,,2009/9/72009-09-13,5238,102599,164,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/7,13:01.0\r\n8,559170,۹,284,2113,10,24,27,20,-28,-29,-22,-2,,2009/9/72009-09-13,5238,102599,164,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/7,13:01.1\r\n9,369224,氮֮,242,432,9,10,28,11,28,58,29,9999,,2009/9/72009-09-13,5238,102599,164,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/7,13:01.1\r\n10,559525,,193,363,7,11,29,12,16,43,20,9999,,2009/9/72009-09-13,5238,102599,164,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/9/7,13:01.1\r\n1,565879,,1501,3177,51,10,29,24,-11,71,-10,3,,2009/8/312009-09-06,6197,108738,204,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/31,13:01.7\r\n2,334963,ֲӣ۾ߵ,886,11832,28,31,31,25,-51,-24,-51,1,,2009/8/312009-09-06,6197,108738,204,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/31,13:01.7\r\n3,297384,ǳ,877,8485,29,25,31,20,-62,-29,-62,-2,,2009/8/312009-09-06,6197,108738,204,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/31,13:01.7\r\n4,572883,,653,4480,23,20,28,17,-64,-33,-65,-2,,2009/8/312009-09-06,6197,108738,204,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/31,13:01.7\r\n5,396636,ݻμ,575,7283,13,34,44,25,-48,-10,-48,9999,,2009/8/312009-09-06,6197,108738,204,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/31,13:01.8\r\n6,559170,۹,392,1829,13,17,30,18,-52,-33,-52,9999,,2009/8/312009-09-06,6197,108738,204,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/31,13:01.8\r\n7,555663,̨,234,707,8,13,28,15,-51,-25,-49,9999,,2009/8/312009-09-06,6197,108738,204,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/31,13:01.8\r\n8,386715,Ҫ,203,1440,6,20,32,18,-56,-40,-57,9999,,2009/8/312009-09-06,6197,108738,204,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/31,13:01.8\r\n9,369224,氮֮,189,189,7,3,29,14,0,0,0,0,,2009/8/312009-09-06,6197,108738,204,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/31,13:01.8\r\n10,559525,,167,169,6,4,30,15,0,0,0,0,,2009/8/312009-09-06,6197,108738,204,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/31,13:01.8\r\n1,297384,ǳ,2307,7608,76,18,30,37,-21,-17,-18,9999,,2009/8/242009-08-30,11791,122270,389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/24,13:02.2\r\n2,572883,,1840,3827,66,13,28,33,-7,-7,-7,1,,2009/8/242009-08-30,11791,122270,389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/24,13:02.2\r\n3,334963,ֲӣ۾ߵ,1795,10945,59,24,31,38,-24,-23,-24,-1,,2009/8/242009-08-30,11791,122270,389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/24,13:02.2\r\n4,565879,,1677,1677,57,3,30,46,0,0,0,0,,2009/8/242009-08-30,11791,122270,389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/24,13:02.3\r\n5,396636,ݻμ,1099,6708,25,27,43,44,-27,-27,-27,-1,,2009/8/242009-08-30,11791,122270,389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/24,13:02.3\r\n6,559170,۹,818,1437,27,10,30,25,33,61,38,1,,2009/8/242009-08-30,11791,122270,389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/24,13:02.3\r\n7,555663,̨,473,473,16,6,29,22,0,0,0,0,,2009/8/242009-08-30,11791,122270,389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/24,13:02.3\r\n8,386715,Ҫ,464,1237,15,13,31,25,-40,-34,-41,-3,,2009/8/242009-08-30,11791,122270,389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/24,13:02.3\r\n9,572856,̽鹷,338,9879,13,32,26,24,-53,-44,-50,-3,,2009/8/242009-08-30,11791,122270,389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/24,13:02.3\r\n10,559658,ֻк,232,235,6,6,38,18,0,0,0,0,,2009/8/242009-08-30,11791,122270,389,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/24,13:02.4\r\n1,297384,ǳ,2914,5302,92,11,32,38,22,38,26,1,,2009/8/172009-08-23,12156,122083,393,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/17,13:02.8\r\n2,334963,ֲӣ۾ߵ,2363,9150,77,17,30,39,-44,-38,-45,-1,,2009/8/172009-08-23,12156,122083,393,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/17,13:02.8\r\n3,572883,,1983,1987,71,6,28,33,0,0,0,0,,2009/8/172009-08-23,12156,122083,393,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/17,13:02.8\r\n4,396636,ݻμ,1508,5609,35,20,43,44,-26,-16,-28,9999,,2009/8/172009-08-23,12156,122083,393,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/17,13:02.9\r\n5,386715,Ҫ,773,773,25,6,31,29,0,0,0,0,,2009/8/172009-08-23,12156,122083,393,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/17,13:02.9\r\n6,572856,̽鹷,717,9541,26,25,28,27,-65,-50,-64,-3,,2009/8/172009-08-23,12156,122083,393,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/17,13:02.9\r\n7,559170,۹,613,619,20,3,31,29,0,0,0,0,,2009/8/172009-08-23,12156,122083,393,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/17,13:02.9\r\n8,344562,ʱ3,323,14690,8,47,43,32,-37,-24,-38,-1,,2009/8/172009-08-23,12156,122083,393,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/17,13:02.9\r\n9,573577,֮ά,282,288,11,6,26,23,0,0,0,0,,2009/8/172009-08-23,12156,122083,393,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/17,13:02.9\r\n10,565870,,197,8511,7,31,28,18,-76,-63,-75,-5,,2009/8/172009-08-23,12156,122083,393,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/17,13:03.0\r\n1,334963,ֲӣ۾ߵ,4187,6788,140,10,30,44,61,103,67,1,,2009/8/102009-08-16,13444,121847,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/10,13:03.7\r\n2,297384,ǳ,2384,2388,73,4,33,41,0,0,0,0,,2009/8/102009-08-16,13444,121847,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/10,13:03.7\r\n3,572856,̽鹷,2036,8824,72,18,28,37,-42,-25,-41,-2,,2009/8/102009-08-16,13444,121847,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/10,13:03.7\r\n4,396636,ݻμ,2024,4102,48,13,42,51,-3,11,1,-1,,2009/8/102009-08-16,13444,121847,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/10,13:03.7\r\n5,565870,,822,8313,29,24,29,27,-53,-39,-52,-1,,2009/8/102009-08-16,13444,121847,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/10,13:03.7\r\n6,579746,쵱,540,6790,22,-2769,25,25,0,0,0,0,,2009/8/102009-08-16,13444,121847,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/10,13:03.8\r\n7,344562,ʱ3,510,14367,12,40,42,40,-33,-23,-31,-1,,2009/8/102009-08-16,13444,121847,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/10,13:03.8\r\n8,339973,Ѫ,218,15405,8,33,29,16,-63,-46,-61,-1,,2009/8/102009-08-16,13444,121847,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/10,13:03.8\r\n9,458733,AΣ̾˴,213,575,9,13,23,20,-41,-33,-38,9999,,2009/8/102009-08-16,13444,121847,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/10,13:03.8\r\n10,565283,׷Ӱ,193,1200,7,18,26,15,-64,-47,-61,-2,,2009/8/102009-08-16,13444,121847,435,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/10,13:03.8\r\n1,572856,̽鹷,3508,6789,123,11,29,48,7,47,11,1,,2009/8/32009-08-09,13898,122351,453,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/3,13:04.4\r\n2,334963,ֲӣ۾ߵ,2600,2600,84,3,31,54,0,0,0,0,,2009/8/32009-08-09,13898,122351,453,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/3,13:04.4\r\n3,396636,ݻμ,2078,2078,48,6,43,56,0,0,0,0,,2009/8/32009-08-09,13898,122351,453,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/3,13:04.4\r\n4,565870,,1743,7491,60,17,29,35,-49,-30,-50,-3,,2009/8/32009-08-09,13898,122351,453,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/3,13:04.4\r\n5,579746,쵱,1079,6250,41,-2776,26,31,0,0,0,0,,2009/8/32009-08-09,13898,122351,453,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/3,13:04.5\r\n6,344562,ʱ3,762,13857,18,33,43,45,-66,-60,-66,-2,,2009/8/32009-08-09,13898,122351,453,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/3,13:04.5\r\n7,339973,Ѫ,594,15187,19,26,31,23,-64,-48,-63,-2,,2009/8/32009-08-09,13898,122351,453,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/3,13:04.5\r\n8,565283,׷Ӱ,533,1007,19,11,28,21,13,21,21,-1,,2009/8/32009-08-09,13898,122351,453,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/3,13:04.5\r\n9,458733,AΣ̾˴,360,361,15,6,24,21,0,0,0,0,,2009/8/32009-08-09,13898,122351,453,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/3,13:04.5\r\n10,559678,ҹ,231,1185,9,17,25,23,-57,-46,-56,-4,,2009/8/32009-08-09,13898,122351,453,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/8/3,13:04.6\r\n1,565870,,3392,5748,119,10,28,49,44,90,48,3,,2009/7/272009-08-02,15376,121873,508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/27,13:05.1\r\n2,572856,̽鹷,3275,3281,110,4,30,63,0,0,0,0,,2009/7/272009-08-02,15376,121873,508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/27,13:05.1\r\n3,579746,쵱,2803,5172,98,-2783,29,45,0,0,0,0,,2009/7/272009-08-02,15376,121873,508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/27,13:05.2\r\n4,344562,ʱ3,2259,13095,51,26,44,53,-30,-18,-30,-2,,2009/7/272009-08-02,15376,121873,508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/27,13:05.2\r\n5,339973,Ѫ,1629,14593,53,19,31,32,-66,-56,-65,-4,,2009/7/272009-08-02,15376,121873,508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/27,13:05.2\r\n6,559678,ҹ,531,954,21,10,25,28,27,64,39,9999,,2009/7/272009-08-02,15376,121873,508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/27,13:05.2\r\n7,565283,׷Ӱ,473,473,16,4,30,21,0,0,0,0,,2009/7/272009-08-02,15376,121873,508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/27,13:05.2\r\n8,393925,ν2,466,40124,16,40,30,20,-67,-55,-66,-3,,2009/7/272009-08-02,15376,121873,508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/27,13:05.2\r\n9,566403,ְ,288,288,12,6,25,53,0,0,0,0,,2009/7/272009-08-02,15376,121873,508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/27,13:05.2\r\n10,458195,ҵĻŮ,100,100,4,6,28,12,0,0,0,0,,2009/7/272009-08-02,15376,121873,508,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/27,13:05.3\r\n1,339973,Ѫ,4722,12964,152,12,31,40,-43,2,-41,9999,,2009/7/202009-07-26,14793,104729,459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/20,13:05.7\r\n2,344562,ʱ3,3214,10836,73,19,44,62,-20,-6,-19,9999,,2009/7/202009-07-26,14793,104729,459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/20,13:05.7\r\n3,579746,쵱,2369,2369,77,-2790,31,70,0,0,0,0,,2009/7/202009-07-26,14793,104729,459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/20,13:05.7\r\n4,565870,,2356,2356,81,3,29,63,0,0,0,0,,2009/7/202009-07-26,14793,104729,459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/20,13:05.7\r\n5,393925,ν2,1402,39659,45,33,31,26,-53,-42,-53,-2,,2009/7/202009-07-26,14793,104729,459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/20,13:05.7\r\n6,559678,ҹ,417,422,15,3,27,33,0,0,0,0,,2009/7/202009-07-26,14793,104729,459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/20,13:05.7\r\n7,565286,Ѱҳ,77,1403,3,24,22,11,-70,-57,-67,-3,,2009/7/202009-07-26,14793,104729,459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/20,13:05.7\r\n8,580878,,56,780,2,38,25,26,-15,-56,-24,-2,,2009/7/202009-07-26,14793,104729,459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/20,13:05.8\r\n9,391076,ս2018,34,10938,1,48,24,11,-73,-60,-70,-4,,2009/7/202009-07-26,14793,104729,459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/20,13:05.8\r\n10,393922,ν,28,829,1,747,35,45,-41,-12,-27,-3,,2009/7/202009-07-26,14793,104729,459,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/20,13:05.8\r\n1,339973,Ѫ,8221,8242,258,5,32,69,0,0,0,0,,2009/7/132009-07-19,15964,97797,475,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/13,13:06.1\r\n2,344562,ʱ3,4039,7622,91,12,45,72,13,45,16,9999,,2009/7/132009-07-19,15964,97797,475,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/13,13:06.1\r\n3,393925,ν2,3009,38257,96,26,31,32,-57,-46,-56,-2,,2009/7/132009-07-19,15964,97797,475,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/13,13:06.1\r\n4,565286,Ѱҳ,254,1326,10,17,25,14,-64,-46,-62,-1,,2009/7/132009-07-19,15964,97797,475,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/13,13:06.2\r\n5,391076,ս2018,130,10904,5,41,27,14,-68,-55,-65,-1,,2009/7/132009-07-19,15964,97797,475,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/13,13:06.2\r\n6,580878,,66,724,3,31,22,15,-34,-42,-38,9999,,2009/7/132009-07-19,15964,97797,475,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/13,13:06.2\r\n7,393922,ν,48,801,1,740,43,55,-72,-58,-69,-2,,2009/7/132009-07-19,15964,97797,475,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/13,13:06.2\r\n8,364344,ҹ2,31,11295,1,55,24,11,-62,-49,-58,-1,,2009/7/132009-07-19,15964,97797,475,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/13,13:06.2\r\n9,559555,,29,2022,2,80,13,53,-15,-22,-10,-1,,2009/7/132009-07-19,15964,97797,475,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/13,13:06.2\r\n10,558005,ڣ,9,162,0,801,23,32,-47,-50,-46,2,,2009/7/132009-07-19,15964,97797,475,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/13,13:06.3\r\n1,393925,ν2,6947,35248,217,19,32,39,-47,-18,-46,9999,,2009/7/62009-07-12,12251,96557,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/6,13:06.7\r\n2,344562,ʱ3,3583,3583,78,5,46,90,0,0,0,0,,2009/7/62009-07-12,12251,96557,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/6,13:06.7\r\n3,565286,Ѱҳ,708,1072,27,10,26,21,94,137,98,9999,,2009/7/62009-07-12,12251,96557,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/6,13:06.7\r\n4,391076,ս2018,401,10774,14,34,30,18,-13,-13,-12,-2,,2009/7/62009-07-12,12251,96557,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/6,13:06.7\r\n5,393922,ν,171,753,4,733,48,73,-40,-7,-44,-1,,2009/7/62009-07-12,12251,96557,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/6,13:06.7\r\n6,580878,,100,658,5,24,21,14,-45,-15,-49,-1,,2009/7/62009-07-12,12251,96557,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/6,13:06.8\r\n7,364344,ҹ2,81,11264,3,48,27,13,-25,-21,-24,9999,,2009/7/62009-07-12,12251,96557,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/6,13:06.8\r\n8,559555,,34,1993,2,73,14,46,-71,-49,-64,-2,,2009/7/62009-07-12,12251,96557,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/6,13:06.8\r\n9,559607,Ԭ¡ƽ,28,301,1,24,35,142,-65,-55,-63,-1,,2009/7/62009-07-12,12251,96557,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/6,13:06.8\r\n10,559663,°,19,113,1,31,22,30,23,26,27,3,,2009/7/62009-07-12,12251,96557,361,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/7/6,13:06.8\r\n1,393925,ν2,13007,28301,403,12,32,60,-15,29,-12,9999,,2009/6/292009-07-05,14982,96563,478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/29,13:07.3\r\n2,391076,ս2018,461,10374,15,27,30,18,-50,-51,-51,9999,,2009/6/292009-07-05,14982,96563,478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/29,13:07.3\r\n3,565286,Ѱҳ,364,364,14,3,27,25,0,0,0,0,,2009/6/292009-07-05,14982,96563,478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/29,13:07.3\r\n4,393922,ν,286,582,6,726,45,121,0,11,-11,9999,,2009/6/292009-07-05,14982,96563,478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/29,13:07.3\r\n5,580878,,181,559,9,17,19,23,-11,-20,-13,9999,,2009/6/292009-07-05,14982,96563,478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/29,13:07.3\r\n6,559555,,117,1960,7,66,18,66,-6,-24,-4,1,,2009/6/292009-07-05,14982,96563,478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/29,13:07.3\r\n7,364344,ҹ2,108,11183,4,41,27,14,-64,-60,-63,-4,,2009/6/292009-07-05,14982,96563,478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/29,13:07.3\r\n8,559607,Ԭ¡ƽ,82,273,2,17,37,174,20,49,2,1,,2009/6/292009-07-05,14982,96563,478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/29,13:07.4\r\n9,559891,һ,62,383,2,17,31,300,-66,-65,-61,-3,,2009/6/292009-07-05,14982,96563,478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/29,13:07.4\r\n10,559598,,42,601,2,24,22,11,-62,-52,-58,-2,,2009/6/292009-07-05,14982,96563,478,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/29,13:07.4\r\n1,393925,ν2,15227,15294,458,5,33,88,0,0,0,0,,2009/6/222009-06-28,17776,96396,552,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/22,13:07.7\r\n2,391076,ս2018,929,9912,32,20,29,18,-74,-60,-72,-1,,2009/6/222009-06-28,17776,96396,552,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/22,13:07.7\r\n3,364344,ҹ2,298,11075,11,34,28,15,-71,-61,-69,-1,,2009/6/222009-06-28,17776,96396,552,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/22,13:07.7\r\n4,393922,ν,287,296,7,719,41,150,0,0,0,0,,2009/6/222009-06-28,17776,96396,552,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/22,13:07.7\r\n5,580878,,202,378,11,10,19,22,15,11,55,9999,,2009/6/222009-06-28,17776,96396,552,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/22,13:07.8\r\n6,559891,һ,180,321,5,10,35,265,191,159,200,3,,2009/6/222009-06-28,17776,96396,552,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/22,13:07.8\r\n7,559555,,125,1843,7,59,18,52,-50,-40,-46,-3,,2009/6/222009-06-28,17776,96396,552,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/22,13:07.8\r\n8,559598,,109,559,5,17,23,13,-64,-58,-61,-5,,2009/6/222009-06-28,17776,96396,552,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/22,13:07.8\r\n9,559607,Ԭ¡ƽ,68,191,2,10,32,255,9,-10,5,-1,,2009/6/222009-06-28,17776,96396,552,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/22,13:07.8\r\n10,668206,Ѱ΢,32,33,1,,30,66,5547,774,5212,60,,2009/6/222009-06-28,17776,96396,552,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/22,13:07.8\r\n1,391076,ս2018,3530,8984,115,13,31,27,-35,6,-36,9999,,2009/6/152009-06-21,5961,97726,208,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/15,13:08.2\r\n2,364344,ҹ2,1040,10777,35,27,30,19,-22,-16,-21,9999,,2009/6/152009-06-21,5961,97726,208,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/15,13:08.2\r\n3,559598,,301,450,12,10,26,14,102,118,110,2,,2009/6/152009-06-21,5961,97726,208,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/15,13:08.2\r\n4,559555,,251,1718,13,52,19,58,5,-8,11,-1,,2009/6/152009-06-21,5961,97726,208,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/15,13:08.2\r\n5,580878,,176,176,7,3,25,15,0,0,0,0,,2009/6/152009-06-21,5961,97726,208,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/15,13:08.2\r\n6,386405,ǼԺ,115,5746,4,38,30,10,-37,-38,-37,-2,,2009/6/152009-06-21,5961,97726,208,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/15,13:08.2\r\n7,478430,ð,88,1175,2,25,42,11,-28,-32,-29,-1,,2009/6/152009-06-21,5961,97726,208,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/15,13:08.2\r\n8,559607,Ԭ¡ƽ,63,122,2,3,30,221,0,0,0,0,,2009/6/152009-06-21,5961,97726,208,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/15,13:08.3\r\n9,559891,һ,62,141,2,3,36,229,0,0,0,0,,2009/6/152009-06-21,5961,97726,208,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/15,13:08.3\r\n10,559663,°,40,56,2,10,22,31,163,309,180,5,,2009/6/152009-06-21,5961,97726,208,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/15,13:08.3\r\n1,391076,ս2018,5447,5454,180,6,30,44,0,0,0,0,,2009/6/82009-06-14,7963,97924,273,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/8,13:08.6\r\n2,364344,ҹ2,1325,9737,45,20,30,20,-60,-42,-60,-1,,2009/6/82009-06-14,7963,97924,273,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/8,13:08.7\r\n3,559555,,240,1467,12,45,21,48,0,-29,-4,2,,2009/6/82009-06-14,7963,97924,273,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/8,13:08.7\r\n4,386405,ǼԺ,183,5631,6,31,30,10,-75,-53,-74,-2,,2009/6/82009-06-14,7963,97924,273,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/8,13:08.7\r\n5,559598,,149,149,6,3,27,15,0,0,0,0,,2009/6/82009-06-14,7963,97924,273,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/8,13:08.7\r\n6,478430,ð,123,1087,3,18,41,10,-76,-49,-75,-3,,2009/6/82009-06-14,7963,97924,273,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/8,13:08.7\r\n7,402709,,75,7649,3,43,28,7,-78,-58,-76,-3,,2009/6/82009-06-14,7963,97924,273,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/8,13:08.7\r\n8,393925,ν2,49,49,1,-9,34,23,0,0,0,0,,2009/6/82009-06-14,7963,97924,273,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/8,13:08.7\r\n9,1037,ϾϾ,37,15889,1,54,25,9,-62,-55,-57,-2,,2009/6/82009-06-14,7963,97924,273,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/8,13:08.8\r\n10,565284,߿1977,36,1239,2,73,21,99,38,3,43,4,,2009/6/82009-06-14,7963,97924,273,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/8,13:08.8\r\n1,364344,ҹ2,3318,8412,112,13,30,30,-35,13,-36,9999,,2009/6/12009-06-07,6025,97365,211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/1,13:09.1\r\n2,386405,ǼԺ,728,5448,24,24,31,18,-36,-17,-37,9999,,2009/6/12009-06-07,6025,97365,211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/1,13:09.1\r\n3,478430,ð,504,964,12,11,42,21,10,30,14,1,,2009/6/12009-06-07,6025,97365,211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/1,13:09.1\r\n4,402709,,336,7574,11,36,30,13,-47,-26,-47,-1,,2009/6/12009-06-07,6025,97365,211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/1,13:09.1\r\n5,559555,,241,1227,12,38,20,36,-15,-18,-21,9999,,2009/6/12009-06-07,6025,97365,211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/1,13:09.1\r\n6,1464,èؼ·,108,938,5,31,22,19,-14,-17,-11,1,,2009/6/12009-06-07,6025,97365,211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/1,13:09.2\r\n7,1037,ϾϾ,97,15853,3,47,28,9,-62,-42,-63,-1,,2009/6/12009-06-07,6025,97365,211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/1,13:09.2\r\n8,573374,µһ,68,68,3,3,25,11,0,0,0,0,,2009/6/12009-06-07,6025,97365,211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/1,13:09.2\r\n9,573355,´,67,131,3,12,24,12,4,19,9,1,,2009/6/12009-06-07,6025,97365,211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/1,13:09.2\r\n10,573354,ŮС׿,64,116,3,12,21,15,29,-11,22,1,,2009/6/12009-06-07,6025,97365,211,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/6/1,13:09.2\r\n1,364344,ҹ2,5089,5093,174,6,29,52,0,0,0,0,,2009/5/252009-05-31,8682,102345,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/25,13:09.5\r\n2,386405,ǼԺ,1145,4720,38,17,30,23,-45,-37,-45,-1,,2009/5/252009-05-31,8682,102345,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/25,13:09.5\r\n3,402709,,629,7237,21,29,30,18,-43,-35,-42,-1,,2009/5/252009-05-31,8682,102345,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/25,13:09.6\r\n4,478430,ð,460,460,11,4,43,24,0,0,0,0,,2009/5/252009-05-31,8682,102345,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/25,13:09.6\r\n5,559555,,285,986,15,31,19,37,-6,15,-10,-1,,2009/5/252009-05-31,8682,102345,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/25,13:09.6\r\n6,1037,ϾϾ,253,15756,9,40,28,14,-60,-50,-59,-3,,2009/5/252009-05-31,8682,102345,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/25,13:09.6\r\n7,1464,èؼ·,126,830,6,24,23,17,-30,-31,-22,-2,,2009/5/252009-05-31,8682,102345,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/25,13:09.6\r\n8,566773,Ůع,69,1998,3,34,26,14,-56,-46,-52,-2,,2009/5/252009-05-31,8682,102345,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/25,13:09.6\r\n9,441875,ɵж,64,895,2,59,32,10,-20,13,-18,9999,,2009/5/252009-05-31,8682,102345,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/25,13:09.7\r\n10,573355,´,64,64,2,5,26,13,0,0,0,0,,2009/5/252009-05-31,8682,102345,305,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/25,13:09.7\r\n1,386405,ǼԺ,2070,3575,69,10,30,27,38,119,41,1,,2009/5/182009-05-24,5106,91738,186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/18,13:10.0\r\n2,402709,,1099,6608,36,22,30,20,-36,-23,-37,-1,,2009/5/182009-05-24,5106,91738,186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/18,13:10.0\r\n3,1037,ϾϾ,630,15503,22,33,28,17,-47,-31,-47,9999,,2009/5/182009-05-24,5106,91738,186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/18,13:10.0\r\n4,559555,,303,701,17,24,18,47,66,155,75,3,,2009/5/182009-05-24,5106,91738,186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/18,13:10.0\r\n5,1464,èؼ·,181,704,7,17,25,15,-32,-30,-31,9999,,2009/5/182009-05-24,5106,91738,186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/18,13:10.1\r\n6,566773,Ůع,157,1929,5,27,29,15,-38,-32,-39,9999,,2009/5/182009-05-24,5106,91738,186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/18,13:10.1\r\n7,557988,Ǯ۹,128,1744,5,25,27,11,-53,-38,-52,-3,,2009/5/182009-05-24,5106,91738,186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/18,13:10.1\r\n8,572846,ս˫,101,248,4,10,26,8,19,55,26,1,,2009/5/182009-05-24,5106,91738,186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/18,13:10.1\r\n9,441875,ɵж,80,830,2,52,33,14,2992,707,2077,19,,2009/5/182009-05-24,5106,91738,186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/18,13:10.1\r\n10,565284,߿1977,43,1143,3,52,16,66,28,-19,20,1,,2009/5/182009-05-24,5106,91738,186,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/18,13:10.1\r\n1,402709,,1710,5509,57,15,30,24,-42,-22,-42,9999,,2009/5/112009-05-17,5807,91531,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/11,13:10.5\r\n2,386405,ǼԺ,1505,1505,48,3,31,41,0,0,0,0,,2009/5/112009-05-17,5807,91531,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/11,13:10.5\r\n3,1037,ϾϾ,1195,14873,42,26,29,22,-54,-28,-53,-1,,2009/5/112009-05-17,5807,91531,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/11,13:10.5\r\n4,557988,Ǯ۹,274,1616,10,18,28,14,-39,-30,-39,-1,,2009/5/112009-05-17,5807,91531,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/11,13:10.5\r\n5,1464,èؼ·,264,523,10,10,25,16,2,64,3,9999,,2009/5/112009-05-17,5807,91531,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/11,13:10.5\r\n6,566773,Ůع,255,1771,9,20,28,17,-39,-33,-39,-2,,2009/5/112009-05-17,5807,91531,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/11,13:10.5\r\n7,559555,,182,398,10,17,19,69,-1,11,-1,9999,,2009/5/112009-05-17,5807,91531,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/11,13:10.5\r\n8,754,ռ,89,820,3,19,31,7,-59,-39,-58,-2,,2009/5/112009-05-17,5807,91531,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/11,13:10.6\r\n9,572846,ս˫,85,147,3,3,27,10,0,0,0,0,,2009/5/112009-05-17,5807,91531,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/11,13:10.6\r\n10,360546,ս,36,2987,1,48,41,14,-56,-53,-56,-2,,2009/5/112009-05-17,5807,91531,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/11,13:10.6\r\n1,402709,,2972,3799,100,8,30,33,259,513,276,3,,2009/5/42009-05-10,7412,97304,261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/4,13:10.9\r\n2,1037,ϾϾ,2577,13678,89,19,29,34,-57,-31,-56,-1,,2009/5/42009-05-10,7412,97304,261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/4,13:10.9\r\n3,557988,Ǯ۹,451,1342,16,11,28,16,-49,2,-48,9999,,2009/5/42009-05-10,7412,97304,261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/4,13:10.9\r\n4,566773,Ůع,421,1516,15,13,29,19,-62,-28,-62,-2,,2009/5/42009-05-10,7412,97304,261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/4,13:11.0\r\n5,1464,èؼ·,259,259,10,3,26,25,0,0,0,0,,2009/5/42009-05-10,7412,97304,261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/4,13:11.0\r\n6,754,ռ,215,732,7,12,32,10,-58,-23,-58,-1,,2009/5/42009-05-10,7412,97304,261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/4,13:11.0\r\n7,559555,,184,216,10,10,19,77,486,100,520,5,,2009/5/42009-05-10,7412,97304,261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/4,13:11.0\r\n8,360546,ս,82,2951,2,41,41,15,-78,-54,-78,-2,,2009/5/42009-05-10,7412,97304,261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/4,13:11.0\r\n9,330878,,44,2672,2,26,29,8,-86,-70,-86,-2,,2009/5/42009-05-10,7412,97304,261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/4,13:11.0\r\n10,565284,߿1977,36,1067,2,38,16,42,-72,-60,-69,-2,,2009/5/42009-05-10,7412,97304,261,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/5/4,13:11.1\r\n1,1037,ϾϾ,5968,11100,202,12,30,53,17,28,21,9999,,2009/4/272009-05-03,10574,97500,363,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/27,13:11.5\r\n2,566773,Ůع,1094,1095,39,6,28,36,0,0,0,0,,2009/4/272009-05-03,10574,97500,363,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/27,13:11.5\r\n3,557988,Ǯ۹,890,891,31,4,29,31,0,0,0,0,,2009/4/272009-05-03,10574,97500,363,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/27,13:11.5\r\n4,402709,,827,827,27,1,31,54,0,0,0,0,,2009/4/272009-05-03,10574,97500,363,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/27,13:11.5\r\n5,754,ռ,516,516,16,5,32,19,0,0,0,0,,2009/4/272009-05-03,10574,97500,363,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/27,13:11.5\r\n6,360546,ս,376,2869,9,34,42,30,20,-23,27,-3,,2009/4/272009-05-03,10574,97500,363,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/27,13:11.6\r\n7,330878,,327,2627,11,19,30,17,-65,-62,-66,-5,,2009/4/272009-05-03,10574,97500,363,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/27,13:11.6\r\n8,565284,߿1977,128,1031,7,31,17,54,-22,-51,-15,-2,,2009/4/272009-05-03,10574,97500,363,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/27,13:11.6\r\n9,572694,Ԭ,61,238,3,31,19,141,-43,-53,-44,-2,,2009/4/272009-05-03,10574,97500,363,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/27,13:11.6\r\n10,4480,-,56,642,2,17,24,9,-79,-72,-76,-6,,2009/4/272009-05-03,10574,97500,363,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/27,13:11.6\r\n1,1037,ϾϾ,5116,5132,166,5,31,56,0,0,0,0,,2009/4/202009-04-26,7557,89679,257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/20,13:12.1\r\n2,330878,,947,2300,32,12,30,19,-30,-3,-29,-1,,2009/4/202009-04-26,7557,89679,257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/20,13:12.1\r\n3,360546,ս,314,2493,7,27,44,18,-37,-28,-36,9999,,2009/4/202009-04-26,7557,89679,257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/20,13:12.1\r\n4,4480,-,260,587,10,10,27,10,-21,30,-15,9999,,2009/4/202009-04-26,7557,89679,257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/20,13:12.1\r\n5,383687,ƶߵİ,195,4940,7,32,28,12,-62,-50,-61,-3,,2009/4/202009-04-26,7557,89679,257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/20,13:12.1\r\n6,565284,߿1977,164,903,9,24,19,31,-20,-37,-8,9999,,2009/4/202009-04-26,7557,89679,257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/20,13:12.1\r\n7,572694,Ԭ,107,177,6,24,19,118,97,160,189,4,,2009/4/202009-04-26,7557,89679,257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/20,13:12.2\r\n8,603,,92,673,4,17,25,10,-68,-55,-67,-3,,2009/4/202009-04-26,7557,89679,257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/20,13:12.2\r\n9,44,а:ռ,37,2554,1,31,26,8,-75,-68,-73,-2,,2009/4/202009-04-26,7557,89679,257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/20,13:12.2\r\n10,441875,ɵж,37,736,1,24,25,8,-73,-56,-73,-2,,2009/4/202009-04-26,7557,89679,257,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/20,13:12.2\r\n1,330878,,1353,1353,45,5,30,26,0,0,0,0,,2009/4/132009-04-19,4131,91061,144,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/13,13:12.6\r\n2,383687,ƶߵİ,514,4745,18,25,29,15,-52,-36,-52,-1,,2009/4/132009-04-19,4131,91061,144,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/13,13:12.6\r\n3,360546,ս,498,2180,11,20,45,21,-39,-20,-38,-1,,2009/4/132009-04-19,4131,91061,144,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/13,13:12.6\r\n4,4480,-,327,327,11,3,29,16,0,0,0,0,,2009/4/132009-04-19,4131,91061,144,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/13,13:12.6\r\n5,603,,290,581,11,10,26,13,0,59,2,1,,2009/4/132009-04-19,4131,91061,144,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/13,13:12.6\r\n6,565284,߿1977,205,739,9,17,22,21,-34,-23,-31,-1,,2009/4/132009-04-19,4131,91061,144,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/13,13:12.6\r\n7,44,а:ռ,151,2517,5,24,28,9,-70,-52,-69,-4,,2009/4/132009-04-19,4131,91061,144,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/13,13:12.6\r\n8,441875,ɵж,138,699,5,17,26,13,-57,-37,-56,-4,,2009/4/132009-04-19,4131,91061,144,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/13,13:12.7\r\n9,326513,,70,5982,3,37,24,7,-71,-56,-68,-2,,2009/4/132009-04-19,4131,91061,144,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/13,13:12.7\r\n10,299972,µ,58,1785,2,31,25,9,-64,-39,-62,-2,,2009/4/132009-04-19,4131,91061,144,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/13,13:12.7\r\n1,383687,ƶߵİ,1078,4231,37,18,29,20,-37,-17,-37,9999,,2009/4/62009-04-12,4403,94087,152,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/6,13:12.9\r\n2,360546,ս,810,1682,18,13,45,27,-7,15,-6,1,,2009/4/62009-04-12,4403,94087,152,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/6,13:12.9\r\n3,44,а:ռ,497,2366,17,17,29,14,-53,-30,-54,-1,,2009/4/62009-04-12,4403,94087,152,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/6,13:12.9\r\n4,441875,ɵж,318,561,12,10,26,18,31,100,35,2,,2009/4/62009-04-12,4403,94087,152,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/6,13:13.0\r\n5,565284,߿1977,310,534,14,10,23,24,57,112,66,2,,2009/4/62009-04-12,4403,94087,152,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/6,13:13.0\r\n6,603,,291,291,11,3,27,20,0,0,0,0,,2009/4/62009-04-12,4403,94087,152,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/6,13:13.0\r\n7,326513,,246,5912,9,30,27,10,-49,-32,-47,-3,,2009/4/62009-04-12,4403,94087,152,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/6,13:13.0\r\n8,299972,µ,160,1728,6,24,27,14,-46,-36,-46,-3,,2009/4/62009-04-12,4403,94087,152,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/6,13:13.0\r\n9,304784,¼Ԫ,99,956,3,147,35,19,47,97,47,9999,,2009/4/62009-04-12,4403,94087,152,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/6,13:13.0\r\n10,566776,ĩ·,71,132,3,10,24,10,16,73,18,9999,,2009/4/62009-04-12,4403,94087,152,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/4/6,13:13.1\r\n1,383687,ƶߵİ,1701,3153,59,11,29,27,17,49,20,9999,,2009/3/302009-04-05,5617,95061,195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/30,13:14.0\r\n2,44,а:ռ,1066,1868,37,10,29,21,33,100,36,1,,2009/3/302009-04-05,5617,95061,195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/30,13:14.0\r\n3,360546,ս,872,872,19,6,46,33,0,0,0,0,,2009/3/302009-04-05,5617,95061,195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/30,13:14.0\r\n4,326513,,479,5666,17,23,28,13,-51,-43,-50,-2,,2009/3/302009-04-05,5617,95061,195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/30,13:14.0\r\n5,299972,µ,298,1568,11,17,27,16,-54,-50,-53,-1,,2009/3/302009-04-05,5617,95061,195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/30,13:14.0\r\n6,441875,ɵж,243,243,9,3,27,26,0,0,0,0,,2009/3/302009-04-05,5617,95061,195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/30,13:14.0\r\n7,565284,߿1977,198,224,8,3,24,31,0,0,0,0,,2009/3/302009-04-05,5617,95061,195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/30,13:14.0\r\n8,427759,ʱմԽ,68,2474,3,32,25,11,-65,-56,-63,-3,,2009/3/302009-04-05,5617,95061,195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/30,13:14.1\r\n9,304784,¼Ԫ,67,857,2,140,35,25,6302,795,4758,64,,2009/3/302009-04-05,5617,95061,195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/30,13:14.1\r\n10,566776,ĩ·,61,61,3,3,24,14,0,0,0,0,,2009/3/302009-04-05,5617,95061,195,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/30,13:14.1\r\n1,383687,ƶߵİ,1451,1452,49,4,30,33,0,0,0,0,,2009/3/232009-03-29,4862,92919,179,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/23,13:14.3\r\n2,326513,,984,5187,34,16,29,15,-57,-40,-56,-1,,2009/3/232009-03-29,4862,92919,179,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/23,13:14.3\r\n3,44,а:ռ,800,803,27,3,29,30,0,0,0,0,,2009/3/232009-03-29,4862,92919,179,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/23,13:14.4\r\n4,299972,µ,652,1270,24,10,27,18,5,61,9,-2,,2009/3/232009-03-29,4862,92919,179,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/23,13:14.4\r\n5,427759,ʱմԽ,196,2406,7,25,27,13,-56,-46,-55,-2,,2009/3/232009-03-29,4862,92919,179,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/23,13:14.4\r\n6,397108,жĿϣ,139,5298,5,32,30,9,-61,-49,-60,-2,,2009/3/232009-03-29,4862,92919,179,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/23,13:14.4\r\n7,566402,,73,1340,3,24,23,11,-64,-56,-59,-2,,2009/3/232009-03-29,4862,92919,179,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/23,13:14.4\r\n8,451594,Ƥ,59,1803,3,55,23,12,-12,6,-5,-1,,2009/3/232009-03-29,4862,92919,179,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/23,13:14.4\r\n9,566407,,36,83,1,32,28,12,-21,38,-21,9999,,2009/3/232009-03-29,4862,92919,179,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/23,13:14.5\r\n10,386885,,32,438,1,244,27,10,12529,17886,4078,100,,2009/3/232009-03-29,4862,92919,179,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/23,13:14.5\r\n1,326513,,2272,4203,78,9,29,20,18,165,21,9999,,2009/3/162009-03-22,4642,97930,172,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/16,13:14.7\r\n2,299972,µ,618,618,22,3,28,26,0,0,0,0,,2009/3/162009-03-22,4642,97930,172,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/16,13:14.7\r\n3,427759,ʱմԽ,450,2210,16,18,28,16,-47,-33,-47,-1,,2009/3/162009-03-22,4642,97930,172,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/16,13:14.7\r\n4,397108,жĿϣ,361,5158,12,25,31,11,-55,-43,-55,-1,,2009/3/162009-03-22,4642,97930,172,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/16,13:14.8\r\n5,566402,,201,1268,8,17,27,12,-61,-47,-60,-1,,2009/3/162009-03-22,4642,97930,172,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/16,13:14.8\r\n6,435902,3,78,5917,3,39,26,10,-63,-54,-59,-1,,2009/3/162009-03-22,4642,97930,172,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/16,13:14.8\r\n7,451594,Ƥ,67,1744,3,48,25,13,22,-16,31,2,,2009/3/162009-03-22,4642,97930,172,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/16,13:14.8\r\n8,348627,ռ,46,6195,1,176,41,28,-21,-13,-23,9999,,2009/3/162009-03-22,4642,97930,172,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/16,13:14.8\r\n9,566407,,46,46,2,25,28,21,0,0,0,0,,2009/3/162009-03-22,4642,97930,172,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/16,13:14.8\r\n10,557964,,46,289,1,17,33,13,-61,-49,-59,-4,,2009/3/162009-03-22,4642,97930,172,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/16,13:14.9\r\n1,326513,,1929,1931,65,2,30,43,0,0,0,0,,2009/3/92009-03-15,5198,94726,190,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/9,13:15.1\r\n2,427759,ʱմԽ,843,1760,31,11,28,20,-8,61,-7,9999,,2009/3/92009-03-15,5198,94726,190,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/9,13:15.1\r\n3,397108,жĿϣ,795,4797,26,18,31,14,-56,-34,-57,-2,,2009/3/92009-03-15,5198,94726,190,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/9,13:15.1\r\n4,566402,,517,1067,19,10,27,16,-5,95,-4,-1,,2009/3/92009-03-15,5198,94726,190,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/9,13:15.2\r\n5,435902,3,211,5839,7,32,29,12,-59,-45,-59,-1,,2009/3/92009-03-15,5198,94726,190,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/9,13:15.2\r\n6,557964,,116,244,3,10,34,17,-7,80,1,2,,2009/3/92009-03-15,5198,94726,190,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/9,13:15.2\r\n7,1363,,74,10456,3,55,27,10,-62,-43,-63,-2,,2009/3/92009-03-15,5198,94726,190,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/9,13:15.2\r\n8,348627,ռ,59,6149,1,169,40,31,6,28,6,6,,2009/3/92009-03-15,5198,94726,190,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/9,13:15.2\r\n9,451594,Ƥ,55,1677,2,41,26,9,-40,-9,-42,1,,2009/3/92009-03-15,5198,94726,190,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/9,13:15.3\r\n10,566406,ҹõ,54,115,2,30,27,8,-3,81,-3,3,,2009/3/92009-03-15,5198,94726,190,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/9,13:15.3\r\n1,397108,жĿϣ,1811,4002,59,11,31,22,-17,33,-16,9999,,2009/3/22009-03-08,5385,92470,198,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/2,13:15.5\r\n2,427759,ʱմԽ,917,917,33,4,28,34,0,0,0,0,,2009/3/22009-03-08,5385,92470,198,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/2,13:15.5\r\n3,566402,,547,550,20,3,28,32,0,0,0,0,,2009/3/22009-03-08,5385,92470,198,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/2,13:15.6\r\n4,435902,3,514,5627,18,25,29,16,-48,-34,-48,-2,,2009/3/22009-03-08,5385,92470,198,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/2,13:15.6\r\n5,1363,,198,10381,7,48,27,16,-58,-41,-56,-2,,2009/3/22009-03-08,5385,92470,198,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/2,13:15.6\r\n6,559593,Ϸ,175,10728,6,42,28,16,-56,-48,-53,-2,,2009/3/22009-03-08,5385,92470,198,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/2,13:15.6\r\n7,8010,ߺ,166,2131,6,23,29,14,-56,-48,-55,-2,,2009/3/22009-03-08,5385,92470,198,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/2,13:15.6\r\n8,557964,,126,127,3,3,37,30,0,0,0,0,,2009/3/22009-03-08,5385,92470,198,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/2,13:15.6\r\n9,557980,,111,1960,4,24,26,12,-63,-48,-59,-3,,2009/3/22009-03-08,5385,92470,198,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/2,13:15.6\r\n10,451594,Ƥ,91,1623,4,34,26,13,-25,-14,-18,-2,,2009/3/22009-03-08,5385,92470,198,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/3/2,13:15.7\r\n1,397108,жĿϣ,2192,2192,71,4,31,34,0,0,0,0,,2009/2/232009-03-01,5747,94526,213,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/23,13:16.0\r\n2,435902,3,993,5113,34,18,29,20,-42,-24,-41,-1,,2009/2/232009-03-01,5747,94526,213,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/23,13:16.1\r\n3,1363,,474,10183,17,41,28,21,-40,-24,-38,-1,,2009/2/232009-03-01,5747,94526,213,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/23,13:16.1\r\n4,559593,Ϸ,396,10553,13,35,30,18,-44,-33,-43,-1,,2009/2/232009-03-01,5747,94526,213,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/23,13:16.1\r\n5,8010,ߺ,378,1964,13,16,30,17,-43,-34,-43,-1,,2009/2/232009-03-01,5747,94526,213,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/23,13:16.1\r\n6,557980,,296,1850,11,17,28,15,-47,-36,-47,-1,,2009/2/232009-03-01,5747,94526,213,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/23,13:16.1\r\n7,566136,,147,1603,6,26,26,16,-40,-24,-38,-1,,2009/2/232009-03-01,5747,94526,213,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/23,13:16.1\r\n8,451594,Ƥ,122,1532,4,27,28,14,-49,-28,-46,-1,,2009/2/232009-03-01,5747,94526,213,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/23,13:16.1\r\n9,4085,·,102,201,4,10,24,12,5,45,11,3,,2009/2/232009-03-01,5747,94526,213,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/23,13:16.2\r\n10,303769,,69,1544,2,33,31,19,-50,-37,-44,-1,,2009/2/232009-03-01,5747,94526,213,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/23,13:16.2\r\n1,435902,3,1720,4119,58,11,30,25,-28,47,-14,9999,,2009/2/162009-02-22,6097,99617,226,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/16,13:16.5\r\n2,1363,,788,9709,27,34,29,26,-51,-23,-46,1,,2009/2/162009-02-22,6097,99617,226,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/16,13:16.6\r\n3,559593,Ϸ,713,10158,23,28,31,21,-63,-33,-58,-1,,2009/2/162009-02-22,6097,99617,226,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/16,13:16.6\r\n4,8010,ߺ,665,1586,22,9,30,20,-28,147,-3,1,,2009/2/162009-02-22,6097,99617,226,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/16,13:16.6\r\n5,557980,,560,1554,20,10,28,18,-43,70,-28,-1,,2009/2/162009-02-22,6097,99617,226,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/16,13:16.6\r\n6,566136,,245,1457,9,19,27,20,-57,-36,-54,9999,,2009/2/162009-02-22,6097,99617,226,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/16,13:16.6\r\n7,451594,Ƥ,241,1410,8,20,30,19,-48,-33,-45,1,,2009/2/162009-02-22,6097,99617,226,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/16,13:16.6\r\n8,555157,(),154,24268,5,47,32,18,-69,-58,-69,-1,,2009/2/162009-02-22,6097,99617,226,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/16,13:16.6\r\n9,303769,,138,1474,4,26,35,21,-52,-39,-51,2,,2009/2/162009-02-22,6097,99617,226,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/16,13:16.7\r\n10,642975,ϲ̫֮ţ,119,7798,8,-284,16,24,0,0,0,0,,2009/2/162009-02-22,6097,99617,226,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/16,13:16.7\r\n1,435902,3,2400,2400,67,4,36,43,0,0,0,0,,2009/2/92009-02-15,11126,106489,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/9,13:17.0\r\n2,559593,Ϸ,1910,9445,54,21,35,33,-30,-24,-35,-1,,2009/2/92009-02-15,11126,106489,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/9,13:17.0\r\n3,1363,,1599,8921,51,27,32,37,-25,-19,-31,-1,,2009/2/92009-02-15,11126,106489,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/9,13:17.1\r\n4,557980,,988,994,28,3,36,43,0,0,0,0,,2009/2/92009-02-15,11126,106489,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/9,13:17.1\r\n5,8010,ߺ,921,921,23,2,40,50,0,0,0,0,,2009/2/92009-02-15,11126,106489,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/9,13:17.1\r\n6,566136,,575,1212,20,12,29,27,4,25,1,1,,2009/2/92009-02-15,11126,106489,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/9,13:17.1\r\n7,555157,(),502,24114,15,40,33,25,-60,-45,-62,-4,,2009/2/92009-02-15,11126,106489,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/9,13:17.1\r\n8,451594,Ƥ,467,1168,14,13,32,23,-32,-20,-38,-2,,2009/2/92009-02-15,11126,106489,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/9,13:17.1\r\n9,297535,ϲ2009,405,3755,14,25,29,26,-58,-36,-60,-4,,2009/2/92009-02-15,11126,106489,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/9,13:17.2\r\n10,642975,ϲ̫֮ţ,308,7679,15,-291,21,25,0,0,0,0,,2009/2/92009-02-15,11126,106489,347,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/9,13:17.2\r\n1,559593,Ϸ,2716,7534,84,14,32,39,-44,-20,-42,9999,,2009/2/22009-02-08,10888,107937,371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/2,13:17.6\r\n2,1363,,2123,7322,73,20,29,43,-32,-8,-27,9999,,2009/2/22009-02-08,10888,107937,371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/2,13:17.6\r\n3,555157,(),1270,23612,40,33,32,35,-49,-20,-44,1,,2009/2/22009-02-08,10888,107937,371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/2,13:17.6\r\n4,642975,ϲ̫֮ţ,1049,7371,43,-298,24,38,0,0,0,0,,2009/2/22009-02-08,10888,107937,371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/2,13:17.6\r\n5,297535,ϲ2009,962,3351,35,18,27,42,-42,-15,-40,9999,,2009/2/22009-02-08,10888,107937,371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/2,13:17.6\r\n6,451594,Ƥ,687,702,23,6,30,29,0,0,0,0,,2009/2/22009-02-08,10888,107937,371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/2,13:17.6\r\n7,566136,,551,637,20,5,28,34,0,0,0,0,,2009/2/22009-02-08,10888,107937,371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/2,13:17.7\r\n8,303769,,466,1049,14,12,33,29,-20,9,-15,-2,,2009/2/22009-02-08,10888,107937,371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/2,13:17.7\r\n9,459928,ʮԼ,198,552,8,14,26,22,-43,-23,-40,9999,,2009/2/22009-02-08,10888,107937,371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/2,13:17.7\r\n10,311143,繷,169,4125,4,47,44,30,-52,-23,-51,-3,,2009/2/22009-02-08,10888,107937,371,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/2/2,13:17.7\r\n1,559593,Ϸ,4807,4819,145,7,33,54,0,0,0,17,,2009/1/262009-02-01,17247,111476,557,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/26,13:18.1\r\n2,1363,,3123,5199,101,13,31,55,51,-2,45,9999,,2009/1/262009-02-01,17247,111476,557,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/26,13:18.2\r\n3,642975,ϲ̫֮ţ,2574,6322,96,-305,27,68,0,0,0,0,,2009/1/262009-02-01,17247,111476,557,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/26,13:18.2\r\n4,555157,(),2513,22342,72,26,35,51,-26,-49,-30,-3,,2009/1/262009-02-01,17247,111476,557,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/26,13:18.2\r\n5,297535,ϲ2009,1659,2389,58,11,29,59,127,42,126,-1,,2009/1/262009-02-01,17247,111476,557,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/26,13:18.2\r\n6,303769,,583,583,16,5,35,38,0,0,0,0,,2009/1/262009-02-01,17247,111476,557,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/26,13:18.2\r\n7,311143,繷,351,3956,8,40,45,47,30,-20,27,-1,,2009/1/262009-02-01,17247,111476,557,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/26,13:18.2\r\n8,312538,ɾ֮,346,347,13,7,27,38,0,0,0,91,,2009/1/262009-02-01,17247,111476,557,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/26,13:18.2\r\n9,459928,ʮԼ,345,354,13,7,27,29,0,0,0,10,,2009/1/262009-02-01,17247,111476,557,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/26,13:18.3\r\n10,557894,ǳ,275,25850,9,46,30,29,-43,-54,-43,-5,,2009/1/262009-02-01,17247,111476,557,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/26,13:18.3\r\n1,555157,(),3373,19829,102,19,33,37,-56,-41,-55,9999,,2009/1/192009-01-25,9684,94287,329,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/19,13:18.7\r\n2,1363,,2072,2076,70,6,30,37,0,0,0,0,,2009/1/192009-01-25,9684,94287,329,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/19,13:18.7\r\n3,642975,ϲ̫֮ţ,2034,3748,78,-312,26,48,0,0,0,0,,2009/1/192009-01-25,9684,94287,329,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/19,13:18.7\r\n4,297535,ϲ2009,730,730,26,4,28,37,0,0,0,0,,2009/1/192009-01-25,9684,94287,329,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/19,13:18.7\r\n5,557894,ǳ,487,25575,16,39,30,23,-61,-48,-59,-2,,2009/1/192009-01-25,9684,94287,329,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/19,13:18.7\r\n6,311143,繷,270,3605,6,33,44,30,-48,-32,-46,-1,,2009/1/192009-01-25,9684,94287,329,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/19,13:18.7\r\n7,355865,˹2,262,3098,11,25,23,21,-58,-43,-55,-3,,2009/1/192009-01-25,9684,94287,329,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/19,13:18.7\r\n8,4160,Ҷ,63,8295,3,45,20,18,-68,-56,-62,-2,,2009/1/192009-01-25,9684,94287,329,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/19,13:18.8\r\n9,303727,,61,67,2,3,33,14,0,0,0,0,,2009/1/192009-01-25,9684,94287,329,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/19,13:18.8\r\n10,565289,,45,3334,1,53,35,24,-59,-47,-61,-3,,2009/1/192009-01-25,9684,94287,329,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/19,13:18.8\r\n1,555157,(),7690,16456,229,12,34,49,-12,30,-9,9999,,2009/1/122009-01-18,12448,92676,394,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/12,13:19.3\r\n2,642975,ϲ̫֮ţ,1713,1713,60,-319,28,87,0,0,0,0,,2009/1/122009-01-18,12448,92676,394,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/12,13:19.3\r\n3,557894,ǳ,1237,25088,40,32,31,29,-37,-33,-33,-1,,2009/1/122009-01-18,12448,92676,394,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/12,13:19.3\r\n4,355865,˹2,627,2836,25,18,25,27,-11,-17,-7,-1,,2009/1/122009-01-18,12448,92676,394,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/12,13:19.3\r\n5,311143,繷,519,3334,11,26,46,37,0,-10,3,-1,,2009/1/122009-01-18,12448,92676,394,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/12,13:19.3\r\n6,4160,Ҷ,194,8233,8,38,24,21,-52,-47,-44,-1,,2009/1/122009-01-18,12448,92676,394,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/12,13:19.3\r\n7,565289,,111,3288,3,46,33,33,-42,-36,-38,-1,,2009/1/122009-01-18,12448,92676,394,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/12,13:19.3\r\n8,485078,÷,55,10166,2,46,27,18,-49,-59,-43,9999,,2009/1/122009-01-18,12448,92676,394,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/12,13:19.4\r\n9,2743,Ѳ,46,1603,2,27,22,14,-64,-54,-59,-2,,2009/1/122009-01-18,12448,92676,394,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/12,13:19.4\r\n10,453178,üڭ⴫,39,42,2,3,23,20,0,0,0,0,,2009/1/122009-01-18,12448,92676,394,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/12,13:19.4\r\n1,555157,(),8762,8766,251,5,35,70,0,0,0,0,,2009/1/52009-01-11,12990,91045,387,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/5,13:19.7\r\n2,557894,ǳ,1948,23851,59,25,33,29,-74,-47,-73,-1,,2009/1/52009-01-11,12990,91045,387,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/5,13:19.7\r\n3,355865,˹2,708,2209,27,11,26,24,-53,-8,-48,9999,,2009/1/52009-01-11,12990,91045,387,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/5,13:19.7\r\n4,311143,繷,519,2816,11,19,47,33,-61,-32,-59,9999,,2009/1/52009-01-11,12990,91045,387,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/5,13:19.7\r\n5,4160,Ҷ,402,8039,14,31,28,19,-79,-51,-78,-3,,2009/1/52009-01-11,12990,91045,387,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/5,13:19.7\r\n6,565289,,191,3177,5,39,35,34,-79,-56,-79,-1,,2009/1/52009-01-11,12990,91045,387,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/5,13:19.7\r\n7,2743,Ѳ,126,1557,5,20,25,16,-81,-60,-78,-1,,2009/1/52009-01-11,12990,91045,387,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/5,13:19.8\r\n8,485078,÷,107,10112,4,39,30,13,-79,-61,-79,-1,,2009/1/52009-01-11,12990,91045,387,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/5,13:19.8\r\n9,184,(),89,27579,3,186,28,39,0,0,0,0,,2009/1/52009-01-11,12990,91045,387,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/5,13:19.8\r\n10,364103,Ԥδ,23,1397,1,41,24,13,-52,-47,-54,-1,,2009/1/52009-01-11,12990,91045,387,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2009/1/5,13:19.8\r\n1,557894,ǳ,7383,21902,217,18,34,56,-18,-7,-15,9999,,2008/12/292009-01-04,14720,99073,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/29,13:20.1\r\n2,4160,Ҷ,1918,7637,65,24,30,44,-6,-3,-1,9999,,2008/12/292009-01-04,14720,99073,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/29,13:20.1\r\n3,355865,˹2,1495,1502,52,4,29,43,0,0,0,0,,2008/12/292009-01-04,14720,99073,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/29,13:20.1\r\n4,311143,繷,1334,2297,27,12,50,54,39,43,42,9999,,2008/12/292009-01-04,14720,99073,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/29,13:20.2\r\n5,565289,,916,2986,26,32,36,71,-22,-14,-20,-2,,2008/12/292009-01-04,14720,99073,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/29,13:20.2\r\n6,2743,Ѳ,649,1431,23,13,28,28,-17,-9,-12,-1,,2008/12/292009-01-04,14720,99073,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/29,13:20.2\r\n7,485078,÷,512,10005,17,32,31,24,-19,-17,-18,-1,,2008/12/292009-01-04,14720,99073,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/29,13:20.2\r\n8,1042,Ů˲,123,1938,5,25,24,21,-26,-26,-20,-1,,2008/12/292009-01-04,14720,99073,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/29,13:20.2\r\n9,364103,Ԥδ,47,1374,2,34,23,15,70,34,53,3,,2008/12/292009-01-04,14720,99073,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/29,13:20.2\r\n10,4889,,42,393,2,25,24,22,-2,3,0,-1,,2008/12/292009-01-04,14720,99073,451,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/29,13:20.3\r\n1,557894,ǳ,9042,14519,256,11,35,62,65,69,58,9999,,2008/12/222008-12-28,15259,93152,445,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/22,13:20.5\r\n2,4160,Ҷ,2042,5720,65,17,31,43,-14,-17,-20,9999,,2008/12/222008-12-28,15259,93152,445,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/22,13:20.5\r\n3,565289,,1174,2070,32,25,37,77,31,34,26,1,,2008/12/222008-12-28,15259,93152,445,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/22,13:20.6\r\n4,311143,繷,962,962,19,5,51,54,0,0,0,0,,2008/12/222008-12-28,15259,93152,445,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/22,13:20.6\r\n5,2743,Ѳ,782,782,26,6,30,30,0,0,0,0,,2008/12/222008-12-28,15259,93152,445,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/22,13:20.6\r\n6,485078,÷,630,9493,20,25,31,24,-58,-50,-57,-3,,2008/12/222008-12-28,15259,93152,445,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/22,13:20.6\r\n7,1042,Ů˲,167,1816,6,18,26,19,-73,-66,-73,-2,,2008/12/222008-12-28,15259,93152,445,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/22,13:20.6\r\n8,466443,ʥ˵,76,125,2,10,34,24,57,100,38,2,,2008/12/222008-12-28,15259,93152,445,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/22,13:20.6\r\n9,4889,,43,351,2,18,24,22,-57,-65,-57,-3,,2008/12/222008-12-28,15259,93152,445,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/22,13:20.6\r\n10,596436,ŷ,37,79,1,-2445,33,53,0,0,0,0,,2008/12/222008-12-28,15259,93152,445,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/22,13:20.7\r\n1,557894,ǳ,5477,5477,162,4,34,66,0,0,0,0,,2008/12/152008-12-21,11485,87610,367,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/15,13:20.9\r\n2,4160,Ҷ,2363,3677,81,10,29,44,80,105,93,9999,,2008/12/152008-12-21,11485,87610,367,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/15,13:20.9\r\n3,485078,÷,1512,8863,47,18,32,28,-62,-49,-61,-2,,2008/12/152008-12-21,11485,87610,367,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/15,13:20.9\r\n4,565289,,896,896,25,18,35,81,0,0,0,0,,2008/12/152008-12-21,11485,87610,367,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/15,13:21.0\r\n5,1042,Ů˲,612,1649,24,11,26,25,-41,2,-37,-2,,2008/12/152008-12-21,11485,87610,367,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/15,13:21.0\r\n6,4889,,100,308,4,11,25,18,-50,-24,-46,9999,,2008/12/152008-12-21,11485,87610,367,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/15,13:21.0\r\n7,559641,2,97,3088,4,26,23,16,-80,-63,-78,-3,,2008/12/152008-12-21,11485,87610,367,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/15,13:21.0\r\n8,364103,Ԥδ,90,1299,3,20,26,16,-79,-66,-78,-3,,2008/12/152008-12-21,11485,87610,367,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/15,13:21.0\r\n9,348627,ռ,61,6001,1,85,42,25,-52,-32,-50,-1,,2008/12/152008-12-21,11485,87610,367,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/15,13:21.0\r\n10,466443,ʥ˵,49,49,2,3,30,34,0,0,0,0,,2008/12/152008-12-21,11485,87610,367,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/15,13:21.1\r\n1,485078,÷,3988,7351,121,11,33,37,19,56,24,9999,,2008/12/82008-12-14,8053,84310,270,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/8,13:21.3\r\n2,4160,Ҷ,1314,1314,42,3,31,47,0,0,0,0,,2008/12/82008-12-14,8053,84310,270,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/8,13:21.3\r\n3,1042,Ů˲,1037,1037,38,4,27,40,0,0,0,0,,2008/12/82008-12-14,8053,84310,270,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/8,13:21.4\r\n4,559641,2,483,2991,19,19,25,26,-56,-46,-55,-2,,2008/12/82008-12-14,8053,84310,270,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/8,13:21.4\r\n5,364103,Ԥδ,425,1210,16,13,27,24,-46,-32,-45,-2,,2008/12/82008-12-14,8053,84310,270,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/8,13:21.4\r\n6,4889,,202,208,8,4,27,25,0,0,0,0,,2008/12/82008-12-14,8053,84310,270,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/8,13:21.4\r\n7,493980,һ,130,3026,6,25,23,15,-71,-60,-68,-3,,2008/12/82008-12-14,8053,84310,270,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/8,13:21.4\r\n8,348627,ռ,127,5940,3,78,43,33,-15,-15,-13,1,,2008/12/82008-12-14,8053,84310,270,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/8,13:21.4\r\n9,1813,Ӳ,72,719,3,17,21,15,-74,-66,-70,-4,,2008/12/82008-12-14,8053,84310,270,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/8,13:21.5\r\n10,340721,ƽ,65,1467,3,24,24,11,-60,-54,-57,-2,,2008/12/82008-12-14,8053,84310,270,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/8,13:21.5\r\n1,485078,÷,3363,3363,97,4,35,47,0,0,0,0,,2008/12/12008-12-07,6872,83281,233,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/1,13:21.9\r\n2,559641,2,1107,2507,43,12,26,30,-21,5,-19,-1,,2008/12/12008-12-07,6872,83281,233,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/1,13:21.9\r\n3,364103,Ԥδ,784,785,28,6,28,30,0,0,0,0,,2008/12/12008-12-07,6872,83281,233,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/1,13:21.9\r\n4,493980,һ,445,2896,18,18,25,19,-65,-47,-64,-2,,2008/12/12008-12-07,6872,83281,233,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/1,13:21.9\r\n5,1813,Ӳ,277,647,12,10,24,18,-25,27,-19,1,,2008/12/12008-12-07,6872,83281,233,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/1,13:21.9\r\n6,557930,֤,229,1458,9,18,25,16,-65,-51,-64,-2,,2008/12/12008-12-07,6872,83281,233,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/1,13:21.9\r\n7,373864,007Σ,170,11996,6,33,29,12,-77,-60,-76,-4,,2008/12/12008-12-07,6872,83281,233,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/1,13:21.9\r\n8,340721,ƽ,164,1403,6,17,26,12,-75,-59,-73,-3,,2008/12/12008-12-07,6872,83281,233,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/1,13:22.0\r\n9,348627,ռ,149,5813,3,71,44,32,-44,-43,-43,-2,,2008/12/12008-12-07,6872,83281,233,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/1,13:22.0\r\n10,304784,¼Ԫ,38,733,1,21,26,9,-78,-62,-76,-2,,2008/12/12008-12-07,6872,83281,233,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/12/1,13:22.0\r\n1,559641,2,1400,1400,53,5,26,40,0,0,0,0,,2008/11/242008-11-30,5721,86036,217,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/24,13:22.3\r\n2,493980,һ,1262,2451,50,11,25,28,6,41,9,9999,,2008/11/242008-11-30,5721,86036,217,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/24,13:22.3\r\n3,373864,007Σ,738,11826,24,26,31,19,-55,-52,-56,-2,,2008/11/242008-11-30,5721,86036,217,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/24,13:22.3\r\n4,557930,֤,660,1229,25,11,26,22,16,33,21,9999,,2008/11/242008-11-30,5721,86036,217,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/24,13:22.3\r\n5,340721,ƽ,643,1239,24,10,27,19,8,53,13,-2,,2008/11/242008-11-30,5721,86036,217,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/24,13:22.4\r\n6,1813,Ӳ,370,370,14,3,26,28,0,0,0,0,,2008/11/242008-11-30,5721,86036,217,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/24,13:22.4\r\n7,348627,ռ,268,5664,6,64,46,32,-22,-17,-23,-1,,2008/11/242008-11-30,5721,86036,217,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/24,13:22.4\r\n8,304784,¼Ԫ,171,696,6,14,28,15,-67,-61,-68,-3,,2008/11/242008-11-30,5721,86036,217,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/24,13:22.4\r\n9,297385,ǿ̨,22,1483,1,38,16,20,-38,-56,-31,-1,,2008/11/242008-11-30,5721,86036,217,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/24,13:22.4\r\n10,560134,,21,32,2,147,14,133,5159,342,3076,63,,2008/11/242008-11-30,5721,86036,217,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/24,13:22.4\r\n1,373864,007Σ,1631,11088,54,19,30,21,-60,-46,-59,9999,,2008/11/172008-11-23,5199,83639,187,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/17,13:22.8\r\n2,493980,һ,1189,1189,45,4,26,36,0,0,0,0,,2008/11/172008-11-23,5199,83639,187,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/17,13:22.8\r\n3,340721,ƽ,595,595,21,3,29,26,0,0,0,0,,2008/11/172008-11-23,5199,83639,187,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/17,13:22.8\r\n4,557930,֤,569,569,21,4,27,25,0,0,0,0,,2008/11/172008-11-23,5199,83639,187,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/17,13:22.8\r\n5,304784,¼Ԫ,525,525,20,7,27,19,0,0,0,79,,2008/11/172008-11-23,5199,83639,187,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/17,13:22.8\r\n6,348627,ռ,345,5396,8,57,45,34,-11,-8,-13,-4,,2008/11/172008-11-23,5199,83639,187,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/17,13:22.8\r\n7,978,ذ,42,107,2,10,25,13,-36,9,-35,9999,,2008/11/172008-11-23,5199,83639,187,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/17,13:22.9\r\n8,297385,ǿ̨,36,1461,2,31,18,13,-69,-59,-63,-5,,2008/11/172008-11-23,5199,83639,187,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/17,13:22.9\r\n9,297540,,26,2579,1,39,19,9,-70,-54,-64,-4,,2008/11/172008-11-23,5199,83639,187,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/17,13:22.9\r\n10,559565,,21,438,1,24,21,9,-74,-64,-69,-4,,2008/11/172008-11-23,5199,83639,187,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/17,13:22.9\r\n1,373864,007Σ,4058,9457,133,12,31,28,-25,23,-22,9999,,2008/11/102008-11-16,5342,82620,182,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/10,13:23.3\r\n2,348627,ռ,389,5052,9,50,45,37,16,1,13,9999,,2008/11/102008-11-16,5342,82620,182,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/10,13:23.3\r\n3,297385,ǿ̨,116,1426,5,24,22,14,-45,-39,-44,1,,2008/11/102008-11-16,5342,82620,182,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/10,13:23.3\r\n4,,,112,,4,,26,10,0,0,0,-1,,2008/11/102008-11-16,5342,82620,182,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/10,13:23.3\r\n5,297540,,87,2553,4,32,23,11,-41,-34,-38,9999,,2008/11/102008-11-16,5342,82620,182,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/10,13:23.3\r\n6,559565,,80,417,3,17,24,11,-36,-35,-38,1,,2008/11/102008-11-16,5342,82620,182,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/10,13:23.3\r\n7,978,ذ,65,65,3,3,25,23,0,0,0,0,,2008/11/102008-11-16,5342,82620,182,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/10,13:23.4\r\n8,559669,,65,96,3,10,23,9,106,115,101,3,,2008/11/102008-11-16,5342,82620,182,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/10,13:23.4\r\n9,1491,Ƥ,59,20424,2,52,26,9,-57,-45,-55,-3,,2008/11/102008-11-16,5342,82620,182,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/10,13:23.4\r\n10,425173,¬Ӣ۴ս,37,427,1,49,25,22,148,19,137,4,,2008/11/102008-11-16,5342,82620,182,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/10,13:23.4\r\n1,373864,007Σ,5399,5399,170,5,32,44,0,0,0,0,,2008/11/32008-11-09,6952,84761,230,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/3,13:23.8\r\n2,348627,ռ,336,4662,8,43,43,33,-32,-10,-30,2,,2008/11/32008-11-09,6952,84761,230,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/3,13:23.8\r\n3,,,246,,9,,26,13,0,0,0,-2,,2008/11/32008-11-09,6952,84761,230,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/3,13:23.8\r\n4,297385,ǿ̨,211,1310,9,17,22,16,-67,-52,-63,-2,,2008/11/32008-11-09,6952,84761,230,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/3,13:23.8\r\n5,297540,,146,2466,6,25,24,12,-71,-51,-68,9999,,2008/11/32008-11-09,6952,84761,230,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/3,13:23.8\r\n6,1491,Ƥ,136,20365,5,45,27,11,-73,-59,-71,-3,,2008/11/32008-11-09,6952,84761,230,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/3,13:23.8\r\n7,559565,,125,337,5,10,23,11,-41,20,-35,-1,,2008/11/32008-11-09,6952,84761,230,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/3,13:23.9\r\n8,131,ͨ,52,3866,2,44,23,12,-72,-54,-68,-1,,2008/11/32008-11-09,6952,84761,230,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/3,13:23.9\r\n9,330880,ٶ뼤,50,825,2,70,24,11,-73,-50,-70,-1,,2008/11/32008-11-09,6952,84761,230,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/3,13:23.9\r\n10,1495,ȴ,33,156,1,17,26,10,-60,-55,-60,9999,,2008/11/32008-11-09,6952,84761,230,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/11/3,13:23.9\r\n1,,,902,,31,,29,21,0,0,0,9999,,2008/10/272008-11-02,4241,84869,154,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/27,13:24.2\r\n2,297385,ǿ̨,641,1099,26,10,25,21,40,109,51,3,,2008/10/272008-11-02,4241,84869,154,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/27,13:24.2\r\n3,1491,Ƥ,506,20228,17,38,29,15,-42,-32,-42,-1,,2008/10/272008-11-02,4241,84869,154,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/27,13:24.2\r\n4,348627,ռ,496,4326,11,36,45,42,-18,-3,-14,9999,,2008/10/272008-11-02,4241,84869,154,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/27,13:24.3\r\n5,297540,,496,2320,19,18,26,18,-40,-35,-40,-2,,2008/10/272008-11-02,4241,84869,154,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/27,13:24.3\r\n6,559565,,211,212,8,3,26,20,0,0,0,0,,2008/10/272008-11-02,4241,84869,154,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/27,13:24.3\r\n7,131,ͨ,187,3814,7,37,27,17,-32,-28,-32,9999,,2008/10/272008-11-02,4241,84869,154,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/27,13:24.3\r\n8,330880,ٶ뼤,182,775,7,63,26,18,-37,-39,-38,-2,,2008/10/272008-11-02,4241,84869,154,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/27,13:24.3\r\n9,7154,֮,106,209,5,54,22,11,3,59,10,-1,,2008/10/272008-11-02,4241,84869,154,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/27,13:24.3\r\n10,1495,ȴ,83,123,3,10,27,11,109,95,105,9999,,2008/10/272008-11-02,4241,84869,154,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/27,13:24.4\r\n1,,,1230,,43,,29,24,0,0,0,9999,,2008/10/202008-10-26,5054,86887,181,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/20,13:24.7\r\n2,1491,Ƥ,871,19723,30,31,29,18,-50,-30,-51,9999,,2008/10/202008-10-26,5054,86887,181,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/20,13:24.7\r\n3,297540,,821,1824,31,11,26,19,-16,28,-14,9999,,2008/10/202008-10-26,5054,86887,181,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/20,13:24.7\r\n4,348627,ռ,602,3830,13,29,47,48,-11,-3,-10,9999,,2008/10/202008-10-26,5054,86887,181,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/20,13:24.7\r\n5,297385,ǿ̨,458,458,17,3,27,29,0,0,0,0,,2008/10/202008-10-26,5054,86887,181,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/20,13:24.7\r\n6,330880,ٶ뼤,288,594,11,56,26,18,-6,-3,-4,9999,,2008/10/202008-10-26,5054,86887,181,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/20,13:24.7\r\n7,131,ͨ,277,3627,10,30,27,18,-35,-30,-35,-2,,2008/10/202008-10-26,5054,86887,181,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/20,13:24.7\r\n8,7154,֮,103,103,4,47,23,16,10689,68925,12040,37,,2008/10/202008-10-26,5054,86887,181,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/20,13:24.8\r\n9,414877,,56,758,2,45,23,14,58,70,64,-1,,2008/10/202008-10-26,5054,86887,181,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/20,13:24.8\r\n10,1495,ȴ,40,40,2,3,26,11,0,0,0,0,,2008/10/202008-10-26,5054,86887,181,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/20,13:24.8\r\n1,,,1884,,66,,29,28,0,0,0,1,,2008/10/132008-10-19,6361,88276,222,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/13,13:25.1\r\n2,1491,Ƥ,1754,18852,61,24,29,26,-50,-31,-47,-1,,2008/10/132008-10-19,6361,88276,222,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/13,13:25.1\r\n3,297540,,977,1004,36,4,27,28,0,0,0,0,,2008/10/132008-10-19,6361,88276,222,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/13,13:25.1\r\n4,348627,ռ,678,3227,14,22,47,52,-13,-7,-9,9999,,2008/10/132008-10-19,6361,88276,222,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/13,13:25.1\r\n5,131,ͨ,424,3350,16,23,27,19,-52,-42,-51,-2,,2008/10/132008-10-19,6361,88276,222,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/13,13:25.1\r\n6,330880,ٶ뼤,306,306,12,49,26,18,0,0,0,0,,2008/10/132008-10-19,6361,88276,222,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/13,13:25.2\r\n7,297383,,68,483,3,21,23,12,-54,-49,-51,-2,,2008/10/132008-10-19,6361,88276,222,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/13,13:25.2\r\n8,414877,,35,702,1,38,24,15,186,50,162,4,,2008/10/132008-10-19,6361,88276,222,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/13,13:25.2\r\n9,443183,,34,491,2,22,20,16,-46,-52,-35,-1,,2008/10/132008-10-19,6361,88276,222,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/13,13:25.2\r\n10,425173,¬Ӣ۴ս,34,302,1,21,24,15,-48,-46,-44,-3,,2008/10/132008-10-19,6361,88276,222,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/13,13:25.2\r\n1,1491,Ƥ,3503,17098,116,17,30,34,-64,-32,-64,9999,,2008/10/62008-10-12,7737,87990,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/6,13:25.6\r\n2,,,2019,,68,,30,38,0,0,0,0,,2008/10/62008-10-12,7737,87990,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/6,13:25.6\r\n3,131,ͨ,878,2926,32,16,27,23,-51,-26,-50,-1,,2008/10/62008-10-12,7737,87990,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/6,13:25.6\r\n4,348627,ռ,781,2549,16,15,49,53,-54,-15,-50,-1,,2008/10/62008-10-12,7737,87990,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/6,13:25.6\r\n5,297383,,148,416,6,14,24,13,-45,-18,-42,1,,2008/10/62008-10-12,7737,87990,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/6,13:25.6\r\n6,411204,ˮХ,65,3507,3,29,24,11,-79,-44,-77,-1,,2008/10/62008-10-12,7737,87990,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/6,13:25.7\r\n7,425173,¬Ӣ۴ս,64,268,3,14,25,14,-68,-32,-67,9999,,2008/10/62008-10-12,7737,87990,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/6,13:25.7\r\n8,443183,,62,457,3,15,24,12,-83,-51,-82,-4,,2008/10/62008-10-12,7737,87990,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/6,13:25.7\r\n9,4712,׵Ĳ,37,1088,1,25,26,9,-66,-36,-67,-1,,2008/10/62008-10-12,7737,87990,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/6,13:25.7\r\n10,297540,,27,27,1,-3,51,249,0,0,0,0,,2008/10/62008-10-12,7737,87990,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/10/6,13:25.7\r\n1,1491,Ƥ,9815,13595,323,10,30,64,160,134,168,9999,,2008/9/292008-10-05,14976,102706,489,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/29,13:26.1\r\n2,131,ͨ,1795,2048,65,9,28,33,609,409,629,3,,2008/9/292008-10-05,14976,102706,489,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/29,13:26.1\r\n3,348627,ռ,1707,1768,32,8,54,89,2694,2206,2712,4,,2008/9/292008-10-05,14976,102706,489,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/29,13:26.1\r\n4,443183,,363,395,14,8,25,33,1046,616,902,5,,2008/9/292008-10-05,14976,102706,489,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/29,13:26.1\r\n5,411204,ˮХ,306,3443,11,22,27,26,-51,-70,-53,-3,,2008/9/292008-10-05,14976,102706,489,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/29,13:26.2\r\n6,297383,,267,268,11,7,25,18,0,0,0,45,,2008/9/292008-10-05,14976,102706,489,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/29,13:26.2\r\n7,425173,¬Ӣ۴ս,200,204,8,7,26,29,0,0,0,45,,2008/9/292008-10-05,14976,102706,489,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/29,13:26.2\r\n8,4712,׵Ĳ,109,1051,4,18,25,17,-73,-76,-72,-4,,2008/9/292008-10-05,14976,102706,489,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/29,13:26.2\r\n9,489329,Сս,50,535,3,129,15,37,1145,406,644,14,,2008/9/292008-10-05,14976,102706,489,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/29,13:26.2\r\n10,414877,,43,655,2,24,24,15,-40,-62,-46,-4,,2008/9/292008-10-05,14976,102706,489,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/29,13:26.2\r\n1,1491,Ƥ,3769,3781,121,3,31,56,0,0,0,0,,2008/9/222008-09-28,5879,79397,205,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/22,13:26.9\r\n2,411204,ˮХ,628,3136,24,15,26,17,-68,-37,-67,-1,,2008/9/222008-09-28,5879,79397,205,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/22,13:26.9\r\n3,,,411,,15,,27,11,0,0,0,-1,,2008/9/222008-09-28,5879,79397,205,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/22,13:27.0\r\n4,4712,׵Ĳ,408,942,15,11,27,15,-24,22,-18,-1,,2008/9/222008-09-28,5879,79397,205,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/22,13:27.0\r\n5,131,ͨ,253,253,9,2,29,23,0,0,0,0,,2008/9/222008-09-28,5879,79397,205,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/22,13:27.0\r\n6,414877,,72,612,3,17,22,10,-71,-48,-65,-2,,2008/9/222008-09-28,5879,79397,205,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/22,13:27.0\r\n7,348627,ռ,61,61,1,1,54,73,0,0,0,0,,2008/9/222008-09-28,5879,79397,205,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/22,13:27.0\r\n8,345547,޵кƿ,34,5354,2,40,22,7,-75,-57,-72,-3,,2008/9/222008-09-28,5879,79397,205,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/22,13:27.0\r\n9,443183,,32,32,1,1,22,23,0,0,0,0,,2008/9/222008-09-28,5879,79397,205,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/22,13:27.1\r\n10,559697,ͯ,24,234,3,34,7,64,-28,-35,0,-3,,2008/9/222008-09-28,5879,79397,205,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/22,13:27.1\r\n1,411204,ˮХ,1946,2508,72,8,27,32,247,523,261,1,,2008/9/152008-09-21,4787,82930,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/15,13:27.6\r\n2,,,1550,,50,,31,20,0,0,0,-1,,2008/9/152008-09-21,4787,82930,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/15,13:27.7\r\n3,4712,׵Ĳ,534,534,19,4,29,22,0,0,0,0,,2008/9/152008-09-21,4787,82930,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/15,13:27.7\r\n4,414877,,249,540,9,10,26,15,-14,47,-10,9999,,2008/9/152008-09-21,4787,82930,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/15,13:27.7\r\n5,345547,޵кƿ,137,5319,5,33,25,10,-63,-50,-60,-2,,2008/9/152008-09-21,4787,82930,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/15,13:27.7\r\n6,559983,ʮȫ,48,4429,2,52,21,13,-43,-39,-41,9999,,2008/9/152008-09-21,4787,82930,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/15,13:27.7\r\n7,559697,ͯ,33,211,3,27,10,42,-13,-36,1,1,,2008/9/152008-09-21,4787,82930,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/15,13:27.7\r\n8,573474,Ѫ,26,51,1,10,29,248,3,-20,5,2,,2008/9/152008-09-21,4787,82930,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/15,13:27.7\r\n9,5044,ȸ,24,1339,1,31,22,10,-78,-73,-76,-4,,2008/9/152008-09-21,4787,82930,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/15,13:27.7\r\n10,386885,,23,380,1,55,24,9,1051,866,727,23,,2008/9/152008-09-21,4787,82930,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/15,13:27.8\r\n1,,,3011,,98,,31,24,0,0,0,9999,,2008/9/82008-09-14,4770,80298,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/8,13:28.3\r\n2,411204,ˮХ,562,562,20,1,28,55,0,0,0,0,,2008/9/82008-09-14,4770,80298,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/8,13:28.3\r\n3,345547,޵кƿ,367,5182,14,26,27,12,-21,-27,-19,-1,,2008/9/82008-09-14,4770,80298,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/8,13:28.3\r\n4,414877,,291,291,11,3,28,25,0,0,0,0,,2008/9/82008-09-14,4770,80298,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/8,13:28.3\r\n5,5044,ȸ,105,1316,5,24,23,11,-38,-33,-35,-2,,2008/9/82008-09-14,4770,80298,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/8,13:28.3\r\n6,559983,ʮȫ,85,4381,4,45,22,14,-2,-17,8,-1,,2008/9/82008-09-14,4770,80298,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/8,13:28.4\r\n7,559534,Ĵջ,60,1360,3,31,22,13,-36,-31,-32,-3,,2008/9/82008-09-14,4770,80298,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/8,13:28.4\r\n8,559697,ͯ,38,177,3,20,12,26,10,-7,21,-2,,2008/9/82008-09-14,4770,80298,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/8,13:28.4\r\n9,385423,,28,1948,1,36,24,7,-16,-30,-10,-2,,2008/9/82008-09-14,4770,80298,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/8,13:28.4\r\n10,573474,Ѫ,25,25,1,3,30,190,0,0,0,0,,2008/9/82008-09-14,4770,80298,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/8,13:28.5\r\n1,,,5428,,176,,31,40,0,0,0,21,,2008/9/12008-09-07,6436,82213,219,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/1,13:29.0\r\n2,345547,޵кƿ,468,4815,17,19,28,11,-79,-55,-79,-1,,2008/9/12008-09-07,6436,82213,219,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/1,13:29.0\r\n3,5044,ȸ,170,1210,7,17,24,11,-77,-51,-76,-1,,2008/9/12008-09-07,6436,82213,219,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/1,13:29.0\r\n4,559534,Ĵջ,94,1300,4,24,24,13,-73,-54,-73,9999,,2008/9/12008-09-07,6436,82213,219,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/1,13:29.1\r\n5,559983,ʮȫ,86,4296,4,38,24,11,-78,-54,-78,-2,,2008/9/12008-09-07,6436,82213,219,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/1,13:29.1\r\n6,559697,ͯ,35,139,3,13,13,20,-63,-39,-48,1,,2008/9/12008-09-07,6436,82213,219,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/1,13:29.1\r\n7,385423,,33,1920,1,29,26,5,-84,-65,-85,-2,,2008/9/12008-09-07,6436,82213,219,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/1,13:29.1\r\n8,559572,,32,52,1,93,29,24,137749,8880,68419,151,,2008/9/12008-09-07,6436,82213,219,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/1,13:29.1\r\n9,184,(),12,27471,0,60,26,9,-89,-81,-88,-3,,2008/9/12008-09-07,6436,82213,219,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/1,13:29.1\r\n10,573473,50,10,10,0,3,25,84,0,0,0,0,,2008/9/12008-09-07,6436,82213,219,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/9/1,13:29.1\r\n1,345547,޵кƿ,2246,4347,81,12,28,24,7,31,8,9999,,2008/8/252008-08-31,4428,86268,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/25,13:29.4\r\n2,5044,ȸ,724,1041,29,10,25,23,129,137,140,3,,2008/8/252008-08-31,4428,86268,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/25,13:29.4\r\n3,559983,ʮȫ,387,4210,16,31,24,22,-31,-24,-30,-1,,2008/8/252008-08-31,4428,86268,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/25,13:29.4\r\n4,559534,Ĵջ,349,1205,15,17,24,22,-24,-23,-27,-1,,2008/8/252008-08-31,4428,86268,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/25,13:29.4\r\n5,385423,,206,1887,8,22,25,12,-44,-36,-43,-1,,2008/8/252008-08-31,4428,86268,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/25,13:29.4\r\n6,184,(),108,27459,4,53,29,13,-55,-56,-55,9999,,2008/8/252008-08-31,4428,86268,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/25,13:29.5\r\n7,559697,ͯ,94,105,5,6,18,24,0,0,0,0,,2008/8/252008-08-31,4428,86268,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/25,13:29.5\r\n8,350723,è,39,15121,2,73,22,11,-31,-31,-34,9999,,2008/8/252008-08-31,4428,86268,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/25,13:29.5\r\n9,339428,ȫ˺,36,9215,2,61,21,9,-50,-38,-47,-2,,2008/8/252008-08-31,4428,86268,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/25,13:29.5\r\n10,489329,Сս,27,455,1,94,20,12,11,33,13,9999,,2008/8/252008-08-31,4428,86268,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/25,13:29.5\r\n1,345547,޵кƿ,2101,2101,75,5,28,30,0,0,0,0,,2008/8/182008-08-24,4432,83688,173,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/18,13:29.9\r\n2,559983,ʮȫ,559,3822,23,24,24,24,-40,-34,-38,9999,,2008/8/182008-08-24,4432,83688,173,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/18,13:29.9\r\n3,559534,Ĵջ,459,857,20,10,23,23,15,57,22,1,,2008/8/182008-08-24,4432,83688,173,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/18,13:29.9\r\n4,385423,,369,1681,14,15,26,13,-65,-48,-64,-3,,2008/8/182008-08-24,4432,83688,173,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/18,13:29.9\r\n5,5044,ȸ,317,317,12,3,26,22,0,0,0,0,,2008/8/182008-08-24,4432,83688,173,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/18,13:29.9\r\n6,184,(),240,27351,8,46,29,13,-61,-50,-59,-3,,2008/8/182008-08-24,4432,83688,173,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/18,13:29.9\r\n7,339428,ȫ˺,74,9179,3,54,23,11,-63,-47,-59,-2,,2008/8/182008-08-24,4432,83688,173,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/18,13:30.0\r\n8,350723,è,56,15082,3,66,21,12,-52,-44,-47,-2,,2008/8/182008-08-24,4432,83688,173,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/18,13:30.0\r\n9,557970,ƾ,34,2049,2,37,19,10,-55,-41,-50,-2,,2008/8/182008-08-24,4432,83688,173,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/18,13:30.0\r\n10,489329,Сս,24,428,1,87,21,14,-16,-12,-9,-1,,2008/8/182008-08-24,4432,83688,173,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/18,13:30.0\r\n1,385423,,1069,1312,40,8,27,19,339,482,358,4,,2008/8/112008-08-17,3727,80960,147,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/11,13:30.3\r\n2,559983,ʮȫ,926,3263,38,17,24,25,-41,-13,-41,-1,,2008/8/112008-08-17,3727,80960,147,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/11,13:30.4\r\n3,184,(),609,27111,20,39,30,16,-58,-42,-58,-1,,2008/8/112008-08-17,3727,80960,147,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/11,13:30.4\r\n4,559534,Ĵջ,398,398,16,3,24,30,0,0,0,0,,2008/8/112008-08-17,3727,80960,147,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/11,13:30.4\r\n5,339428,ȫ˺,197,9105,8,47,25,14,-59,-38,-56,-2,,2008/8/112008-08-17,3727,80960,147,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/11,13:30.4\r\n6,350723,è,118,15026,5,59,23,12,-53,-38,-52,-2,,2008/8/112008-08-17,3727,80960,147,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/11,13:30.4\r\n7,557970,ƾ,76,2015,4,30,21,11,-62,-43,-57,-1,,2008/8/112008-08-17,3727,80960,147,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/11,13:30.4\r\n8,386885,,45,326,2,20,29,12,-62,-39,-61,-1,,2008/8/112008-08-17,3727,80960,147,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/11,13:30.5\r\n9,489329,Сս,29,404,1,80,22,14,-21,-15,-21,1,,2008/8/112008-08-17,3727,80960,147,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/11,13:30.5\r\n10,559549,,20,212,1,132,26,19,232,76,236,16,,2008/8/112008-08-17,3727,80960,147,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/11,13:30.5\r\n1,559983,ʮȫ,1557,2337,64,10,24,37,100,149,110,2,,2008/8/42008-08-10,4738,81924,184,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/4,13:30.9\r\n2,184,(),1452,26502,48,32,30,22,-48,-31,-48,-1,,2008/8/42008-08-10,4738,81924,184,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/4,13:30.9\r\n3,339428,ȫ˺,477,8908,18,40,27,20,-40,-19,-39,-1,,2008/8/42008-08-10,4738,81924,184,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/4,13:30.9\r\n4,350723,è,252,14908,11,52,24,16,-42,-24,-41,1,,2008/8/42008-08-10,4738,81924,184,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/4,13:30.9\r\n5,385423,,243,243,9,1,28,24,0,0,0,0,,2008/8/42008-08-10,4738,81924,184,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/4,13:31.0\r\n6,557970,ƾ,200,1940,8,23,24,15,-55,-33,-53,-2,,2008/8/42008-08-10,4738,81924,184,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/4,13:31.0\r\n7,386885,,120,280,4,13,29,19,-25,-11,-27,-1,,2008/8/42008-08-10,4738,81924,184,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/4,13:31.0\r\n8,405263,27,40,381,2,73,23,15,-14,2,-14,1,,2008/8/42008-08-10,4738,81924,184,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/4,13:31.0\r\n9,441325,Ư,37,927,2,80,22,16,-50,-34,-47,-2,,2008/8/42008-08-10,4738,81924,184,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/4,13:31.0\r\n10,489329,Сս,37,375,2,73,22,15,-24,-8,-24,-2,,2008/8/42008-08-10,4738,81924,184,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/8/4,13:31.0\r\n1,184,(),2816,25050,92,25,31,29,-42,-23,-37,9999,,2008/7/282008-08-03,5957,86174,220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/28,13:31.3\r\n2,339428,ȫ˺,790,8431,29,33,27,26,-18,-3,-15,9999,,2008/7/282008-08-03,5957,86174,220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/28,13:31.3\r\n3,559983,ʮȫ,780,780,31,3,26,44,0,0,0,0,,2008/7/282008-08-03,5957,86174,220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/28,13:31.3\r\n4,557970,ƾ,444,1740,18,16,25,22,-47,-22,-44,-1,,2008/7/282008-08-03,5957,86174,220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/28,13:31.3\r\n5,350723,è,435,14656,18,45,24,21,-30,-11,-28,-1,,2008/7/282008-08-03,5957,86174,220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/28,13:31.4\r\n6,386885,,160,161,6,6,29,23,0,0,0,0,,2008/7/282008-08-03,5957,86174,220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/28,13:31.4\r\n7,441325,Ư,75,890,3,73,23,20,26,38,31,-2,,2008/7/282008-08-03,5957,86174,220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/28,13:31.4\r\n8,489329,Сս,48,339,2,66,22,18,1111,995,860,20,,2008/7/282008-08-03,5957,86174,220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/28,13:31.4\r\n9,405263,27,47,341,2,66,23,17,43,83,59,-1,,2008/7/282008-08-03,5957,86174,220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/28,13:31.4\r\n10,408377,Σ24Сʱ,41,1348,2,39,22,13,22,18,18,-3,,2008/7/282008-08-03,5957,86174,220,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/28,13:31.4\r\n1,184,(),4868,22234,146,18,33,36,-44,-19,-43,9999,,2008/7/212008-07-27,7693,85545,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/21,13:31.7\r\n2,339428,ȫ˺,959,7641,35,26,28,30,-12,-8,-14,9999,,2008/7/212008-07-27,7693,85545,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/21,13:31.7\r\n3,557970,ƾ,838,1296,32,9,26,31,83,174,97,1,,2008/7/212008-07-27,7693,85545,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/21,13:31.8\r\n4,350723,è,624,14221,25,38,25,26,-19,-14,-21,-1,,2008/7/212008-07-27,7693,85545,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/21,13:31.8\r\n5,441325,Ư,59,815,3,66,24,21,1143,435,868,9,,2008/7/212008-07-27,7693,85545,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/21,13:31.8\r\n6,7531,һ,40,979,2,58,23,15,148,179,132,2,,2008/7/212008-07-27,7693,85545,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/21,13:31.8\r\n7,408377,Σ24Сʱ,34,1306,2,32,21,13,11,6,4,-1,,2008/7/212008-07-27,7693,85545,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/21,13:31.8\r\n8,405263,27,32,294,1,59,25,20,14845,6967,14329,40,,2008/7/212008-07-27,7693,85545,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/21,13:31.8\r\n9,4368,,28,1302,1,32,19,12,-10,-3,-12,-4,,2008/7/212008-07-27,7693,85545,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/21,13:31.8\r\n10,502341,ߴ,24,1690,1,564,24,15,69,100,82,-1,,2008/7/212008-07-27,7693,85545,258,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/21,13:31.9\r\n1,184,(),8669,17367,257,11,34,51,0,57,3,9999,,2008/7/142008-07-20,11178,85115,356,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/14,13:32.2\r\n2,339428,ȫ˺,1094,6682,40,19,27,32,-49,-46,-48,9999,,2008/7/142008-07-20,11178,85115,356,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/14,13:32.2\r\n3,350723,è,774,13597,31,31,25,28,-45,-42,-43,9999,,2008/7/142008-07-20,11178,85115,356,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/14,13:32.2\r\n4,557970,ƾ,458,458,16,2,28,42,0,0,0,0,,2008/7/142008-07-20,11178,85115,356,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/14,13:32.2\r\n5,4368,,31,1274,2,25,19,13,-81,-72,-77,-1,,2008/7/142008-07-20,11178,85115,356,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/14,13:32.2\r\n6,408377,Σ24Сʱ,30,1273,2,25,20,13,-72,-67,-66,-1,,2008/7/142008-07-20,11178,85115,356,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/14,13:32.2\r\n7,317033,Ǵ2˹,17,6595,1,45,18,13,-71,-65,-66,-1,,2008/7/142008-07-20,11178,85115,356,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/14,13:32.2\r\n8,7531,һ,16,939,1,51,21,18,452,119,311,10,,2008/7/142008-07-20,11178,85115,356,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/14,13:32.3\r\n9,502341,ߴ,14,1666,1,557,26,17,2806,688,1499,28,,2008/7/142008-07-20,11178,85115,356,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/14,13:32.3\r\n10,389538,صѼ,7,13,0,51,44,49,27,65,33,1,,2008/7/142008-07-20,11178,85115,356,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/14,13:32.3\r\n1,184,(),8698,8698,249,4,35,77,0,0,0,0,,2008/7/72008-07-13,12693,89983,404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/7,13:32.7\r\n2,339428,ȫ˺,2131,5588,78,12,27,33,-38,-14,-33,-1,,2008/7/72008-07-13,12693,89983,404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/7,13:32.7\r\n3,350723,è,1419,12823,55,24,26,29,-55,-40,-53,-1,,2008/7/72008-07-13,12693,89983,404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/7,13:32.7\r\n4,4368,,162,1242,7,18,23,16,-70,-58,-69,-1,,2008/7/72008-07-13,12693,89983,404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/7,13:32.7\r\n5,408377,Σ24Сʱ,108,1242,5,18,24,13,-76,-60,-74,-1,,2008/7/72008-07-13,12693,89983,404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/7,13:32.8\r\n6,317033,Ǵ2˹,58,6578,3,38,21,13,-71,-59,-65,-1,,2008/7/72008-07-13,12693,89983,404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/7,13:32.8\r\n7,1233,Ѱ,27,1910,1,32,21,11,-72,-60,-71,-1,,2008/7/72008-07-13,12693,89983,404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/7,13:32.8\r\n8,654353,Ұ,10,52,0,,26,14,-51,-41,-41,-1,,2008/7/72008-07-13,12693,89983,404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/7,13:32.8\r\n9,559559,«ֵ,6,524,1,52,12,15,12,-3,-8,13,,2008/7/72008-07-13,12693,89983,404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/7,13:32.8\r\n10,1088,һ˵İƥ,6,95,1,58,10,130,-63,-65,-55,-2,,2008/7/72008-07-13,12693,89983,404,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/7/7,13:32.8\r\n1,339428,ȫ˺,3458,3458,117,5,30,43,0,0,0,0,,2008/6/302008-07-06,8124,93918,298,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/30,13:33.1\r\n2,350723,è,3170,11405,116,17,27,36,-37,-23,-37,-1,,2008/6/302008-07-06,8124,93918,298,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/30,13:33.2\r\n3,4368,,546,1081,23,11,24,22,2,71,9,1,,2008/6/302008-07-06,8124,93918,298,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/30,13:33.2\r\n4,408377,Σ24Сʱ,451,1134,18,11,25,20,-34,12,-30,-2,,2008/6/302008-07-06,8124,93918,298,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/30,13:33.2\r\n5,317033,Ǵ2˹,196,6520,8,31,26,16,-67,-54,-64,-2,,2008/6/302008-07-06,8124,93918,298,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/30,13:33.2\r\n6,1233,Ѱ,97,1883,4,25,22,15,-70,-63,-66,-1,,2008/6/302008-07-06,8124,93918,298,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/30,13:33.2\r\n7,654353,Ұ,21,41,1,,32,14,4,39,6,3,,2008/6/302008-07-06,8124,93918,298,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/30,13:33.2\r\n8,1088,һ˵İƥ,16,89,1,51,12,100,57,42,64,8,,2008/6/302008-07-06,8124,93918,298,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/30,13:33.2\r\n9,441325,Ư,11,748,1,45,19,8,-51,-35,-45,-1,,2008/6/302008-07-06,8124,93918,298,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/30,13:33.3\r\n10,332962,Խԩ,10,1203,1,42,17,9,-58,-52,-46,-3,,2008/6/302008-07-06,8124,93918,298,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/30,13:33.3\r\n1,350723,è,5067,8234,186,10,27,45,60,116,68,9999,,2008/6/232008-06-29,7525,86689,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/23,13:33.6\r\n2,408377,Σ24Сʱ,683,683,25,4,27,32,0,0,0,0,,2008/6/232008-06-29,7525,86689,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/23,13:33.6\r\n3,317033,Ǵ2˹,589,6324,21,24,28,20,-49,-48,-47,-1,,2008/6/232008-06-29,7525,86689,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/23,13:33.7\r\n4,4368,,535,535,21,4,25,34,0,0,0,0,,2008/6/232008-06-29,7525,86689,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/23,13:33.7\r\n5,1233,Ѱ,322,1786,13,18,25,16,-57,-48,-55,-2,,2008/6/232008-06-29,7525,86689,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/23,13:33.7\r\n6,7531,һ,29,913,1,30,20,13,-62,-54,-57,-2,,2008/6/232008-06-29,7525,86689,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/23,13:33.7\r\n7,332962,Խԩ,25,1192,1,35,22,8,-66,-53,-63,-2,,2008/6/232008-06-29,7525,86689,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/23,13:33.7\r\n8,441325,Ư,22,737,1,38,21,10,-58,-44,-50,-2,,2008/6/232008-06-29,7525,86689,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/23,13:33.7\r\n9,317034,Ǵ,21,322,1,845,41,29,-48,-45,-43,-1,,2008/6/232008-06-29,7525,86689,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/23,13:33.8\r\n10,654353,Ұ,20,20,1,,32,18,0,0,0,0,,2008/6/232008-06-29,7525,86689,284,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/23,13:33.8\r\n1,350723,è,3167,3167,111,3,29,58,0,0,0,0,,2008/6/162008-06-22,5599,77486,203,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/16,13:34.7\r\n2,317033,Ǵ2˹,1161,5735,40,17,29,20,-54,-29,-54,-1,,2008/6/162008-06-22,5599,77486,203,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/16,13:34.7\r\n3,1233,Ѱ,746,1464,29,11,26,18,4,49,9,-1,,2008/6/162008-06-22,5599,77486,203,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/16,13:34.7\r\n4,7531,һ,77,884,3,23,22,14,-58,-35,-53,-1,,2008/6/162008-06-22,5599,77486,203,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/16,13:34.8\r\n5,332962,Խԩ,73,1168,3,28,25,10,-54,-36,-52,-1,,2008/6/162008-06-22,5599,77486,203,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/16,13:34.8\r\n6,441325,Ư,54,714,2,31,25,11,-47,-23,-42,1,,2008/6/162008-06-22,5599,77486,203,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/16,13:34.8\r\n7,346815,,45,7709,2,54,24,9,-65,-48,-62,-1,,2008/6/162008-06-22,5599,77486,203,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/16,13:34.8\r\n8,317034,Ǵ,41,301,1,838,46,28,-69,-54,-73,-3,,2008/6/162008-06-22,5599,77486,203,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/16,13:34.8\r\n9,456600,֮ս,28,2689,1,41,20,8,-57,-48,-52,-1,,2008/6/162008-06-22,5599,77486,203,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/16,13:34.8\r\n10,566137,쫷Ӫ,28,1368,1,75,22,9,-51,-31,-49,-1,,2008/6/162008-06-22,5599,77486,203,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/16,13:34.9\r\n1,317033,Ǵ2˹,2502,4575,85,10,29,30,21,99,25,9999,,2008/6/92008-06-15,4378,73605,157,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/9,13:35.2\r\n2,1233,Ѱ,718,718,27,4,27,25,0,0,0,0,,2008/6/92008-06-15,4378,73605,157,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/9,13:35.2\r\n3,7531,һ,182,807,7,16,25,19,-41,-33,-40,9999,,2008/6/92008-06-15,4378,73605,157,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/9,13:35.2\r\n4,332962,Խԩ,157,1095,6,21,26,13,-50,-44,-49,-2,,2008/6/92008-06-15,4378,73605,157,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/9,13:35.2\r\n5,317034,Ǵ,131,260,3,831,40,47,1,53,2,2,,2008/6/92008-06-15,4378,73605,157,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/9,13:35.2\r\n6,346815,,131,7663,5,47,26,13,-52,-41,-50,-2,,2008/6/92008-06-15,4378,73605,157,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/9,13:35.3\r\n7,441325,Ư,101,660,4,24,27,15,-50,-41,-48,-2,,2008/6/92008-06-15,4378,73605,157,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/9,13:35.3\r\n8,456600,֮ս,66,2661,3,34,23,9,-62,-50,-59,-2,,2008/6/92008-06-15,4378,73605,157,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/9,13:35.3\r\n9,566137,쫷Ӫ,57,1340,3,68,23,12,-51,-44,-48,-1,,2008/6/92008-06-15,4378,73605,157,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/9,13:35.3\r\n10,559559,«ֵ,44,488,2,24,21,13,-40,-45,-41,1,,2008/6/92008-06-15,4378,73605,157,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/9,13:35.3\r\n1,317033,Ǵ2˹,2073,2073,68,3,30,47,0,0,0,0,,2008/6/22008-06-08,4165,73457,149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/2,13:35.6\r\n2,332962,Խԩ,313,937,12,14,26,15,-50,-28,-49,9999,,2008/6/22008-06-08,4165,73457,149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/2,13:35.6\r\n3,7531,һ,308,625,12,9,25,21,-3,97,0,3,,2008/6/22008-06-08,4165,73457,149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/2,13:35.7\r\n4,346815,,272,7533,10,40,27,15,-57,-33,-56,-3,,2008/6/22008-06-08,4165,73457,149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/2,13:35.7\r\n5,441325,Ư,203,560,7,17,29,17,-43,0,-41,-1,,2008/6/22008-06-08,4165,73457,149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/2,13:35.7\r\n6,456600,֮ս,174,2596,7,27,25,11,-67,-39,-66,-3,,2008/6/22008-06-08,4165,73457,149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/2,13:35.7\r\n7,317034,Ǵ,129,129,3,824,40,71,0,0,0,0,,2008/6/22008-06-08,4165,73457,149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/2,13:35.7\r\n8,566137,쫷Ӫ,116,1283,5,61,24,13,-50,-24,-51,-1,,2008/6/22008-06-08,4165,73457,149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/2,13:35.8\r\n9,405263,27,82,177,3,10,32,17,-10,75,-3,4,,2008/6/22008-06-08,4165,73457,149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/2,13:35.8\r\n10,337225,ƽ,75,3135,3,73,24,14,-60,-33,-61,-1,,2008/6/22008-06-08,4165,73457,149,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/6/2,13:35.8\r\n1,346815,,636,7261,23,33,28,23,-3,0,4,9999,,2008/5/262008-06-01,4313,77853,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/26,13:36.1\r\n2,332962,Խԩ,624,625,24,7,26,21,0,0,0,100,,2008/5/262008-06-01,4313,77853,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/26,13:36.1\r\n3,456600,֮ս,528,2422,21,20,25,19,-17,-1,-9,-1,,2008/5/262008-06-01,4313,77853,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/26,13:36.1\r\n4,441325,Ư,357,357,12,10,30,28,0,0,0,0,,2008/5/262008-06-01,4313,77853,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/26,13:36.1\r\n5,559559,«ֵ,357,371,18,10,20,39,2425,1748,1995,8,,2008/5/262008-06-01,4313,77853,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/26,13:36.1\r\n6,7531,һ,318,318,12,2,26,42,0,0,0,0,,2008/5/262008-06-01,4313,77853,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/26,13:36.2\r\n7,566137,쫷Ӫ,232,1168,10,54,24,19,-3,2,4,-3,,2008/5/262008-06-01,4313,77853,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/26,13:36.2\r\n8,559566,ǱͧܶԱ,213,213,11,2,19,43,0,0,0,0,,2008/5/262008-06-01,4313,77853,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/26,13:36.2\r\n9,337225,ƽ,188,3061,8,66,23,23,55,57,68,-3,,2008/5/262008-06-01,4313,77853,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/26,13:36.2\r\n10,489329,Сս,156,172,7,3,22,36,0,0,0,0,,2008/5/262008-06-01,4313,77853,175,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/26,13:36.2\r\n1,346815,,658,6624,22,26,30,22,-46,-44,-47,1,,2008/5/192008-05-25,2431,50520,88,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/19,13:36.5\r\n2,456600,֮ս,635,1894,23,13,28,21,-50,-40,-51,-1,,2008/5/192008-05-25,2431,50520,88,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/19,13:36.5\r\n3,442,֮,279,14331,9,32,31,12,-60,-56,-61,9999,,2008/5/192008-05-25,2431,50520,88,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/19,13:36.5\r\n4,566137,쫷Ӫ,240,936,9,47,26,19,50,50,49,9999,,2008/5/192008-05-25,2431,50520,88,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/19,13:36.5\r\n5,502341,ߴ,158,1481,5,501,32,24,110,62,110,9999,,2008/5/192008-05-25,2431,50520,88,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/19,13:36.5\r\n6,337225,ƽ,122,2873,5,59,25,22,447,114,417,3,,2008/5/192008-05-25,2431,50520,88,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/19,13:36.6\r\n7,559531,ʱ,58,110,2,10,28,13,12,33,18,9999,,2008/5/192008-05-25,2431,50520,88,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/19,13:36.6\r\n8,,,47,,2,,26,11,0,0,0,0,,2008/5/192008-05-25,2431,50520,88,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/19,13:36.6\r\n9,559521,,27,85,1,13,20,11,-53,-49,-49,-3,,2008/5/192008-05-25,2431,50520,88,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/19,13:36.6\r\n10,466562,,26,1491,1,39,23,10,-16,-28,-15,-2,,2008/5/192008-05-25,2431,50520,88,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/19,13:36.6\r\n1,456600,֮ս,1260,1260,47,6,27,25,0,0,0,0,,2008/5/122008-05-18,3745,73058,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/12,13:36.9\r\n2,346815,,1224,5967,41,19,30,23,-45,-34,-45,-1,,2008/5/122008-05-18,3745,73058,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/12,13:36.9\r\n3,442,֮,697,14052,23,25,30,13,-62,-49,-62,-1,,2008/5/122008-05-18,3745,73058,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/12,13:36.9\r\n4,566137,쫷Ӫ,159,696,6,40,25,19,1000,369,1087,6,,2008/5/122008-05-18,3745,73058,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/12,13:36.9\r\n5,502341,ߴ,75,1323,2,494,32,19,16,65,19,-1,,2008/5/122008-05-18,3745,73058,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/12,13:36.9\r\n6,559521,,58,58,3,6,22,11,0,0,0,0,,2008/5/122008-05-18,3745,73058,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/12,13:36.9\r\n7,559531,ʱ,52,52,2,3,29,14,0,0,0,0,,2008/5/122008-05-18,3745,73058,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/12,13:37.0\r\n8,466562,,31,1465,1,32,23,8,-68,-51,-66,-5,,2008/5/122008-05-18,3745,73058,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/12,13:37.0\r\n9,337225,ƽ,22,2751,1,52,24,9,-38,-19,-41,-4,,2008/5/122008-05-18,3745,73058,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/12,13:37.0\r\n10,457353,ʳ,15,288,1,73,25,15,72,6,56,7,,2008/5/122008-05-18,3745,73058,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/12,13:37.0\r\n1,346815,,2206,4743,75,12,29,28,-13,23,-9,1,,2008/5/52008-05-11,4531,77091,158,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/5,13:37.4\r\n2,442,֮,1854,13355,60,18,31,18,-68,-28,-67,-1,,2008/5/52008-05-11,4531,77091,158,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/5,13:37.4\r\n3,466562,,94,1435,4,25,24,12,-45,-31,-46,9999,,2008/5/52008-05-11,4531,77091,158,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/5,13:37.4\r\n4,502341,ߴ,65,1248,2,487,33,26,4975,1034,2649,30,,2008/5/52008-05-11,4531,77091,158,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/5,13:37.4\r\n5,337225,ƽ,36,2729,2,45,23,12,-24,-19,-20,9999,,2008/5/52008-05-11,4531,77091,158,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/5,13:37.4\r\n6,1227,֮ж,26,5981,1,39,20,7,-61,-42,-55,-2,,2008/5/52008-05-11,4531,77091,158,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/5,13:37.4\r\n7,416906,Ů,26,35,1,255,28,14,0,0,0,0,,2008/5/52008-05-11,4531,77091,158,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/5,13:37.5\r\n8,6540,̽,16,234,1,80,24,13,396,292,252,17,,2008/5/52008-05-11,4531,77091,158,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/5,13:37.5\r\n9,385573,þռ,16,72,0,13,39,46,-61,-16,-56,-3,,2008/5/52008-05-11,4531,77091,158,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/5,13:37.5\r\n10,566137,쫷Ӫ,14,537,1,33,27,8,-61,-49,-60,-3,,2008/5/52008-05-11,4531,77091,158,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/5/5,13:37.5\r\n1,442,֮,5711,11501,183,11,31,39,-1,35,3,9999,,2008/4/282008-05-04,8820,85887,292,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/28,13:37.9\r\n2,346815,,2537,2537,82,5,31,38,0,0,0,0,,2008/4/282008-05-04,8820,85887,292,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/28,13:37.9\r\n3,466562,,172,1341,7,18,24,16,-62,-59,-60,-1,,2008/4/282008-05-04,8820,85887,292,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/28,13:37.9\r\n4,1227,֮ж,66,5954,3,32,24,9,-80,-68,-77,-1,,2008/4/282008-05-04,8820,85887,292,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/28,13:37.9\r\n5,337225,ƽ,47,2693,2,38,24,13,-46,-50,-41,1,,2008/4/282008-05-04,8820,85887,292,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/28,13:37.9\r\n6,385573,þռ,42,56,1,6,44,88,0,0,0,0,,2008/4/282008-05-04,8820,85887,292,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/28,13:37.9\r\n7,566137,쫷Ӫ,37,522,1,26,28,10,-62,-58,-62,-3,,2008/4/282008-05-04,8820,85887,292,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/28,13:37.9\r\n8,404123,ʷǰһ,29,6959,1,45,21,10,-69,-63,-62,-3,,2008/4/282008-05-04,8820,85887,292,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/28,13:38.0\r\n9,185,ʯĺ,19,1188,1,32,18,13,-75,-73,-69,9999,,2008/4/282008-05-04,8820,85887,292,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/28,13:38.0\r\n10,363240,ұأᱦ,19,5988,1,49,22,13,-76,-74,-72,-3,,2008/4/282008-05-04,8820,85887,292,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/28,13:38.0\r\n1,442,֮,5790,5790,177,4,33,51,0,0,0,0,,2008/4/212008-04-27,7309,80112,238,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/21,13:38.8\r\n2,466562,,459,1168,18,11,25,16,-35,12,-28,9999,,2008/4/212008-04-27,7309,80112,238,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/21,13:38.8\r\n3,1227,֮ж,333,5888,12,25,27,12,-70,-48,-67,-2,,2008/4/212008-04-27,7309,80112,238,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/21,13:38.8\r\n4,566137,쫷Ӫ,99,485,4,19,28,11,-58,-37,-55,3,,2008/4/212008-04-27,7309,80112,238,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/21,13:38.9\r\n5,404123,ʷǰһ,91,6930,4,38,25,10,-72,-55,-70,-2,,2008/4/212008-04-27,7309,80112,238,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/21,13:38.9\r\n6,337225,ƽ,86,2646,3,31,26,11,-66,-45,-63,-1,,2008/4/212008-04-27,7309,80112,238,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/21,13:38.9\r\n7,363240,ұأᱦ,80,5968,3,42,26,12,-67,-53,-64,-1,,2008/4/212008-04-27,7309,80112,238,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/21,13:38.9\r\n8,668574,ӵ,79,278,3,,26,39,-54,-58,-51,9999,,2008/4/212008-04-27,7309,80112,238,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/21,13:38.9\r\n9,185,ʯĺ,78,1169,3,25,23,11,-69,-56,-64,-5,,2008/4/212008-04-27,7309,80112,238,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/21,13:38.9\r\n10,878,,43,233,2,18,24,11,-59,-52,-55,-1,,2008/4/212008-04-27,7309,80112,238,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/21,13:39.0\r\n1,1227,֮ж,1108,5555,38,18,29,19,-43,-25,-44,9999,,2008/4/142008-04-20,3699,76907,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/14,13:39.7\r\n2,466562,,705,710,25,4,28,26,0,0,0,0,,2008/4/142008-04-20,3699,76907,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/14,13:39.8\r\n3,404123,ʷǰһ,329,6839,12,31,28,15,-35,-27,-33,-1,,2008/4/142008-04-20,3699,76907,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/14,13:39.8\r\n4,185,ʯĺ,255,1091,10,18,26,14,-36,-28,-34,-1,,2008/4/142008-04-20,3699,76907,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/14,13:39.8\r\n5,337225,ƽ,254,2560,9,24,28,16,-36,-23,-35,-1,,2008/4/142008-04-20,3699,76907,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/14,13:39.8\r\n6,363240,ұأᱦ,244,5888,9,35,28,16,-32,-30,-29,-1,,2008/4/142008-04-20,3699,76907,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/14,13:39.8\r\n7,566137,쫷Ӫ,234,387,8,12,30,15,53,109,65,-1,,2008/4/142008-04-20,3699,76907,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/14,13:39.8\r\n8,668574,ӵ,172,199,6,,28,34,549,70,474,3,,2008/4/142008-04-20,3699,76907,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/14,13:39.9\r\n9,878,,104,190,4,11,26,12,35,85,42,-2,,2008/4/142008-04-20,3699,76907,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/14,13:39.9\r\n10,457353,ʳ,56,241,2,45,23,12,12,81,19,-2,,2008/4/142008-04-20,3699,76907,135,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/14,13:39.9\r\n1,1227,֮ж,1955,4446,68,11,29,25,-22,47,-18,9999,,2008/4/72008-04-13,4178,77872,150,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/7,13:41.2\r\n2,404123,ʷǰһ,506,6510,18,24,28,16,-60,-40,-59,9999,,2008/4/72008-04-13,4178,77872,150,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/7,13:41.2\r\n3,185,ʯĺ,401,836,15,11,27,15,-8,38,-2,2,,2008/4/72008-04-13,4178,77872,150,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/7,13:41.2\r\n4,337225,ƽ,398,2306,14,17,29,19,-60,-40,-59,-1,,2008/4/72008-04-13,4178,77872,150,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/7,13:41.2\r\n5,363240,ұأᱦ,357,5644,12,28,29,16,-59,-41,-58,-1,,2008/4/72008-04-13,4178,77872,150,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/7,13:41.2\r\n6,566137,쫷Ӫ,153,153,5,5,32,19,0,0,0,0,,2008/4/72008-04-13,4178,77872,150,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/7,13:41.3\r\n7,878,,77,86,3,4,27,16,0,0,0,0,,2008/4/72008-04-13,4178,77872,150,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/7,13:41.3\r\n8,457353,ʳ,50,186,2,38,24,19,2494,856,1652,22,,2008/4/72008-04-13,4178,77872,150,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/7,13:41.3\r\n9,307888,߶Ȼ,48,113,1,-780,49,36,0,0,0,0,,2008/4/72008-04-13,4178,77872,150,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/7,13:41.3\r\n10,559549,,40,40,2,6,25,17,0,0,0,0,,2008/4/72008-04-13,4178,77872,150,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/4/7,13:41.3\r\n1,1227,֮ж,2490,2492,83,4,30,46,0,0,0,0,,2008/3/312008-04-06,6368,79546,221,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/31,13:41.9\r\n2,404123,ʷǰһ,1259,6005,44,17,29,23,-49,-40,-49,-1,,2008/3/312008-04-06,6368,79546,221,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/31,13:42.0\r\n3,337225,ƽ,988,1908,34,10,29,28,7,60,10,9999,,2008/3/312008-04-06,6368,79546,221,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/31,13:42.0\r\n4,363240,ұأᱦ,864,5287,29,21,29,22,-45,-38,-45,-2,,2008/3/312008-04-06,6368,79546,221,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/31,13:42.0\r\n5,185,ʯĺ,436,436,15,4,29,22,0,0,0,0,,2008/3/312008-04-06,6368,79546,221,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/31,13:42.0\r\n6,307888,߶Ȼ,65,65,1,-787,50,80,0,0,0,0,,2008/3/312008-04-06,6368,79546,221,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/31,13:42.0\r\n7,816,ɽ,52,3795,3,31,20,9,-64,-55,-55,-3,,2008/3/312008-04-06,6368,79546,221,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/31,13:42.0\r\n8,297474,,51,69,2,6,29,19,0,0,0,0,,2008/3/312008-04-06,6368,79546,221,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/31,13:42.1\r\n9,386691,˹֡ˮ˵,20,5501,1,50,20,9,-42,-43,-38,-3,,2008/3/312008-04-06,6368,79546,221,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/31,13:42.1\r\n10,,,12,,0,,26,187,0,0,0,4,,2008/3/312008-04-06,6368,79546,221,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/31,13:42.1\r\n1,404123,ʷǰһ,2482,4746,86,10,29,28,10,97,15,1,,2008/3/242008-03-30,5343,75852,188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/24,13:42.6\r\n2,363240,ұأᱦ,1568,4424,53,14,30,25,-45,-28,-45,-1,,2008/3/242008-03-30,5343,75852,188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/24,13:42.6\r\n3,337225,ƽ,920,920,31,3,30,40,0,0,0,0,,2008/3/242008-03-30,5343,75852,188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/24,13:42.7\r\n4,816,ɽ,144,3743,6,24,25,9,-61,-47,-57,-1,,2008/3/242008-03-30,5343,75852,188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/24,13:42.7\r\n5,1338,˫ʳ,35,646,2,24,22,10,-61,-50,-60,-1,,2008/3/242008-03-30,5343,75852,188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/24,13:42.7\r\n6,386691,˹֡ˮ˵,35,5481,2,43,21,9,-60,-47,-57,-1,,2008/3/242008-03-30,5343,75852,188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/24,13:42.7\r\n7,560000,ǵĴ,18,46,1,10,28,170,16,23,14,3,,2008/3/242008-03-30,5343,75852,188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/24,13:42.7\r\n8,406855,,16,1312,1,38,26,9,-32,-40,-24,1,,2008/3/242008-03-30,5343,75852,188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/24,13:42.7\r\n9,3085,;,15,1164,1,32,20,7,-50,-45,-44,-2,,2008/3/242008-03-30,5343,75852,188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/24,13:42.7\r\n10,692,,12,7717,1,102,15,56,-49,24,-35,-2,,2008/3/242008-03-30,5343,75852,188,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/24,13:42.8\r\n1,363240,ұأᱦ,2853,2856,97,7,29,32,0,0,0,26,,2008/3/172008-03-23,5910,74157,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/17,13:43.6\r\n2,404123,ʷǰһ,2264,2264,75,3,30,47,0,0,0,0,,2008/3/172008-03-23,5910,74157,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/17,13:43.6\r\n3,816,ɽ,365,3599,13,17,28,11,-77,-59,-76,-2,,2008/3/172008-03-23,5910,74157,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/17,13:43.6\r\n4,1338,˫ʳ,91,611,4,17,22,12,-73,-56,-70,-1,,2008/3/172008-03-23,5910,74157,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/17,13:43.6\r\n5,386691,˹֡ˮ˵,86,5446,4,36,23,11,-83,-63,-80,-3,,2008/3/172008-03-23,5910,74157,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/17,13:43.6\r\n6,363238,ұ,32,32,1,1102,31,28,20827,37000,26787,75,,2008/3/172008-03-23,5910,74157,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/17,13:43.6\r\n7,3085,;,31,1149,1,25,23,7,-81,-66,-79,-3,,2008/3/172008-03-23,5910,74157,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/17,13:43.7\r\n8,692,,24,7705,1,95,19,106,21,-52,2,3,,2008/3/172008-03-23,5910,74157,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/17,13:43.7\r\n9,406855,,23,1297,1,31,29,7,-86,-67,-85,-4,,2008/3/172008-03-23,5910,74157,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/17,13:43.7\r\n10,560000,ǵĴ,16,28,1,3,27,184,0,0,0,0,,2008/3/172008-03-23,5910,74157,206,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/17,13:43.7\r\n1,816,ɽ,1561,3234,55,10,29,18,-7,71,-5,9999,,2008/3/102008-03-16,3231,72523,122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/10,13:44.2\r\n2,386691,˹֡ˮ˵,508,5360,19,29,27,19,-31,-24,-32,9999,,2008/3/102008-03-16,3231,72523,122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/10,13:44.2\r\n3,1338,˫ʳ,340,520,14,10,25,18,89,125,87,2,,2008/3/102008-03-16,3231,72523,122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/10,13:44.2\r\n4,3085,;,161,1118,6,18,25,11,-54,-41,-55,-1,,2008/3/102008-03-16,3231,72523,122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/10,13:44.2\r\n5,406855,,161,1274,5,24,31,15,-42,-32,-44,-1,,2008/3/102008-03-16,3231,72523,122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/10,13:44.3\r\n6,502341,ߴ,105,1134,4,431,25,22,-18,-13,-18,1,,2008/3/102008-03-16,3231,72523,122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/10,13:44.3\r\n7,3452,,68,9537,3,38,23,9,-62,-54,-59,-1,,2008/3/102008-03-16,3231,72523,122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/10,13:44.3\r\n8,457353,ʳ,67,117,2,10,29,11,34,69,31,9999,,2008/3/102008-03-16,3231,72523,122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/10,13:44.3\r\n9,,,32,,2,,18,142,0,0,0,5,,2008/3/102008-03-16,3231,72523,122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/10,13:44.3\r\n10,560063,PK.COM.CN,29,29,1,3,24,10,0,0,0,0,,2008/3/102008-03-16,3231,72523,122,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/10,13:44.4\r\n1,816,ɽ,1672,1672,57,3,29,33,0,0,0,0,,2008/3/32008-03-09,3892,69447,145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/3,13:44.8\r\n2,386691,˹֡ˮ˵,737,4852,27,22,27,22,-43,-27,-42,-1,,2008/3/32008-03-09,3892,69447,145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/3,13:44.8\r\n3,3085,;,348,957,14,11,25,14,-43,-13,-40,-1,,2008/3/32008-03-09,3892,69447,145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/3,13:44.8\r\n4,406855,,279,1112,9,17,30,18,-42,-33,-42,9999,,2008/3/32008-03-09,3892,69447,145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/3,13:44.8\r\n5,1338,˫ʳ,180,180,7,3,25,21,0,0,0,0,,2008/3/32008-03-09,3892,69447,145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/3,13:44.8\r\n6,3452,,178,9469,7,31,25,10,-66,-48,-64,-3,,2008/3/32008-03-09,3892,69447,145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/3,13:44.8\r\n7,502341,ߴ,127,1029,5,424,25,24,-8,11,-3,-2,,2008/3/32008-03-09,3892,69447,145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/3,13:44.9\r\n8,457353,ʳ,50,50,2,3,28,14,0,0,0,0,,2008/3/32008-03-09,3892,69447,145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/3,13:44.9\r\n9,692,,44,7662,2,81,20,41,1,-28,-5,9999,,2008/3/32008-03-09,3892,69447,145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/3,13:44.9\r\n10,416713,ƫ,39,376,2,28,25,15,20,0,53,9999,,2008/3/32008-03-09,3892,69447,145,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/3/3,13:44.9\r\n1,386691,˹֡ˮ˵,1299,4116,47,15,28,27,-43,-22,-44,9999,,2008/2/252008-03-02,3484,66151,131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/25,13:45.3\r\n2,3085,;,609,609,24,4,26,20,0,0,0,0,,2008/2/252008-03-02,3484,66151,131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/25,13:45.3\r\n3,3452,,526,9291,19,24,27,15,-57,-39,-56,-1,,2008/2/252008-03-02,3484,66151,131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/25,13:45.4\r\n4,406855,,479,833,16,10,30,21,35,84,40,-1,,2008/2/252008-03-02,3484,66151,131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/25,13:45.4\r\n5,502341,ߴ,138,902,5,417,26,27,92,41,98,1,,2008/2/252008-03-02,3484,66151,131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/25,13:45.4\r\n6,2405,ߺ,63,3365,2,33,26,13,-68,-50,-68,-2,,2008/2/252008-03-02,3484,66151,131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/25,13:45.4\r\n7,6540,̽,56,128,2,10,29,14,-21,18,-14,9999,,2008/2/252008-03-02,3484,66151,131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/25,13:45.4\r\n8,443967,ռս3,45,218,2,94,25,11,1796,1565,1622,19,,2008/2/252008-03-02,3484,66151,131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/25,13:45.4\r\n9,692,,44,7618,2,74,19,31,28,-21,48,1,,2008/2/252008-03-02,3484,66151,131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/25,13:45.5\r\n10,416713,ƫ,33,337,1,21,31,10,-46,-37,-48,-2,,2008/2/252008-03-02,3484,66151,131,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/25,13:45.5\r\n1,386691,˹֡ˮ˵,2267,2817,84,8,27,38,313,551,329,2,,2008/2/182008-02-24,4571,67067,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/18,13:45.9\r\n2,3452,,1220,8765,44,17,28,20,-72,-40,-69,-1,,2008/2/182008-02-24,4571,67067,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/18,13:45.9\r\n3,406855,,354,354,11,3,31,27,0,0,0,0,,2008/2/182008-02-24,4571,67067,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/18,13:45.9\r\n4,2405,ߺ,199,3303,7,26,27,21,-76,-46,-74,-2,,2008/2/182008-02-24,4571,67067,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/18,13:45.9\r\n5,480976,2008,83,310,3,11,27,16,-64,-7,-55,-1,,2008/2/182008-02-24,4571,67067,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/18,13:45.9\r\n6,502341,ߴ,72,764,3,410,27,19,-43,-7,-40,1,,2008/2/182008-02-24,4571,67067,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/18,13:45.9\r\n7,6540,̽,71,71,2,3,32,19,0,0,0,0,,2008/2/182008-02-24,4571,67067,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/18,13:45.9\r\n8,416713,ƫ,60,304,2,14,30,12,-73,-39,-69,-3,,2008/2/182008-02-24,4571,67067,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/18,13:46.0\r\n9,458723,AΣ۵ôð,58,1225,3,34,20,13,-68,-38,-63,-3,,2008/2/182008-02-24,4571,67067,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/18,13:46.0\r\n10,692,,34,7574,2,67,22,16,-61,-52,-54,-2,,2008/2/182008-02-24,4571,67067,169,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/18,13:46.0\r\n1,3452,,4312,7545,143,10,30,39,34,39,34,9999,,2008/2/112008-02-17,6927,66488,237,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/11,13:46.4\r\n2,2405,ߺ,844,3104,29,19,29,44,-22,-23,-25,9999,,2008/2/112008-02-17,6927,66488,237,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/11,13:46.4\r\n3,386691,˹֡ˮ˵,549,549,20,1,28,58,0,0,0,0,,2008/2/112008-02-17,6927,66488,237,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/11,13:46.4\r\n4,480976,2008,227,228,7,4,34,33,0,0,0,0,,2008/2/112008-02-17,6927,66488,237,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/11,13:46.4\r\n5,416713,ƫ,223,244,6,7,35,23,0,0,0,3,,2008/2/112008-02-17,6927,66488,237,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/11,13:46.4\r\n6,458723,AΣ۵ôð,180,1167,8,27,23,22,-17,-25,-13,-3,,2008/2/112008-02-17,6927,66488,237,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/11,13:46.4\r\n7,502341,ߴ,125,692,4,403,28,30,123,104,96,-1,,2008/2/112008-02-17,6927,66488,237,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/11,13:46.4\r\n8,692,,88,7540,3,60,26,17,-38,-35,-39,-4,,2008/2/112008-02-17,6927,66488,237,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/11,13:46.5\r\n9,559523,˵ķ,71,96,3,6,27,14,0,0,0,0,,2008/2/112008-02-17,6927,66488,237,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/11,13:46.5\r\n10,559885,ʱ,64,200,2,,30,45,-2,3,-12,-5,,2008/2/112008-02-17,6927,66488,237,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/11,13:46.5\r\n1,3452,,3211,3233,107,3,30,41,0,0,0,0,,2008/2/42008-02-10,5020,51311,177,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/4,13:46.9\r\n2,2405,ߺ,1088,2259,39,12,28,45,-7,7,-4,-1,,2008/2/42008-02-10,5020,51311,177,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/4,13:46.9\r\n3,458723,AΣ۵ôð,218,987,9,20,24,19,-18,-42,-23,9999,,2008/2/42008-02-10,5020,51311,177,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/4,13:46.9\r\n4,692,,144,7451,5,53,26,18,-56,-58,-57,-2,,2008/2/42008-02-10,5020,51311,177,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/4,13:46.9\r\n5,559885,ʱ,65,136,2,,27,53,-7,2,-3,1,,2008/2/42008-02-10,5020,51311,177,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/4,13:47.0\r\n6,502341,ߴ,56,568,2,396,25,31,-10,-53,-13,1,,2008/2/42008-02-10,5020,51311,177,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/4,13:47.0\r\n7,1537,ҽԾ,52,994,2,24,25,11,-67,-68,-68,-3,,2008/2/42008-02-10,5020,51311,177,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/4,13:47.0\r\n8,416713,ƫ,22,22,1,0,32,20,0,0,0,0,,2008/2/42008-02-10,5020,51311,177,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/4,13:47.0\r\n9,385143,ʿռվ,21,44,0,,48,96,695,35,626,19,,2008/2/42008-02-10,5020,51311,177,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/4,13:47.0\r\n10,373509,Ҹ,16,588,1,25,25,12,-81,-76,-80,-5,,2008/2/42008-02-10,5020,51311,177,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/2/4,13:47.0\r\n1,2405,ߺ,1171,1171,41,5,29,51,0,0,0,0,,2008/1/282008-02-03,2498,46898,98,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/28,13:47.5\r\n2,692,,329,7307,13,46,26,18,-61,-48,-56,-1,,2008/1/282008-02-03,2498,46898,98,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/28,13:47.5\r\n3,458723,AΣ۵ôð,265,768,12,13,23,14,-47,-11,-44,-1,,2008/1/282008-02-03,2498,46898,98,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/28,13:47.5\r\n4,1537,ҽԾ,159,942,6,17,25,11,-67,-50,-64,-1,,2008/1/282008-02-03,2498,46898,98,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/28,13:47.5\r\n5,373509,Ҹ,84,572,3,18,26,14,-69,-56,-66,-1,,2008/1/282008-02-03,2498,46898,98,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/28,13:47.6\r\n6,559885,ʱ,71,71,2,,28,55,0,0,0,0,,2008/1/282008-02-03,2498,46898,98,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/28,13:47.6\r\n7,502341,ߴ,62,512,3,389,24,17,-57,-41,-56,9999,,2008/1/282008-02-03,2498,46898,98,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/28,13:47.6\r\n8,3900,,51,657,2,24,24,10,-68,-52,-64,-3,,2008/1/282008-02-03,2498,46898,98,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/28,13:47.6\r\n9,1414,Ͷ״,45,2205,2,54,26,11,-71,-66,-67,-3,,2008/1/282008-02-03,2498,46898,98,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/28,13:47.6\r\n10,2572,,38,560,2,27,23,12,-70,-52,-67,-2,,2008/1/282008-02-03,2498,46898,98,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/28,13:47.6\r\n1,692,,842,6978,29,39,29,21,-25,-24,-22,9999,,2008/1/212008-01-27,3122,70850,121,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/21,13:48.0\r\n2,458723,AΣ۵ôð,503,503,21,6,24,22,0,0,0,0,,2008/1/212008-01-27,3122,70850,121,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/21,13:48.0\r\n3,1537,ҽԾ,482,784,18,10,27,16,60,114,72,-1,,2008/1/212008-01-27,3122,70850,121,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/21,13:48.0\r\n4,373509,Ҹ,274,488,10,11,29,18,28,42,32,1,,2008/1/212008-01-27,3122,70850,121,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/21,13:48.0\r\n5,3900,,157,606,6,17,26,13,-37,-32,-37,-1,,2008/1/212008-01-27,3122,70850,121,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/21,13:48.1\r\n6,1414,Ͷ״,154,2160,5,47,29,11,-46,-41,-43,-3,,2008/1/212008-01-27,3122,70850,121,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/21,13:48.1\r\n7,502341,ߴ,145,450,6,382,25,22,-15,-17,-13,9999,,2008/1/212008-01-27,3122,70850,121,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/21,13:48.1\r\n8,2572,,126,522,5,20,25,18,-33,-25,-31,-2,,2008/1/212008-01-27,3122,70850,121,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/21,13:48.1\r\n9,422705,,58,378,2,27,24,11,-16,-14,-14,1,,2008/1/212008-01-27,3122,70850,121,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/21,13:48.1\r\n10,559819,ϻ,45,582,2,31,23,9,-40,-35,-39,-1,,2008/1/212008-01-27,3122,70850,121,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/21,13:48.1\r\n1,692,,1129,6137,37,32,30,20,-37,-24,-36,9999,,2008/1/142008-01-20,3122,69271,114,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/14,13:50.2\r\n2,1537,ҽԾ,301,302,10,3,29,20,0,0,0,0,,2008/1/142008-01-20,3122,69271,114,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/14,13:50.3\r\n3,1414,Ͷ״,284,2006,9,40,31,11,-50,-38,-49,-1,,2008/1/142008-01-20,3122,69271,114,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/14,13:50.3\r\n4,3900,,250,449,9,10,27,14,25,74,38,9999,,2008/1/142008-01-20,3122,69271,114,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/14,13:50.3\r\n5,373509,Ҹ,214,214,7,4,30,20,0,0,0,0,,2008/1/142008-01-20,3122,69271,114,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/14,13:50.3\r\n6,2572,,188,396,7,13,26,20,-8,5,-3,-3,,2008/1/142008-01-20,3122,69271,114,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/14,13:50.3\r\n7,502341,ߴ,171,305,7,375,25,21,28,64,31,9999,,2008/1/142008-01-20,3122,69271,114,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/14,13:50.3\r\n8,1020,ݮ֮ҹ,80,439,3,30,29,11,-46,-23,-41,-2,,2008/1/142008-01-20,3122,69271,114,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/14,13:50.3\r\n9,559819,ϻ,76,536,3,24,24,10,-54,-40,-51,-4,,2008/1/142008-01-20,3122,69271,114,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/14,13:50.4\r\n10,422705,,70,320,3,20,25,11,-38,-28,-36,-2,,2008/1/142008-01-20,3122,69271,114,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/14,13:50.4\r\n1,692,,1804,5007,58,25,31,24,0,0,0,0,,2008/1/72008-01-13,3680,69664,128,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/7,13:52.7\r\n2,1414,Ͷ״,568,1722,18,33,31,14,0,0,0,0,,2008/1/72008-01-13,3680,69664,128,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/7,13:52.8\r\n3,2572,,205,208,7,6,28,21,0,0,0,0,,2008/1/72008-01-13,3680,69664,128,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/7,13:52.8\r\n4,3900,,199,199,7,3,29,18,0,0,0,0,,2008/1/72008-01-13,3680,69664,128,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/7,13:52.8\r\n5,559819,ϻ,163,461,6,17,25,12,0,0,0,0,,2008/1/72008-01-13,3680,69664,128,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/7,13:52.8\r\n6,1020,ݮ֮ҹ,148,359,5,23,31,15,0,0,0,0,,2008/1/72008-01-13,3680,69664,128,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/7,13:52.8\r\n7,502341,ߴ,133,133,5,368,26,27,0,0,0,0,,2008/1/72008-01-13,3680,69664,128,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/7,13:52.8\r\n8,422705,,112,250,4,13,26,13,0,0,0,0,,2008/1/72008-01-13,3680,69664,128,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/7,13:52.8\r\n9,557900,Ӱ2.0֮ɵϵĻ,80,239,3,23,26,10,0,0,0,0,,2008/1/72008-01-13,3680,69664,128,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/7,13:52.9\r\n10,559739,и,61,87,3,3,24,25,0,0,0,0,,2008/1/72008-01-13,3680,69664,128,http://www.cbooo.cn/BoxOffice/getWeekInfoData?sdate=2008/1/7,13:52.9\r\n"
  },
  {
    "path": "lianxi/查询top10.txt",
    "content": "SELECT id,name,score FROM movies\r\nORDER BY score DESC,id ASC\r\nLIMIT 10;\r\n"
  },
  {
    "path": "lianxi/豆瓣电影top250.sql",
    "content": "/*\r\nNavicat MySQL Data Transfer\r\n\r\nSource Server         : 111\r\nSource Server Version : 50729\r\nSource Host           : localhost:3306\r\nSource Database       : maoyan\r\n\r\nTarget Server Type    : MYSQL\r\nTarget Server Version : 50729\r\nFile Encoding         : 65001\r\n\r\nDate: 2020-05-13 14:51:07\r\n*/\r\n\r\nSET FOREIGN_KEY_CHECKS=0;\r\n\r\n-- ----------------------------\r\n-- Table structure for movies\r\n-- ----------------------------\r\nDROP TABLE IF EXISTS `movies`;\r\nCREATE TABLE `movies` (\r\n  `id` int(11) NOT NULL AUTO_INCREMENT,\r\n  `mname` varchar(20) NOT NULL,\r\n  `mrnum` varchar(4) NOT NULL,\r\n  `myear` varchar(8) NOT NULL,\r\n  `mlink` varchar(50) NOT NULL,\r\n  `mdescr` varchar(50) DEFAULT NULL,\r\n  `mdirecter` varchar(100) DEFAULT NULL,\r\n  `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\r\n  PRIMARY KEY (`id`)\r\n) ENGINE=InnoDB AUTO_INCREMENT=250 DEFAULT CHARSET=utf8mb4;\r\n\r\n-- ----------------------------\r\n-- Records of movies\r\n-- ----------------------------\r\nINSERT INTO `movies` VALUES ('1', '肖申克的救赎', '9.7', 'top250', 'https://movie.douban.com/subject/1292052/', '希望让人自由。', '导演: 弗兰克·德拉邦特 Frank Darabont   主演: 蒂姆·罗宾斯 Tim Robbins /1994 / 美国 / 犯罪 剧情\\n                        ', '2020-03-30 13:57:26');\r\nINSERT INTO `movies` VALUES ('3', '阿甘正传', '9.5', 'top250', 'https://movie.douban.com/subject/1292720/', '一部美国近现代史。', '导演: 罗伯特·泽米吉斯 Robert Zemeckis   主演: 汤姆·汉克斯 Tom Hanks / 1994 / 美国 / 剧情 爱情\\n                        ', '2020-03-30 13:57:26');\r\nINSERT INTO `movies` VALUES ('4', '这个杀手不太冷', '9.4', 'top250', 'https://movie.douban.com/subject/1295644/', '怪蜀黍和小萝莉不得不说的故事。', '导演: 吕克·贝松 Luc Besson   主演: 让·雷诺 Jean Reno / 娜塔莉·波特曼 1994 / 法国 / 剧情 动作 犯罪\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('5', '美丽人生', '9.5', 'top250', 'https://movie.douban.com/subject/1292063/', '最美的谎言。', '导演: 罗伯托·贝尼尼 Roberto Benigni   主演: 罗伯托·贝尼尼 Roberto Beni1997 / 意大利 / 剧情 喜剧 爱情 战争\\n                     ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('6', '泰坦尼克号', '9.4', 'top250', 'https://movie.douban.com/subject/1292722/', '失去的才是永恒的。 ', '导演: 詹姆斯·卡梅隆 James Cameron   主演: 莱昂纳多·迪卡普里奥 Leonardo1997 / 美国 / 剧情 爱情 灾难\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('7', '千与千寻', '9.3', 'top250', 'https://movie.douban.com/subject/1291561/', '最好的宫崎骏，最好的久石让。 ', '导演: 宫崎骏 Hayao Miyazaki   主演: 柊瑠美 Rumi Hîragi / 入野自由 Miy2001 / 日本 / 剧情 动画 奇幻\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('8', '辛德勒的名单', '9.5', 'top250', 'https://movie.douban.com/subject/1295124/', '拯救一个人，就是拯救整个世界。', '导演: 史蒂文·斯皮尔伯格 Steven Spielberg   主演: 连姆·尼森 Liam Neeson1993 / 美国 / 剧情 历史 战争\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('9', '盗梦空间', '9.3', 'top250', 'https://movie.douban.com/subject/3541415/', '诺兰给了我们一场无法盗取的梦。', '导演: 克里斯托弗·诺兰 Christopher Nolan   主演: 莱昂纳多·迪卡普里奥 Le2010 / 美国 英国 / 剧情 科幻 悬疑 冒险\\n                       ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('10', '忠犬八公的故事', '9.4', 'top250', 'https://movie.douban.com/subject/3011091/', '永远都不能忘记你所爱的人。', '导演: 莱塞·霍尔斯道姆 Lasse Hallström   主演: 理查·基尔 Richard Ger2009 / 美国 英国 / 剧情\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('11', '海上钢琴师', '9.3', 'top250', 'https://movie.douban.com/subject/1292001/', '每个人都要走一条自己坚定了的路，就算是粉身碎骨。 ', '导演: 朱塞佩·托纳多雷 Giuseppe Tornatore   主演: 蒂姆·罗斯 Tim Roth / 1998 / 意大利 / 剧情 音乐\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('12', '机器人总动员', '9.3', 'top250', 'https://movie.douban.com/subject/2131459/', '小瓦力，大人生。', '导演: 安德鲁·斯坦顿 Andrew Stanton   主演: 本·贝尔特 Ben Burtt / 艾丽2008 / 美国 / 科幻 动画 冒险\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('13', '三傻大闹宝莱坞', '9.2', 'top250', 'https://movie.douban.com/subject/3793023/', '英俊版憨豆，高情商版谢耳朵。', '导演: 拉库马·希拉尼 Rajkumar Hirani   主演: 阿米尔·汗 Aamir Khan / 卡2009 / 印度 / 剧情 喜剧 爱情 歌舞\\n                      ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('14', '楚门的世界', '9.3', 'top250', 'https://movie.douban.com/subject/1292064/', '如果再也不能见到你，祝你早安，午安，晚安。', '导演: 彼得·威尔 Peter Weir   主演: 金·凯瑞 Jim Carrey / 劳拉·琳妮 Lau1998 / 美国 / 剧情 科幻\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('15', '放牛班的春天', '9.3', 'top250', 'https://movie.douban.com/subject/1291549/', '天籁一般的童声，是最接近上帝的存在。 ', '导演: 克里斯托夫·巴拉蒂 Christophe Barratier   主演: 热拉尔·朱尼奥 Gé2004 / 法国 瑞士 德国 / 剧情 音乐\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('16', '星际穿越', '9.3', 'top250', 'https://movie.douban.com/subject/1889243/', '爱是一种力量，让我们超越时空感知它的存在。', '导演: 克里斯托弗·诺兰 Christopher Nolan   主演: 马修·麦康纳 Matthew Mc2014 / 美国 英国 加拿大 冰岛 / 剧情 科幻 冒险\\n               ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('17', '大话西游之大圣娶亲', '9.2', 'top250', 'https://movie.douban.com/subject/1292213/', '一生所爱。', '导演: 刘镇伟 Jeffrey Lau   主演: 周星驰 Stephen Chow / 吴孟达 Man Tat Ng1995 / 中国香港 中国大陆 / 喜剧 爱情 奇幻 古装\\n          ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('18', '熔炉', '9.3', 'top250', 'https://movie.douban.com/subject/5912992/', '我们一路奋战不是为了改变世界，而是为了不让世界改变我们。', '导演: 黄东赫 Dong-hyuk Hwang   主演: 孔侑 Yoo Gong / 郑有美 Yu-mi Jung /2011 / 韩国 / 剧情\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('19', '疯狂动物城', '9.2', 'top250', 'https://movie.douban.com/subject/25662329/', '迪士尼给我们营造的乌托邦就是这样，永远善良勇敢，永远出乎意料。', '导演: 拜伦·霍华德 Byron Howard / 瑞奇·摩尔 Rich Moore   主演: 金妮弗·2016 / 美国 / 喜剧 动画 冒险\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('20', '无间道', '9.2', 'top250', 'https://movie.douban.com/subject/1307914/', '香港电影史上永不过时的杰作。', '导演: 刘伟强 / 麦兆辉   主演: 刘德华 / 梁朝伟 / 黄秋生<br/>2002 / 中国香港 / 剧情 犯罪 悬疑\\n                        ', '2020-03-30 13:57:27');\r\nINSERT INTO `movies` VALUES ('21', '龙猫', '9.2', 'top250', 'https://movie.douban.com/subject/1291560/', '人人心中都有个龙猫，童年就永远不会消失。', '导演: 宫崎骏 Hayao Miyazaki   主演: 日高法子 Noriko Hidaka / 坂本千夏 Ch1988 / 日本 / 动画 奇幻 冒险\\n                      ', '2020-03-30 13:57:28');\r\nINSERT INTO `movies` VALUES ('22', '教父', '9.3', 'top250', 'https://movie.douban.com/subject/1291841/', '千万不要记恨你的对手，这样会让你失去理智。', '导演: 弗朗西斯·福特·科波拉 Francis Ford Coppola   主演: 马龙·白兰度 M1972 / 美国 / 剧情 犯罪\\n                        ', '2020-03-30 13:57:28');\r\nINSERT INTO `movies` VALUES ('23', '当幸福来敲门', '9.1', 'top250', 'https://movie.douban.com/subject/1849031/', '平民励志片。 ', '导演: 加布里尔·穆奇诺 Gabriele Muccino   主演: 威尔·史密斯 Will Smith 2006 / 美国 / 剧情 传记 家庭\\n                        ', '2020-03-30 13:57:28');\r\nINSERT INTO `movies` VALUES ('24', '怦然心动', '9.1', 'top250', 'https://movie.douban.com/subject/3319755/', '真正的幸福是来自内心深处。', '导演: 罗伯·莱纳 Rob Reiner   主演: 玛德琳·卡罗尔 Madeline Carroll / 卡2010 / 美国 / 剧情 喜剧 爱情\\n                        ', '2020-03-30 13:57:28');\r\nINSERT INTO `movies` VALUES ('25', '触不可及', '9.2', 'top250', 'https://movie.douban.com/subject/6786002/', '满满温情的高雅喜剧。', '导演: 奥利维·那卡什 Olivier Nakache / 艾力克·托兰达 Eric Toledano   主2011 / 法国 / 剧情 喜剧\\n                        ', '2020-03-30 13:57:28');\r\nINSERT INTO `movies` VALUES ('26', '蝙蝠侠：黑暗骑士', '9.2', 'top250', 'https://movie.douban.com/subject/1851857/', '无尽的黑暗。', '导演: 克里斯托弗·诺兰 Christopher Nolan   主演: 克里斯蒂安·贝尔 Christ2008 / 美国 英国 / 剧情 动作 科幻 犯罪 惊悚\\n                  ', '2020-03-30 13:57:28');\r\nINSERT INTO `movies` VALUES ('27', '控方证人', '9.6', 'top250', 'https://movie.douban.com/subject/1296141/', '比利·怀德满分作品。', '导演: 比利·怀尔德 Billy Wilder   主演: 泰隆·鲍华 Tyrone Power / 玛琳·1957 / 美国 / 剧情 犯罪 悬疑\\n                        ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('28', '活着', '9.2', 'top250', 'https://movie.douban.com/subject/1292365/', '张艺谋最好的电影。', '导演: 张艺谋 Yimou Zhang   主演: 葛优 You Ge / 巩俐 Li Gong / 姜武 Wu Jiang<br/>1994 / 中国大陆 中国香港 / 剧情 历史 家庭\\n     ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('29', '乱世佳人', '9.3', 'top250', 'https://movie.douban.com/subject/1300267/', 'Tomorrow is another day.', '导演: 维克多·弗莱明 Victor Fleming / 乔治·库克 George Cukor   主演: 费1939 / 美国 / 剧情 历史 爱情 战争\\n                     ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('30', '寻梦环游记', '9.1', 'top250', 'https://movie.douban.com/subject/20495023/', '死亡不是真的逝去，遗忘才是永恒的消亡。', '导演: 李·昂克里奇 Lee Unkrich / 阿德里安·莫利纳 Adrian Molina   主演: 2017 / 美国 / 喜剧 动画 奇幻 音乐\\n                      ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('31', '末代皇帝', '9.2', 'top250', 'https://movie.douban.com/subject/1293172/', '“不要跟我比惨，我比你更惨”再适合这部电影不过了。', '导演: 贝纳尔多·贝托鲁奇 Bernardo Bertolucci   主演: 尊龙 John Lone / 陈1987 / 英国 意大利 中国大陆 法国 / 剧情 传记 历史\\n           ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('32', '摔跤吧！爸爸', '9.0', 'top250', 'https://movie.douban.com/subject/26387939/', '你不是在为你一个人战斗，你要让千千万万的女性看到女生并不是只能相夫教子。', '导演: 涅提·蒂瓦里 Nitesh Tiwari   主演: 阿米尔·汗 Aamir Khan / 法缇玛2016 / 印度 / 剧情 传记 运动 家庭\\n                       ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('33', '少年派的奇幻漂流', '9.1', 'top250', 'https://movie.douban.com/subject/1929463/', '瑰丽壮观、无人能及的冒险之旅。', '导演: 李安 Ang Lee   主演: 苏拉·沙玛 Suraj Sharma / 伊尔凡·可汗 Irrfan2012 / 美国 中国台湾 英国 加拿大 / 剧情 奇幻 冒险\\n            ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('34', '指环王3：王者无敌', '9.2', 'top250', 'https://movie.douban.com/subject/1291552/', '史诗的终章。', '导演: 彼得·杰克逊 Peter Jackson   主演: 维果·莫腾森 Viggo Mortensen / 2003 / 美国 新西兰 / 剧情 动作 奇幻 冒险\\n                ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('35', '飞屋环游记', '9.0', 'top250', 'https://movie.douban.com/subject/2129039/', '最后那些最无聊的事情，才是最值得怀念的。 ', '导演: 彼特·道格特 Pete Docter / 鲍勃·彼德森 Bob Peterson   主演: 爱德2009 / 美国 / 剧情 喜剧 动画 冒险\\n                       ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('36', '何以为家', '9.1', 'top250', 'https://movie.douban.com/subject/30170448/', '凝视卑弱生命，用电影改变命运。', '导演: 娜丁·拉巴基 Nadine Labaki   主演: 扎因·拉费阿 Zain al-Rafeea / 2018 / 黎巴嫩 法国 美国 / 剧情\\n                       ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('37', '十二怒汉', '9.4', 'top250', 'https://movie.douban.com/subject/1293182/', '1957年的理想主义。 ', '导演: Sidney Lumet   主演: 亨利·方达 Henry Fonda / 马丁·鲍尔萨姆 Marti1957 / 美国 / 剧情\\n                        ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('38', '鬼子来了', '9.2', 'top250', 'https://movie.douban.com/subject/1291858/', '对敌人的仁慈，就是对自己残忍。', '导演: 姜文 Wen Jiang   主演: 姜文 Wen Jiang / 香川照之 Teruyuki Kagawa /2000 / 中国大陆 / 剧情 历史 战争\\n                 ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('39', '天空之城', '9.1', 'top250', 'https://movie.douban.com/subject/1291583/', '对天空的追逐，永不停止。 ', '导演: 宫崎骏 Hayao Miyazaki   主演: 田中真弓 Mayumi Tanaka / 横泽启子 Ke1986 / 日本 / 动画 奇幻 冒险\\n                      ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('40', '大话西游之月光宝盒', '9.0', 'top250', 'https://movie.douban.com/subject/1299398/', '旷古烁今。', '导演: 刘镇伟 Jeffrey Lau   主演: 周星驰 Stephen Chow / 吴孟达 Man Tat Ng1995 / 中国香港 中国大陆 / 喜剧 爱情 奇幻 古装\\n          ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('41', '哈尔的移动城堡', '9.0', 'top250', 'https://movie.douban.com/subject/1308807/', '带着心爱的人在天空飞翔。', '导演: 宫崎骏 Hayao Miyazaki   主演: 倍赏千惠子 Chieko Baishô / 木村拓2004 / 日本 / 动画 奇幻 冒险\\n                        ', '2020-03-30 13:57:29');\r\nINSERT INTO `movies` VALUES ('42', '素媛', '9.2', 'top250', 'https://movie.douban.com/subject/21937452/', '受过伤害的人总是笑得最开心，因为他们不愿意让身边的人承受一样的痛苦。', '导演: 李濬益 Jun-ik Lee   主演: 薛景求 Kyung-gu Sol / 严志媛 Ji-won Uhm 2013 / 韩国 / 剧情\\n                        ', '2020-03-30 13:57:30');\r\nINSERT INTO `movies` VALUES ('43', '天堂电影院', '9.2', 'top250', 'https://movie.douban.com/subject/1291828/', '那些吻戏，那些青春，都在影院的黑暗里被泪水冲刷得无比清晰。', '导演: 朱塞佩·托纳多雷 Giuseppe Tornatore   主演: 安东内拉·阿蒂利 Anton1988 / 意大利 法国 / 剧情 爱情\\n                        ', '2020-03-30 13:57:30');\r\nINSERT INTO `movies` VALUES ('44', '罗马假日', '9.0', 'top250', 'https://movie.douban.com/subject/1293839/', '爱情哪怕只有一天。', '导演: 威廉·惠勒 William Wyler   主演: 奥黛丽·赫本 Audrey Hepburn / 格1953 / 美国 / 喜剧 剧情 爱情\\n                        ', '2020-03-30 13:57:30');\r\nINSERT INTO `movies` VALUES ('45', '闻香识女人', '9.1', 'top250', 'https://movie.douban.com/subject/1298624/', '史上最美的探戈。', '导演: 马丁·布莱斯 Martin Brest   主演: 阿尔·帕西诺 Al Pacino / 克里斯1992 / 美国 / 剧情\\n                        ', '2020-03-30 13:57:30');\r\nINSERT INTO `movies` VALUES ('46', '辩护人', '9.2', 'top250', 'https://movie.douban.com/subject/21937445/', '电影的现实意义大过电影本身。', '导演: 杨宇硕 Woo-seok Yang   主演: 宋康昊 Kang-ho Song / 金英爱 Yeong-ae2013 / 韩国 / 剧情\\n                        ', '2020-03-30 13:57:30');\r\nINSERT INTO `movies` VALUES ('47', '搏击俱乐部', '9.0', 'top250', 'https://movie.douban.com/subject/1292000/', '邪恶与平庸蛰伏于同一个母体，在特定的时间互相对峙。', '导演: 大卫·芬奇 David Fincher   主演: 爱德华·诺顿 Edward Norton / 布拉1999 / 美国 德国 / 剧情 动作 悬疑 惊悚\\n                  ', '2020-03-30 13:57:30');\r\nINSERT INTO `movies` VALUES ('48', '哈利·波特与魔法石', '9.0', 'top250', 'https://movie.douban.com/subject/1295038/', '童话世界的开端。', '导演: Chris Columbus   主演: Daniel Radcliffe / Emma Watson / Rupert Grint<br/>2001 / 美国 英国 / 奇幻 冒险\\n    ', '2020-03-30 13:57:30');\r\nINSERT INTO `movies` VALUES ('49', '我不是药神', '9.0', 'top250', 'https://movie.douban.com/subject/26752088/', '对我们国家而言，这样的电影多一部是一部。', '导演: 文牧野 Muye Wen   主演: 徐峥 Zheng Xu / 王传君 Chuanjun Wang / 周2018 / 中国大陆 / 剧情 喜剧\\n                      ', '2020-03-30 13:57:30');\r\nINSERT INTO `movies` VALUES ('50', '死亡诗社', '9.1', 'top250', 'https://movie.douban.com/subject/1291548/', '当一个死水般的体制内出现一个活跃的变数时，所有的腐臭都站在了光明的对面。', '导演: 彼得·威尔 Peter Weir   主演: 罗宾·威廉姆斯 Robin Williams / 罗伯1989 / 美国 / 剧情\\n                        ', '2020-03-30 13:57:30');\r\nINSERT INTO `movies` VALUES ('51', '教父2', '9.2', 'top250', 'https://movie.douban.com/subject/1299131/', '优雅的孤独。', '导演: 弗朗西斯·福特·科波拉 Francis Ford Coppola   主演: 阿尔·帕西诺 A1974 / 美国 / 剧情 犯罪\\n                        ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('52', '窃听风暴', '9.1', 'top250', 'https://movie.douban.com/subject/1900841/', '别样人生。', '导演: 弗洛里安·亨克尔·冯·多纳斯马尔克 Florian Henckel von Donnersmarck  &amp;n...;<br/>2006 / 德国 / 剧情 悬疑\\n           ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('53', '狮子王', '9.0', 'top250', 'https://movie.douban.com/subject/1301753/', '动物版《哈姆雷特》。', '导演: Roger Allers / 罗伯·明可夫 Rob Minkoff   主演: 乔纳森·泰勒·托马1994 / 美国 / 动画 冒险 歌舞\\n                        ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('54', '指环王2：双塔奇兵', '9.1', 'top250', 'https://movie.douban.com/subject/1291572/', '承前启后的史诗篇章。', '导演: 彼得·杰克逊 Peter Jackson   主演: 伊利亚·伍德 Elijah Wood / 西恩2002 / 美国 新西兰 / 剧情 动作 奇幻 冒险\\n                  ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('55', '指环王1：魔戒再现', '9.0', 'top250', 'https://movie.douban.com/subject/1291571/', '传说的开始。', '导演: 彼得·杰克逊 Peter Jackson   主演: 伊利亚·伍德 Elijah Wood / 西恩2001 / 新西兰 美国 / 剧情 动作 奇幻 冒险\\n                  ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('56', '两杆大烟枪', '9.1', 'top250', 'https://movie.douban.com/subject/1293350/', '4个臭皮匠顶个诸葛亮，盖·里奇果然不是盖的。', '导演: Guy Ritchie   主演: Jason Flemyng / Dexter Fletcher / Nick Moran<br/>1998 / 英国 / 剧情 喜剧 犯罪\\n        ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('57', '美丽心灵', '9.0', 'top250', 'https://movie.douban.com/subject/1306029/', '爱是一切逻辑和原由。', '导演: 朗·霍华德 Ron Howard   主演: 罗素·克劳 Russell Crowe / 艾德·哈2001 / 美国 / 传记 剧情\\n                        ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('58', '饮食男女', '9.1', 'top250', 'https://movie.douban.com/subject/1291818/', '人生不能像做菜，把所有的料都准备好了才下锅。', '导演: 李安 Ang Lee   主演: 郎雄 Sihung Lung / 杨贵媚 Kuei-Mei Yang / 吴1994 / 中国台湾 美国 / 剧情 家庭\\n                  ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('59', '飞越疯人院', '9.1', 'top250', 'https://movie.douban.com/subject/1292224/', '自由万岁。', '导演: 米洛斯·福尔曼 Miloš Forman   主演: 杰克·尼科尔森 Jack Nichols1975 / 美国 / 剧情\\n                        ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('60', '猫鼠游戏', '9.0', 'top250', 'https://movie.douban.com/subject/1305487/', '骗子大师和执著警探的你追我跑故事。 ', '导演: 史蒂文·斯皮尔伯格 Steven Spielberg   主演: 莱昂纳多·迪卡普里奥 L2002 / 美国 加拿大 / 传记 犯罪 剧情\\n                        ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('61', '黑客帝国', '9.0', 'top250', 'https://movie.douban.com/subject/1291843/', '视觉革命。', '导演: 安迪·沃卓斯基 Andy Wachowski / 拉娜·沃卓斯基 Lana Wachowski   主1999 / 美国 澳大利亚 / 动作 科幻\\n                      ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('62', 'V字仇杀队', '8.9', 'top250', 'https://movie.douban.com/subject/1309046/', '一张面具背后的理想与革命。', '导演: 詹姆斯·麦克特格 James McTeigue   主演: 娜塔莉·波特曼 Natalie Por2005 / 美国 英国 德国 / 剧情 动作 科幻 惊悚\\n                 ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('63', '钢琴家', '9.2', 'top250', 'https://movie.douban.com/subject/1296736/', '音乐能化解仇恨。', '导演: 罗曼·波兰斯基 Roman Polanski   主演: 艾德里安·布洛迪 Adrien Brod2002 / 法国 德国 英国 波兰 / 剧情 传记 历史 战争 音乐\\n           ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('64', '本杰明·巴顿奇事', '8.9', 'top250', 'https://movie.douban.com/subject/1485260/', '在时间之河里感受溺水之苦。', '导演: 大卫·芬奇 David Fincher   主演: 凯特·布兰切特 Cate Blanchett / 2008 / 美国 / 剧情 爱情 奇幻\\n                        ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('65', '看不见的客人', '8.8', 'top250', 'https://movie.douban.com/subject/26580232/', '你以为你以为的就是你以为的。', '导演: 奥里奥尔·保罗 Oriol Paulo   主演: 马里奥·卡萨斯 Mario Casas / 阿2016 / 西班牙 / 剧情 犯罪 悬疑 惊悚\\n                      ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('66', '让子弹飞', '8.8', 'top250', 'https://movie.douban.com/subject/3742360/', '你给我翻译翻译，神马叫做TMD的惊喜。', '导演: 姜文 Wen Jiang   主演: 姜文 Wen Jiang / 葛优 You Ge / 周润发 Yun-F2010 / 中国大陆 中国香港 / 剧情 喜剧 动作 西部\\n          ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('67', '西西里的美丽传说', '8.9', 'top250', 'https://movie.douban.com/subject/1292402/', '美丽无罪。', '导演: 朱塞佩·托纳多雷 Giuseppe Tornatore   主演: 莫妮卡·贝鲁奇 Monica 2000 / 意大利 美国 / 剧情 战争 情色\\n                      ', '2020-03-30 13:57:31');\r\nINSERT INTO `movies` VALUES ('68', '海豚湾', '9.3', 'top250', 'https://movie.douban.com/subject/3442220/', '海豚的微笑，是世界上最高明的伪装。', '导演: 路易·西霍尤斯 Louie Psihoyos   主演: Richard O\\'Barry / 路易·西霍2009 / 美国 / 纪录片\\n                        ', '2020-03-30 13:57:32');\r\nINSERT INTO `movies` VALUES ('69', '小鞋子', '9.2', 'top250', 'https://movie.douban.com/subject/1303021/', '奔跑的孩子是天使。', '导演: 马基德·马基迪 Majid Majidi   主演: 法拉赫阿米尔·哈什米安 Amir Fa1997 / 伊朗 / 剧情 儿童 家庭\\n                        ', '2020-03-30 13:57:32');\r\nINSERT INTO `movies` VALUES ('70', '拯救大兵瑞恩', '9.0', 'top250', 'https://movie.douban.com/subject/1292849/', '美利坚精神输出大片No1.', '导演: 史蒂文·斯皮尔伯格 Steven Spielberg   主演: 汤姆·汉克斯 Tom Hanks1998 / 美国 / 剧情 历史 战争\\n                        ', '2020-03-30 13:57:32');\r\nINSERT INTO `movies` VALUES ('71', '情书', '8.9', 'top250', 'https://movie.douban.com/subject/1292220/', '暗恋的极致。', '导演: 岩井俊二 Shunji Iwai   主演: 中山美穗 Miho Nakayama / 丰川悦司 Ets1995 / 日本 / 剧情 爱情\\n                        ', '2020-03-30 13:57:32');\r\nINSERT INTO `movies` VALUES ('72', '音乐之声', '9.0', 'top250', 'https://movie.douban.com/subject/1294408/', '用音乐化解仇恨，让歌声串起美好。', '导演: 罗伯特·怀斯 Robert Wise   主演: 朱莉·安德鲁斯 Julie Andrews / 克1965 / 美国 / 剧情 传记 爱情 歌舞\\n                      ', '2020-03-30 13:57:32');\r\nINSERT INTO `movies` VALUES ('73', '穿条纹睡衣的男孩', '9.1', 'top250', 'https://movie.douban.com/subject/3008247/', '尽管有些不切实际的幻想，这部电影依旧是一部感人肺腑的佳作。', '导演: 马克·赫尔曼 Mark Herman   主演: 阿萨·巴特菲尔德 Asa Butterfield 2008 / 英国 美国 / 剧情 战争\\n                        ', '2020-03-30 13:57:32');\r\nINSERT INTO `movies` VALUES ('74', '美国往事', '9.2', 'top250', 'https://movie.douban.com/subject/1292262/', '往事如烟，无处祭奠。', '导演: 赛尔乔·莱翁内 Sergio Leone   主演: 罗伯特·德尼罗 Robert De Niro 1984 / 美国 意大利 / 犯罪 剧情\\n                        ', '2020-03-30 13:57:32');\r\nINSERT INTO `movies` VALUES ('75', '致命魔术', '8.9', 'top250', 'https://movie.douban.com/subject/1780330/', '孪生蝙蝠侠大战克隆金刚狼。', '导演: 克里斯托弗·诺兰 Christopher Nolan   主演: 休·杰克曼 Hugh Jackman2006 / 美国 英国 / 剧情 悬疑 惊悚\\n                     ', '2020-03-30 13:57:33');\r\nINSERT INTO `movies` VALUES ('76', '绿皮书', '8.9', 'top250', 'https://movie.douban.com/subject/27060077/', '去除成见，需要勇气。', '导演: 彼得·法雷里 Peter Farrelly   主演: 维果·莫腾森 Viggo Mortensen /2018 / 美国 / 剧情 喜剧 传记\\n                       ', '2020-03-30 13:57:33');\r\nINSERT INTO `movies` VALUES ('77', '七宗罪', '8.8', 'top250', 'https://movie.douban.com/subject/1292223/', '警察抓小偷，老鼠玩死猫。', '导演: 大卫·芬奇 David Fincher   主演: 摩根·弗里曼 Morgan Freeman / 布1995 / 美国 / 剧情 犯罪 悬疑 惊悚\\n                     ', '2020-03-30 13:57:33');\r\nINSERT INTO `movies` VALUES ('78', '低俗小说', '8.8', 'top250', 'https://movie.douban.com/subject/1291832/', '故事的高级讲法。', '导演: 昆汀·塔伦蒂诺 Quentin Tarantino   主演: 约翰·特拉沃尔塔 John Tra1994 / 美国 / 剧情 喜剧 犯罪\\n                        ', '2020-03-30 13:57:33');\r\nINSERT INTO `movies` VALUES ('79', '沉默的羔羊', '8.8', 'top250', 'https://movie.douban.com/subject/1293544/', '安东尼·霍普金斯的顶级表演。', '导演: 乔纳森·戴米 Jonathan Demme   主演: 朱迪·福斯特 Jodie Foster / 安1991 / 美国 / 剧情 犯罪 惊悚\\n                        ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('80', '海蒂和爷爷', '9.2', 'top250', 'https://movie.douban.com/subject/25958717/', '如果生活中有什么使你感到快乐，那就去做吧！不要管别人说什么。', '导演: 阿兰·葛斯彭纳 Alain Gsponer   主演: 阿努克·斯特芬 Anuk Steffen /2015 / 德国 瑞士 南非 / 剧情 冒险 家庭\\n                   ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('81', '蝴蝶效应', '8.8', 'top250', 'https://movie.douban.com/subject/1292343/', '人的命运被自己瞬间的抉择改变。', '导演: 埃里克·布雷斯 Eric Bress / J·麦基·格鲁伯 J. Mackye Gruber   主2004 / 美国 加拿大 / 剧情 悬疑 科幻 惊悚\\n                  ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('82', '被嫌弃的松子的一生', '8.9', 'top250', 'https://movie.douban.com/subject/1787291/', '以戏谑来戏谑戏谑。', '导演: 中岛哲也 Tetsuya Nakashima   主演: 中谷美纪 Miki Nakatani / 瑛太 E2006 / 日本 / 剧情 歌舞\\n                        ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('83', '春光乍泄', '8.9', 'top250', 'https://movie.douban.com/subject/1292679/', '爱情纠缠，男女一致。', '导演: 王家卫 Kar Wai Wong   主演: 张国荣 Leslie Cheung / 梁朝伟 Tony Leu1997 / 中国香港 日本 韩国 / 剧情 爱情 同性\\n            ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('84', '禁闭岛', '8.8', 'top250', 'https://movie.douban.com/subject/2334904/', '昔日翩翩少年，今日大腹便便。', '导演: Martin Scorsese   主演: 莱昂纳多·迪卡普里奥 Leonardo DiCaprio / 2010 / 美国 / 剧情 悬疑 惊悚\\n                      ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('85', '心灵捕手', '8.9', 'top250', 'https://movie.douban.com/subject/1292656/', '人生中应该拥有这样的一段豁然开朗。', '导演: 格斯·范·桑特 Gus Van Sant   主演: 马特·达蒙 Matt Damon / 罗宾·1997 / 美国 / 剧情\\n                        ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('86', '布达佩斯大饭店', '8.8', 'top250', 'https://movie.douban.com/subject/11525673/', '小清新的故事里注入了大历史的情怀。', '导演: 韦斯·安德森 Wes Anderson   主演: 拉尔夫·费因斯 Ralph Fiennes / 2014 / 美国 德国 英国 / 剧情 喜剧 冒险\\n                   ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('87', '阿凡达', '8.7', 'top250', 'https://movie.douban.com/subject/1652587/', '绝对意义上的美轮美奂。', '导演: 詹姆斯·卡梅隆 James Cameron   主演: 萨姆·沃辛顿 Sam Worthington 2009 / 美国 英国 / 动作 科幻 冒险\\n                     ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('88', '剪刀手爱德华', '8.7', 'top250', 'https://movie.douban.com/subject/1292370/', '浪漫忧郁的成人童话。', '导演: 蒂姆·波顿 Tim Burton   主演: 约翰尼·德普 Johnny Depp / 薇诺娜·1990 / 美国 / 剧情 奇幻 爱情\\n                        ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('89', '勇敢的心', '8.9', 'top250', 'https://movie.douban.com/subject/1294639/', '史诗大片的典范。', '导演: 梅尔·吉布森 Mel Gibson   主演: 梅尔·吉布森 Mel Gibson / 苏菲·玛1995 / 美国 / 动作 传记 剧情 历史 战争\\n                     ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('90', '摩登时代', '9.3', 'top250', 'https://movie.douban.com/subject/1294371/', '大时代中的人生，小人物的悲喜。', '导演: 查理·卓别林 Charles Chaplin   主演: 查理·卓别林 Charles Chaplin 1936 / 美国 / 剧情 喜剧 爱情\\n                       ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('91', '天使爱美丽', '8.7', 'top250', 'https://movie.douban.com/subject/1292215/', '法式小清新。 ', '导演: 让-皮埃尔·热内 Jean-Pierre Jeunet   主演: 奥黛丽·塔图 Audrey Tau2001 / 法国 德国 / 喜剧 爱情\\n                        ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('92', '加勒比海盗', '8.7', 'top250', 'https://movie.douban.com/subject/1298070/', '约翰尼·德普的独角戏。', '导演: 戈尔·维宾斯基 Gore Verbinski   主演: 约翰尼·德普 Johnny Depp / 2003 / 美国 / 动作 冒险 奇幻\\n                        ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('93', '喜剧之王', '8.7', 'top250', 'https://movie.douban.com/subject/1302425/', '我是一个演员。', '导演: 周星驰 Stephen Chow / 李力持 Lik-Chi Lee   主演: 周星驰 Stephen Ch1999 / 中国香港 / 喜剧 剧情 爱情\\n                  ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('94', '致命ID', '8.8', 'top250', 'https://movie.douban.com/subject/1297192/', '最不可能的那个人永远是最可能的。', '导演: 詹姆斯·曼高德 James Mangold   主演: 约翰·库萨克 John Cusack / 雷2003 / 美国 / 剧情 悬疑 惊悚\\n                        ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('95', '断背山', '8.8', 'top250', 'https://movie.douban.com/subject/1418834/', '每个人心中都有一座断背山。', '导演: 李安 Ang Lee   主演: 希斯·莱杰 Heath Ledger / 杰克·吉伦哈尔 Jake2005 / 美国 加拿大 / 剧情 爱情 同性 家庭\\n                  ', '2020-03-30 13:57:34');\r\nINSERT INTO `movies` VALUES ('96', '杀人回忆', '8.8', 'top250', 'https://movie.douban.com/subject/1300299/', '关于连环杀人悬案的集体回忆。', '导演: 奉俊昊 Joon-ho Bong   主演: 宋康昊 Kang-ho Song / 金相庆 Sang-kyun2003 / 韩国 / 剧情 动作 犯罪 悬疑 惊悚\\n              ', '2020-03-30 13:57:35');\r\nINSERT INTO `movies` VALUES ('97', '幽灵公主', '8.9', 'top250', 'https://movie.douban.com/subject/1297359/', '人与自然的战争史诗。', '导演: 宫崎骏 Hayao Miyazaki   主演: 松田洋治 Yôji Matsuda / 石田百合1997 / 日本 / 动画 奇幻 冒险\\n                        ', '2020-03-30 13:57:35');\r\nINSERT INTO `movies` VALUES ('98', '狩猎', '9.1', 'top250', 'https://movie.douban.com/subject/6985810/', '人言可畏。', '导演: 托马斯·温特伯格 Thomas Vinterberg   主演: 麦斯·米科尔森 Mads Mik2012 / 丹麦 瑞典 / 剧情\\n                        ', '2020-03-30 13:57:35');\r\nINSERT INTO `movies` VALUES ('99', '入殓师', '8.8', 'top250', 'https://movie.douban.com/subject/2149806/', '死可能是一道门，逝去并不是终结，而是超越，走向下一程。', '导演: 泷田洋二郎 Yôjirô Takita   主演: 本木雅弘 Masahiro Motoki / 2008 / 日本 / 剧情\\n                        ', '2020-03-30 13:57:35');\r\nINSERT INTO `movies` VALUES ('100', '阳光灿烂的日子', '8.8', 'top250', 'https://movie.douban.com/subject/1291875/', '一场华丽的意淫。', '导演: 姜文 Wen Jiang   主演: 夏雨 Yu Xia / 宁静 Jing Ning / 陶虹 Hong Tao<br/>1994 / 中国大陆 中国香港 / 剧情 爱情\\n         ', '2020-03-30 13:57:36');\r\nINSERT INTO `movies` VALUES ('101', '请以你的名字呼唤我', '8.9', 'top250', 'https://movie.douban.com/subject/26799731/', '沉醉在电影的情感和视听氛围中无法自拔。', '导演: 卢卡·瓜达尼诺 Luca Guadagnino   主演: 艾米·汉莫 Armie Hammer / 2017 / 意大利 法国 巴西 美国 荷兰 德国 / 剧情 爱情 同性\\n        ', '2020-03-30 13:57:36');\r\nINSERT INTO `movies` VALUES ('102', '重庆森林', '8.7', 'top250', 'https://movie.douban.com/subject/1291999/', '寂寞没有期限。', '导演: 王家卫 Kar Wai Wong   主演: 林青霞 Brigitte Lin / 金城武 Takeshi K1994 / 中国香港 / 剧情 爱情\\n                     ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('103', '第六感', '8.9', 'top250', 'https://movie.douban.com/subject/1297630/', '深入内心的恐怖，出人意料的结局。', '导演: M·奈特·沙马兰 M. Night Shyamalan   主演: 布鲁斯·威利斯 Bruce Wi1999 / 美国 / 剧情 悬疑 惊悚\\n                        ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('104', '哈利·波特与死亡圣器(下)', '8.8', 'top250', 'https://movie.douban.com/subject/3011235/', '10年的完美句点。', '导演: 大卫·叶茨 David Yates   主演: 丹尼尔·雷德克里夫 Daniel Radcliffe2011 / 美国 英国 / 奇幻 冒险\\n                        ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('105', '小森林 夏秋篇', '9.0', 'top250', 'https://movie.douban.com/subject/25814705/', '那些静得只能听见呼吸的日子里，你明白孤独即生活。', '导演: 森淳一 Junichi Mori   主演: 桥本爱 Ai Hashimoto / 三浦贵大 Takahir2014 / 日本 / 剧情\\n                        ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('106', '7号房的礼物', '8.9', 'top250', 'https://movie.douban.com/subject/10777687/', '《我是山姆》的《美丽人生》。', '导演: 李焕庆 Hwan-kyeong Lee   主演: 柳承龙 Seung-yong Ryoo / 朴信惠 Shi2013 / 韩国 / 剧情 喜剧 家庭\\n                    ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('107', '消失的爱人', '8.7', 'top250', 'https://movie.douban.com/subject/21318488/', '年度最佳date movie。', '导演: 大卫·芬奇 David Fincher   主演: 本·阿弗莱克 Ben Affleck / 罗莎蒙2014 / 美国 / 剧情 犯罪 悬疑 惊悚\\n                      ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('108', '红辣椒', '9.0', 'top250', 'https://movie.douban.com/subject/1865703/', '梦的勾结。', '导演: 今敏 Satoshi Kon   主演: 林原惠美 Megumi Hayashibara / 江守彻 Toru2006 / 日本 / 动画 悬疑 科幻 惊悚\\n                 ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('109', '爱在黎明破晓前', '8.8', 'top250', 'https://movie.douban.com/subject/1296339/', '缘分是个连绵词，最美不过一瞬。', '导演: 理查德·林克莱特 Richard Linklater   主演: 伊桑·霍克 Ethan Hawke 1995 / 美国 奥地利 瑞士 / 剧情 爱情\\n                    ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('110', '玛丽和马克思', '8.9', 'top250', 'https://movie.douban.com/subject/3072124/', '你是我最好的朋友，你是我唯一的朋友 。', '导演: 亚当·艾略特 Adam Elliot   主演: 托妮·科莱特 Toni Collette / 菲利2009 / 澳大利亚 / 剧情 喜剧 动画\\n                       ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('111', '小森林 冬春篇', '9.0', 'top250', 'https://movie.douban.com/subject/25814707/', '尊敬他人，尊敬你生活的这片土地，明白孤独是人生的常态。', '导演: 森淳一 Junichi Mori   主演: 桥本爱 Ai Hashimoto / 三浦贵大 Takahir2015 / 日本 / 剧情\\n                        ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('112', '侧耳倾听', '8.9', 'top250', 'https://movie.douban.com/subject/1297052/', '少女情怀总是诗。', '导演: 近藤喜文 Yoshifumi Kondo   主演: 本名阳子 Youko Honna / 小林桂树 K1995 / 日本 / 剧情 爱情 动画\\n                       ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('113', '一一', '9.0', 'top250', 'https://movie.douban.com/subject/1292434/', '我们都曾经是一一。', '导演: 杨德昌 Edward Yang   主演: 吴念真 / 李凯莉 Kelly Lee / 金燕玲 Elai2000 / 中国台湾 日本 / 剧情 爱情 家庭\\n                  ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('114', '告白', '8.7', 'top250', 'https://movie.douban.com/subject/4268598/', '没有一人完全善，也没有一人完全恶。', '导演: 中岛哲也 Tetsuya Nakashima   主演: 松隆子 Takako Matsu / 冈田将生 2010 / 日本 / 剧情 惊悚\\n                        ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('115', '大鱼', '8.8', 'top250', 'https://movie.douban.com/subject/1291545/', '抱着梦想而活着的人是幸福的，怀抱梦想而死去的人是不朽的。', '导演: 蒂姆·波顿 Tim Burton   主演: 伊万·麦克格雷格 Ewan McGregor / 阿2003 / 美国 / 剧情 家庭 奇幻 冒险\\n                       ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('116', '唐伯虎点秋香', '8.6', 'top250', 'https://movie.douban.com/subject/1306249/', '华太师是黄霑，吴镇宇四大才子之一。', '导演: 李力持 Lik-Chi Lee   主演: 周星驰 Stephen Chow / 巩俐 Li Gong / 陈1993 / 中国香港 / 喜剧 爱情 古装\\n                  ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('117', '阳光姐妹淘', '8.8', 'top250', 'https://movie.douban.com/subject/4917726/', '再多各自牛逼的时光，也比不上一起傻逼的岁月。 ', '导演: 姜炯哲 Hyeong-Cheol Kang   主演: 沈恩京 Eun-kyung Shim / 闵孝琳 Hy2011 / 韩国 / 剧情 喜剧\\n                       ', '2020-03-30 13:57:37');\r\nINSERT INTO `movies` VALUES ('118', '蝙蝠侠：黑暗骑士崛起', '8.8', 'top250', 'https://movie.douban.com/subject/3395373/', '诺兰就是保证。', '导演: 克里斯托弗·诺兰 Christopher Nolan   主演: 克里斯蒂安·贝尔 Christ2012 / 美国 英国 / 剧情 动作 科幻 犯罪 惊悚\\n                  ', '2020-03-30 13:57:38');\r\nINSERT INTO `movies` VALUES ('119', '射雕英雄传之东成西就', '8.7', 'top250', 'https://movie.douban.com/subject/1316510/', '百看不厌。 ', '导演: 刘镇伟 Jeffrey Lau   主演: 梁朝伟 Tony Leung Chiu Wai / 林青霞 Bri1993 / 中国香港 / 喜剧 奇幻 武侠 古装\\n               ', '2020-03-30 13:57:38');\r\nINSERT INTO `movies` VALUES ('120', '倩女幽魂', '8.7', 'top250', 'https://movie.douban.com/subject/1297447/', '两张绝世的脸。 ', '导演: 程小东 Siu-Tung Ching   主演: 张国荣 Leslie Cheung / 王祖贤 Joey W1987 / 中国香港 / 爱情 奇幻 武侠 古装\\n               ', '2020-03-30 13:57:38');\r\nINSERT INTO `movies` VALUES ('121', '超脱', '8.9', 'top250', 'https://movie.douban.com/subject/5322596/', '穷尽一生，我们要学会的，不过是彼此拥抱。', '导演: 托尼·凯耶 Tony Kaye   主演: 艾德里安·布洛迪 Adrien Brody / 马西2011 / 美国 / 剧情\\n                        ', '2020-03-30 13:57:38');\r\nINSERT INTO `movies` VALUES ('122', '甜蜜蜜', '8.8', 'top250', 'https://movie.douban.com/subject/1305164/', '相逢只要一瞬间，等待却像是一辈子。', '导演: 陈可辛 Peter Chan   主演: 黎明 Leon Lai / 张曼玉 Maggie Cheung / 1996 / 中国香港 / 剧情 爱情\\n                     ', '2020-03-30 13:57:38');\r\nINSERT INTO `movies` VALUES ('123', '驯龙高手', '8.7', 'top250', 'https://movie.douban.com/subject/2353023/', '和谐的生活离不开摸头与被摸头。', '导演: 迪恩·德布洛斯 Dean DeBlois / 克里斯·桑德斯 Chris Sanders   主演:2010 / 美国 / 动画 奇幻 冒险\\n                        ', '2020-03-30 13:57:38');\r\nINSERT INTO `movies` VALUES ('124', '萤火之森', '8.9', 'top250', 'https://movie.douban.com/subject/5989818/', '触不到的恋人。', '导演: 大森贵弘 Takahiro Omori   主演: 佐仓绫音 Ayane Sakura / 内山昂辉 K2011 / 日本 / 剧情 爱情 动画 奇幻\\n                    ', '2020-03-30 13:57:38');\r\nINSERT INTO `movies` VALUES ('125', '恐怖直播', '8.8', 'top250', 'https://movie.douban.com/subject/21360417/', '恐怖分子的“秋菊打官司”。', '导演: 金秉祐 Byeong-woo Kim   主演: 河正宇 Jung-woo Ha / 李璟荣 Kyeong-y2013 / 韩国 / 剧情 犯罪 悬疑\\n                    ', '2020-03-30 13:57:39');\r\nINSERT INTO `movies` VALUES ('126', '幸福终点站', '8.8', 'top250', 'https://movie.douban.com/subject/1292274/', '有时候幸福需要等一等。 ', '导演: 史蒂文·斯皮尔伯格 Steven Spielberg   主演: 汤姆·汉克斯 Tom Hanks2004 / 美国 / 喜剧 剧情 爱情\\n                        ', '2020-03-30 13:57:39');\r\nINSERT INTO `movies` VALUES ('127', '超能陆战队', '8.7', 'top250', 'https://movie.douban.com/subject/11026735/', 'Balalala~~~', '导演: 唐·霍尔 Don Hall / 克里斯·威廉姆斯 Chris Williams   主演: 斯科特2014 / 美国 / 喜剧 动作 科幻 动画 冒险\\n                    ', '2020-03-30 13:57:39');\r\nINSERT INTO `movies` VALUES ('128', '菊次郎的夏天', '8.8', 'top250', 'https://movie.douban.com/subject/1293359/', '从没见过那么流氓的温柔，从没见过那么温柔的流氓。', '导演: 北野武 Takeshi Kitano   主演: 北野武 Takeshi Kitano / 关口雄介 Yus1999 / 日本 / 剧情 喜剧\\n                        ', '2020-03-30 13:57:39');\r\nINSERT INTO `movies` VALUES ('129', '无人知晓', '9.1', 'top250', 'https://movie.douban.com/subject/1292337/', '我的平常生活就是他人的幸福。', '导演: 是枝裕和 Hirokazu Koreeda   主演: 柳乐优弥 Yûya Yagira / 北浦爱2004 / 日本 / 剧情\\n                        ', '2020-03-30 13:57:39');\r\nINSERT INTO `movies` VALUES ('130', '爱在日落黄昏时', '8.8', 'top250', 'https://movie.douban.com/subject/1291990/', '九年后的重逢是世俗和责任的交叠，没了悸动和青涩，沧桑而温暖。', '导演: 理查德·林克莱特 Richard Linklater   主演: 伊桑·霍克 Ethan Hawke 2004 / 美国 法国 / 剧情 爱情\\n                        ', '2020-03-30 13:57:39');\r\nINSERT INTO `movies` VALUES ('131', '借东西的小人阿莉埃蒂', '8.8', 'top250', 'https://movie.douban.com/subject/4202302/', '曾经的那段美好会沉淀为一辈子的记忆。', '导演: 米林宏昌 Hiromasa Yonebayashi   主演: 志田未来 Mirai Shida / 神木2010 / 日本 / 动画 奇幻 冒险\\n                      ', '2020-03-30 13:57:39');\r\nINSERT INTO `movies` VALUES ('132', '神偷奶爸', '8.6', 'top250', 'https://movie.douban.com/subject/3287562/', 'Mr. I Don\\'t Care其实也有Care的时候。', '导演: 皮艾尔·柯芬 Pierre Coffin / 克里斯·雷纳德 Chris Renaud   主演: 2010 / 美国 法国 / 喜剧 动画 冒险\\n                      ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('133', '怪兽电力公司', '8.7', 'top250', 'https://movie.douban.com/subject/1291579/', '不要给它起名字，起了名字就有感情了。', '导演: 彼特·道格特 Pete Docter / 大卫·斯沃曼 David Silverman   主演: 约2001 / 美国 / 儿童 喜剧 动画 奇幻 冒险\\n                  ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('134', '完美的世界', '9.1', 'top250', 'https://movie.douban.com/subject/1300992/', '坏人的好总是比好人的好来得更感人。', '导演: 克林特·伊斯特伍德 Clint Eastwood   主演: 凯文·科斯特纳 Kevin Cos1993 / 美国 / 剧情 犯罪\\n                        ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('135', '玩具总动员3', '8.8', 'top250', 'https://movie.douban.com/subject/1858711/', '跨度十五年的欢乐与泪水。', '导演: 李·昂克里奇 Lee Unkrich   主演: 汤姆·汉克斯 Tom Hanks / 蒂姆·艾2010 / 美国 / 喜剧 动画 奇幻 冒险\\n                        ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('136', '风之谷', '8.9', 'top250', 'https://movie.douban.com/subject/1291585/', '动画片的圣经。', '导演: 宫崎骏 Hayao Miyazaki   主演: 岛本须美 Sumi Shimamoto / 松田洋治 Y1984 / 日本 / 动画 奇幻 冒险\\n                      ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('137', '血战钢锯岭', '8.7', 'top250', 'https://movie.douban.com/subject/26325320/', '优秀的战争片不会美化战场，不会粉饰死亡，不会矮化敌人，不会无视常识，最重要的，不会宣扬战争。', '导演: 梅尔·吉布森 Mel Gibson   主演: 安德鲁·加菲尔德 Andrew Garfield /2016 / 美国 澳大利亚 / 剧情 传记 历史 战争\\n                 ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('138', '上帝之城', '8.9', 'top250', 'https://movie.douban.com/subject/1292208/', '被上帝抛弃了的上帝之城。', '导演: 费尔南多·梅里尔斯 Fernando Meirelles / 卡迪亚·兰德 Kátia Lund  &amp;nbsp...;<br/>2002 / 巴西 法国 / 犯罪 剧情\\n       ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('139', '傲慢与偏见', '8.6', 'top250', 'https://movie.douban.com/subject/1418200/', '爱是摈弃傲慢与偏见之后的曙光。', '导演: 乔·怀特 Joe Wright   主演: 凯拉·奈特莉 Keira Knightley / 马修·2005 / 法国 英国 美国 / 剧情 爱情\\n                      ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('140', '时空恋旅人', '8.7', 'top250', 'https://movie.douban.com/subject/10577869/', '把每天当作最后一天般珍惜度过，积极拥抱生活，就是幸福。', '导演: 理查德·柯蒂斯 Richard Curtis   主演: 多姆纳尔·格里森 Domhnall Gl2013 / 英国 / 喜剧 爱情 奇幻\\n                        ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('141', '电锯惊魂', '8.7', 'top250', 'https://movie.douban.com/subject/1417598/', '真相就在眼前。', '导演: 詹姆斯·温 James Wan   主演: 雷·沃纳尔 Leigh Whannell / 加利·艾2004 / 美国 / 悬疑 惊悚 恐怖\\n                        ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('142', '功夫', '8.5', 'top250', 'https://movie.douban.com/subject/1291543/', '警恶惩奸，维护世界和平这个任务就交给你了，好吗？', '导演: 周星驰 Stephen Chow   主演: 周星驰 Stephen Chow / 元秋 Qiu Yuen / 2004 / 中国大陆 中国香港 / 动作 喜剧 犯罪 奇幻\\n         ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('143', '教父3', '8.9', 'top250', 'https://movie.douban.com/subject/1294240/', '任何信念的力量，都无法改变命运。', '导演: 弗朗西斯·福特·科波拉 Francis Ford Coppola   主演: 阿尔·帕西诺 A1990 / 美国 / 剧情 犯罪\\n                        ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('144', '喜宴', '8.9', 'top250', 'https://movie.douban.com/subject/1303037/', '中国家庭的喜怒哀乐忍。', '导演: 李安 Ang Lee   主演: 赵文瑄 Winston Chao / 郎雄 Sihung Lung / 归亚1993 / 中国台湾 美国 / 剧情 喜剧 爱情 同性 家庭\\n         ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('145', '谍影重重3', '8.8', 'top250', 'https://movie.douban.com/subject/1578507/', '像吃了苏打饼一样干脆的电影。', '导演: 保罗·格林格拉斯 Paul Greengrass   主演: 马特·达蒙 Matt Damon / 2007 / 美国 德国 / 动作 悬疑 惊悚\\n                      ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('146', '英雄本色', '8.7', 'top250', 'https://movie.douban.com/subject/1297574/', '英雄泪短，兄弟情长。 ', '导演: 吴宇森 John Woo   主演: 周润发 Yun-Fat Chow / 狄龙 Lung Ti / 张国1986 / 中国香港 / 剧情 动作 犯罪\\n                    ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('147', '岁月神偷', '8.7', 'top250', 'https://movie.douban.com/subject/3792799/', '岁月流逝，来日可追。', '导演: 罗启锐 Alex Law   主演: 吴君如 Sandra Ng / 任达华 Simon Yam / 钟绍2010 / 中国香港 中国大陆 / 剧情 家庭\\n                  ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('148', '被解救的姜戈', '8.7', 'top250', 'https://movie.douban.com/subject/6307447/', '热血沸腾，那个低俗、性感的无耻混蛋又来了。', '导演: 昆汀·塔伦蒂诺 Quentin Tarantino   主演: 杰米·福克斯 Jamie Foxx /2012 / 美国 / 剧情 动作 西部 冒险\\n                     ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('149', '七武士', '9.2', 'top250', 'https://movie.douban.com/subject/1295399/', '时代悲歌。', '导演: 黑泽明 Akira Kurosawa   主演: 三船敏郎 Toshirô Mifune / 志村乔 1954 / 日本 / 动作 冒险 剧情\\n                        ', '2020-03-30 13:57:40');\r\nINSERT INTO `movies` VALUES ('150', '天书奇谭', '9.2', 'top250', 'https://movie.douban.com/subject/1428581/', '传奇的年代，醉人的童话。', '导演: 王树忱 Shuchen Wang / 钱运达 Yunda Qian   主演: 丁建华 Jianhua Din1983(中国大陆) / 中国大陆 / 动画 奇幻\\n               ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('151', '哪吒闹海', '9.1', 'top250', 'https://movie.douban.com/subject/1307315/', '想你时你在闹海。', '导演: 严定宪 Dingxian Yan / 王树忱 Shuchen Wang   主演: 梁正晖 Zhenghui 1979 / 中国大陆 / 冒险 动画 奇幻\\n                  ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('152', '疯狂原始人', '8.7', 'top250', 'https://movie.douban.com/subject/1907966/', '老少皆宜，这就是好莱坞动画的魅力。', '导演: 科克·德·米科 Kirk De Micco / 克里斯·桑德斯 Chris Sanders   主演2013 / 美国 / 喜剧 动画 冒险\\n                        ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('153', '人生果实', '9.5', 'top250', 'https://movie.douban.com/subject/26874505/', '土壤没有落叶不会肥沃，没有了你就不算人生。', '导演: 伏原健之 Kenshi Fushihara   主演: 津端修一 Shûichi Tsubata / 津2017 / 日本 / 纪录片\\n                        ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('154', '我是山姆', '8.9', 'top250', 'https://movie.douban.com/subject/1306861/', '爱并不需要智商 。', '导演: 杰茜·尼尔森 Jessie Nelson   主演: Sean Penn / Dakota Fanning / Mi2001 / 美国 / 剧情 家庭\\n                    ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('155', '心迷宫', '8.7', 'top250', 'https://movie.douban.com/subject/25917973/', '荒诞讽刺，千奇百巧，抽丝剥茧，百转千回。', '导演: 忻钰坤 Yukun Xin   主演: 霍卫民 Weimin Huo / 王笑天 Xiaotian Wang 2014 / 中国大陆 / 剧情 犯罪 悬疑\\n                  ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('156', '纵横四海', '8.8', 'top250', 'https://movie.douban.com/subject/1295409/', '香港浪漫主义警匪动作片的巅峰之作。', '导演: 吴宇森 John Woo   主演: 周润发 Yun-Fat Chow / 张国荣 Leslie Cheung1991 / 中国香港 / 剧情 喜剧 动作 犯罪\\n               ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('157', '三块广告牌', '8.7', 'top250', 'https://movie.douban.com/subject/26611804/', '怼天怼地，你走后，她与世界为敌。', '导演: 马丁·麦克唐纳 Martin McDonagh   主演: 弗兰西斯·麦克多蒙德 France2017 / 美国 英国 / 剧情 犯罪\\n                        ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('158', '萤火虫之墓', '8.7', 'top250', 'https://movie.douban.com/subject/1293318/', '幸福是生生不息，却难以触及的远。 ', '导演: 高畑勋 Isao Takahata   主演: 辰己努 / 白石绫乃 / 志乃原良子<br/>1988 / 日本 / 动画 剧情 战争\\n                        ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('159', '真爱至上', '8.6', 'top250', 'https://movie.douban.com/subject/1292401/', '爱，是个动词。', '导演: 理查德·柯蒂斯 Richard Curtis   主演: 休·格兰特 Hugh Grant / 柯林2003 / 英国 美国 法国 / 喜剧 剧情 爱情\\n                   ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('160', '头号玩家', '8.7', 'top250', 'https://movie.douban.com/subject/4920389/', '写给影迷，动漫迷和游戏迷的一封情书。', '导演: 史蒂文·斯皮尔伯格 Steven Spielberg   主演: 泰伊·谢里丹 Tye Sheri2018 / 美国 / 动作 科幻 冒险\\n                        ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('161', '达拉斯买家俱乐部', '8.8', 'top250', 'https://movie.douban.com/subject/1793929/', 'Jared Leto的腿比女人还美！', '导演: 让-马克·瓦雷 Jean-Marc Vallée   主演: 马修·麦康纳 Matthew McCon2013 / 美国 / 剧情 传记 同性\\n                        ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('162', '荒蛮故事', '8.8', 'top250', 'https://movie.douban.com/subject/24750126/', '始于荒诞，止于更荒诞。', '导演: 达米安·斯兹弗隆 Damián Szifron   主演: 达里奥·葛兰帝内提 Darío2014 / 阿根廷 西班牙 / 剧情 喜剧 犯罪\\n                        ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('163', '东邪西毒', '8.6', 'top250', 'https://movie.douban.com/subject/1292328/', '电影诗。', '导演: 王家卫 Kar Wai Wong   主演: 张国荣 Leslie Cheung / 林青霞 Brigitte1994 / 中国香港 中国台湾 / 剧情 动作 爱情 武侠 古装\\n       ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('164', '爆裂鼓手', '8.7', 'top250', 'https://movie.douban.com/subject/25773932/', '这个世界从不善待努力的人，努力了也不一定会成功，但是知道自己在努力，就是活下去的动力。', '导演: 达米恩·查泽雷 Damien Chazelle   主演: 迈尔斯·特勒 Miles Teller /2014 / 美国 / 剧情 音乐\\n                        ', '2020-03-30 13:57:49');\r\nINSERT INTO `movies` VALUES ('165', '记忆碎片', '8.6', 'top250', 'https://movie.douban.com/subject/1304447/', '一个针管引发的血案。', '导演: 克里斯托弗·诺兰 Christopher Nolan   主演: 盖·皮尔斯 Guy Pearce /2000 / 美国 / 犯罪 剧情 悬疑 惊悚\\n                     ', '2020-03-30 13:57:50');\r\nINSERT INTO `movies` VALUES ('166', '贫民窟的百万富翁', '8.6', 'top250', 'https://movie.douban.com/subject/2209573/', '上帝之城+猜火车+阿甘正传+开心辞典=山寨富翁', '导演: 丹尼·鲍尔 Danny Boyle / 洛芙琳·坦丹 Loveleen Tandan   主演: 戴夫2008 / 英国 美国 / 剧情 爱情\\n                        ', '2020-03-30 13:57:50');\r\nINSERT INTO `movies` VALUES ('167', '釜山行', '8.5', 'top250', 'https://movie.douban.com/subject/25986180/', '揭露人性的丧尸题材力作。', '导演: 延尚昊 Sang-ho Yeon   主演: 孔侑 Yoo Gong / 郑有美 Yu-mi Jung / 马2016 / 韩国 / 动作 惊悚 灾难\\n                    ', '2020-03-30 13:57:50');\r\nINSERT INTO `movies` VALUES ('168', '黑天鹅', '8.6', 'top250', 'https://movie.douban.com/subject/1978709/', '黑暗之美。', '导演: 达伦·阿罗诺夫斯基 Darren Aronofsky   主演: 娜塔莉·波特曼 Natalie2010 / 美国 / 剧情 惊悚\\n                        ', '2020-03-30 13:57:50');\r\nINSERT INTO `movies` VALUES ('169', '花样年华', '8.6', 'top250', 'https://movie.douban.com/subject/1291557/', '偷情本没有这样美。', '导演: 王家卫 Kar Wai Wong   主演: 梁朝伟 Tony Leung Chiu Wai / 张曼玉 Ma2000 / 中国香港 / 剧情 爱情\\n                     ', '2020-03-30 13:57:50');\r\nINSERT INTO `movies` VALUES ('170', '你的名字。', '8.4', 'top250', 'https://movie.douban.com/subject/26683290/', '穿越错位的时空，仰望陨落的星辰，你没留下你的名字，我却无法忘记那句“我爱你”。', '导演: 新海诚 Makoto Shinkai   主演: 神木隆之介 Ryûnosuke Kamiki / 上2016 / 日本 / 剧情 爱情 动画\\n                        ', '2020-03-30 13:57:50');\r\nINSERT INTO `movies` VALUES ('171', '卢旺达饭店', '8.9', 'top250', 'https://movie.douban.com/subject/1291822/', '当这个世界闭上双眼，他却敞开了怀抱。', '导演: 特瑞·乔治 Terry George   主演: 唐·钱德尔 Don Cheadle / 苏菲·奥2004 / 英国 南非 意大利 / 剧情 历史 战争\\n                   ', '2020-03-30 13:57:50');\r\nINSERT INTO `movies` VALUES ('172', '忠犬八公物语', '9.2', 'top250', 'https://movie.douban.com/subject/1959195/', '养狗三日，便会对你终其一生。', '导演: Seijirô Kôyama   主演: 山本圭 Kei Yamamoto / 井川比佐志 Hisa1987 / 日本 / 剧情\\n                        ', '2020-03-30 13:57:50');\r\nINSERT INTO `movies` VALUES ('173', '头脑特工队', '8.7', 'top250', 'https://movie.douban.com/subject/10533913/', '愿我们都不用长大，每一座城堡都能永远存在。', '导演: 彼特·道格特 Pete Docter / 罗纳尔多·德尔·卡门 Ronaldo Del Carmen  &amp;nb...;<br/>2015 / 美国 / 喜剧 动画 冒险\\n       ', '2020-03-30 13:57:50');\r\nINSERT INTO `movies` VALUES ('174', '模仿游戏', '8.7', 'top250', 'https://movie.douban.com/subject/10463953/', '他给机器起名“克里斯托弗”，因为这是他初恋的名字。', '导演: 莫滕·泰杜姆 Morten Tyldum   主演: 本尼迪克特·康伯巴奇 Benedict C2014 / 英国 美国 / 剧情 传记 战争 同性\\n                     ', '2020-03-30 13:57:50');\r\nINSERT INTO `movies` VALUES ('175', '黑客帝国3：矩阵革命', '8.7', 'top250', 'https://movie.douban.com/subject/1302467/', '不得不说，《黑客帝国》系列是商业片与科幻、哲学完美结合的典范。', '导演: Andy Wachowski / Larry Wachowski   主演: 基努·里维斯 Keanu Reeves2003 / 美国 澳大利亚 / 动作 科幻\\n               ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('176', '一个叫欧维的男人决定去死', '8.8', 'top250', 'https://movie.douban.com/subject/26628357/', '惠及一生的美丽。', '导演: 汉内斯·赫尔姆 Hannes Holm   主演: 罗夫·拉斯加德 Rolf Lassgård2015 / 瑞典 / 剧情\\n                        ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('177', '雨人', '8.7', 'top250', 'https://movie.douban.com/subject/1291870/', '生活在自己的世界里，也可以让周围的人显得可笑和渺小。', '导演: 巴瑞·莱文森 Barry Levinson   主演: 达斯汀·霍夫曼 Dustin Hoffman 1988 / 美国 / 剧情\\n                        ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('178', '你看起来好像很好吃', '8.9', 'top250', 'https://movie.douban.com/subject/4848115/', '感情不分食草或者食肉。', '导演: 藤森雅也 Masaya Fujimori   主演: 山口胜平 Kappei Yamaguchi / 爱河2010 / 日本 / 剧情 动画 儿童\\n                      ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('179', '哈利·波特与阿兹卡班的囚徒', '8.6', 'top250', 'https://movie.douban.com/subject/1291544/', '不一样的导演，不一样的哈利·波特。', '导演: Alfonso Cuarón   主演: 丹尼尔·雷德克里夫 Daniel Radcliffe / Emma2004 / 英国 美国 / 奇幻 冒险\\n                     ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('180', '无敌破坏王', '8.7', 'top250', 'https://movie.douban.com/subject/6534248/', '迪士尼和皮克斯拿错剧本的产物。', '导演: 瑞奇·莫尔 Rich Moore   主演: 约翰·C·赖利 John C. Reilly / 萨拉2012 / 美国 / 喜剧 动画 奇幻 冒险\\n                      ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('181', '未麻的部屋', '8.9', 'top250', 'https://movie.douban.com/subject/1395091/', '好的剧本是，就算你猜到了结局也猜不到全部。', '导演: 今敏 Satoshi Kon   主演: 岩男润子 Junko Iwao / 松本梨香 Rica Matsu1997 / 日本 / 动画 奇幻 惊悚\\n                     ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('182', '恋恋笔记本', '8.5', 'top250', 'https://movie.douban.com/subject/1309163/', '爱情没有那么多借口，如果不能圆满，只能说明爱的不够。 ', '导演: 尼克·卡索维茨 Nick Cassavetes   主演: 瑞恩·高斯林 Ryan Gosling /2004 / 美国 / 剧情 爱情\\n                        ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('183', '冰川时代', '8.6', 'top250', 'https://movie.douban.com/subject/1291578/', '松鼠才是角儿。', '导演: 卡洛斯·沙尔丹哈 Carlos Saldanha / 克里斯·韦奇 Chris Wedge   主演2002 / 美国 / 喜剧 动画 冒险\\n                        ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('184', '哈利·波特与密室', '8.6', 'top250', 'https://movie.douban.com/subject/1296996/', '魔法的密室之门已打开...', '导演: Chris Columbus   主演: 丹尼尔·雷德克里夫 Daniel Radcliffe / 艾玛2002 / 美国 英国 德国 / 奇幻 冒险\\n                    ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('185', '海街日记', '8.8', 'top250', 'https://movie.douban.com/subject/25895901/', '是枝裕和的家庭习作。', '导演: 是枝裕和 Hirokazu Koreeda   主演: 绫濑遥 Haruka Ayase / 长泽雅美 M2015 / 日本 / 剧情 家庭\\n                        ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('186', '新世界', '8.8', 'top250', 'https://movie.douban.com/subject/10437779/', '要做就做得狠一点，这样才能活下去。', '导演: 朴勋政 Hoon-jung Park   主演: 李政宰 Jung-Jae Lee / 崔岷植 Min-sik2013 / 韩国 / 剧情 犯罪\\n                       ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('187', '海边的曼彻斯特', '8.6', 'top250', 'https://movie.douban.com/subject/25980443/', '我们都有权利不与自己的过去和解。', '导演: 肯尼斯·罗纳根 Kenneth Lonergan   主演: 卡西·阿弗莱克 Casey Affle2016 / 美国 / 剧情 家庭\\n                        ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('188', '二十二', '8.7', 'top250', 'https://movie.douban.com/subject/26430107/', '有一些东西不应该被遗忘。', '导演: 郭柯 Ke Guo   主演: <br/>2015 / 中国大陆 / 纪录片\\n                        ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('189', '虎口脱险', '8.9', 'top250', 'https://movie.douban.com/subject/1296909/', '永远看不腻的喜剧。', '导演: 杰拉尔·乌里 Gérard Oury   主演: 路易·德·菲耐斯 Louis de Funès1966 / 法国 英国 / 喜剧 战争\\n                        ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('190', '房间', '8.8', 'top250', 'https://movie.douban.com/subject/25724855/', '被偷走的岁月，被伤害的生命，被禁锢的灵魂，终将被希望和善意救赎。', '导演: 伦尼·阿伯拉罕森 Lenny Abrahamson   主演: 布丽·拉尔森 Brie Larson2015 / 爱尔兰 加拿大 英国 美国 / 剧情 家庭\\n                 ', '2020-03-30 13:57:52');\r\nINSERT INTO `movies` VALUES ('191', '恐怖游轮', '8.5', 'top250', 'https://movie.douban.com/subject/3011051/', '不要企图在重复中寻找已经失去的爱。', '导演: 克里斯托弗·史密斯 Christopher Smith   主演: 梅利莎·乔治 Melissa 2009 / 英国 澳大利亚 / 剧情 悬疑 惊悚\\n                     ', '2020-03-30 13:57:53');\r\nINSERT INTO `movies` VALUES ('192', '雨中曲', '9.0', 'top250', 'https://movie.douban.com/subject/1293460/', '骨灰级歌舞片。', '导演: 斯坦利·多南 Stanley Donen / 吉恩·凯利 Gene Kelly   主演: 吉恩·1952 / 美国 / 喜剧 歌舞 爱情\\n                        ', '2020-03-30 13:57:53');\r\nINSERT INTO `movies` VALUES ('193', '人工智能', '8.6', 'top250', 'https://movie.douban.com/subject/1302827/', '对爱的执着，可以超越一切。', '导演: 史蒂文·斯皮尔伯格 Steven Spielberg   主演: 海利·乔·奥斯蒙 Haley2001 / 美国 / 冒险 剧情 科幻\\n                        ', '2020-03-30 13:57:53');\r\nINSERT INTO `movies` VALUES ('194', '魔女宅急便', '8.6', 'top250', 'https://movie.douban.com/subject/1307811/', '宫崎骏的电影总让人感觉世界是美好的，阳光明媚的。', '导演: 宫崎骏 Hayao Miyazaki   主演: 高山南 Minami Takayama / 佐久间玲 Re1989 / 日本 / 动画 奇幻 冒险\\n                     ', '2020-03-30 13:57:53');\r\nINSERT INTO `movies` VALUES ('195', '惊魂记', '9.0', 'top250', 'https://movie.douban.com/subject/1293181/', '故事的反转与反转，分裂电影的始祖。', '导演: 阿尔弗雷德·希区柯克 Alfred Hitchcock   主演: 安东尼·博金斯 Antho1960 / 美国 / 悬疑 惊悚 恐怖\\n                        ', '2020-03-30 13:57:53');\r\nINSERT INTO `movies` VALUES ('196', '奇迹男孩', '8.6', 'top250', 'https://movie.douban.com/subject/26787574/', '世界不完美，爱会有奇迹。', '导演: 斯蒂芬·卓博斯基 Stephen Chbosky   主演: 雅各布·特伦布莱 Jacob Tr2017 / 美国 中国香港 / 剧情 儿童 家庭\\n                      ', '2020-03-30 13:57:53');\r\nINSERT INTO `movies` VALUES ('197', '疯狂的石头', '8.4', 'top250', 'https://movie.douban.com/subject/1862151/', '中国版《两杆大烟枪》。', '导演: 宁浩 Hao Ning   主演: 郭涛 Tao Guo / 刘桦 Hua Liu / 连晋 Teddy Lin<br/>2006 / 中国大陆 中国香港 / 喜剧 犯罪\\n          ', '2020-03-30 13:57:53');\r\nINSERT INTO `movies` VALUES ('198', '海洋', '9.1', 'top250', 'https://movie.douban.com/subject/3443389/', '大海啊，不全是水。', '导演: 雅克·贝汉 Jacques Perrin / 雅克·克鲁奥德 Jacques Cluzaud   主演:2009 / 法国 瑞士 西班牙 美国 阿联酋 / 纪录片\\n              ', '2020-03-30 13:57:53');\r\nINSERT INTO `movies` VALUES ('199', '罗生门', '8.8', 'top250', 'https://movie.douban.com/subject/1291879/', '人生的N种可能性。', '导演: 黑泽明 Akira Kurosawa   主演: 三船敏郎 Toshirô Mifune / 京町子 1950 / 日本 / 剧情 犯罪 悬疑\\n                        ', '2020-03-30 13:57:53');\r\nINSERT INTO `movies` VALUES ('200', '终结者2：审判日', '8.7', 'top250', 'https://movie.douban.com/subject/1291844/', '少见的超越首部的续集，动作片中的经典。', '导演: 詹姆斯·卡梅隆 James Cameron   主演: 阿诺·施瓦辛格 Arnold Schwarz1991 / 美国 法国 / 动作 科幻\\n                        ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('201', '燃情岁月', '8.8', 'top250', 'https://movie.douban.com/subject/1295865/', '传奇，不是每个人都可以拥有。', '导演: 爱德华·兹威克 Edward Zwick   主演: 布拉德·皮特 Brad Pitt / 安东1994 / 美国 / 剧情 爱情 战争 西部\\n                        ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('202', '爱在午夜降临前', '8.8', 'top250', 'https://movie.douban.com/subject/10808442/', '所谓爱情，就是话唠一路，都不会心生腻烦，彼此嫌弃。', '导演: 理查德·林克莱特 Richard Linklater   主演: 伊桑·霍克 Ethan Hawke 2013 / 美国 希腊 / 剧情 爱情\\n                        ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('203', '魂断蓝桥', '8.8', 'top250', 'https://movie.douban.com/subject/1293964/', '中国式内在的美国电影。', '导演: 茂文·勒鲁瓦 Mervyn LeRoy   主演: 费雯·丽 Vivien Leigh / 罗伯特·1940 / 美国 / 剧情 爱情 战争\\n                        ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('204', '初恋这件小事', '8.4', 'top250', 'https://movie.douban.com/subject/4739952/', '黑小鸭速效美白记。', '导演: 普特鹏·普罗萨卡·那·萨克那卡林 Puttipong Promsaka Na Sakolnakorn / 华森·波克彭2010 / 泰国 / 剧情 喜剧 爱情\\n                ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('205', '穿越时空的少女', '8.6', 'top250', 'https://movie.douban.com/subject/1937946/', '爱上未来的你。 ', '导演: 细田守 Mamoru Hosoda   主演: 仲里依纱 Riisa Naka / 石田卓也 Takuya2006 / 日本 / 剧情 爱情 科幻 动画\\n                   ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('206', '小偷家族', '8.7', 'top250', 'https://movie.douban.com/subject/27622447/', '我们组成了家。', '导演: 是枝裕和 Hirokazu Koreeda   主演: 中川雅也 Lily Franky / 安藤樱 Sa2018 / 日本 / 剧情 犯罪 家庭\\n                      ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('207', '可可西里', '8.8', 'top250', 'https://movie.douban.com/subject/1308857/', '坚硬的信仰。', '导演: 陆川 Chuan Lu   主演: 多布杰 Duobujie / 张磊 Lei Zhang / 亓亮 Qi L2004 / 中国大陆 中国香港 / 剧情 犯罪\\n                ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('208', '绿里奇迹', '8.8', 'top250', 'https://movie.douban.com/subject/1300374/', '天使暂时离开。', '导演: Frank Darabont   主演: 汤姆·汉克斯 Tom Hanks / 大卫·摩斯 David M1999 / 美国 / 犯罪 剧情 奇幻 悬疑\\n                   ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('209', '2001太空漫游', '8.8', 'top250', 'https://movie.douban.com/subject/1292226/', '现代科幻电影的开山之作，最伟大导演的最伟大影片。', '导演: 斯坦利·库布里克 Stanley Kubrick   主演: 凯尔·杜拉 Keir Dullea / 1968 / 英国 美国 / 科幻 惊悚 冒险\\n                     ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('210', '完美陌生人', '8.5', 'top250', 'https://movie.douban.com/subject/26614893/', '来啊，互相伤害啊！', '导演: 保罗·格诺维瑟 Paolo Genovese   主演: 马可·贾利尼 Marco Giallini 2016 / 意大利 / 剧情 喜剧\\n                        ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('211', '牯岭街少年杀人事件', '8.8', 'top250', 'https://movie.douban.com/subject/1292329/', '弱者送给弱者的一刀。', '导演: 杨德昌 Edward Yang   主演: 张震 Chen Chang / 杨静怡 Lisa Yang / 张1991 / 中国台湾 / 剧情 犯罪\\n                     ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('212', '无耻混蛋', '8.6', 'top250', 'https://movie.douban.com/subject/1438652/', '昆汀同学越来越变态了，比北野武还杜琪峰。', '导演: Quentin Tarantino   主演: 布拉德·皮特 Brad Pitt / 梅拉尼·罗兰 M2009 / 德国 美国 / 剧情 犯罪\\n                        ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('213', '阿飞正传', '8.5', 'top250', 'https://movie.douban.com/subject/1305690/', '王家卫是一种风格，张国荣是一个代表。', '导演: 王家卫 Kar Wai Wong   主演: 张国荣 Leslie Cheung / 张曼玉 Maggie C1990 / 中国香港 / 犯罪 剧情 爱情\\n                  ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('214', '新龙门客栈', '8.6', 'top250', 'https://movie.douban.com/subject/1292287/', '嬉笑怒骂，调风动月。', '导演: 李惠民 Raymond Lee   主演: 张曼玉 Maggie Cheung / 林青霞 Brigitte 1992 / 中国香港 中国大陆 / 动作 爱情 武侠 古装\\n          ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('215', '香水', '8.5', 'top250', 'https://movie.douban.com/subject/1760622/', '一个单凭体香达到高潮的男人。', '导演: 汤姆·提克威 Tom Tykwer   主演: 本·卫肖 Ben Whishaw / 艾伦·瑞克2006 / 德国 法国 西班牙 美国 / 剧情 犯罪 奇幻\\n                 ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('216', '源代码', '8.4', 'top250', 'https://movie.douban.com/subject/3075287/', '邓肯·琼斯继《月球》之后再度奉献出一部精彩绝伦的科幻佳作。', '导演: 邓肯·琼斯 Duncan Jones   主演: 杰克·吉伦哈尔 Jake Gyllenhaal / 2011 / 美国 加拿大 / 科幻 悬疑 惊悚\\n                    ', '2020-03-30 13:57:55');\r\nINSERT INTO `movies` VALUES ('217', '城市之光', '9.3', 'top250', 'https://movie.douban.com/subject/1293908/', '永远的小人物，伟大的卓别林。', '导演: Charles Chaplin   主演: 查理·卓别林 Charles Chaplin / 弗吉尼亚·1931 / 美国 / 喜剧 剧情 爱情\\n                       ', '2020-03-30 13:57:56');\r\nINSERT INTO `movies` VALUES ('218', '谍影重重2', '8.6', 'top250', 'https://movie.douban.com/subject/1308767/', '谁说王家卫镜头很晃？', '导演: 保罗·格林格拉斯 Paul Greengrass   主演: 马特·达蒙 Matt Damon / 2004 / 美国 德国 / 动作 悬疑 惊悚\\n                      ', '2020-03-30 13:57:56');\r\nINSERT INTO `movies` VALUES ('219', '谍影重重', '8.6', 'top250', 'https://movie.douban.com/subject/1304102/', '哗啦啦啦啦，天在下雨，哗啦啦啦啦，云在哭泣……找自己。', '导演: 道格·里曼 Doug Liman   主演: 马特·达蒙 Matt Damon / 弗兰卡·波坦2002 / 美国 德国 捷克 / 动作 悬疑 惊悚\\n                     ', '2020-03-30 13:57:56');\r\nINSERT INTO `movies` VALUES ('220', '青蛇', '8.5', 'top250', 'https://movie.douban.com/subject/1303394/', '人生如此，浮生如斯。谁人言，花彼岸，此生情长意短。谁都是不懂爱的罢了。', '导演: 徐克 Hark Tsui   主演: 张曼玉 Maggie Cheung / 王祖贤 Joey Wang / 1993 / 中国香港 / 剧情 爱情 奇幻 古装\\n               ', '2020-03-30 13:57:56');\r\nINSERT INTO `movies` VALUES ('221', '猜火车', '8.5', 'top250', 'https://movie.douban.com/subject/1292528/', '不可猜的青春迷笛。 ', '导演: 丹尼·博伊尔 Danny Boyle   主演: 伊万·麦克格雷格 Ewan McGregor / 1996 / 英国 / 剧情 犯罪\\n                        ', '2020-03-30 13:57:56');\r\nINSERT INTO `movies` VALUES ('222', '战争之王', '8.6', 'top250', 'https://movie.douban.com/subject/1419936/', '做一颗让别人需要你的棋子。', '导演: 安德鲁·尼科尔 Andrew Niccol   主演: 尼古拉斯·凯奇 Nicolas Cage /2005 / 美国 法国 / 剧情 犯罪\\n                        ', '2020-03-30 13:57:56');\r\nINSERT INTO `movies` VALUES ('223', '地球上的星星', '8.9', 'top250', 'https://movie.douban.com/subject/2363506/', '天使保护事件始末。', '导演: 阿米尔·汗 Aamir Khan   主演: 达席尔·萨法瑞 Darsheel Safary / 阿2007 / 印度 / 剧情 儿童 家庭\\n                        ', '2020-03-30 13:57:56');\r\nINSERT INTO `movies` VALUES ('224', '血钻', '8.6', 'top250', 'https://movie.douban.com/subject/1428175/', '每个美丽事物背后都是滴血的现实。', '导演: 爱德华·兹威克 Edward Zwick   主演: 莱昂纳多·迪卡普里奥 Leonardo 2006 / 美国 德国 / 剧情 惊悚 冒险\\n                        ', '2020-03-30 13:57:56');\r\nINSERT INTO `movies` VALUES ('225', '朗读者', '8.6', 'top250', 'https://movie.douban.com/subject/2213597/', '当爱情跨越年龄的界限，它似乎能变得更久远一点，成为一种责任，一种水到渠成的相濡以沫。 ', '导演: 史蒂芬·戴德利 Stephen Daldry   主演: 凯特·温丝莱特 Kate Winslet 2008 / 美国 德国 / 剧情 爱情\\n                        ', '2020-03-30 13:57:57');\r\nINSERT INTO `movies` VALUES ('226', '浪潮', '8.7', 'top250', 'https://movie.douban.com/subject/2297265/', '世界离独裁只有五天。', '导演: 丹尼斯·甘塞尔 Dennis Gansel   主演: 尤尔根·沃格尔 Jürgen Vogel 2008 / 德国 / 剧情 惊悚\\n                        ', '2020-03-30 13:57:57');\r\nINSERT INTO `movies` VALUES ('227', '色，戒', '8.4', 'top250', 'https://movie.douban.com/subject/1828115/', '假戏真情，爱欲深海', '导演: 李安 Ang Lee   主演: 梁朝伟 Tony Leung Chiu Wai / 汤唯 Wei Tang / 2007 / 中国台湾 中国大陆 美国 中国香港 / 剧情 爱情 情色\\n   ', '2020-03-30 13:57:57');\r\nINSERT INTO `movies` VALUES ('228', '遗愿清单', '8.6', 'top250', 'https://movie.douban.com/subject/1867345/', '用剩余不多的时间，去燃烧整个生命。', '导演: 罗伯·莱纳 Rob Reiner   主演: 杰克·尼科尔森 Jack Nicholson / 摩根2007 / 美国 / 冒险 喜剧 剧情\\n                        ', '2020-03-30 13:57:57');\r\nINSERT INTO `movies` VALUES ('229', '步履不停', '8.8', 'top250', 'https://movie.douban.com/subject/2222996/', '日本的家庭电影已经是世界巅峰了，步履不停是巅峰中的佳作。', '导演: 是枝裕和 Hirokazu Koreeda   主演: 阿部宽 Hiroshi Abe / 夏川结衣 Yu2008 / 日本 / 剧情 家庭\\n                        ', '2020-03-30 13:57:57');\r\nINSERT INTO `movies` VALUES ('230', '彗星来的那一夜', '8.5', 'top250', 'https://movie.douban.com/subject/25807345/', '小成本大魅力。', '导演: 詹姆斯·沃德·布柯特 James Ward Byrkit   主演: 艾米丽·芭尔多尼 Em2013 / 美国 英国 / 科幻 悬疑 惊悚\\n                        ', '2020-03-30 13:57:57');\r\nINSERT INTO `movies` VALUES ('231', '大佛普拉斯', '8.7', 'top250', 'https://movie.douban.com/subject/27059130/', '人们可以登上月球，却永远无法探索人们内心的宇宙。', '导演: 黄信尧 Hsin-yao Huang   主演: 庄益增 Yizeng Zhuang / 陈竹昇 Chu-sh2017 / 中国台湾 / 剧情 喜剧 犯罪\\n                  ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('232', '疯狂的麦克斯4：狂暴之路', '8.6', 'top250', 'https://movie.douban.com/subject/3592854/', '“多么美好的一天！”轰轰轰砰咚，啪哒哒哒轰隆隆，磅~', '导演: 乔治·米勒 George Miller   主演: 汤姆·哈迪 Tom Hardy / 查理兹·塞2015 / 澳大利亚 美国 / 动作 科幻 冒险\\n                     ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('233', '小萝莉的猴神大叔', '8.4', 'top250', 'https://movie.douban.com/subject/26393561/', '宝莱坞的萝莉与大叔。', '导演: 卡比尔·汗 Kabir Khan   主演: 萨尔曼·汗 Salman Khan / 哈莎莉·马2015 / 印度 / 剧情 喜剧 动作\\n                        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('234', '再次出发之纽约遇见你', '8.5', 'top250', 'https://movie.douban.com/subject/6874403/', '爱我就给我看你的播放列表。', '导演: 约翰·卡尼 John Carney   主演: 凯拉·奈特莉 Keira Knightley / 马克2013 / 美国 / 喜剧 爱情 音乐\\n                        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('235', '聚焦', '8.8', 'top250', 'https://movie.douban.com/subject/25954475/', '新闻人的理性求真。', '导演: 托马斯·麦卡锡 Thomas McCarthy   主演: 马克·鲁弗洛 Mark Ruffalo /2015 / 美国 / 剧情 传记\\n                        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('236', '驴得水', '8.3', 'top250', 'https://movie.douban.com/subject/25921812/', '过去的如果就让它过去了，未来只会越来越糟！', '导演: 周申 Shen Zhou / 刘露 Lu Liu   主演: 任素汐 Suxi Ren / 大力 Da Li 2016 / 中国大陆 / 剧情 喜剧\\n                     ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('237', '追随', '8.9', 'top250', 'https://movie.douban.com/subject/1397546/', '诺兰的牛逼来源于内心散发出的恐惧。', '导演: 克里斯托弗·诺兰 Christopher Nolan   主演: 杰里米·西奥伯德 Jeremy1998 / 英国 / 犯罪 悬疑 惊悚\\n                        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('238', '东京物语', '9.2', 'top250', 'https://movie.douban.com/subject/1291568/', '东京那么大，如果有一天走失了，恐怕一辈子不能再相见。', '导演: 小津安二郎 Yasujirô Ozu   主演: 笠智众 Chishû Ryû / 原节1953 / 日本 / 剧情 家庭\\n                        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('239', '一次别离', '8.7', 'top250', 'https://movie.douban.com/subject/5964718/', '只有有信仰的人才能说出事实真相。', '导演: 阿斯哈·法哈蒂  Asghar Farhadi   主演: 佩曼·莫阿迪 Peyman Moadi /2011 / 伊朗 法国 / 剧情 家庭\\n                        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('240', '黑鹰坠落', '8.7', 'top250', 'https://movie.douban.com/subject/1291824/', '还原真实而残酷的战争。', '导演: 雷德利·斯科特 Ridley Scott   主演: 乔什·哈奈特 Josh Hartnett / 2001 / 美国 / 动作 历史 战争\\n                        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('241', '千钧一发', '8.8', 'top250', 'https://movie.douban.com/subject/1300117/', '一部能引人思考的科幻励志片。', '导演: 安德鲁·尼科尔 Andrew Niccol   主演: 伊桑·霍克 Ethan Hawke / 乌玛1997 / 美国 / 剧情 科幻 惊悚\\n                        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('242', '我爱你', '9.0', 'top250', 'https://movie.douban.com/subject/5908478/', '你要相信，这世上真的有爱存在，不管在什么年纪 ', '导演: 秋昌民 Chang-min Choo   主演: 宋在河 Jae-ho Song / 李顺载 Soon-jae2011 / 韩国 / 剧情 爱情\\n                       ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('243', '发条橙', '8.5', 'top250', 'https://movie.douban.com/subject/1292233/', '我完全康复了。', '导演: Stanley Kubrick   主演: Malcolm McDowell / Patrick Magee / Michael1971 / 英国 美国 / 犯罪 剧情 科幻\\n        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('244', '四个春天', '8.9', 'top250', 'https://movie.douban.com/subject/27191492/', '来也匆匆去也匆匆，就这样风雨兼程。', '导演: 陆庆屹 Lu Qing Yi   主演: 陆运坤 Yunkun Lu / 李桂贤 Guixian Li / 2017 / 中国大陆 / 纪录片 家庭\\n                     ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('245', '网络谜踪', '8.6', 'top250', 'https://movie.douban.com/subject/27615441/', '', '导演: 阿尼什·查甘蒂 Aneesh Chaganty   主演: 约翰·赵 John Cho / 米切尔2018 / 美国 俄罗斯 / 剧情 犯罪 悬疑 惊悚\\n                   ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('246', 'E.T. 外星人', '8.6', 'top250', 'https://movie.douban.com/subject/1294638/', '生病的E.T.皮肤的颜色就像柿子饼。', '导演: 史蒂文·斯皮尔伯格 Steven Spielberg   主演: 亨利·托马斯 Henry Tho1982 / 美国 / 剧情 科幻\\n                        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('247', '撞车', '8.6', 'top250', 'https://movie.douban.com/subject/1388216/', '天使与魔鬼的冲撞。', '导演: 保罗·哈吉斯 Paul Haggis   主演: 桑德拉·布洛克 Sandra Bullock / 2004 / 美国 德国 / 犯罪 剧情\\n                        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('248', '变脸', '8.5', 'top250', 'https://movie.douban.com/subject/1292659/', '当发哥的风衣、墨镜出现在了凯奇身上⋯⋯', '导演: 吴宇森 John Woo   主演: 约翰·特拉沃尔塔 John Travolta / 尼古拉斯1997 / 美国 / 动作 科幻 犯罪 惊悚\\n                        ', '2020-03-30 13:57:58');\r\nINSERT INTO `movies` VALUES ('249', '九品芝麻官', '8.4', 'top250', 'https://movie.douban.com/subject/1297518/', '', '导演: 王晶 Jing Wong   主演: 周星驰 Stephen Chow / 吴孟达 Man Tat Ng / 1994 / 中国香港 / 喜剧 古装\\n                     ', '2020-03-30 13:57:58');\r\n"
  },
  {
    "path": "mapreduce_hive/The_Man_of_Property.txt",
    "content": "﻿Preface \r\n“The Forsyte Saga” was the title originally destined for that part of it which is called “The Man of Property”; and to adopt it for the collected chronicles of the Forsyte family has indulged the Forsytean tenacity that is in all of us. The word Saga might be objected to on the ground that it connotes the heroic and that there is little heroism in these pages. But it is used with a suitable irony; and, after all, this long tale, though it may deal with folk in frock coats, furbelows, and a gilt-edged period, is not devoid of the essential heat of conflict. Discounting for the gigantic stature and blood-thirstiness of old days, as they have come down to us in fairy-tale and legend, the folk of the old Sagas were Forsytes, assuredly, in their possessive instincts, and as little proof against the inroads of beauty and passion as Swithin, Soames, or even Young Jolyon. And if heroic figures, in days that never were, seem to startle out from their surroundings in fashion unbecoming to a Forsyte of the Victorian era, we may be sure that tribal instinct was even then the prime force, and that “family” and the sense of home and property counted as they do to this day, for all the recent efforts to “talk them out.”\r\nSo many people have written and claimed that their families were the originals of the Forsytes that one has been almost encouraged to believe in the typicality of an imagined species. Manners change and modes evolve, and “Timothy’s on the Bayswater Road” becomes a nest of the unbelievable in all except essentials; we shall not look upon its like again, nor perhaps on such a one as James or Old Jolyon. And yet the figures of Insurance Societies and the utterances of Judges reassure us daily that our earthly paradise is still a rich preserve, where the wild raiders, Beauty and Passion, come stealing in, filching security from beneath our noses. As surely as a dog will bark at a brass band, so will the essential Soames in human nature ever rise up uneasily against the dissolution which hovers round the folds of ownership.\r\n“Let the dead Past bury its dead” would be a better saying if the Past ever died. The persistence of the Past is one of those tragi-comic blessings which each new age denies, coming cocksure on to the stage to mouth its claim to a perfect novelty.\r\nBut no Age is so new as that! Human Nature, under its changing pretensions and clothes, is and ever will be very much of a Forsyte, and might, after all, be a much worse animal.\r\nLooking back on the Victorian era, whose ripeness, decline, and ‘fall-of’ is in some sort pictured in “The Forsyte Saga,” we see now that we have but jumped out of a frying-pan into a fire. It would be difficult to substantiate a claim that the case of England was better in 1913 than it was in 1886, when the Forsytes assembled at Old Jolyon’s to celebrate the engagement of June to Philip Bosinney. And in 1920, when again the clan gathered to bless the marriage of Fleur with Michael Mont, the state of England is as surely too molten and bankrupt as in the eighties it was too congealed and low-percented. If these chronicles had been a really scientific study of transition one would have dwelt probably on such factors as the invention of bicycle, motor-car, and flying-machine; the arrival of a cheap Press; the decline of country life and increase of the towns; the birth of the Cinema. Men are, in fact, quite unable to control their own inventions; they at best develop adaptability to the new conditions those inventions create.\r\nBut this long tale is no scientific study of a period; it is rather an intimate incarnation of the disturbance that Beauty effects in the lives of men.\r\nThe figure of Irene, never, as the reader may possibly have observed, present, except through the senses of other characters, is a concretion of disturbing Beauty impinging on a possessive world.\r\nOne has noticed that readers, as they wade on through the salt waters of the Saga, are inclined more and more to pity Soames, and to think that in doing so they are in revolt against the mood of his creator. Far from it! He, too, pities Soames, the tragedy of whose life is the very simple, uncontrollable tragedy of being unlovable, without quite a thick enough skin to be thoroughly unconscious of the fact. Not even Fleur loves Soames as he feels he ought to be loved. But in pitying Soames, readers incline, perhaps, to animus against Irene: After all, they think, he wasn’t a bad fellow, it wasn’t his fault; she ought to have forgiven him, and so on!\r\nAnd, taking sides, they lose perception of the simple truth, which underlies the whole story, that where sex attraction is utterly and definitely lacking in one partner to a union, no amount of pity, or reason, or duty, or what not, can overcome a repulsion implicit in Nature. Whether it ought to, or no, is beside the point; because in fact it never does. And where Irene seems hard and cruel, as in the Bois de Boulogne, or the Goupenor Gallery, she is but wisely realistic — knowing that the least concession is the inch which precedes the impossible, the repulsive ell.\r\nA criticism one might pass on the last phase of the Saga is the complaint that Irene and Jolyon those rebels against property — claim spiritual property in their son Jon. But it would be hypercriticism, as the tale is told. No father and mother could have let the boy marry Fleur without knowledge of the facts; and the facts determine Jon, not the persuasion of his parents. Moreover, Jolyon’s persuasion is not on his own account, but on Irene’s, and Irene’s persuasion becomes a reiterated: “Don’t think of me, think of yourself!” That Jon, knowing the facts, can realise his mother’s feelings, will hardly with justice be held proof that she is, after all, a Forsyte.\r\nBut though the impingement of Beauty and the claims of Freedom on a possessive world are the main prepossessions of the Forsyte Saga, it cannot be absolved from the charge of embalming the upper-middle class. As the old Egyptians placed around their mummies the necessaries of a future existence, so I have endeavoured to lay beside the, figures of Aunts Ann and Juley and Hester, of Timothy and Swithin, of Old Jolyon and James, and of their sons, that which shall guarantee them a little life here-after, a little balm in the hurried Gilead of a dissolving “Progress.”\r\nIf the upper-middle class, with other classes, is destined to “move on” into amorphism, here, pickled in these pages, it lies under glass for strollers in the wide and ill-arranged museum of Letters. Here it rests, preserved in its own juice: The Sense of Property.\r\n1922.\r\n“. . . . . . . . You will answer The slaves are ours . . . . .”\r\n— Merchant of Venice.\r\nTO EDWARD GARNETT\r\nPart I  Chapter 1  ‘At Home’ at Old Jolyon’s\r\nThose privileged to be present at a family festival of the Forsytes have seen that charming and instructive sight — an upper middle-class family in full plumage. But whosoever of these favoured persons has possessed the gift of psychological analysis (a talent without monetary value and properly ignored by the Forsytes), has witnessed a spectacle, not only delightful in itself, but illustrative of an obscure human problem. In plainer words, he has gleaned from a gathering of this family — no branch of which had a liking for the other, between no three members of whom existed anything worthy of the name of sympathy — evidence of that mysterious concrete tenacity which renders a family so formidable a unit of society, so clear a reproduction of society in miniature. He has been admitted to a vision of the dim roads of social progress, has understood something of patriarchal life, of the swarmings of savage hordes, of the rise and fall of nations. He is like one who, having watched a tree grow from its planting — a paragon of tenacity, insulation, and success, amidst the deaths of a hundred other plants less fibrous, sappy, and persistent — one day will see it flourishing with bland, full foliage, in an almost repugnant prosperity, at the summit of its efflorescence.\r\nOn June 15, eighteen eighty-six, about four of the afternoon, the observer who chanced to be present at the house of old Jolyon Forsyte in Stanhope Gate, might have seen the highest efflorescence of the Forsytes.\r\nThis was the occasion of an ‘at home’ to celebrate the engagement of Miss June Forsyte, old Jolyon’s granddaughter, to Mr. Philip Bosinney. In the bravery of light gloves, buff waistcoats, feathers and frocks, the family were present, even Aunt Ann, who now but seldom left the corner of her brother Timothy’s green drawing-room, where, under the aegis of a plume of dyed pampas grass in a light blue vase, she sat all day reading and knitting, surrounded by the effigies of three generations of Forsytes. Even Aunt Ann was there; her inflexible back, and the dignity of her calm old face personifying the rigid possessiveness of the family idea.\r\nWhen a Forsyte was engaged, married, or born, the Forsytes were present; when a Forsyte died — but no Forsyte had as yet died; they did not die; death being contrary to their principles, they took precautions against it, the instinctive precautions of highly vitalized persons who resent encroachments on their property.\r\nAbout the Forsytes mingling that day with the crowd of other guests, there was a more than ordinarily groomed look, an alert, inquisitive assurance, a brilliant respectability, as though they were attired in defiance of something. The habitual sniff on the face of Soames Forsyte had spread through their ranks; they were on their guard.\r\nThe subconscious offensiveness of their attitude has constituted old Jolyon’s ‘home’ the psychological moment of the family history, made it the prelude of their drama.\r\nThe Forsytes were resentful of something, not individually, but as a family; this resentment expressed itself in an added perfection of raiment, an exuberance of family cordiality, an exaggeration of family importance, and — the sniff. Danger — so indispensable in bringing out the fundamental quality of any society, group, or individual — was what the Forsytes scented; the premonition of danger put a burnish on their armour. For the first time, as a family, they appeared to have an instinct of being in contact, with some strange and unsafe thing.\r\nOver against the piano a man of bulk and stature was wearing two waistcoats on his wide chest, two waistcoats and a ruby pin, instead of the single satin waistcoat and diamond pin of more usual occasions, and his shaven, square, old face, the colour of pale leather, with pale eyes, had its most dignified look, above his satin stock. This was Swithin Forsyte. Close to the window, where he could get more than his fair share of fresh air, the other twin, James — the fat and the lean of it, old Jolyon called these brothers — like the bulky Swithin, over six feet in height, but very lean, as though destined from his birth to strike a balance and maintain an average, brooded over the scene with his permanent stoop; his grey eyes had an air of fixed absorption in some secret worry, broken at intervals by a rapid, shifting scrutiny of surrounding facts; his cheeks, thinned by two parallel folds, and a long, clean-shaven upper lip, were framed within Dundreary whiskers. In his hands he turned and turned a piece of china. Not far off, listening to a lady in brown, his only son Soames, pale and well-shaved, dark-haired, rather bald, had poked his chin up sideways, carrying his nose with that aforesaid appearance of ‘sniff,’ as though despising an egg which he knew he could not digest. Behind him his cousin, the tall George, son of the fifth Forsyte, Roger, had a Quilpish look on his fleshy face, pondering one of his sardonic jests. Something inherent to the occasion had affected them all.\r\nSeated in a row close to one another were three ladies — Aunts Ann, Hester (the two Forsyte maids), and Juley (short for Julia), who not in first youth had so far forgotten herself as to marry Septimus Small, a man of poor constitution. She had survived him for many years. With her elder and younger sister she lived now in the house of Timothy, her sixth and youngest brother, on the Bayswater Road. Each of these ladies held fans in their hands, and each with some touch of colour, some emphatic feather or brooch, testified to the solemnity of the opportunity.\r\nIn the centre of the room, under the chandelier, as became a host, stood the head of the family, old Jolyon himself. Eighty years of age, with his fine, white hair, his dome-like forehead, his little, dark grey eyes, and an immense white moustache, which drooped and spread below the level of his strong jaw, he had a patriarchal look, and in spite of lean cheeks and hollows at his temples, seemed master of perennial youth. He held himself extremely upright, and his shrewd, steady eyes had lost none of their clear shining. Thus he gave an impression of superiority to the doubts and dislikes of smaller men. Having had his own way for innumerable years, he had earned a prescriptive right to it. It would never have occurred to old Jolyon that it was necessary to wear a look of doubt or of defiance.\r\nBetween him and the four other brothers who were present, James, Swithin, Nicholas, and Roger, there was much difference, much similarity. In turn, each of these four brothers was very different from the other, yet they, too, were alike.\r\nThrough the varying features and expression of those five faces could be marked a certain steadfastness of chin, underlying surface distinctions, marking a racial stamp, too prehistoric to trace, too remote and permanent to discuss — the very hall-mark and guarantee of the family fortunes.\r\nAmong the younger generation, in the tall, bull-like George, in pallid strenuous Archibald, in young Nicholas with his sweet and tentative obstinacy, in the grave and foppishly determined Eustace, there was this same stamp — less meaningful perhaps, but unmistakable — a sign of something ineradicable in the family soul. At one time or another during the afternoon, all these faces, so dissimilar and so alike, had worn an expression of distrust, the object of which was undoubtedly the man whose acquaintance they were thus assembled to make. Philip Bosinney was known to be a young man without fortune, but Forsyte girls had become engaged to such before, and had actually married them. It was not altogether for this reason, therefore, that the minds of the Forsytes misgave them. They could not have explained the origin of a misgiving obscured by the mist of family gossip. A story was undoubtedly told that he had paid his duty call to Aunts Ann, Juley, and Hester, in a soft grey hat — a soft grey hat, not even a new one — a dusty thing with a shapeless crown. “So, extraordinary, my dear — so odd,” Aunt Hester, passing through the little, dark hall (she was rather short-sighted), had tried to ‘shoo’ it off a chair, taking it for a strange, disreputable cat — Tommy had such disgraceful friends! She was disturbed when it did not move.\r\nLike an artist for ever seeking to discover the significant trifle which embodies the whole character of a scene, or place, or person, so those unconscious artists — the Forsytes had fastened by intuition on this hat; it was their significant trifle, the detail in which was embedded the meaning of the whole matter; for each had asked himself: “Come, now, should I have paid that visit in that hat?” and each had answered “No!” and some, with more imagination than others, had added: “It would never have come into my head!”\r\nGeorge, on hearing the story, grinned. The hat had obviously been worn as a practical joke! He himself was a connoisseur of such. “Very haughty!” he said, “the wild Buccaneer.”\r\nAnd this mot, the ‘Buccaneer,’ was bandied from mouth to mouth, till it became the favourite mode of alluding to Bosinney.\r\nHer aunts reproached June afterwards about the hat.\r\n“We don’t think you ought to let him, dear!” they had said.\r\nJune had answered in her imperious brisk way, like the little embodiment of will she was: “Oh! what does it matter? Phil never knows what he’s got on!”\r\nNo one had credited an answer so outrageous. A man not to know what he had on? No, no! What indeed was this young man, who, in becoming engaged to June, old Jolyon’s acknowledged heiress, had done so well for himself? He was an architect, not in itself a sufficient reason for wearing such a hat. None of the Forsytes happened to be architects, but one of them knew two architects who would never have worn such a hat upon a call of ceremony in the London season.\r\nDangerous — ah, dangerous! June, of course, had not seen this, but, though not yet nineteen, she was notorious. Had she not said to Mrs. Soames — who was always so beautifully dressed — that feathers were vulgar? Mrs. Soames had actually given up wearing feathers, so dreadfully downright was dear June!\r\nThese misgivings, this disapproval, and perfectly genuine distrust, did not prevent the Forsytes from gathering to old Jolyon’s invitation. An ‘At Home’ at Stanhope Gate was a great rarity; none had been held for twelve years, not indeed, since old Mrs. Jolyon had died.\r\nNever had there been so full an assembly, for, mysteriously united in spite of all their differences, they had taken arms against a common peril. Like cattle when a dog comes into the field, they stood head to head and shoulder to shoulder, prepared to run upon and trample the invader to death. They had come, too, no doubt, to get some notion of what sort of presents they would ultimately be expected to give; for though the question of wedding gifts was usually graduated in this way: ‘What are you givin’? Nicholas is givin’ spoons!’— so very much depended on the bridegroom. If he were sleek, well-brushed, prosperous-looking, it was more necessary to give him nice things; he would expect them. In the end each gave exactly what was right and proper, by a species of family adjustment arrived at as prices are arrived at on the Stock Exchange — the exact niceties being regulated at Timothy’s commodious, red-brick residence in Bayswater, overlooking the Park, where dwelt Aunts Ann, Juley, and Hester.\r\nThe uneasiness of the Forsyte family has been justified by the simple mention of the hat. How impossible and wrong would it have been for any family, with the regard for appearances which should ever characterize the great upper middle-class, to feel otherwise than uneasy!\r\nThe author of the uneasiness stood talking to June by the further door; his curly hair had a rumpled appearance, as though he found what was going on around him unusual. He had an air, too, of having a joke all to himself. George, speaking aside to his brother, Eustace, said:\r\n“Looks as if he might make a bolt of it — the dashing Buccaneer!”\r\nThis ‘very singular-looking man,’ as Mrs. Small afterwards called him, was of medium height and strong build, with a pale, brown face, a dust-coloured moustache, very prominent cheek-bones, and hollow checks. His forehead sloped back towards the crown of his head, and bulged out in bumps over the eyes, like foreheads seen in the Lion-house at the Zoo. He had sherry-coloured eyes, disconcertingly inattentive at times. Old Jolyon’s coachman, after driving June and Bosinney to the theatre, had remarked to the butler:\r\n“I dunno what to make of ’im. Looks to me for all the world like an ‘alf-tame leopard.” And every now and then a Forsyte would come up, sidle round, and take a look at him.\r\nJune stood in front, fending off this idle curiosity — a little bit of a thing, as somebody once said, ‘all hair and spirit,’ with fearless blue eyes, a firm jaw, and a bright colour, whose face and body seemed too slender for her crown of red-gold hair.\r\nA tall woman, with a beautiful figure, which some member of the family had once compared to a heathen goddess, stood looking at these two with a shadowy smile.\r\nHer hands, gloved in French grey, were crossed one over the other, her grave, charming face held to one side, and the eyes of all men near were fastened on it. Her figure swayed, so balanced that the very air seemed to set it moving. There was warmth, but little colour, in her cheeks; her large, dark eyes were soft.\r\nBut it was at her lips — asking a question, giving an answer, with that shadowy smile — that men looked; they were sensitive lips, sensuous and sweet, and through them seemed to come warmth and perfume like the warmth and perfume of a flower.\r\nThe engaged couple thus scrutinized were unconscious of this passive goddess. It was Bosinney who first noticed her, and asked her name.\r\nJune took her lover up to the woman with the beautiful figure.\r\n“Irene is my greatest chum,” she said: “Please be good friends, you two!”\r\nAt the little lady’s command they all three smiled; and while they were smiling, Soames Forsyte, silently appearing from behind the woman with the beautiful figure, who was his wife, said:\r\n“Ah! introduce me too!”\r\nHe was seldom, indeed, far from Irene’s side at public functions, and even when separated by the exigencies of social intercourse, could be seen following her about with his eyes, in which were strange expressions of watchfulness and longing.\r\nAt the window his father, James, was still scrutinizing the marks on the piece of china.\r\n“I wonder at Jolyon’s allowing this engagement,” he said to Aunt Ann. “They tell me there’s no chance of their getting married for years. This young Bosinney” (he made the word a dactyl in opposition to general usage of a short o) “has got nothing. When Winifred married Dartie, I made him bring every penny into settlement — lucky thing, too — they’d ha’ had nothing by this time!”\r\nAunt Ann looked up from her velvet chair. Grey curls banded her forehead, curls that, unchanged for decades, had extinguished in the family all sense of time. She made no reply, for she rarely spoke, husbanding her aged voice; but to James, uneasy of conscience, her look was as good as an answer.\r\n“Well,” he said, “I couldn’t help Irene’s having no money. Soames was in such a hurry; he got quite thin dancing attendance on her.”\r\nPutting the bowl pettishly down on the piano, he let his eyes wander to the group by the door.\r\n“It’s my opinion,” he said unexpectedly, “that it’s just as well as it is.”\r\nAunt Ann did not ask him to explain this strange utterance. She knew what he was thinking. If Irene had no money she would not be so foolish as to do anything wrong; for they said — they said — she had been asking for a separate room; but, of course, Soames had not. . . .\r\nJames interrupted her reverie:\r\n“But where,” he asked, “was Timothy? Hadn’t he come with them?”\r\nThrough Aunt Ann’s compressed lips a tender smile forced its way:\r\n“No, he didn’t think it wise, with so much of this diphtheria about; and he so liable to take things.”\r\nJames answered:\r\n“Well, HE takes good care of himself. I can’t afford to take the care of myself that he does.”\r\nNor was it easy to say which, of admiration, envy, or contempt, was dominant in that remark.\r\nTimothy, indeed, was seldom seen. The baby of the family, a publisher by profession, he had some years before, when business was at full tide, scented out the stagnation which, indeed, had not yet come, but which ultimately, as all agreed, was bound to set in, and, selling his share in a firm engaged mainly in the production of religious books, had invested the quite conspicuous proceeds in three per cent. consols. By this act he had at once assumed an isolated position, no other Forsyte being content with less than four per cent. for his money; and this isolation had slowly and surely undermined a spirit perhaps better than commonly endowed with caution. He had become almost a myth — a kind of incarnation of security haunting the background of the Forsyte universe. He had never committed the imprudence of marrying, or encumbering himself in any way with children.\r\nJames resumed, tapping the piece of china:\r\n“This isn’t real old Worcester. I s’pose Jolyon’s told you something about the young man. From all I can learn, he’s got no business, no income, and no connection worth speaking of; but then, I know nothing — nobody tells me anything.”\r\nAunt Ann shook her head. Over her square-chinned, aquiline old face a trembling passed; the spidery fingers of her hands pressed against each other and interlaced, as though she were subtly recharging her will.\r\nThe eldest by some years of all the Forsytes, she held a peculiar position amongst them. Opportunists and egotists one and all — though not, indeed, more so than their neighbours — they quailed before her incorruptible figure, and, when opportunities were too strong, what could they do but avoid her!\r\nTwisting his long, thin legs, James went on:\r\n“Jolyon, he will have his own way. He’s got no children”— and stopped, recollecting the continued existence of old Jolyon’s son, young Jolyon, June’s father, who had made such a mess of it, and done for himself by deserting his wife and child and running away with that foreign governess. “Well,” he resumed hastily, “if he likes to do these things, I s’pose he can afford to. Now, what’s he going to give her? I s’pose he’ll give her a thousand a year; he’s got nobody else to leave his money to.”\r\nHe stretched out his hand to meet that of a dapper, clean-shaven man, with hardly a hair on his head, a long, broken nose, full lips, and cold grey eyes under rectangular brows.\r\n“Well, Nick,” he muttered, “how are you?”\r\nNicholas Forsyte, with his bird-like rapidity and the look of a preternaturally sage schoolboy (he had made a large fortune, quite legitimately, out of the companies of which he was a director), placed within that cold palm the tips of his still colder fingers and hastily withdrew them.\r\n“I’m bad,” he said, pouting —“been bad all the week; don’t sleep at night. The doctor can’t tell why. He’s a clever fellow, or I shouldn’t have him, but I get nothing out of him but bills.”\r\n“Doctors!” said James, coming down sharp on his words: “I’ve had all the doctors in London for one or another of us. There’s no satisfaction to be got out of them; they’ll tell you anything. There’s Swithin, now. What good have they done him? There he is; he’s bigger than ever; he’s enormous; they can’t get his weight down. Look at him!”\r\nSwithin Forsyte, tall, square, and broad, with a chest like a pouter pigeon’s in its plumage of bright waistcoats, came strutting towards them.\r\n“Er — how are you?” he said in his dandified way, aspirating the ‘h’ strongly (this difficult letter was almost absolutely safe in his keeping)—“how are you?”\r\nEach brother wore an air of aggravation as he looked at the other two, knowing by experience that they would try to eclipse his ailments.\r\n“We were just saying,” said James, “that you don’t get any thinner.”\r\nSwithin protruded his pale round eyes with the effort of hearing.\r\n“Thinner? I’m in good case,” he said, leaning a little forward, “not one of your thread-papers like you!”\r\nBut, afraid of losing the expansion of his chest, he leaned back again into a state of immobility, for he prized nothing so highly as a distinguished appearance.\r\nAunt Ann turned her old eyes from one to the other. Indulgent and severe was her look. In turn the three brothers looked at Ann. She was getting shaky. Wonderful woman! Eighty-six if a day; might live another ten years, and had never been strong. Swithin and James, the twins, were only seventy-five, Nicholas a mere baby of seventy or so. All were strong, and the inference was comforting. Of all forms of property their respective healths naturally concerned them most.\r\n“I’m very well in myself,” proceeded James, “but my nerves are out of order. The least thing worries me to death. I shall have to go to Bath.”\r\n“Bath!” said Nicholas. “I’ve tried Harrogate. That’s no good. What I want is sea air. There’s nothing like Yarmouth. Now, when I go there I sleep. . . . ”\r\n“My liver’s very bad,” interrupted Swithin slowly. “Dreadful pain here;” and he placed his hand on his right side.\r\n“Want of exercise,” muttered James, his eyes on the china. He quickly added: “I get a pain there, too.”\r\nSwithin reddened, a resemblance to a turkey-cock coming upon his old face.\r\n“Exercise!” he said. “I take plenty: I never use the lift at the Club.”\r\n“I didn’t know,” James hurried out. “I know nothing about anybody; nobody tells me anything. . . . ”\r\nSwithin fixed him with a stare:\r\n“What do you do for a pain there?”\r\nJames brightened.\r\n“I take a compound. . . . ”\r\n“How are you, uncle?”\r\nJune stood before him, her resolute small face raised from her little height to his great height, and her hand outheld.\r\nThe brightness faded from James’s visage.\r\n“How are you?” he said, brooding over her. “So you’re going to Wales to-morrow to visit your young man’s aunts? You’ll have a lot of rain there. This isn’t real old Worcester.” He tapped the bowl. “Now, that set I gave your mother when she married was the genuine thing.”\r\nJune shook hands one by one with her three great-uncles, and turned to Aunt Ann. A very sweet look had come into the old lady’s face, she kissed the girl’s check with trembling fervour.\r\n“Well, my dear,” she said, “and so you’re going for a whole month!”\r\nThe girl passed on, and Aunt Ann looked after her slim little figure. The old lady’s round, steel grey eyes, over which a film like a bird’s was beginning to come, followed her wistfully amongst the bustling crowd, for people were beginning to say good-bye; and her finger-tips, pressing and pressing against each other, were busy again with the recharging of her will against that inevitable ultimate departure of her own.\r\n‘Yes,’ she thought, ‘everybody’s been most kind; quite a lot of people come to congratulate her. She ought to be very happy.’ Amongst the throng of people by the door, the well-dressed throng drawn from the families of lawyers and doctors, from the Stock Exchange, and all the innumerable avocations of the upper-middle class — there were only some twenty percent of Forsytes; but to Aunt Ann they seemed all Forsytes — and certainly there was not much difference — she saw only her own flesh and blood. It was her world, this family, and she knew no other, had never perhaps known any other. All their little secrets, illnesses, engagements, and marriages, how they were getting on, and whether they were making money — all this was her property, her delight, her life; beyond this only a vague, shadowy mist of facts and persons of no real significance. This it was that she would have to lay down when it came to her turn to die; this which gave to her that importance, that secret self-importance, without which none of us can bear to live; and to this she clung wistfully, with a greed that grew each day! If life were slipping away from her, this she would retain to the end.\r\nShe thought of June’s father, young Jolyon, who had run away with that foreign girl. And what a sad blow to his father and to them all. Such a promising young fellow! A sad blow, though there had been no public scandal, most fortunately, Jo’s wife seeking for no divorce! A long time ago! And when June’s mother died, six years ago, Jo had married that woman, and they had two children now, so she had heard. Still, he had forfeited his right to be there, had cheated her of the complete fulfilment of her family pride, deprived her of the rightful pleasure of seeing and kissing him of whom she had been so proud, such a promising young fellow! The thought rankled with the bitterness of a long-inflicted injury in her tenacious old heart. A little water stood in her eyes. With a handkerchief of the finest lawn she wiped them stealthily.\r\n“Well, Aunt Ann?” said a voice behind.\r\nSoames Forsyte, flat-shouldered, clean-shaven, flat-cheeked, flat-waisted, yet with something round and secret about his whole appearance, looked downwards and aslant at Aunt Ann, as though trying to see through the side of his own nose.\r\n“And what do you think of the engagement?” he asked.\r\nAunt Ann’s eyes rested on him proudly; of all the nephews since young Jolyon’s departure from the family nest, he was now her favourite, for she recognised in him a sure trustee of the family soul that must so soon slip beyond her keeping.\r\n“Very nice for the young man,” she said; “and he’s a good-looking young fellow; but I doubt if he’s quite the right lover for dear June.”\r\nSoames touched the edge of a gold-lacquered lustre.\r\n“She’ll tame him,” he said, stealthily wetting his finger and rubbing it on the knobby bulbs. “That’s genuine old lacquer; you can’t get it nowadays. It’d do well in a sale at Jobson’s.” He spoke with relish, as though he felt that he was cheering up his old aunt. It was seldom he was so confidential. “I wouldn’t mind having it myself,” he added; “you can always get your price for old lacquer.”\r\n“You’re so clever with all those things,” said Aunt Ann. “And how is dear Irene?”\r\nSoames’s smile died.\r\n“Pretty well,” he said. “Complains she can’t sleep; she sleeps a great deal better than I do,” and he looked at his wife, who was talking to Bosinney by the door.\r\nAunt Ann sighed.\r\n“Perhaps,” she said, “it will be just as well for her not to see so much of June. She’s such a decided character, dear June!”\r\nSoames flushed; his flushes passed rapidly over his flat cheeks and centered between his eyes, where they remained, the stamp of disturbing thoughts.\r\n“I don’t know what she sees in that little flibbertigibbet,” he burst out, but noticing that they were no longer alone, he turned and again began examining the lustre.\r\n“They tell me Jolyon’s bought another house,” said his father’s voice close by; “he must have a lot of money — he must have more money than he knows what to do with! Montpellier Square, they say; close to Soames! They never told me, Irene never tells me anything!”\r\n“Capital position, not two minutes from me,” said the voice of Swithin, “and from my rooms I can drive to the Club in eight.”\r\nThe position of their houses was of vital importance to the Forsytes, nor was this remarkable, since the whole spirit of their success was embodied therein.\r\nTheir father, of farming stock, had come from Dorsetshire near the beginning of the century.\r\n‘Superior Dosset Forsyte, as he was called by his intimates, had been a stonemason by trade, and risen to the position of a master-builder.\r\nTowards the end of his life he moved to London, where, building on until he died, he was buried at Highgate. He left over thirty thousand pounds between his ten children. Old Jolyon alluded to him, if at all, as ‘A hard, thick sort of man; not much refinement about him.’ The second generation of Forsytes felt indeed that he was not greatly to their credit. The only aristocratic trait they could find in his character was a habit of drinking Madeira.\r\nAunt Hester, an authority on family history, described him thus: “I don’t recollect that he ever did anything; at least, not in my time. He was er — an owner of houses, my dear. His hair about your Uncle Swithin’s colour; rather a square build. Tall? No — not very tall” (he had been five feet five, with a mottled face); “a fresh-coloured man. I remember he used to drink Madeira; but ask your Aunt Ann. What was his father? He — er — had to do with the land down in Dorsetshire, by the sea.”\r\nJames once went down to see for himself what sort of place this was that they had come from. He found two old farms, with a cart track rutted into the pink earth, leading down to a mill by the beach; a little grey church with a buttressed outer wall, and a smaller and greyer chapel. The stream which worked the mill came bubbling down in a dozen rivulets, and pigs were hunting round that estuary. A haze hovered over the prospect. Down this hollow, with their feet deep in the mud and their faces towards the sea, it appeared that the primeval Forsytes had been content to walk Sunday after Sunday for hundreds of years.\r\nWhether or no James had cherished hopes of an inheritance, or of something rather distinguished to be found down there, he came back to town in a poor way, and went about with a pathetic attempt at making the best of a bad job.\r\n“There’s very little to be had out of that,” he said; “regular country little place, old as the hills. . . . ”\r\nIts age was felt to be a comfort. Old Jolyon, in whom a desperate honesty welled up at times, would allude to his ancestors as: “Yeomen — I suppose very small beer.” Yet he would repeat the word ‘yeomen’ as if it afforded him consolation.\r\nThey had all done so well for themselves, these Forsytes, that they were all what is called ‘of a certain position.’ They had shares in all sorts of things, not as yet — with the exception of Timothy — in consols, for they had no dread in life like that of 3 per cent. for their money. They collected pictures, too, and were supporters of such charitable institutions as might be beneficial to their sick domestics. From their father, the builder, they inherited a talent for bricks and mortar. Originally, perhaps, members of some primitive sect, they were now in the natural course of things members of the Church of England, and caused their wives and children to attend with some regularity the more fashionable churches of the Metropolis. To have doubted their Christianity would have caused them both pain and surprise. Some of them paid for pews, thus expressing in the most practical form their sympathy with the teachings of Christ.\r\nTheir residences, placed at stated intervals round the park, watched like sentinels, lest the fair heart of this London, where their desires were fixed, should slip from their clutches, and leave them lower in their own estimations.\r\nThere was old Jolyon in Stanhope Place; the Jameses in Park Lane; Swithin in the lonely glory of orange and blue chambers in Hyde Park Mansions — he had never married, not he — the Soamses in their nest off Knightsbridge; the Rogers in Prince’s Gardens (Roger was that remarkable Forsyte who had conceived and carried out the notion of bringing up his four sons to a new profession. “Collect house property, nothing like it,” he would say; “I never did anything else”).\r\nThe Haymans again — Mrs. Hayman was the one married Forsyte sister — in a house high up on Campden Hill, shaped like a giraffe, and so tall that it gave the observer a crick in the neck; the Nicholases in Ladbroke Grove, a spacious abode and a great bargain; and last, but not least, Timothy’s on the Bayswater Road, where Ann, and Juley, and Hester, lived under his protection.\r\nBut all this time James was musing, and now he inquired of his host and brother what he had given for that house in Montpellier Square. He himself had had his eye on a house there for the last two years, but they wanted such a price.\r\nOld Jolyon recounted the details of his purchase.\r\n“Twenty-two years to run?” repeated James; “The very house I was after — you’ve given too much for it!”\r\nOld Jolyon frowned.\r\n“It’s not that I want it,” said James hastily; it wouldn’t suit my purpose at that price. Soames knows the house, well — he’ll tell you it’s too dear — his opinion’s worth having.”\r\n“I don’t,” said old Jolyon, “care a fig for his opinion.”\r\n“Well,” murmured James, “you will have your own way — it’s a good opinion. Good-bye! We’re going to drive down to Hurlingham. They tell me June’s going to Wales. You’ll be lonely tomorrow. What’ll you do with yourself? You’d better come and dine with us!”\r\nOld Jolyon refused. He went down to the front door and saw them into their barouche, and twinkled at them, having already forgotten his spleen — Mrs. James facing the horses, tall and majestic with auburn hair; on her left, Irene — the two husbands, father and son, sitting forward, as though they expected something, opposite their wives. Bobbing and bounding upon the spring cushions, silent, swaying to each motion of their chariot, old Jolyon watched them drive away under the sunlight.\r\nDuring the drive the silence was broken by Mrs. James.\r\n“Did you ever see such a collection of rumty-too people?”\r\nSoames, glancing at her beneath his eyelids, nodded, and he saw Irene steal at him one of her unfathomable looks. It is likely enough that each branch of the Forsyte family made that remark as they drove away from old Jolyon’s ‘At Home!’\r\nAmongst the last of the departing guests the fourth and fifth brothers, Nicholas and Roger, walked away together, directing their steps alongside Hyde Park towards the Praed Street Station of the Underground. Like all other Forsytes of a certain age they kept carriages of their own, and never took cabs if by any means they could avoid it.\r\nThe day was bright, the trees of the Park in the full beauty of mid-June foliage; the brothers did not seem to notice phenomena, which contributed, nevertheless, to the jauntiness of promenade and conversation.\r\n“Yes,” said Roger, “she’s a good-lookin’ woman, that wife of Soames’s. I’m told they don’t get on.”\r\nThis brother had a high forehead, and the freshest colour of any of the Forsytes; his light grey eyes measured the street frontage of the houses by the way, and now and then he would level his, umbrella and take a ‘lunar,’ as he expressed it, of the varying heights.\r\n“She’d no money,” replied Nicholas.\r\nHe himself had married a good deal of money, of which, it being then the golden age before the Married Women’s Property Act, he had mercifully been enabled to make a successful use.\r\n“What was her father?”\r\n“Heron was his name, a Professor, so they tell me.”\r\nRoger shook his head.\r\n“There’s no money in that,” he said.\r\n“They say her mother’s father was cement.”\r\nRoger’s face brightened.\r\n“But he went bankrupt,” went on Nicholas.\r\n“Ah!” exclaimed Roger, “Soames will have trouble with her; you mark my words, he’ll have trouble — she’s got a foreign look.”\r\nNicholas licked his lips.\r\n“She’s a pretty woman,” and he waved aside a crossing-sweeper.\r\n“How did he get hold of her?” asked Roger presently. “She must cost him a pretty penny in dress!”\r\n“Ann tells me,” replied Nicholas, “he was half-cracked about her. She refused him five times. James, he’s nervous about it, I can see.”\r\n“Ah!” said Roger again; “I’m sorry for James; he had trouble with Dartie.” His pleasant colour was heightened by exercise, he swung his umbrella to the level of his eye more frequently than ever. Nicholas’s face also wore a pleasant look.\r\n“Too pale for me,” he said, “but her figures capital!”\r\nRoger made no reply.\r\n“I call her distinguished-looking,” he said at last — it was the highest praise in the Forsyte vocabulary. “That young Bosinney will never do any good for himself. They say at Burkitt’s he’s one of these artistic chaps — got an idea of improving English architecture; there’s no money in that! I should like to hear what Timothy would say to it.”\r\nThey entered the station.\r\n“What class are you going? I go second.”\r\n“No second for me,” said Nicholas; —“you never know what you may catch.”\r\nHe took a first-class ticket to Notting Hill Gate; Roger a second to South Kensington. The train coming in a minute later, the two brothers parted and entered their respective compartments. Each felt aggrieved that the other had not modified his habits to secure his society a little longer; but as Roger voiced it in his thoughts:\r\n‘Always a stubborn beggar, Nick!’\r\nAnd as Nicholas expressed it to himself:\r\n‘Cantankerous chap Roger — always was!’\r\nThere was little sentimentality about the Forsytes. In that great London, which they had conquered and become merged in, what time had they to be sentimental?\r\nChapter 2  Old Jolyon Goes to the Opera\r\nAt five o’clock the following day old Jolyon sat alone, a cigar between his lips, and on a table by his side a cup of tea. He was tired, and before he had finished his cigar he fell asleep. A fly settled on his hair, his breathing sounded heavy in the drowsy silence, his upper lip under the white moustache puffed in and out. From between the fingers of his veined and wrinkled hand the cigar, dropping on the empty hearth, burned itself out.\r\nThe gloomy little study, with windows of stained glass to exclude the view, was full of dark green velvet and heavily-carved mahogany — a suite of which old Jolyon was wont to say: ‘Shouldn’t wonder if it made a big price some day!’\r\nIt was pleasant to think that in the after life he could get more for things than he had given.\r\nIn the rich brown atmosphere peculiar to back rooms in the mansion of a Forsyte, the Rembrandtesque effect of his great head, with its white hair, against the cushion of his high-backed seat, was spoiled by the moustache, which imparted a somewhat military look to his face. An old clock that had been with him since before his marriage forty years ago kept with its ticking a jealous record of the seconds slipping away forever from its old master.\r\nHe had never cared for this room, hardly going into it from one year’s end to another, except to take cigars from the Japanese cabinet in the corner, and the room now had its revenge.\r\nHis temples, curving like thatches over the hollows beneath, his cheek-bones and chin, all were sharpened in his sleep, and there had come upon his face the confession that he was an old man.\r\nHe woke. June had gone! James had said he would be lonely. James had always been a poor thing. He recollected with satisfaction that he had bought that house over James’s head.\r\nServe him right for sticking at the price; the only thing the fellow thought of was money. Had he given too much, though? It wanted a lot of doing to — He dared say he would want all his money before he had done with this affair of June’s. He ought never to have allowed the engagement. She had met this Bosinney at the house of Baynes, Baynes and Bildeboy, the architects. He believed that Baynes, whom he knew — a bit of an old woman — was the young man’s uncle by marriage. After that she’d been always running after him; and when she took a thing into her head there was no stopping her. She was continually taking up with ‘lame ducks’ of one sort or another. This fellow had no money, but she must needs become engaged to him — a harumscarum, unpractical chap, who would get himself into no end of difficulties.\r\nShe had come to him one day in her slap-dash way and told him; and, as if it were any consolation, she had added:\r\n“He’s so splendid; he’s often lived on cocoa for a week!”\r\n“And he wants you to live on cocoa too?”\r\n“Oh no; he is getting into the swim now.”\r\nOld Jolyon had taken his cigar from under his white moustaches, stained by coffee at the edge, and looked at her, that little slip of a thing who had got such a grip of his heart. He knew more about ‘swims’ than his granddaughter. But she, having clasped her hands on his knees, rubbed her chin against him, making a sound like a purring cat. And, knocking the ash off his cigar, he had exploded in nervous desperation:\r\n“You’re all alike: you won’t be satisfied till you’ve got what you want. If you must come to grief, you must; I wash my hands of it.”\r\nSo, he had washed his hands of it, making the condition that they should not marry until Bosinney had at least four hundred a year.\r\n“I shan’t be able to give you very much,” he had said, a formula to which June was not unaccustomed. “Perhaps this What’s-his-name will provide the cocoa.”\r\nHe had hardly seen anything of her since it began. A bad business! He had no notion of giving her a lot of money to enable a fellow he knew nothing about to live on in idleness. He had seen that sort of thing before; no good ever came of it. Worst of all, he had no hope of shaking her resolution; she was as obstinate as a mule, always had been from a child. He didn’t see where it was to end. They must cut their coat according to their cloth. He would not give way till he saw young Bosinney with an income of his own. That June would have trouble with the fellow was as plain as a pikestaff; he had no more idea of money than a cow. As to this rushing down to Wales to visit the young man’s aunts, he fully expected they were old cats.\r\nAnd, motionless, old Jolyon stared at the wall; but for his open eyes, he might have been asleep. . . . The idea of supposing that young cub Soames could give him advice! He had always been a cub, with his nose in the air! He would be setting up as a man of property next, with a place in the country! A man of property! H’mph! Like his father, he was always nosing out bargains, a cold-blooded young beggar!\r\nHe rose, and, going to the cabinet, began methodically stocking his cigar-case from a bundle fresh in. They were not bad at the price, but you couldn’t get a good cigar, nowadays, nothing to hold a candle to those old Superfinos of Hanson and Bridger’s. That was a cigar!\r\nThe thought, like some stealing perfume, carried him back to those wonderful nights at Richmond when after dinner he sat smoking on the terrace of the Crown and Sceptre with Nicholas Treffry and Traquair and Jack Herring and Anthony Thornworthy. How good his cigars were then! Poor old Nick! — dead, and Jack Herring — dead, and Traquair — dead of that wife of his, and Thornworthy — awfully shaky (no wonder, with his appetite).\r\nOf all the company of those days he himself alone seemed left, except Swithin, of course, and he so outrageously big there was no doing anything with him.\r\nDifficult to believe it was so long ago; he felt young still! Of all his thoughts, as he stood there counting his cigars, this was the most poignant, the most bitter. With his white head and his loneliness he had remained young and green at heart. And those Sunday afternoons on Hampstead Heath, when young Jolyon and he went for a stretch along the Spaniard’s Road to Highgate, to Child’s Hill, and back over the Heath again to dine at Jack Straw’s Castle — how delicious his cigars were then! And such weather! There was no weather now.\r\nWhen June was a toddler of five, and every other Sunday he took her to the Zoo, away from the society of those two good women, her mother and her grandmother, and at the top of the bear den baited his umbrella with buns for her favourite bears, how sweet his cigars were then!\r\nCigars! He had not even succeeded in out-living his palate — the famous palate that in the fifties men swore by, and speaking of him, said: “Forsyte’s the best palate in London!” The palate that in a sense had made his fortune — the fortune of the celebrated tea men, Forsyte and Treffry, whose tea, like no other man’s tea, had a romantic aroma, the charm of a quite singular genuineness. About the house of Forsyte and Treffry in the City had clung an air of enterprise and mystery, of special dealings in special ships, at special ports, with special Orientals.\r\nHe had worked at that business! Men did work in those days! these young pups hardly knew the meaning of the word. He had gone into every detail, known everything that went on, sometimes sat up all night over it. And he had always chosen his agents himself, prided himself on it. His eye for men, he used to say, had been the secret of his success, and the exercise of this masterful power of selection had been the only part of it all that he had really liked. Not a career for a man of his ability. Even now, when the business had been turned into a Limited Liability Company, and was declining (he had got out of his shares long ago), he felt a sharp chagrin in thinking of that time. How much better he might have done! He would have succeeded splendidly at the Bar! He had even thought of standing for Parliament. How often had not Nicholas Treffry said to him:\r\n“You could do anything, Jo, if you weren’t so d-damned careful of yourself!” Dear old Nick! Such a good fellow, but a racketty chap! The notorious Treffry! He had never taken any care of himself. So he was dead. Old Jolyon counted his cigars with a steady hand, and it came into his mind to wonder if perhaps he had been too careful of himself.\r\nHe put the cigar-case in the breast of his coat, buttoned it in, and walked up the long flights to his bedroom, leaning on one foot and the other, and helping himself by the bannister. The house was too big. After June was married, if she ever did marry this fellow, as he supposed she would, he would let it and go into rooms. What was the use of keeping half a dozen servants eating their heads off?\r\nThe butler came to the ring of his bell — a large man with a beard, a soft tread, and a peculiar capacity for silence. Old Jolyon told him to put his dress clothes out; he was going to dine at the Club.\r\nHow long had the carriage been back from taking Miss June to the station? Since two? Then let him come round at half-past six!\r\nThe Club which old Jolyon entered on the stroke of seven was one of those political institutions of the upper middle class which have seen better days. In spite of being talked about, perhaps in consequence of being talked about, it betrayed a disappointing vitality. People had grown tired of saying that the ‘Disunion’ was on its last legs. Old Jolyon would say it, too, yet disregarded the fact in a manner truly irritating to well-constituted Clubmen.\r\n“Why do you keep your name on?” Swithin often asked him with profound vexation. “Why don’t you join the ‘Polyglot’? You can’t get a wine like our Heidsieck under twenty shillin’ a bottle anywhere in London;” and, dropping his voice, he added: “There’s only five hundred dozen left. I drink it every night of my life.”\r\n“I’ll think of it,” old Jolyon would answer; but when he did think of it there was always the question of fifty guineas entrance fee, and it would take him four or five years to get in. He continued to think of it.\r\nHe was too old to be a Liberal, had long ceased to believe in the political doctrines of his Club, had even been known to allude to them as ‘wretched stuff,’ and it afforded him pleasure to continue a member in the teeth of principles so opposed to his own. He had always had a contempt for the place, having joined it many years ago when they refused to have him at the ‘Hotch Potch’ owing to his being ‘in trade.’ As if he were not as good as any of them! He naturally despised the Club that did take him. The members were a poor lot, many of them in the City — stockbrokers, solicitors, auctioneers — what not! Like most men of strong character but not too much originality, old Jolyon set small store by the class to which he belonged. Faithfully he followed their customs, social and otherwise, and secretly he thought them ‘a common lot.’\r\nYears and philosophy, of which he had his share, had dimmed the recollection of his defeat at the ‘Hotch Potch’; and now in his thoughts it was enshrined as the Queen of Clubs. He would have been a member all these years himself, but, owing to the slipshod way his proposer, Jack Herring, had gone to work, they had not known what they were doing in keeping him out. Why! they had taken his son Jo at once, and he believed the boy was still a member; he had received a letter dated from there eight years ago.\r\nHe had not been near the ‘Disunion’ for months, and the house had undergone the piebald decoration which people bestow on old houses and old ships when anxious to sell them.\r\n‘Beastly colour, the smoking-room!’ he thought. ‘The dining-room is good!’\r\nIts gloomy chocolate, picked out with light green, took his fancy.\r\nHe ordered dinner, and sat down in the very corner, at the very table perhaps! (things did not progress much at the ‘Disunion,’ a Club of almost Radical principles) at which he and young Jolyon used to sit twenty-five years ago, when he was taking the latter to Drury Lane, during his holidays.\r\nThe boy had loved the theatre, and old Jolyon recalled how he used to sit opposite, concealing his excitement under a careful but transparent nonchalance.\r\nHe ordered himself, too, the very dinner the boy had always chosen-soup, whitebait, cutlets, and a tart. Ah! if he were only opposite now!\r\nThe two had not met for fourteen years. And not for the first time during those fourteen years old Jolyon wondered whether he had been a little to blame in the matter of his son. An unfortunate love-affair with that precious flirt Danae Thornworthy (now Danae Pellew), Anthony Thornworthy’s daughter, had thrown him on the rebound into the arms of June’s mother. He ought perhaps to have put a spoke in the wheel of their marriage; they were too young; but after that experience of Jo’s susceptibility he had been only too anxious to see him married. And in four years the crash had come! To have approved his son’s conduct in that crash was, of course, impossible; reason and training — that combination of potent factors which stood for his principles — told him of this impossibility, and his heart cried out. The grim remorselessness of that business had no pity for hearts. There was June, the atom with flaming hair, who had climbed all over him, twined and twisted herself about him — about his heart that was made to be the plaything and beloved resort of tiny, helpless things. With characteristic insight he saw he must part with one or with the other; no half-measures could serve in such a situation. In that lay its tragedy. And the tiny, helpless thing prevailed. He would not run with the hare and hunt with the hounds, and so to his son he said good-bye.\r\nThat good-bye had lasted until now.\r\nHe had proposed to continue a reduced allowance to young Jolyon, but this had been refused, and perhaps that refusal had hurt him more than anything, for with it had gone the last outlet of his penned-in affection; and there had come such tangible and solid proof of rupture as only a transaction in property, a bestowal or refusal of such, could supply.\r\nHis dinner tasted flat. His pint of champagne was dry and bitter stuff, not like the Veuve Clicquots of old days.\r\nOver his cup of coffee, he bethought him that he would go to the opera. In the Times, therefore — he had a distrust of other papers — he read the announcement for the evening. It was ‘Fidelio.’\r\nMercifully not one of those new-fangled German pantomimes by that fellow Wagner.\r\nPutting on his ancient opera hat, which, with its brim flattened by use, and huge capacity, looked like an emblem of greater days, and, pulling out an old pair of very thin lavender kid gloves smelling strongly of Russia leather, from habitual proximity to the cigar-case in the pocket of his overcoat, he stepped into a hansom.\r\nThe cab rattled gaily along the streets, and old Jolyon was struck by their unwonted animation.\r\n‘The hotels must be doing a tremendous business,’ he thought. A few years ago there had been none of these big hotels. He made a satisfactory reflection on some property he had in the neighbourhood. It must be going up in value by leaps and bounds! What traffic!\r\nBut from that he began indulging in one of those strange impersonal speculations, so uncharacteristic of a Forsyte, wherein lay, in part, the secret of his supremacy amongst them. What atoms men were, and what a lot of them! And what would become of them all?\r\nHe stumbled as he got out of the cab, gave the man his exact fare, walked up to the ticket office to take his stall, and stood there with his purse in his hand — he always carried his money in a purse, never having approved of that habit of carrying it loosely in the pockets, as so many young men did nowadays. The official leaned out, like an old dog from a kennel.\r\n“Why,” he said in a surprised voice, “it’s Mr. Jolyon Forsyte! So it is! Haven’t seen you, sir, for years. Dear me! Times aren’t what they were. Why! you and your brother, and that auctioneer — Mr. Traquair, and Mr. Nicholas Treffry — you used to have six or seven stalls here regular every season. And how are you, sir? We don’t get younger!”\r\nThe colour in old Jolyon’s eyes deepened; he paid his guinea. They had not forgotten him. He marched in, to the sounds of the overture, like an old war-horse to battle.\r\nFolding his opera hat, he sat down, drew out his lavender gloves in the old way, and took up his glasses for a long look round the house. Dropping them at last on his folded hat, he fixed his eyes on the curtain. More poignantly than ever he felt that it was all over and done with him. Where were all the women, the pretty women, the house used to be so full of? Where was that old feeling in the heart as he waited for one of those great singers? Where that sensation of the intoxication of life and of his own power to enjoy it all?\r\nThe greatest opera-goer of his day! There was no opera now! That fellow Wagner had ruined everything; no melody left, nor any voices to sing it. Ah! the wonderful singers! Gone! He sat watching the old scenes acted, a numb feeling at his heart.\r\nFrom the curl of silver over his ear to the pose of his foot in its elastic-sided patent boot, there was nothing clumsy or weak about old Jolyon. He was as upright — very nearly — as in those old times when he came every night; his sight was as good — almost as good. But what a feeling of weariness and disillusion!\r\nHe had been in the habit all his life of enjoying things, even imperfect things — and there had been many imperfect things — he had enjoyed them all with moderation, so as to keep himself young. But now he was deserted by his power of enjoyment, by his philosophy, and left with this dreadful feeling that it was all done with. Not even the Prisoners’ Chorus, nor Florian’s Song, had the power to dispel the gloom of his loneliness.\r\nIf Jo were only with him! The boy must be forty by now. He had wasted fourteen years out of the life of his only son. And Jo was no longer a social pariah. He was married. Old Jolyon had been unable to refrain from marking his appreciation of the action by enclosing his son a cheque for L500. The cheque had been returned in a letter from the ‘Hotch Potch,’ couched in these words.\r\n‘MY DEAREST FATHER,\r\n‘Your generous gift was welcome as a sign that you might think worse of me. I return it, but should you think fit to invest it for the benefit of the little chap (we call him Jolly), who bears our Christian and, by courtesy, our surname, I shall be very glad.\r\n‘I hope with all my heart that your health is as good as ever.\r\n‘Your loving son,\r\n‘Jo.’\r\nThe letter was like the boy. He had always been an amiable chap. Old Jolyon had sent this reply:\r\n‘MY DEAR JO,\r\n‘The sum (L500) stands in my books for the benefit of your boy, under the name of Jolyon Forsyte, and will be duly-credited with interest at 5 per cent. I hope that you are doing well. My health remains good at present.\r\n‘With love, I am, ‘Your affectionate Father, ‘JOLYON FORSYTE.’\r\nAnd every year on the 1st of January he had added a hundred and the interest. The sum was mounting up — next New Year’s Day it would be fifteen hundred and odd pounds! And it is difficult to say how much satisfaction he had got out of that yearly transaction. But the correspondence had ended.\r\nIn spite of his love for his son, in spite of an instinct, partly constitutional, partly the result, as in thousands of his class, of the continual handling and watching of affairs, prompting him to judge conduct by results rather than by principle, there was at the bottom of his heart a sort of uneasiness. His son ought, under the circumstances, to have gone to the dogs; that law was laid down in all the novels, sermons, and plays he had ever read, heard, or witnessed.\r\nAfter receiving the cheque back there seemed to him to be something wrong somewhere. Why had his son not gone to the dogs? But, then, who could tell?\r\nHe had heard, of course — in fact, he had made it his business to find out — that Jo lived in St. John’s Wood, that he had a little house in Wistaria Avenue with a garden, and took his wife about with him into society — a queer sort of society, no doubt — and that they had two children — the little chap they called Jolly (considering the circumstances the name struck him as cynical, and old Jolyon both feared and disliked cynicism), and a girl called Holly, born since the marriage. Who could tell what his son’s circumstances really were? He had capitalized the income he had inherited from his mother’s father and joined Lloyd’s as an underwriter; he painted pictures, too — water-colours. Old Jolyon knew this, for he had surreptitiously bought them from time to time, after chancing to see his son’s name signed at the bottom of a representation of the river Thames in a dealer’s window. He thought them bad, and did not hang them because of the signature; he kept them locked up in a drawer.\r\nIn the great opera-house a terrible yearning came on him to see his son. He remembered the days when he had been wont to slide him, in a brown holland suit, to and fro under the arch of his legs; the times when he ran beside the boy’s pony, teaching him to ride; the day he first took him to school. He had been a loving, lovable little chap! After he went to Eton he had acquired, perhaps, a little too much of that desirable manner which old Jolyon knew was only to be obtained at such places and at great expense; but he had always been companionable. Always a companion, even after Cambridge — a little far off, perhaps, owing to the advantages he had received. Old Jolyon’s feeling towards our public schools and ‘Varsities never wavered, and he retained touchingly his attitude of admiration and mistrust towards a system appropriate to the highest in the land, of which he had not himself been privileged to partake. . . . Now that June had gone and left, or as good as left him, it would have been a comfort to see his son again. Guilty of this treason to his family, his principles, his class, old Jolyon fixed his eyes on the singer. A poor thing — a wretched poor thing! And the Florian a perfect stick!\r\nIt was over. They were easily pleased nowadays!\r\nIn the crowded street he snapped up a cab under the very nose of a stout and much younger gentleman, who had already assumed it to be his own. His route lay through Pall Mall, and at the corner, instead of going through the Green Park, the cabman turned to drive up St. James’s Street. Old Jolyon put his hand through the trap (he could not bear being taken out of his way); in turning, however, he found himself opposite the ‘Hotch Potch,’ and the yearning that had been secretly with him the whole evening prevailed. He called to the driver to stop. He would go in and ask if Jo still belonged there.\r\nHe went in. The hall looked exactly as it did when he used to dine there with Jack Herring, and they had the best cook in London; and he looked round with the shrewd, straight glance that had caused him all his life to be better served than most men.\r\n“Mr. Jolyon Forsyte still a member here?”\r\n“Yes, sir; in the Club now, sir. What name?”\r\nOld Jolyon was taken aback.\r\n“His father,” he said.\r\nAnd having spoken, he took his stand, back to the fireplace.\r\nYoung Jolyon, on the point of leaving the Club, had put on his hat, and was in the act of crossing the hall, as the porter met him. He was no longer young, with hair going grey, and face — a narrower replica of his father’s, with the same large drooping moustache — decidedly worn. He turned pale. This meeting was terrible after all those years, for nothing in the world was so terrible as a scene. They met and crossed hands without a word. Then, with a quaver in his voice, the father said:\r\n“How are you, my boy?”\r\nThe son answered:\r\n“How are you, Dad?”\r\nOld Jolyon’s hand trembled in its thin lavender glove.\r\n“If you’re going my way,” he said, “I can give you a lift.”\r\nAnd as though in the habit of taking each other home every night they went out and stepped into the cab.\r\nTo old Jolyon it seemed that his son had grown. ‘More of a man altogether,’ was his comment. Over the natural amiability of that son’s face had come a rather sardonic mask, as though he had found in the circumstances of his life the necessity for armour. The features were certainly those of a Forsyte, but the expression was more the introspective look of a student or philosopher. He had no doubt been obliged to look into himself a good deal in the course of those fifteen years.\r\nTo young Jolyon the first sight of his father was undoubtedly a shock — he looked so worn and old. But in the cab he seemed hardly to have changed, still having the calm look so well remembered, still being upright and keen-eyed.\r\n“You look well, Dad.”\r\n“Middling,” old Jolyon answered.\r\nHe was the prey of an anxiety that he found he must put into words. Having got his son back like this, he felt he must know what was his financial position.\r\n“Jo,” he said, “I should like to hear what sort of water you’re in. I suppose you’re in debt?”\r\nHe put it this way that his son might find it easier to confess.\r\nYoung Jolyon answered in his ironical voice:\r\n“No! I’m not in debt!”\r\nOld Jolyon saw that he was angry, and touched his hand. He had run a risk. It was worth it, however, and Jo had never been sulky with him. They drove on, without speaking again, to Stanhope Gate. Old Jolyon invited him in, but young Jolyon shook his head.\r\n“June’s not here,” said his father hastily: “went of to-day on a visit. I suppose you know that she’s engaged to be married?”\r\n“Already?” murmured young Jolyon’.\r\nOld Jolyon stepped out, and, in paying the cab fare, for the first time in his life gave the driver a sovereign in mistake for a shilling.\r\nPlacing the coin in his mouth, the cabman whipped his horse secretly on the underneath and hurried away.\r\nOld Jolyon turned the key softly in the lock, pushed open the door, and beckoned. His son saw him gravely hanging up his coat, with an expression on his face like that of a boy who intends to steal cherries.\r\nThe door of the dining-room was open, the gas turned low; a spirit-urn hissed on a tea-tray, and close to it a cynical looking cat had fallen asleep on the dining-table. Old Jolyon ‘shoo’d’ her off at once. The incident was a relief to his feelings; he rattled his opera hat behind the animal.\r\n“She’s got fleas,” he said, following her out of the room. Through the door in the hall leading to the basement he called “Hssst!” several times, as though assisting the cat’s departure, till by some strange coincidence the butler appeared below.\r\n“You can go to bed, Parfitt,” said old Jolyon. “I will lock up and put out.”\r\nWhen he again entered the dining-room the cat unfortunately preceded him, with her tail in the air, proclaiming that she had seen through this manouevre for suppressing the butler from the first. . . .\r\nA fatality had dogged old Jolyon’s domestic stratagems all his life.\r\nYoung Jolyon could not help smiling. He was very well versed in irony, and everything that evening seemed to him ironical. The episode of the cat; the announcement of his own daughter’s engagement. So he had no more part or parcel in her than he had in the Puss! And the poetical justice of this appealed to him.\r\n“What is June like now?” he asked.\r\n“She’s a little thing,” returned old Jolyon; they say she’s like me, but that’s their folly. She’s more like your mother — the same eyes and hair.”\r\n“Ah! and she is pretty?”\r\nOld Jolyon was too much of a Forsyte to praise anything freely; especially anything for which he had a genuine admiration.\r\n“Not bad looking — a regular Forsyte chin. It’ll be lonely here when she’s gone, Jo.”\r\nThe look on his face again gave young Jolyon the shock he had felt on first seeing his father.\r\n“What will you do with yourself, Dad? I suppose she’s wrapped up in him?”\r\n“Do with myself?” repeated old Jolyon with an angry break in his voice. “It’ll be miserable work living here alone. I don’t know how it’s to end. I wish to goodness. . . . ” He checked himself, and added: “The question is, what had I better do with this house?”\r\nYoung Jolyon looked round the room. It was peculiarly vast and dreary, decorated with the enormous pictures of still life that he remembered as a boy — sleeping dogs with their noses resting on bunches of carrots, together with onions and grapes lying side by side in mild surprise. The house was a white elephant, but he could not conceive of his father living in a smaller place; and all the more did it all seem ironical.\r\nIn his great chair with the book-rest sat old Jolyon, the figurehead of his family and class and creed, with his white head and dome-like forehead, the representative of moderation, and order, and love of property. As lonely an old man as there was in London.\r\nThere he sat in the gloomy comfort of the room, a puppet in the power of great forces that cared nothing for family or class or creed, but moved, machine-like, with dread processes to inscrutable ends. This was how it struck young Jolyon, who had the impersonal eye.\r\nThe poor old Dad! So this was the end, the purpose to which he had lived with such magnificent moderation! To be lonely, and grow older and older, yearning for a soul to speak to!\r\nIn his turn old Jolyon looked back at his son. He wanted to talk about many things that he had been unable to talk about all these years. It had been impossible to seriously confide in June his conviction that property in the Soho quarter would go up in value; his uneasiness about that tremendous silence of Pippin, the superintendent of the New Colliery Company, of which he had so long been chairman; his disgust at the steady fall in American Golgothas, or even to discuss how, by some sort of settlement, he could best avoid the payment of those death duties which would follow his decease. Under the influence, however, of a cup of tea, which he seemed to stir indefinitely, he began to speak at last. A new vista of life was thus opened up, a promised land of talk, where he could find a harbour against the waves of anticipation and regret; where he could soothe his soul with the opium of devising how to round off his property and make eternal the only part of him that was to remain alive.\r\nYoung Jolyon was a good listener; it was his great quality. He kept his eyes fixed on his father’s face, putting a question now and then.\r\nThe clock struck one before old Jolyon had finished, and at the sound of its striking his principles came back. He took out his watch with a look of surprise:\r\n“I must go to bed, Jo,” he said.\r\nYoung Jolyon rose and held out his hand to help his father up. The old face looked worn and hollow again; the eyes were steadily averted.\r\n“Good-bye, my boy; take care of yourself.”\r\nA moment passed, and young Jolyon, turning on his, heel, marched out at the door. He could hardly see; his smile quavered. Never in all the fifteen years since he had first found out that life was no simple business, had he found it so singularly complicated.\r\nChapter 3\r\nIn Swithin’s orange and light-blue dining-room, facing the Park, the round table was laid for twelve.\r\nA cut-glass chandelier filled with lighted candles hung like a giant stalactite above its centre, radiating over large gilt-framed mirrors, slabs of marble on the tops of side-tables, and heavy gold chairs with crewel worked seats. Everything betokened that love of beauty so deeply implanted in each family which has had its own way to make into Society, out of the more vulgar heart of Nature. Swithin had indeed an impatience of simplicity, a love of ormolu, which had always stamped him amongst his associates as a man of great, if somewhat luxurious taste; and out of the knowledge that no one could possibly enter his rooms without perceiving him to be a man of wealth, he had derived a solid and prolonged happiness such as perhaps no other circumstance in life had afforded him.\r\nSince his retirement from land agency, a profession deplorable in his estimation, especially as to its auctioneering department, he had abandoned himself to naturally aristocratic tastes.\r\nThe perfect luxury of his latter days had embedded him like a fly in sugar; and his mind, where very little took place from morning till night, was the junction of two curiously opposite emotions, a lingering and sturdy satisfaction that he had made his own way and his own fortune, and a sense that a man of his distinction should never have been allowed to soil his mind with work.\r\nHe stood at the sideboard in a white waistcoat with large gold and onyx buttons, watching his valet screw the necks of three champagne bottles deeper into ice-pails. Between the points of his stand-up collar, which — though it hurt him to move — he would on no account have had altered, the pale flesh of his under chin remained immovable. His eyes roved from bottle to bottle. He was debating, and he argued like this: Jolyon drinks a glass, perhaps two, he’s so careful of himself. James, he can’t take his wine nowadays. Nicholas — Fanny and he would swill water he shouldn’t wonder! Soames didn’t count; these young nephews — Soames was thirty-one — couldn’t drink! But Bosinney?\r\nEncountering in the name of this stranger something outside the range of his philosophy, Swithin paused. A misgiving arose within him! It was impossible to tell! June was only a girl, in love too! Emily (Mrs. James) liked a good glass of champagne. It was too dry for Juley, poor old soul, she had no palate. As to Hatty Chessman! The thought of this old friend caused a cloud of thought to obscure the perfect glassiness of his eyes: He shouldn’t wonder if she drank half a bottle!\r\nBut in thinking of his remaining guest, an expression like that of a cat who is just going to purr stole over his old face: Mrs. Soames! She mightn’t take much, but she would appreciate what she drank; it was a pleasure to give her good wine! A pretty woman — and sympathetic to him!\r\nThe thought of her was like champagne itself! A pleasure to give a good wine to a young woman who looked so well, who knew how to dress, with charming manners, quite distinguished — a pleasure to entertain her. Between the points of his collar he gave his head the first small, painful oscillation of the evening.\r\n“Adolf!” he said. “Put in another bottle.”\r\nHe himself might drink a good deal, for, thanks to that prescription of Blight’s, he found himself extremely well, and he had been careful to take no lunch. He had not felt so well for weeks. Puffing out his lower lip, he gave his last instructions:\r\n“Adolf, the least touch of the West India when you come to the ham.”\r\nPassing into the anteroom, he sat down on the edge of a chair, with his knees apart; and his tall, bulky form was wrapped at once in an expectant, strange, primeval immobility. He was ready to rise at a moment’s notice. He had not given a dinner-party for months. This dinner in honour of June’s engagement had seemed a bore at first (among Forsytes the custom of solemnizing engagements by feasts was religiously observed), but the labours of sending invitations and ordering the repast over, he felt pleasantly stimulated.\r\nAnd thus sitting, a watch in his hand, fat, and smooth, and golden, like a flattened globe of butter, he thought of nothing.\r\nA long man, with side whiskers, who had once been in Swithin’s service, but was now a greengrocer, entered and proclaimed:\r\n“Mrs. Chessman, Mrs. Septimus Small!”\r\nTwo ladies advanced. The one in front, habited entirely in red, had large, settled patches of the same colour in her cheeks, and a hard, dashing eye. She walked at Swithin, holding out a hand cased in a long, primrose-coloured glove:\r\n“Well! Swithin,” she said, “I haven’t seen you for ages. How are you? Why, my dear boy, how stout you’re getting!”\r\nThe fixity of Swithin’s eye alone betrayed emotion. A dumb and grumbling anger swelled his bosom. It was vulgar to be stout, to talk of being stout; he had a chest, nothing more. Turning to his sister, he grasped her hand, and said in a tone of command:\r\n“Well, Juley.”\r\nMrs. Septimus Small was the tallest of the four sisters; her good, round old face had gone a little sour; an innumerable pout clung all over it, as if it had been encased in an iron wire mask up to that evening, which, being suddenly removed, left little rolls of mutinous flesh all over her countenance. Even her eyes were pouting. It was thus that she recorded her permanent resentment at the loss of Septimus Small.\r\nShe had quite a reputation for saying the wrong thing, and, tenacious like all her breed, she would hold to it when she had said it, and add to it another wrong thing, and so on. With the decease of her husband the family tenacity, the family matter-of-factness, had gone sterile within her. A great talker, when allowed, she would converse without the faintest animation for hours together, relating, with epic monotony, the innumerable occasions on which Fortune had misused her; nor did she ever perceive that her hearers sympathized with Fortune, for her heart was kind.\r\nHaving sat, poor soul, long by the bedside of Small (a man of poor constitution), she had acquired, the habit, and there were countless subsequent occasions when she had sat immense periods of time to amuse sick people, children, and other helpless persons, and she could never divest herself of the feeling that the world was the most ungrateful place anybody could live in. Sunday after Sunday she sat at the feet of that extremely witty preacher, the Rev. Thomas Scoles, who exercised a great influence over her; but she succeeded in convincing everybody that even this was a misfortune. She had passed into a proverb in the family, and when anybody was observed to be peculiarly distressing, he was known as a regular ‘Juley.’ The habit of her mind would have killed anybody but a Forsyte at forty; but she was seventy-two, and had never looked better. And one felt that there were capacities for enjoyment about her which might yet come out. She owned three canaries, the cat Tommy, and half a parrot — in common with her sister Hester; — and these poor creatures (kept carefully out of Timothy’s way — he was nervous about animals), unlike human beings, recognising that she could not help being blighted, attached themselves to her passionately.\r\nShe was sombrely magnificent this evening in black bombazine, with a mauve front cut in a shy triangle, and crowned with a black velvet ribbon round the base of her thin throat; black and mauve for evening wear was esteemed very chaste by nearly every Forsyte.\r\nPouting at Swithin, she said:\r\n“Ann has been asking for you. You haven’t been near us for an age!”\r\nSwithin put his thumbs within the armholes of his waistcoat, and replied:\r\n“Ann’s getting very shaky; she ought to have a doctor!”\r\n“Mr. and Mrs. Nicholas Forsyte!”\r\nNicholas Forsyte, cocking his rectangular eyebrows, wore a smile. He had succeeded during the day in bringing to fruition a scheme for the employment of a tribe from Upper India in the gold-mines of Ceylon. A pet plan, carried at last in the teeth of great difficulties — he was justly pleased. It would double the output of his mines, and, as he had often forcibly argued, all experience tended to show that a man must die; and whether he died of a miserable old age in his own country, or prematurely of damp in the bottom of a foreign mine, was surely of little consequence, provided that by a change in his mode of life he benefited the British Empire.\r\nHis ability was undoubted. Raising his broken nose towards his listener, he would add:\r\n“For want of a few hundred of these fellows we haven’t paid a dividend for years, and look at the price of the shares. I can’t get ten shillings for them.”\r\nHe had been at Yarmouth, too, and had come back feeling that he had added at least ten years to his own life. He grasped Swithin’s hand, exclaiming in a jocular voice:\r\n“Well, so here we are again!”\r\nMrs. Nicholas, an effete woman, smiled a smile of frightened jollity behind his back.\r\n“Mr. and Mrs. James Forsyte! Mr. and Mrs. Soames Forsyte!”\r\nSwithin drew his heels together, his deportment ever admirable.\r\n“Well, James, well Emily! How are you, Soames? How do you do?”\r\nHis hand enclosed Irene’s, and his eyes swelled. She was a pretty woman — a little too pale, but her figure, her eyes, her teeth! Too good for that chap Soames!\r\nThe gods had given Irene dark brown eyes and golden hair, that strange combination, provocative of men’s glances, which is said to be the mark of a weak character. And the full, soft pallor of her neck and shoulders, above a gold-coloured frock, gave to her personality an alluring strangeness.\r\nSoames stood behind, his eyes fastened on his wife’s neck. The hands of Swithin’s watch, which he still held open in his hand, had left eight behind; it was half an hour beyond his dinner-time — he had had no lunch — and a strange primeval impatience surged up within him.\r\n“It’s not like Jolyon to be late!” he said to Irene, with uncontrollable vexation. “I suppose it’ll be June keeping him!”\r\n“People in love are always late,” she answered.\r\nSwithin stared at her; a dusky orange dyed his cheeks.\r\n“They’ve no business to be. Some fashionable nonsense!”\r\nAnd behind this outburst the inarticulate violence of primitive generations seemed to mutter and grumble.\r\n“Tell me what you think of my new star, Uncle Swithin,” said Irene softly.\r\nAmong the lace in the bosom of her dress was shining a five-pointed star, made of eleven diamonds. Swithin looked at the star. He had a pretty taste in stones; no question could have been more sympathetically devised to distract his attention.\r\n“Who gave you that?” he asked.\r\n“Soames.”\r\nThere was no change in her face, but Swithin’s pale eyes bulged as though he might suddenly have been afflicted with insight.\r\n“I dare say you’re dull at home,” he said. “Any day you like to come and dine with me, I’ll give you as good a bottle of wine as you’ll get in London.”\r\n“Miss June Forsyte — Mr. Jolyon Forsyte! . . . Mr. Boswainey! . . . ”\r\nSwithin moved his arm, and said in a rumbling voice:\r\n“Dinner, now — dinner!”\r\nHe took in Irene, on the ground that he had not entertained her since she was a bride. June was the portion of Bosinney, who was placed between Irene and his fiancee. On the other side of June was James with Mrs. Nicholas, then old Jolyon with Mrs. James, Nicholas with Hatty Chessman, Soames with Mrs. Small, completing, the circle to Swithin again.\r\nFamily dinners of the Forsytes observe certain traditions. There are, for instance, no hors d’oeuvre. The reason for this is unknown. Theory among the younger members traces it to the disgraceful price of oysters; it is more probably due to a desire to come to the point, to a good practical sense deciding at once that hors d’oeuvre are but poor things. The Jameses alone, unable to withstand a custom almost universal in Park Lane, are now and then unfaithful.\r\nA silent, almost morose, inattention to each other succeeds to the subsidence into their seats, lasting till well into the first entree, but interspersed with remarks such as, “Tom’s bad again; I can’t tell what’s the matter with him!” “I suppose Ann doesn’t come down in the mornings?”—“What’s the name of your doctor, Fanny?” “Stubbs?” “He’s a quack!”—“Winifred? She’s got too many children. Four, isn’t it? She’s as thin as a lath!”—“What d’you give for this sherry, Swithin? Too dry for me!”\r\nWith the second glass of champagne, a kind of hum makes itself heard, which, when divested of casual accessories and resolved into its primal element, is found to be James telling a story, and this goes on for a long time, encroaching sometimes even upon what must universally be recognised as the crowning point of a Forsyte feast —‘the saddle of mutton.’\r\nNo Forsyte has given a dinner without providing a saddle of mutton. There is something in its succulent solidity which makes it suitable to people ‘of a certain position.’ It is nourishing and tasty; the sort of thing a man remembers eating. It has a past and a future, like a deposit paid into a bank; and it is something that can be argued about.\r\nEach branch of the family tenaciously held to a particular locality — old Jolyon swearing by Dartmoor, James by Welsh, Swithin by Southdown, Nicholas maintaining that people might sneer, but there was nothing like New Zealand! As for Roger, the ‘original’ of the brothers, he had been obliged to invent a locality of his own, and with an ingenuity worthy of a man who had devised a new profession for his sons, he had discovered a shop where they sold German; on being remonstrated with, he had proved his point by producing a butcher’s bill, which showed that he paid more than any of the others. It was on this occasion that old Jolyon, turning to June, had said in one of his bursts of philosophy:\r\n“You may depend upon it, they’re a cranky lot, the Forsytes — and you’ll find it out, as you grow older!”\r\nTimothy alone held apart, for though he ate saddle of mutton heartily, he was, he said, afraid of it.\r\nTo anyone interested psychologically in Forsytes, this great saddle-of-mutton trait is of prime importance; not only does it illustrate their tenacity, both collectively and as individuals, but it marks them as belonging in fibre and instincts to that great class which believes in nourishment and flavour, and yields to no sentimental craving for beauty.\r\nYounger members of the family indeed would have done without a joint altogether, preferring guinea-fowl, or lobster salad — something which appealed to the imagination, and had less nourishment — but these were females; or, if not, had been corrupted by their wives, or by mothers, who having been forced to eat saddle of mutton throughout their married lives, had passed a secret hostility towards it into the fibre of their sons.\r\nThe great saddle-of-mutton controversy at an end, a Tewkesbury ham commenced, together with the least touch of West Indian — Swithin was so long over this course that he caused a block in the progress of the dinner. To devote himself to it with better heart, he paused in his conversation.\r\nFrom his seat by Mrs. Septimus Small Soames was watching. He had a reason of his own connected with a pet building scheme, for observing Bosinney. The architect might do for his purpose; he looked clever, as he sat leaning back in his chair, moodily making little ramparts with bread-crumbs. Soames noted his dress clothes to be well cut, but too small, as though made many years ago.\r\nHe saw him turn to Irene and say something and her face sparkle as he often saw it sparkle at other people — never at himself. He tried to catch what they were saying, but Aunt Juley was speaking.\r\nHadn’t that always seemed very extraordinary to Soames? Only last Sunday dear Mr. Scole, had been so witty in his sermon, so sarcastic, “For what,” he had said, “shall it profit a man if he gain his own soul, but lose all his property?” That, he had said, was the motto of the middle-class; now, what had he meant by that? Of course, it might be what middle-class people believed — she didn’t know; what did Soames think?\r\nHe answered abstractedly: “How should I know? Scoles is a humbug, though, isn’t he?” For Bosinney was looking round the table, as if pointing out the peculiarities of the guests, and Soames wondered what he was saying. By her smile Irene was evidently agreeing with his remarks. She seemed always to agree with other people.\r\nHer eyes were turned on himself; Soames dropped his glance at once. The smile had died off her lips.\r\nA humbug? But what did Soames mean? If Mr. Scoles was a humbug, a clergyman — then anybody might be — it was frightful!\r\n“Well, and so they are!” said Soames.\r\nDuring Aunt Juley’s momentary and horrified silence he caught some words of Irene’s that sounded like: ‘Abandon hope, all ye who enter here!’\r\nBut Swithin had finished his ham.\r\n“Where do you go for your mushrooms?” he was saying to Irene in a voice like a courtier’s; “you ought to go to Smileybob’s — he’ll give ’em you fresh. These little men, they won’t take the trouble!”\r\nIrene turned to answer him, and Soames saw Bosinney watching her and smiling to himself. A curious smile the fellow had. A half-simple arrangement, like a child who smiles when he is pleased. As for George’s nickname —‘The Buccaneer’— he did not think much of that. And, seeing Bosinney turn to June, Soames smiled too, but sardonically — he did not like June, who was not looking too pleased.\r\nThis was not surprising, for she had just held the following conversation with James:\r\n“I stayed on the river on my way home, Uncle James, and saw a beautiful site for a house.”\r\nJames, a slow and thorough eater, stopped the process of mastication.\r\n“Eh?” he said. “Now, where was that?”\r\n“Close to Pangbourne.”\r\nJames placed a piece of ham in his mouth, and June waited.\r\n“I suppose you wouldn’t know whether the land about there was freehold?” he asked at last. “You wouldn’t know anything about the price of land about there?”\r\n“Yes,” said June; “I made inquiries.” Her little resolute face under its copper crown was suspiciously eager and aglow.\r\nJames regarded her with the air of an inquisitor.\r\n“What? You’re not thinking of buying land!” he ejaculated, dropping his fork.\r\nJune was greatly encouraged by his interest. It had long been her pet plan that her uncles should benefit themselves and Bosinney by building country-houses.\r\n“Of course not,” she said. “I thought it would be such a splendid place for — you or — someone to build a country-house!”\r\nJames looked at her sideways, and placed a second piece of ham in his mouth. . . .\r\n“Land ought to be very dear about there,” he said.\r\nWhat June had taken for personal interest was only the impersonal excitement of every Forsyte who hears of something eligible in danger of passing into other hands. But she refused to see the disappearance of her chance, and continued to press her point.\r\n“You ought to go into the country, Uncle James. I wish I had a lot of money, I wouldn’t live another day in London.”\r\nJames was stirred to the depths of his long thin figure; he had no idea his niece held such downright views.\r\n“Why don’t you go into the country?” repeated June; “it would do you a lot of good.”\r\n“Why?” began James in a fluster. “Buying land — what good d’you suppose I can do buying land, building houses? — I couldn’t get four per cent. for my money!”\r\n“What does that matter? You’d get fresh air.”\r\n“Fresh air!” exclaimed James; “what should I do with fresh air,”\r\n“I should have thought anybody liked to have fresh air,” said June scornfully.\r\nJames wiped his napkin all over his mouth.\r\n“You don’t know the value of money,” he said, avoiding her eye.\r\n“No! and I hope I never shall!” and, biting her lip with inexpressible mortification, poor June was silent.\r\nWhy were her own relations so rich, and Phil never knew where the money was coming from for to-morrow’s tobacco. Why couldn’t they do something for him? But they were so selfish. Why couldn’t they build country-houses? She had all that naive dogmatism which is so pathetic, and sometimes achieves such great results. Bosinney, to whom she turned in her discomfiture, was talking to Irene, and a chill fell on June’s spirit. Her eyes grew steady with anger, like old Jolyon’s when his will was crossed.\r\nJames, too, was much disturbed. He felt as though someone had threatened his right to invest his money at five per cent. Jolyon had spoiled her. None of his girls would have said such a thing. James had always been exceedingly liberal to his children, and the consciousness of this made him feel it all the more deeply. He trifled moodily with his strawberries, then, deluging them with cream, he ate them quickly; they, at all events, should not escape him.\r\nNo wonder he was upset. Engaged for fifty-four years (he had been admitted a solicitor on the earliest day sanctioned by the law) in arranging mortgages, preserving investments at a dead level of high and safe interest, conducting negotiations on the principle of securing the utmost possible out of other people compatible with safety to his clients and himself, in calculations as to the exact pecuniary possibilities of all the relations of life, he had come at last to think purely in terms of money. Money was now his light, his medium for seeing, that without which he was really unable to see, really not cognisant of phenomena; and to have this thing, “I hope I shall never know the value of money!” said to his face, saddened and exasperated him. He knew it to be nonsense, or it would have frightened him. What was the world coming to! Suddenly recollecting the story of young Jolyon, however, he felt a little comforted, for what could you expect with a father like that! This turned his thoughts into a channel still less pleasant. What was all this talk about Soames and Irene?\r\nAs in all self-respecting families, an emporium had been established where family secrets were bartered, and family stock priced. It was known on Forsyte ‘Change that Irene regretted her marriage. Her regret was disapproved of. She ought to have known her own mind; no dependable woman made these mistakes.\r\nJames reflected sourly that they had a nice house (rather small) in an excellent position, no children, and no money troubles. Soames was reserved about his affairs, but he must be getting a very warm man. He had a capital income from the business — for Soames, like his father, was a member of that well-known firm of solicitors, Forsyte, Bustard and Forsyte — and had always been very careful. He had done quite unusually well with some mortgages he had taken up, too — a little timely foreclosure — most lucky hits!\r\nThere was no reason why Irene should not be happy, yet they said she’d been asking for a separate room. He knew where that ended. It wasn’t as if Soames drank.\r\nJames looked at his daughter-in-law. That unseen glance of his was cold and dubious. Appeal and fear were in it, and a sense of personal grievance. Why should he be worried like this? It was very likely all nonsense; women were funny things! They exaggerated so, you didn’t know what to believe; and then, nobody told him anything, he had to find out everything for himself. Again he looked furtively at Irene, and across from her to Soames. The latter, listening to Aunt Juley, was looking up, under his brows in the direction of Bosinney.\r\n‘He’s fond of her, I know,’ thought James. ‘Look at the way he’s always giving her things.’\r\nAnd the extraordinary unreasonableness of her disaffection struck him with increased force.\r\nIt was a pity, too, she was a taking little thing, and he, James, would be really quite fond of her if she’d only let him. She had taken up lately with June; that was doing her no good, that was certainly doing her no good. She was getting to have opinions of her own. He didn’t know what she wanted with anything of the sort. She’d a good home, and everything she could wish for. He felt that her friends ought to be chosen for her. To go on like this was dangerous.\r\nJune, indeed, with her habit of championing the unfortunate, had dragged from Irene a confession, and, in return, had preached the necessity of facing the evil, by separation, if need be. But in the face of these exhortations, Irene had kept a brooding silence, as though she found terrible the thought of this struggle carried through in cold blood. He would never give her up, she had said to June.\r\n“Who cares?” June cried; “let him do what he likes — you’ve only to stick to it!” And she had not scrupled to say something of this sort at Timothy’s; James, when he heard of it, had felt a natural indignation and horror.\r\nWhat if Irene were to take it into her head to — he could hardly frame the thought — to leave Soames? But he felt this thought so unbearable that he at once put it away; the shady visions it conjured up, the sound of family tongues buzzing in his ears, the horror of the conspicuous happening so close to him, to one of his own children! Luckily, she had no money — a beggarly fifty pound a year! And he thought of the deceased Heron, who had had nothing to leave her, with contempt. Brooding over his glass, his long legs twisted under the table, he quite omitted to rise when the ladies left the room. He would have to speak to Soames — would have to put him on his guard; they could not go on like this, now that such a contingency had occurred to him. And he noticed with sour disfavour that June had left her wine-glasses full of wine.\r\n‘That little, thing’s at the bottom of it all,’ he mused; ‘Irene’d never have thought of it herself.’ James was a man of imagination.\r\nThe voice of Swithin roused him from his reverie.\r\n“I gave four hundred pounds for it,” he was saying. “Of course it’s a regular work of art.”\r\n“Four hundred! H’m! that’s a lot of money!” chimed in Nicholas.\r\nThe object alluded to was an elaborate group of statuary in Italian marble, which, placed upon a lofty stand (also of marble), diffused an atmosphere of culture throughout the room. The subsidiary figures, of which there were six, female, nude, and of highly ornate workmanship, were all pointing towards the central figure, also nude, and female, who was pointing at herself; and all this gave the observer a very pleasant sense of her extreme value. Aunt Juley, nearly opposite, had had the greatest difficulty in not looking at it all the evening.\r\nOld Jolyon spoke; it was he who had started the discussion.\r\n“Four hundred fiddlesticks! Don’t tell me you gave four hundred for that?”\r\nBetween the points of his collar Swithin’s chin made the second painful oscillatory movement of the evening.\r\n“Four-hundred-pounds, of English money; not a farthing less. I don’t regret it. It’s not common English — it’s genuine modern Italian!”\r\nSoames raised the corner of his lip in a smile, and looked across at Bosinney. The architect was grinning behind the fumes of his cigarette. Now, indeed, he looked more like a buccaneer.\r\n“There’s a lot of work about it,” remarked James hastily, who was really moved by the size of the group. “It’d sell well at Jobson’s.”\r\n“The poor foreign dey-vil that made it,” went on Swithin, “asked me five hundred — I gave him four. It’s worth eight. Looked half-starved, poor dey-vil!”\r\n“Ah!” chimed in Nicholas suddenly, “poor, seedy-lookin’ chaps, these artists; it’s a wonder to me how they live. Now, there’s young Flageoletti, that Fanny and the girls are always hav’in’ in, to play the fiddle; if he makes a hundred a year it’s as much as ever he does!”\r\nJames shook his head. “Ah!” he said, “I don’t know how they live!”\r\nOld Jolyon had risen, and, cigar in mouth, went to inspect the group at close quarters.\r\n“Wouldn’t have given two for it!” he pronounced at last.\r\nSoames saw his father and Nicholas glance at each other anxiously; and, on the other side of Swithin, Bosinney, still shrouded in smoke.\r\n‘I wonder what he thinks of it?’ thought Soames, who knew well enough that this group was hopelessly vieux jeu; hopelessly of the last generation. There was no longer any sale at Jobson’s for such works of art.\r\nSwithin’s answer came at last. “You never knew anything about a statue. You’ve got your pictures, and that’s all!”\r\nOld Jolyon walked back to his seat, puffing his cigar. It was not likely that he was going to be drawn into an argument with an obstinate beggar like Swithin, pig-headed as a mule, who had never known a statue from a —-straw hat.\r\n“Stucco!” was all he said.\r\nIt had long been physically impossible for Swithin to start; his fist came down on the table.\r\n“Stucco! I should like to see anything you’ve got in your house half as good!”\r\nAnd behind his speech seemed to sound again that rumbling violence of primitive generations.\r\nIt was James who saved the situation.\r\n“Now, what do you say, Mr. Bosinney? You’re an architect; you ought to know all about statues and things!”\r\nEvery eye was turned upon Bosinney; all waited with a strange, suspicious look for his answer.\r\nAnd Soames, speaking for the first time, asked:\r\n“Yes, Bosinney, what do you say?”\r\nBosinney replied coolly:\r\n“The work is a remarkable one.”\r\nHis words were addressed to Swithin, his eyes smiled slyly at old Jolyon; only Soames remained unsatisfied.\r\n“Remarkable for what?”\r\n“For its naivete”\r\nThe answer was followed by an impressive silence; Swithin alone was not sure whether a compliment was intended.\r\nChapter 4  Projection of the House\r\nSoames Forsyte walked out of his green-painted front door three days after the dinner at Swithin’s, and looking back from across the Square, confirmed his impression that the house wanted painting.\r\nHe had left his wife sitting on the sofa in the drawing-room, her hands crossed in her lap, manifestly waiting for him to go out. This was not unusual. It happened, in fact, every day.\r\nHe could not understand what she found wrong with him. It was not as if he drank! Did he run into debt, or gamble, or swear; was he violent; were his friends rackety; did he stay out at night? On the contrary.\r\nThe profound, subdued aversion which he felt in his wife was a mystery to him, and a source of the most terrible irritation. That she had made a mistake, and did not love him, had tried to love him and could not love him, was obviously no reason.\r\nHe that could imagine so outlandish a cause for his wife’s not getting on with him was certainly no Forsyte.\r\nSoames was forced, therefore, to set the blame entirely down to his wife. He had never met a woman so capable of inspiring affection. They could not go anywhere without his seeing how all the men were attracted by her; their looks, manners, voices, betrayed it; her behaviour under this attention had been beyond reproach. That she was one of those women — not too common in the Anglo-Saxon race — born to be loved and to love, who when not loving are not living, had certainly never even occurred to him. Her power of attraction, he regarded as part of her value as his property; but it made him, indeed, suspect that she could give as well as receive; and she gave him nothing! ‘Then why did she marry me?’ was his continual thought. He had, forgotten his courtship; that year and a half when he had besieged and lain in wait for her, devising schemes for her entertainment, giving her presents, proposing to her periodically, and keeping her other admirers away with his perpetual presence. He had forgotten the day when, adroitly taking advantage of an acute phase of her dislike to her home surroundings, he crowned his labours with success. If he remembered anything, it was the dainty capriciousness with which the gold-haired, dark-eyed girl had treated him. He certainly did not remember the look on her face — strange, passive, appealing — when suddenly one day she had yielded, and said that she would marry him.\r\nIt had been one of those real devoted wooings which books and people praise, when the lover is at length rewarded for hammering the iron till it is malleable, and all must be happy ever after as the wedding bells.\r\nSoames walked eastwards, mousing doggedly along on the shady side.\r\nThe house wanted doing, up, unless he decided to move into the country, and build.\r\nFor the hundredth time that month he turned over this problem. There was no use in rushing into things! He was very comfortably off, with an increasing income getting on for three thousand a year; but his invested capital was not perhaps so large as his father believed — James had a tendency to expect that his children should be better off than they were. ‘I can manage eight thousand easily enough,’ he thought, ‘without calling in either Robertson’s or Nicholl’s.’\r\nHe had stopped to look in at a picture shop, for Soames was an ‘amateur’ of pictures, and had a little-room in No. 62, Montpellier Square, full of canvases, stacked against the wall, which he had no room to hang. He brought them home with him on his way back from the City, generally after dark, and would enter this room on Sunday afternoons, to spend hours turning the pictures to the light, examining the marks on their backs, and occasionally making notes.\r\nThey were nearly all landscapes with figures in the foreground, a sign of some mysterious revolt against London, its tall houses, its interminable streets, where his life and the lives of his breed and class were passed. Every now and then he would take one or two pictures away with him in a cab, and stop at Jobson’s on his way into the City.\r\nHe rarely showed them to anyone; Irene, whose opinion he secretly respected and perhaps for that reason never solicited, had only been into the room on rare occasions, in discharge of some wifely duty. She was not asked to look at the pictures, and she never did. To Soames this was another grievance. He hated that pride of hers, and secretly dreaded it.\r\nIn the plate-glass window of the picture shop his image stood and looked at him.\r\nHis sleek hair under the brim of the tall hat had a sheen like the hat itself; his cheeks, pale and flat, the line of his clean-shaven lips, his firm chin with its greyish shaven tinge, and the buttoned strictness of his black cut-away coat, conveyed an appearance of reserve and secrecy, of imperturbable, enforced composure; but his eyes, cold — grey, strained — looking, with a line in the brow between them, examined him wistfully, as if they knew of a secret weakness.\r\nHe noted the subjects of the pictures, the names of the painters, made a calculation of their values, but without the satisfaction he usually derived from this inward appraisement, and walked on.\r\nNo. 62 would do well enough for another year, if he decided to build! The times were good for building, money had not been so dear for years; and the site he had seen at Robin Hill, when he had gone down there in the spring to inspect the Nicholl mortgage — what could be better! Within twelve miles of Hyde Park Corner, the value of the land certain to go up, would always fetch more than he gave for it; so that a house, if built in really good style, was a first-class investment.\r\nThe notion of being the one member of his family with a country house weighed but little with him; for to a true Forsyte, sentiment, even the sentiment of social position, was a luxury only to be indulged in after his appetite for more material pleasure had been satisfied.\r\nTo get Irene out of London, away from opportunities of going about and seeing people, away from her friends and those who put ideas into her head! That was the thing! She was too thick with June! June disliked him. He returned the sentiment. They were of the same blood.\r\nIt would be everything to get Irene out of town. The house would please her she would enjoy messing about with the decoration, she was very artistic!\r\nThe house must be in good style, something that would always be certain to command a price, something unique, like that last house of Parkes, which had a tower; but Parkes had himself said that his architect was ruinous. You never knew where you were with those fellows; if they had a name they ran you into no end of expense and were conceited into the bargain.\r\nAnd a common architect was no good — the memory of Parkes’ tower precluded the employment of a common architect:\r\nThis was why he had thought of Bosinney. Since the dinner at Swithin’s he had made enquiries, the result of which had been meagre, but encouraging: “One of the new school.”\r\n“Clever?”\r\n“As clever as you like — a bit — a bit up in the air!”\r\nHe had not been able to discover what houses Bosinney had built, nor what his charges were. The impression he gathered was that he would be able to make his own terms. The more he reflected on the idea, the more he liked it. It would be keeping the thing in the family, with Forsytes almost an instinct; and he would be able to get ‘favoured-nation,’ if not nominal terms — only fair, considering the chance to Bosinney of displaying his talents, for this house must be no common edifice.\r\nSoames reflected complacently on the work it would be sure to bring the young man; for, like every Forsyte, he could be a thorough optimist when there was anything to be had out of it.\r\nBosinney’s office was in Sloane Street, close at, hand, so that he would be able to keep his eye continually on the plans.\r\nAgain, Irene would not be to likely to object to leave London if her greatest friend’s lover were given the job. June’s marriage might depend on it. Irene could not decently stand in the way of June’s marriage; she would never do that, he knew her too well. And June would be pleased; of this he saw the advantage.\r\nBosinney looked clever, but he had also — and — it was one of his great attractions — an air as if he did not quite know on which side his bread were buttered; he should be easy to deal with in money matters. Soames made this reflection in no defrauding spirit; it was the natural attitude of his mind — of the mind of any good business man — of all those thousands of good business men through whom he was threading his way up Ludgate Hill.\r\nThus he fulfilled the inscrutable laws of his great class — of human nature itself — when he reflected, with a sense of comfort, that Bosinney would be easy to deal with in money matters.\r\nWhile he elbowed his way on, his eyes, which he usually kept fixed on the ground before his feet, were attracted upwards by the dome of St. Paul’s. It had a peculiar fascination for him, that old dome, and not once, but twice or three times a week, would he halt in his daily pilgrimage to enter beneath and stop in the side aisles for five or ten minutes, scrutinizing the names and epitaphs on the monuments. The attraction for him of this great church was inexplicable, unless it enabled him to concentrate his thoughts on the business of the day. If any affair of particular moment, or demanding peculiar acuteness, was weighing on his mind, he invariably went in, to wander with mouse-like attention from epitaph to epitaph. Then retiring in the same noiseless way, he would hold steadily on up Cheapside, a thought more of dogged purpose in his gait, as though he had seen something which he had made up his mind to buy.\r\nHe went in this morning, but, instead of stealing from monument to monument, turned his eyes upwards to the columns and spacings of the walls, and remained motionless.\r\nHis uplifted face, with the awed and wistful look which faces take on themselves in church, was whitened to a chalky hue in the vast building. His gloved hands were clasped in front over the handle of his umbrella. He lifted them. Some sacred inspiration perhaps had come to him.\r\n‘Yes,’ he thought, ‘I must have room to hang my pictures.\r\nThat evening, on his return from the City, he called at Bosinney’s office. He found the architect in his shirt-sleeves, smoking a pipe, and ruling off lines on a plan. Soames refused a drink, and came at once to the point.\r\n“If you’ve nothing better to do on Sunday, come down with me to Robin Hill, and give me your opinion on a building site.”\r\n“Are you going to build?”\r\n“Perhaps,” said Soames; “but don’t speak of it. I just want your opinion.”\r\n“Quite so,” said the architect.\r\nSoames peered about the room.\r\n“You’re rather high up here,” he remarked.\r\nAny information he could gather about the nature and scope of Bosinney’s business would be all to the good.\r\n“It does well enough for me so far,” answered the architect. “You’re accustomed to the swells.”\r\nHe knocked out his pipe, but replaced it empty between his teeth; it assisted him perhaps to carry on the conversation. Soames noted a hollow in each cheek, made as it were by suction.\r\n“What do you pay for an office like this?” said he.\r\n“Fifty too much,” replied Bosinney.\r\nThis answer impressed Soames favourably.\r\n“I suppose it is dear,” he said. “I’ll call for you — on Sunday about eleven.”\r\nThe following Sunday therefore he called for Bosinney in a hansom, and drove him to the station. On arriving at Robin Hill, they found no cab, and started to walk the mile and a half to the site.\r\nIt was the 1st of August — a perfect day, with a burning sun and cloudless sky — and in the straight, narrow road leading up the hill their feet kicked up a yellow dust.\r\n“Gravel soil,” remarked Soames, and sideways he glanced at the coat Bosinney wore. Into the side-pockets of this coat were thrust bundles of papers, and under one arm was carried a queer-looking stick. Soames noted these and other peculiarities.\r\nNo one but a clever man, or, indeed, a buccaneer, would have taken such liberties with his appearance; and though these eccentricities were revolting to Soames, he derived a certain satisfaction from them, as evidence of qualities by which he must inevitably profit. If the fellow could build houses, what did his clothes matter?\r\n“I told you,” he said, “that I want this house to be a surprise, so don’t say anything about it. I never talk of my affairs until they’re carried through.”\r\nBosinney nodded.\r\n“Let women into your plans,” pursued Soames, “and you never know where it’ll end.”\r\n“Ah!” Said Bosinney, “women are the devil!”\r\nThis feeling had long been at the — bottom of Soames’s heart; he had never, however, put it into words.\r\n“Oh!” he Muttered, “so you’re beginning to. . . . ” He stopped, but added, with an uncontrollable burst of spite: “June’s got a temper of her own — always had.”\r\n“A temper’s not a bad thing in an angel.”\r\nSoames had never called Irene an angel. He could not so have violated his best instincts, letting other people into the secret of her value, and giving himself away. He made no reply.\r\nThey had struck into a half-made road across a warren. A cart-track led at right-angles to a gravel pit, beyond which the chimneys of a cottage rose amongst a clump of trees at the border of a thick wood. Tussocks of feathery grass covered the rough surface of the ground, and out of these the larks soared into the hate of sunshine. On the far horizon, over a countless succession of fields and hedges, rose a line of downs.\r\nSoames led till they had crossed to the far side, and there he stopped. It was the chosen site; but now that he was about to divulge the spot to another he had become uneasy.\r\n“The agent lives in that cottage,” he said; “he’ll give us some lunch — we’d better have lunch before we go into this matter.”\r\nHe again took the lead to the cottage, where the agent, a tall man named Oliver, with a heavy face and grizzled beard, welcomed them. During lunch, which Soames hardly touched, he kept looking at Bosinney, and once or twice passed his silk handkerchief stealthily over his forehead. The meal came to an end at last, and Bosinney rose.\r\n“I dare say you’ve got business to talk over,” he said; “I’ll just go and nose about a bit.” Without waiting for a reply he strolled out.\r\nSoames was solicitor to this estate, and he spent nearly an hour in the agent’s company, looking at ground-plans and discussing the Nicholl and other mortgages; it was as it were by an afterthought that he brought up the question of the building site.\r\n“Your people,” he said, “ought to come down in their price to me, considering that I shall be the first to build.”\r\nOliver shook his head.\r\nThe site you’ve fixed on, Sir, he said, “is the cheapest we’ve got. Sites at the top of the slope are dearer by a good bit.”\r\n“Mind,” said Soames, “I’ve not decided; it’s quite possible I shan’t build at all. The ground rent’s very high.”\r\n“Well, Mr. Forsyte, I shall be sorry if you go off, and I think you’ll make a mistake, Sir. There’s not a bit of land near London with such a view as this, nor one that’s cheaper, all things considered; we’ve only to advertise, to get a mob of people after it.”\r\nThey looked at each other. Their faces said very plainly: ‘I respect you as a man of business; and you can’t expect me to believe a word you say.’\r\nWell, repeated Soames, “I haven’t made up my mind; the thing will very likely go off!” With these words, taking up his umbrella, he put his chilly hand into the agent’s, withdrew it without the faintest pressure, and went out into the sun.\r\nHe walked slowly back towards the site in deep thought. His instinct told him that what the agent had said was true. A cheap site. And the beauty of it was, that he knew the agent did not really think it cheap; so that his own intuitive knowledge was a victory over the agent’s.\r\n‘Cheap or not, I mean to have it,’ he thought.\r\nThe larks sprang up in front of his feet, the air was full of butterflies, a sweet fragrance rose from the wild grasses. The sappy scent of the bracken stole forth from the wood, where, hidden in the depths, pigeons were cooing, and from afar on the warm breeze, came the rhythmic chiming of church bells.\r\nSoames walked with his eyes on the ground, his lips opening and closing as though in anticipation of a delicious morsel. But when he arrived at the site, Bosinney was nowhere to be seen. After waiting some little time, he crossed the warren in the direction of the slope. He would have shouted, but dreaded the sound of his voice.\r\nThe warren was as lonely as a prairie, its silence only broken by the rustle of rabbits bolting to their holes, and the song of the larks.\r\nSoames, the pioneer-leader of the great Forsyte army advancing to the civilization of this wilderness, felt his spirit daunted by the loneliness, by the invisible singing, and the hot, sweet air. He had begun to retrace his steps when he at last caught sight of Bosinney.\r\nThe architect was sprawling under a large oak tree, whose trunk, with a huge spread of bough and foliage, ragged with age, stood on the verge of the rise.\r\nSoames had to touch him on the shoulder before he looked up.\r\n“Hallo! Forsyte,” he said, “I’ve found the very place for your house! Look here!”\r\nSoames stood and looked, then he said, coldly:\r\n“You may be very clever, but this site will cost me half as much again.”\r\n“Hang the cost, man. Look at the view!”\r\nAlmost from their feet stretched ripe corn, dipping to a small dark copse beyond. A plain of fields and hedges spread to the distant grey-bluedowns. In a silver streak to the right could be seen the line of the river.\r\nThe sky was so blue, and the sun so bright, that an eternal summer seemed to reign over this prospect. Thistledown floated round them, enraptured by the serenity, of the ether. The heat danced over the corn, and, pervading all, was a soft, insensible hum, like the murmur of bright minutes holding revel between earth and heaven.\r\nSoames looked. In spite of himself, something swelled in his breast. To live here in sight of all this, to be able to point it out to his friends, to talk of it, to possess it! His cheeks flushed. The warmth, the radiance, the glow, were sinking into his senses as, four years before, Irene’s beauty had sunk into his senses and made him long for her. He stole a glance at Bosinney, whose eyes, the eyes of the coachman’s ‘half-tame leopard,’ seemed running wild over the landscape. The sunlight had caught the promontories of the fellow’s face, the bumpy cheekbones, the point of his chin, the vertical ridges above his brow; and Soames watched this rugged, enthusiastic, careless face with an unpleasant feeling.\r\nA long, soft ripple of wind flowed over the corn, and brought a puff of warm air into their faces.\r\n“I could build you a teaser here,” said Bosinney, breaking the silence at last.\r\n“I dare say,” replied Soames, drily. “You haven’t got to pay for it.”\r\n“For about eight thousand I could build you a palace.”\r\nSoames had become very pale — a struggle was going on within him. He dropped his eyes, and said stubbornly:\r\n“I can’t afford it.”\r\nAnd slowly, with his mousing walk, he led the way back to the first site.\r\nThey spent some time there going into particulars of the projected house, and then Soames returned to the agent’s cottage.\r\nHe came out in about half an hour, and, joining Bosinney, started for the station.\r\n“Well,” he said, hardly opening his lips, “I’ve taken that site of yours, after all.”\r\nAnd again he was silent, confusedly debating how it was that this fellow, whom by habit he despised, should have overborne his own decision.\r\nChapter 5  A Forsyte Menage\r\nLike the enlightened thousands of his class and generation in this great city of London, who no longer believe in red velvet chairs, and know that groups of modern Italian marble are ‘vieux jeu,’ Soames Forsyte inhabited a house which did what it could. It owned a copper door knocker of individual design, windows which had been altered to open outwards, hanging flower boxes filled with fuchsias, and at the back (a great feature) a little court tiled with jade-green tiles, and surrounded by pink hydrangeas in peacock-blue tubs. Here, under a parchment-coloured Japanese sunshade covering the whole end, inhabitants or visitors could be screened from the eyes of the curious while they drank tea and examined at their leisure the latest of Soames’s little silver boxes.\r\nThe inner decoration favoured the First Empire and William Morris. For its size, the house was commodious; there were countless nooks resembling birds’ nests, and little things made of silver were deposited like eggs.\r\nIn this general perfection two kinds of fastidiousness were at war. There lived here a mistress who would have dwelt daintily on a desert island; a master whose daintiness was, as it were, an investment, cultivated by the owner for his advancement, in accordance with the laws of competition. This competitive daintiness had caused Soames in his Marlborough days to be the first boy into white waistcoats in summer, and corduroy waistcoats in winter, had prevented him from ever appearing in public with his tie climbing up his collar, and induced him to dust his patent leather boots before a great multitude assembled on Speech Day to hear him recite Moliere.\r\nSkin-like immaculateness had grown over Soames, as over many Londoners; impossible to conceive of him with a hair out of place, a tie deviating one-eighth of an inch from the perpendicular, a collar unglossed! He would not have gone without a bath for worlds — it was the fashion to take baths; and how bitter was his scorn of people who omitted them!\r\nBut Irene could be imagined, like some nymph, bathing in wayside streams, for the joy of the freshness and of seeing her own fair body.\r\nIn this conflict throughout the house the woman had gone to the wall. As in the struggle between Saxon and Celt still going on within the nation, the more impressionable and receptive temperament had had forced on it a conventional superstructure.\r\nThus the house had acquired a close resemblance to hundreds of other houses with the same high aspirations, having become: ‘That very charming little house of the Soames Forsytes, quite individual, my dear — really elegant.’\r\nFor Soames Forsyte — read James Peabody, Thomas Atkins, or Emmanuel Spagnoletti, the name in fact of any upper-middle class Englishman in London with any pretensions to taste; and though the decoration be different, the phrase is just.\r\nOn the evening of August 8, a week after the expedition to Robin Hill, in the dining-room of this house —‘quite individual, my dear — really elegant’— Soames and Irene were seated at dinner. A hot dinner on Sundays was a little distinguishing elegance common to this house and many others. Early in married life Soames had laid down the rule: ‘The servants must give us hot dinner on Sundays — they’ve nothing to do but play the concertina.’\r\nThe custom had produced no revolution. For — to Soames a rather deplorable sign — servants were devoted to Irene, who, in defiance of all safe tradition, appeared to recognise their right to a share in the weaknesses of human nature.\r\nThe happy pair were seated, not opposite each other, but rectangularly, at the handsome rosewood table; they dined without a cloth — a distinguishing elegance — and so far had not spoken a word.\r\nSoames liked to talk during dinner about business, or what he had been buying, and so long as he talked Irene’s silence did not distress him. This evening he had found it impossible to talk. The decision to build had been weighing on his mind all the week, and he had made up his mind to tell her.\r\nHis nervousness about this disclosure irritated him profoundly; she had no business to make him feel like that — a wife and a husband being one person. She had not looked at him once since they sat down; and he wondered what on earth she had been thinking about all the time. It was hard, when a man worked as he did, making money for her — yes, and with an ache in his heart — that she should sit there, looking — looking as if she saw the walls of the room closing in. It was enough to make a man get up and leave the table.\r\nThe light from the rose-shaded lamp fell on her neck and arms — Soames liked her to dine in a low dress, it gave him an inexpressible feeling of superiority to the majority of his acquaintance, whose wives were contented with their best high frocks or with tea-gowns, when they dined at home. Under that rosy light her amber-coloured hair and fair skin made strange contrast with her dark brown eyes.\r\nCould a man own anything prettier than this dining-table with its deep tints, the starry, soft-petalled roses, the ruby-coloured glass, and quaint silver furnishing; could a man own anything prettier than the woman who sat at it? Gratitude was no virtue among Forsytes, who, competitive, and full of common-sense, had no occasion for it; and Soames only experienced a sense of exasperation amounting to pain, that he did not own her as it was his right to own her, that he could not, as by stretching out his hand to that rose, pluck her and sniff the very secrets of her heart.\r\nOut of his other property, out of all the things he had collected, his silver, his pictures, his houses, his investments, he got a secret and intimate feeling; out of her he got none.\r\nIn this house of his there was writing on every wall. His business-like temperament protested against a mysterious warning that she was not made for him. He had married this woman, conquered her, made her his own, and it seemed to him contrary to the most fundamental of all laws, the law of possession, that he could do no more than own her body — if indeed he could do that, which he was beginning to doubt. If any one had asked him if he wanted to own her soul, the question would have seemed to him both ridiculous and sentimental. But he did so want, and the writing said he never would.\r\nShe was ever silent, passive, gracefully averse; as though terrified lest by word, motion, or sign she might lead him to believe that she was fond of him; and he asked himself: Must I always go on like this?\r\nLike most novel readers of his generation (and Soames was a great novel reader), literature coloured his view of life; and he had imbibed the belief that it was only a question of time.\r\nIn the end the husband always gained the affection of his wife. Even in those cases — a class of book he was not very fond of — which ended in tragedy, the wife always died with poignant regrets on her lips, or if it were the husband who died — unpleasant thought — threw herself on his body in an agony of remorse.\r\nHe often took Irene to the theatre, instinctively choosing the modern Society Plays with the modern Society conjugal problem, so fortunately different from any conjugal problem in real life. He found that they too always ended in the same way, even when there was a lover in the case. While he was watching the play Soames often sympathized with the lover; but before he reached home again, driving with Irene in a hansom, he saw that this would not do, and he was glad the play had ended as it had. There was one class of husband that had just then come into fashion, the strong, rather rough, but extremely sound man, who was peculiarly successful at the end of the play; with this person Soames was really not in sympathy, and had it not been for his own position, would have expressed his disgust with the fellow. But he was so conscious of how vital to himself was the necessity for being a successful, even a ‘strong,’ husband, that he never spoke of a distaste born perhaps by the perverse processes of Nature out of a secret fund of brutality in himself.\r\nBut Irene’s silence this evening was exceptional. He had never before seen such an expression on her face. And since it is always the unusual which alarms, Soames was alarmed. He ate his savoury, and hurried the maid as she swept off the crumbs with the silver sweeper. When she had left the room, he filled his glass with wine and said:\r\n“Anybody been here this afternoon?”\r\n“June.”\r\n“What did she want?” It was an axiom with the Forsytes that people did not go anywhere unless they wanted something. “Came to talk about her lover, I suppose?”\r\nIrene made no reply.\r\n“It looks to me,” continued Soames, “as if she were sweeter on him than he is on her. She’s always following him about.”\r\nIrene’s eyes made him feel uncomfortable.\r\n“You’ve no business to say such a thing!” she exclaimed.\r\n“Why not? Anybody can see it.”\r\n“They cannot. And if they could, it’s disgraceful to say so.”\r\nSoames’s composure gave way.\r\n“You’re a pretty wife!” he said. But secretly he wondered at the heat of her reply; it was unlike her. “You’re cracked about June! I can tell you one thing: now that she has the Buccaneer in tow, she doesn’t care twopence about you, and, you’ll find it out. But you won’t see so much of her in future; we’re going to live in the country.”\r\nHe had been glad to get his news out under cover of this burst of irritation. He had expected a cry of dismay; the silence with which his pronouncement was received alarmed him.\r\n“You don’t seem interested,” he was obliged to add.\r\n“I knew it already.”\r\nHe looked at her sharply.\r\n“Who told you?”\r\n“June.”\r\n“How did she know?”\r\nIrene did not answer. Baffled and uncomfortable, he said:\r\n“It’s a fine thing for Bosinney, it’ll be the making of him. I suppose she’s told you all about it?”\r\n“Yes.”\r\nThere was another pause, and then Soames said:\r\n“I suppose you don’t want to, go?”\r\nIrene made no reply.\r\n“Well, I can’t tell what you want. You never seem contented here.”\r\n“Have my wishes anything to do with it?”\r\nShe took the vase of roses and left the room. Soames remained seated. Was it for this that he had signed that contract? Was it for this that he was going to spend some ten thousand pounds? Bosinney’s phrase came back to him: “Women are the devil!”\r\nBut presently he grew calmer. It might have, been worse. She might have flared up. He had expected something more than this. It was lucky, after all, that June had broken the ice for him. She must have wormed it out of Bosinney; he might have known she would.\r\nHe lighted his cigarette. After all, Irene had not made a scene! She would come round — that was the best of her; she was cold, but not sulky. And, puffing the cigarette smoke at a lady-bird on the shining table, he plunged into a reverie about the house. It was no good worrying; he would go and make it up presently. She would be sitting out there in the dark, under the Japanese sunshade, knitting. A beautiful, warm night. . . .\r\nIn truth, June had come in that afternoon with shining eyes, and the words: “Soames is a brick! It’s splendid for Phil — the very thing for him!”\r\nIrene’s face remaining dark and puzzled, she went on:\r\n“Your new house at Robin Hill, of course. What? Don’t you know?”\r\nIrene did not know.\r\n“Oh! then, I suppose I oughtn’t to have told you!” Looking impatiently at her friend, she cried: “You look as if you didn’t care. Don’t you see, it’s what I’ve’ been praying for — the very chance he’s been wanting all this time. Now you’ll see what he can do;” and thereupon she poured out the whole story.\r\nSince her own engagement she had not seemed much interested in her friend’s position; the hours she spent with Irene were given to confidences of her own; and at times, for all her affectionate pity, it was impossible to keep out of her smile a trace of compassionate contempt for the woman who had made such a mistake in her life — such a vast, ridiculous mistake.\r\n“He’s to have all the decorations as well — a free hand. It’s perfect —” June broke into laughter, her little figure quivered gleefully; she raised her hand, and struck a blow at a muslin curtain. “Do you, know I even asked Uncle James. . . . ” But, with a sudden dislike to mentioning that incident, she stopped; and presently, finding her friend so unresponsive, went away. She looked back from the pavement, and Irene was still standing in the doorway. In response to her farewell wave, Irene put her hand to her brow, and, turning slowly, shut the door. . . .\r\nSoames went to the drawing-room presently, and peered at her through the window.\r\nOut in the shadow of the Japanese sunshade she was sitting very still, the lace on her white shoulders stirring with the soft rise and fall of her bosom.\r\nBut about this silent creature sitting there so motionless, in the dark, there seemed a warmth, a hidden fervour of feeling, as if the whole of her being had been stirred, and some change were taking place in its very depths.\r\nHe stole back to the dining-room unnoticed.\r\nChapter 6  James at Large\r\nIt was not long before Soames’s determination to build went the round of the family, and created the flutter that any decision connected with property should make among Forsytes.\r\nIt was not his fault, for he had been determined that no one should know. June, in the fulness of her heart, had told Mrs. Small, giving her leave only to tell Aunt Ann — she thought it would cheer her, the poor old sweet! for Aunt Ann had kept her room now for many days.\r\nMrs. Small told Aunt Ann at once, who, smiling as she lay back on her pillows, said in her distinct, trembling old voice:\r\n“It’s very nice for dear June; but I hope they will be careful — it’s rather dangerous!”\r\nWhen she was left alone again, a frown, like a cloud presaging a rainy morrow, crossed her face.\r\nWhile she was lying there so many days the process of recharging her will went on all the time; it spread to her face, too, and tightening movements were always in action at the corners of her lips.\r\nThe maid Smither, who had been in her service since girlhood, and was spoken of as “Smither — a good girl — but so slow!”— the maid Smither performed every morning with extreme punctiliousness the crowning ceremony of that ancient toilet. Taking from the recesses of their pure white band-box those flat, grey curls, the insignia of personal dignity, she placed them securely in her mistress’s hands, and turned her back.\r\nAnd every day Aunts Juley and Hester were required to come and report on Timothy; what news there was of Nicholas; whether dear June had succeeded in getting Jolyon to shorten the engagement, now that Mr. Bosinney was building Soames a house; whether young Roger’s wife was really — expecting; how the operation on Archie had succeeded; and what Swithin had done about that empty house in Wigmore Street, where the tenant had lost all his money and treated him so badly; above all, about Soames; was Irene still — still asking for a separate room? And every morning Smither was told: “I shall be coming down this afternoon, Smither, about two o’clock. I shall want your arm, after all these days in bed!”\r\nAfter telling Aunt Ann, Mrs. Small had spoken of the house in the strictest confidence to Mrs. Nicholas, who in her turn had asked Winifred Dartie for confirmation, supposing, of course, that, being Soames’s sister, she would know all about it. Through her it had in due course come round to the ears of James. He had been a good deal agitated.\r\n“Nobody,” he said, “told him anything.” And, rather than go direct to Soames himself, of whose taciturnity he was afraid, he took his umbrella and went round to Timothy’s.\r\nHe found Mrs. Septimus and Hester (who had been told — she was so safe, she found it tiring to talk) ready, and indeed eager, to discuss the news. It was very good of dear Soames, they thought, to employ Mr. Bosinney, but rather risky. What had George named him? ‘The Buccaneer’ How droll! But George was always droll! However, it would be all in the family they supposed they must really look upon Mr. Bosinney as belonging to the family, though it seemed strange.\r\nJames here broke in:\r\n“Nobody knows anything about him. I don’t see what Soames wants with a young man like that. I shouldn’t be surprised if Irene had put her oar in. I shall speak to. . . . ”\r\n“Soames,” interposed Aunt Juley, “told Mr. Bosinney that he didn’t wish it mentioned. He wouldn’t like it to be talked about, I’m sure, and if Timothy knew he would be very vexed, I. . . . ”\r\nJames put his hand behind his ear:\r\n“What?” he said. “I’m getting very deaf. I suppose I don’t hear people. Emily’s got a bad toe. We shan’t be able to start for Wales till the end of the month. There’ s always something!” And, having got what he wanted, he took his hat and went away.\r\nIt was a fine afternoon, and he walked across the Park towards Soames’s, where he intended to dine, for Emily’s toe kept her in bed, and Rachel and Cicely were on a visit to the country. He took the slanting path from the Bayswater side of the Row to the Knightsbridge Gate, across a pasture of short, burnt grass, dotted with blackened sheep, strewn with seated couples and strange waifs; lying prone on their faces, like corpses on a field over which the wave of battle has rolled.\r\nHe walked rapidly, his head bent, looking neither to right nor, left. The appearance of this park, the centre of his own battle-field, where he had all his life been fighting, excited no thought or speculation in his mind. These corpses flung down, there, from out the press and turmoil of the struggle, these pairs of lovers sitting cheek by jowl for an hour of idle Elysium snatched from the monotony of their treadmill, awakened no fancies in his mind; he had outlived that kind of imagination; his nose, like the nose of a sheep, was fastened to the pastures on which he browsed.\r\nOne of his tenants had lately shown a disposition to be behind-hand in his rent, and it had become a grave question whether he had not better turn him out at once, and so run the risk of not re-letting before Christmas. Swithin had just been let in very badly, but it had served him right — he had held on too long.\r\nHe pondered this as he walked steadily, holding his umbrella carefully by the wood, just below the crook of the handle, so as to keep the ferule off the ground, and not fray the silk in the middle. And, with his thin, high shoulders stooped, his long legs moving with swift mechanical precision, this passage through the Park, where the sun shone with a clear flame on so much idleness — on so many human evidences of the remorseless battle of Property, raging beyond its ring — was like the flight of some land bird across the sea.\r\nHe felt a — touch on the arm as he came out at Albert Gate.\r\nIt was Soames, who, crossing from the shady side of Piccadilly, where he had been walking home from the office, had suddenly appeared alongside.\r\n“Your mother’s in bed,” said James; “I was, just coming to you, but I suppose I shall be in the way.”\r\nThe outward relations between James and his son were marked by a lack of sentiment peculiarly Forsytean, but for all that the two were by no means unattached. Perhaps they regarded one another as an investment; certainly they were solicitous of each other’s welfare, glad of each other’s company. They had never exchanged two words upon the more intimate problems of life, or revealed in each other’s presence the existence of any deep feeling.\r\nSomething beyond the power of word-analysis bound them together, something hidden deep in the fibre of nations and families — for blood, they say, is thicker than water — and neither of them was a cold-blooded man. Indeed, in James love of his children was now the prime motive of his existence. To have creatures who were parts of himself, to whom he might transmit the money he saved, was at the root of his saving; and, at seventy-five, what was left that could give him pleasure, but — saving? The kernel of life was in this saving for his children.\r\nThan James Forsyte, notwithstanding all his ‘Jonah-isms,’ there was no saner man (if the leading symptom of sanity, as we are told, is self-preservation, though without doubt Timothy went too far) in all this London, of which he owned so much, and loved with such a dumb love, as the centre of his opportunities. He had the marvellous instinctive sanity of the middle class. In him — more than in Jolyon, with his masterful will and his moments of tenderness and philosophy — more than in Swithin, the martyr to crankiness — Nicholas, the sufferer from ability — and Roger, the victim of enterprise — beat the true pulse of compromise; of all the brothers he was least remarkable in mind and person, and for that reason more likely to live for ever.\r\nTo James, more than to any of the others, was “the family” significant and dear. There had always been something primitive and cosy in his attitude towards life; he loved the family hearth, he loved gossip, and he loved grumbling. All his decisions were formed of a cream which he skimmed off the family mind; and, through that family, off the minds of thousands of other families of similar fibre. Year after year, week after week, he went to Timothy’s, and in his brother’s front drawing-room — his legs twisted, his long white whiskers framing his clean-shaven mouth — would sit watching the family pot simmer, the cream rising to the top; and he would go away sheltered, refreshed, comforted, with an indefinable sense of comfort.\r\nBeneath the adamant of his self-preserving instinct there was much real softness in James; a visit to Timothy’s was like an hour spent in the lap of a mother; and the deep craving he himself had for the protection of the family wing reacted in turn on his feelings towards his own children; it was a nightmare to him to think of them exposed to the treatment of the world, in money, health, or reputation. When his old friend John Street’s son volunteered for special service, he shook his head querulously, and wondered what John Street was about to allow it; and when young Street was assagaied, he took it so much to heart that he made a point of calling everywhere with the special object of saying: He knew how it would be — he’d no patience with them!\r\nWhen his son-in-law Dartie had that financial crisis, due to speculation in Oil Shares, James made himself ill worrying over it; the knell of all prosperity seemed to have sounded. It took him three months and a visit to Baden-Baden to get better; there was something terrible in the idea that but for his, James’s, money, Dartie’s name might have appeared in the Bankruptcy List.\r\nComposed of a physiological mixture so sound that if he had an earache he thought he was dying, he regarded the occasional ailments of his wife and children as in the nature of personal grievances, special interventions of Providence for the purpose of destroying his peace of mind; but he did not believe at all in the ailments of people outside his own immediate family, affirming them in every case to be due to neglected liver.\r\nHis universal comment was: “What can they expect? I have it myself, if I’m not careful!”\r\nWhen he went to Soames’s that evening he felt that life was hard on him: There was Emily with a bad toe, and Rachel gadding about in the country; he got no sympathy from anybody; and Ann, she was ill — he did not believe she would last through the summer; he had called there three times now without her being able to see him! And this idea of Soames’s, building a house, that would have to be looked into. As to the trouble with Irene, he didn’t know what was to come of that — anything might come of it!\r\nHe entered 62, Montpellier Square with the fullest intentions of being miserable. It was already half-past seven, and Irene, dressed for dinner, was seated in the drawing-room. She was wearing her gold-coloured frock — for, having been displayed at a dinner-party, a soiree, and a dance, it was now to be worn at home — and she had adorned the bosom with a cascade of lace, on which James’s eyes riveted themselves at once.\r\n“Where do you get your things?” he said in an aggravated voice. “I never see Rachel and Cicely looking half so well. That rose-point, now — that’s not real!”\r\nIrene came close, to prove to him that he was in error.\r\nAnd, in spite of himself, James felt the influence of her deference, of the faint seductive perfume exhaling from her. No self-respecting Forsyte surrendered at a blow; so he merely said: He didn’t know — he expected she was spending a pretty penny on dress.\r\nThe gong sounded, and, putting her white arm within his, Irene took him into the dining-room. She seated him in Soames’s usual place, round the corner on her left. The light fell softly there, so that he would not be worried by the gradual dying of the day; and she began to talk to him about himself.\r\nPresently, over James came a change, like the mellowing that steals upon a fruit in the, sun; a sense of being caressed, and praised, and petted, and all without the bestowal of a single caress or word of praise. He felt that what he was eating was agreeing with him; he could not get that feeling at home; he did not know when he had enjoyed a glass of champagne so much, and, on inquiring the brand and price, was surprised to find that it was one of which he had a large stock himself, but could never drink; he instantly formed the resolution to let his wine merchant know that he had been swindled.\r\nLooking up from his food, he remarked:\r\n“You’ve a lot of nice things about the place. Now, what did you give for that sugar-sifter? Shouldn’t wonder if it was worth money!”\r\nHe was particularly pleased with the appearance of a picture, on the wall opposite, which he himself had given them:\r\n“I’d no idea it was so good!” he said.\r\nThey rose to go into the drawing-room, and James followed Irene closely.\r\n“That’s what I call a capital little dinner,” he murmured, breathing pleasantly down on her shoulder; “nothing heavy — and not too Frenchified. But I can’t get it at home. I pay my cook sixty pounds a year, but she can’t give me a dinner like that!”\r\nHe had as yet made no allusion to the building of the house, nor did he when Soames, pleading the excuse of business, betook himself to the room at the top, where he kept his pictures.\r\nJames was left alone with his daughter-in-law. The glow of the wine, and of an excellent liqueur, was still within him. He felt quite warm towards her. She was really a taking little thing; she listened to you, and seemed to understand what you were saying; and, while talking, he kept examining her figure, from her bronze-coloured shoes to the waved gold of her hair. She was leaning back in an Empire chair, her shoulders poised against the top — her body, flexibly straight and unsupported from the hips, swaying when she moved, as though giving to the arms of a lover. Her lips were smiling, her eyes half-closed.\r\nIt may have been a recognition of danger in the very charm of her attitude, or a twang of digestion, that caused a sudden dumbness to fall on James. He did not remember ever having been quite alone with Irene before. And, as he looked at her, an odd feeling crept over him, as though he had come across something strange and foreign.\r\nNow what was she thinking about — sitting back like that?\r\nThus when he spoke it was in a sharper voice, as if he had been awakened from a pleasant dream.\r\n“What d’you do with yourself all day?” he said. “You never come round to Park Lane!”\r\nShe seemed to be making very lame excuses, and James did not look at her. He did not want to believe that she was really avoiding them — it would mean too much.\r\n“I expect the fact is, you haven’t time,” he said; “You’re always about with June. I expect you’re useful to her with her young man, chaperoning, and one thing and another. They tell me she’s never at home now; your Uncle Jolyon he doesn’t like it, I fancy, being left so much alone as he is. They tell me she’s always hanging about for this young Bosinney; I suppose he comes here every day. Now, what do you think of him? D’you think he knows his own mind? He seems to me a poor thing. I should say the grey mare was the better horse!”\r\nThe colour deepened in Irene’s face; and James watched her suspiciously.\r\n“Perhaps you don’t quite understand Mr. Bosinney,” she said.\r\n“Don’t understand him!” James hummed out: “Why not? — you can see he’s one of these artistic chaps. They say he’s clever — they all think they’re clever. You know more about him than I do,” he added; and again his suspicious glance rested on her.\r\n“He is designing a house for Soames,” she said softly, evidently trying to smooth things over.\r\n“That brings me to what I was going to say,” continued James; “I don’t know what Soames wants with a young man like that; why doesn’t he go to a first-rate man?”\r\n“Perhaps Mr. Bosinney is first-rate!”\r\nJames rose, and took a turn with bent head.\r\n“That’s it’,” he said, “you young people, you all stick together; you all think you know best!”\r\nHalting his tall, lank figure before her, he raised a finger, and levelled it at her bosom, as though bringing an indictment against her beauty:\r\n“All I can say is, these artistic people, or whatever they call themselves, they’re as unreliable as they can be; and my advice to you is, don’t you have too much to do with him!”\r\nIrene smiled; and in the curve of her lips was a strange provocation. She seemed to have lost her deference. Her breast rose and fell as though with secret anger; she drew her hands inwards from their rest on the arms of her chair until the tips of her fingers met, and her dark eyes looked unfathomably at James.\r\nThe latter gloomily scrutinized the floor.\r\n“I tell you my opinion,” he said, “it’s a pity you haven’t got a child to think about, and occupy you!”\r\nA brooding look came instantly on Irene’s face, and even James became conscious of the rigidity that took possession of her whole figure beneath the softness of its silk and lace clothing.\r\nHe was frightened by the effect he had produced, and like most men with but little courage, he sought at once to justify himself by bullying.\r\n“You don’t seem to care about going about. Why don’t you drive down to Hurlingham with us? And go to the theatre now and then. At your time of life you ought to take an interest in things. You’re a young woman!”\r\nThe brooding look darkened on her face; he grew nervous.\r\n“Well, I know nothing about it,” he said; “nobody tells me anything. Soames ought to be able to take care of himself. If he can’t take care of himself he mustn’t look to me — that’s all.”\r\nBiting the corner of his forefinger he stole a cold, sharp look at his daughter-in-law.\r\nHe encountered her eyes fixed on his own, so dark and deep, that he stopped, and broke into a gentle perspiration.\r\n“Well, I must be going,” he said after a short pause, and a minute later rose, with a slight appearance of surprise, as though he had expected to be asked to stop. Giving his hand to Irene, he allowed himself to be conducted to the door, and let out into the street. He would not have a cab, he would walk, Irene was to say good-night to Soames for him, and if she wanted a little gaiety, well, he would drive her down to Richmond any day.\r\nHe walked home, and going upstairs, woke Emily out of the first sleep she had had for four and twenty hours, to tell her that it was his impression things were in a bad way at Soames’s; on this theme he descanted for half an hour, until at last, saying that he would not sleep a wink, he turned on his side and instantly began to snore.\r\nIn Montpellier Square Soames, who had come from the picture room, stood invisible at the top of the stairs, watching Irene sort the letters brought by the last post. She turned back into the drawing-room; but in a minute came out, and stood as if listening. Then she came stealing up the stairs, with a kitten in her arms. He could see her face bent over the little beast, which was purring against her neck. Why couldn’t she look at him like that?\r\nSuddenly she saw him, and her face changed.\r\n“Any letters for me?” he said.\r\n“Three.”\r\nHe stood aside, and without another word she passed on into the bedroom.\r\nChapter 7  Old Jolyon’s Peccadillo\r\nOld Jolyon came out of Lord’s cricket ground that same afternoon with the intention of going home. He had not reached Hamilton Terrace before he changed his mind, and hailing a cab, gave the driver an address in Wistaria Avenue. He had taken a resolution.\r\nJune had hardly been at home at all that week; she had given him nothing of her company for a long time past, not, in fact, since she had become engaged to Bosinney. He never asked her for her company. It was not his habit to ask people for things! She had just that one idea now — Bosinney and his affairs — and she left him stranded in his great house, with a parcel of servants, and not a soul to speak to from morning to night. His Club was closed for cleaning; his Boards in recess; there was nothing, therefore, to take him into the City. June had wanted him to go away; she would not go herself, because Bosinney was in London.\r\nBut where was he to go by himself? He could not go abroad alone; the sea upset his liver; he hated hotels. Roger went to a hydropathic — he was not going to begin that at his time of life, those new-fangled places we’re all humbug!\r\nWith such formulas he clothed to himself the desolation of his spirit; the lines down his face deepening, his eyes day by day looking forth with the melancholy which sat so strangely on a face wont to be strong and serene.\r\nAnd so that afternoon he took this journey through St. John’s Wood, in the golden-light that sprinkled the rounded green bushes of the acacia’s before the little houses, in the summer sunshine that seemed holding a revel over the little gardens; and he looked about him with interest; for this was a district which no Forsyte entered without open disapproval and secret curiosity.\r\nHis cab stopped in front of a small house of that peculiar buff colour which implies a long immunity from paint. It had an outer gate, and a rustic approach.\r\nHe stepped out, his bearing extremely composed; his massive head, with its drooping moustache and wings of white hair, very upright, under an excessively large top hat; his glance firm, a little angry. He had been driven into this!\r\n“Mrs. Jolyon Forsyte at home?”\r\n“Oh, yes sir! — what name shall I say, if you please, sir?”\r\nOld Jolyon could not help twinkling at the little maid as he gave his name. She seemed to him such a funny little toad!\r\nAnd he followed her through the dark hall, into a small double, drawing-room, where the furniture was covered in chintz, and the little maid placed him in a chair.\r\n“They’re all in the garden, sir; if you’ll kindly take a seat, I’ll tell them.”\r\nOld Jolyon sat down in the chintz-covered chair, and looked around him. The whole place seemed to him, as he would have expressed it, pokey; there was a certain — he could not tell exactly what — air of shabbiness, or rather of making two ends meet, about everything. As far as he could see, not a single piece of furniture was worth a five-pound note. The walls, distempered rather a long time ago, were decorated with water-colour sketches; across the ceiling meandered a long crack.\r\nThese little houses were all old, second-rate concerns; he should hope the rent was under a hundred a year; it hurt him more than he could have said, to think of a Forsyte — his own son living in such a place.\r\nThe little maid came back. Would he please to go down into the garden?\r\nOld Jolyon marched out through the French windows. In descending the steps he noticed that they wanted painting.\r\nYoung Jolyon, his wife, his two children, and his dog Balthasar, were all out there under a pear-tree.\r\nThis walk towards them was the most courageous act of old Jolyon’s life; but no muscle of his face moved, no nervous gesture betrayed him. He kept his deep-set eyes steadily on the enemy.\r\nIn those two minutes he demonstrated to perfection all that unconscious soundness, balance, and vitality of fibre that made, of him and so many others of his class the core of the nation. In the unostentatious conduct of their own affairs, to the neglect of everything else, they typified the essential individualism, born in the Briton from the natural isolation of his country’s life.\r\nThe dog Balthasar sniffed round the edges of his trousers; this friendly and cynical mongrel — offspring of a liaison between a Russian poodle and a fox-terrier — had a nose for the unusual.\r\nThe strange greetings over, old Jolyon seated himself in a wicker chair, and his two grandchildren, one on each side of his knees, looked at him silently, never having seen so old a man.\r\nThey were unlike, as though recognising the difference set between them by the circumstances of their births. Jolly, the child of sin, pudgy-faced, with his tow-coloured hair brushed off his forehead, and a dimple in his chin, had an air of stubborn amiability, and the eyes of a Forsyte; little Holly, the child of wedlock, was a dark-skinned, solemn soul, with her mother’s, grey and wistful eyes.\r\nThe dog Balthasar, having walked round the three small flower-beds, to show his extreme contempt for things at large, had also taken a seat in front of old Jolyon, and, oscillating a tail curled by Nature tightly over his back, was staring up with eyes that did not blink.\r\nEven in the garden, that sense of things being pokey haunted old Jolyon; the wicker chair creaked under his weight; the garden-beds looked ‘daverdy’; on the far side, under the smut-stained wall, cats had made a path.\r\nWhile he and his grandchildren thus regarded each other with the peculiar scrutiny, curious yet trustful, that passes between the very young and the very old, young Jolyon watched his wife.\r\nThe colour had deepened in her thin, oval face, with its straight brows, and large, grey eyes. Her hair, brushed in fine, high curves back from her forehead, was going grey, like his own, and this greyness made the sudden vivid colour in her cheeks painfully pathetic.\r\nThe look on her face, such as he had never seen there before, such as she had always hidden from him, was full of secret resentments, and longings, and fears. Her eyes, under their twitching brows, stared painfully. And she was silent.\r\nJolly alone sustained the conversation; he had many possessions, and was anxious that his unknown friend with extremely large moustaches, and hands all covered with blue veins, who sat with legs crossed like his own father (a habit he was himself trying to acquire), should know it; but being a Forsyte, though not yet quite eight years old, he made no mention of the thing at the moment dearest to his heart — a camp of soldiers in a shop-window, which his father had promised to buy. No doubt it seemed to him too precious; a tempting of Providence to mention it yet.\r\nAnd the sunlight played through the leaves on that little party of the three generations grouped tranquilly under the pear-tree, which had long borne no fruit.\r\nOld Jolyon’s furrowed face was reddening patchily, as old men’s faces redden in the sun. He took one of Jolly’s hands in his own; the boy climbed on to his knee; and little Holly, mesmerized by this sight, crept up to them; the sound of the dog Balthasar’s scratching arose rhythmically.\r\nSuddenly young Mrs. Jolyon got up and hurried indoors. A minute later her husband muttered an excuse, and followed. Old Jolyon was left alone with his grandchildren.\r\nAnd Nature with her quaint irony began working in him one of her strange revolutions, following her cyclic laws into the depths of his heart. And that tenderness for little children, that passion for the beginnings of life which had once made him forsake his son and follow June, now worked in him to forsake June and follow these littler things. Youth, like a flame, burned ever in his breast, and to youth he turned, to the round little limbs, so reckless, that wanted care, to the small round faces so unreasonably solemn or bright, to the treble tongues, and the shrill, chuckling laughter, to the insistent tugging hands, and the feel of small bodies against his legs, to all that was young and young, and once more young. And his eyes grew soft, his voice, and thin-veined hands soft, and soft his heart within him. And to those small creatures he became at once a place of pleasure, a place where they were secure, and could talk and laugh and play; till, like sunshine, there radiated from old Jolyon’s wicker chair the perfect gaiety of three hearts.\r\nBut with young Jolyon following to his wife’s room it was different.\r\nHe found her seated on a chair before her dressing-glass, with her hands before her face.\r\nHer shoulders were shaking with sobs. This passion of hers for suffering was mysterious to him. He had been through a hundred of these moods; how he had survived them he never knew, for he could never believe they were moods, and that the last hour of his partnership had not struck.\r\nIn the night she would be sure to throw her arms round his neck and say: “Oh! Jo, how I make you suffer!” as she had done a hundred times before.\r\nHe reached out his hand, and, unseen, slipped his razor-case into his pocket. ‘I cannot stay here,’ he thought, ‘I must go down!’ Without a word he left the room, and went back to the lawn.\r\nOld Jolyon had little Holly on his knee; she had taken possession of his watch; Jolly, very red in the face, was trying to show that he could stand on his head. The dog Balthasar, as close as he might be to the tea-table, had fixed his eyes on the cake.\r\nYoung Jolyon felt a malicious desire to cut their enjoyment short.\r\nWhat business had his father to come and upset his wife like this? It was a shock, after all these years! He ought to have known; he ought to have given them warning; but when did a Forsyte ever imagine that his conduct could upset anybody! And in his thoughts he did old Jolyon wrong.\r\nHe spoke sharply to the children, and told them to go in to their tea. Greatly surprised, for they had never heard their father speak sharply before, they went off, hand in hand, little Holly looking back over her shoulder.\r\nYoung Jolyon poured out the tea.\r\n“My wife’s not the thing today,” he said, but he knew well enough that his father had penetrated the cause of that sudden withdrawal, and almost hated the old man for sitting there so calmly.\r\n“You’ve got a nice little house here,” said old Jolyon with a shrewd look; “I suppose you’ve taken a lease of it!”\r\nYoung Jolyon nodded.\r\n“I don’t like the neighbourhood,” said old Jolyon; “a ramshackle lot.”\r\nYoung Jolyon replied: “Yes, we’re a ramshackle lot.”’\r\nThe silence was now only broken by the sound of the dog Balthasar’s scratching.\r\nOld Jolyon said simply: “I suppose I oughtn’t to have come here, Jo; but I get so lonely!”\r\nAt these words young Jolyon got up and put his hand on his father’s shoulder.\r\nIn the next house someone was playing over and over again: ‘La Donna mobile’ on an untuned piano; and the little garden had fallen into shade, the sun now only reached the wall at the end, whereon basked a crouching cat, her yellow eyes turned sleepily down on the dog Balthasar. There was a drowsy hum of very distant traffic; the creepered trellis round the garden shut out everything but sky, and house, and pear-tree, with its top branches still gilded by the sun.\r\nFor some time they sat there, talking but little. Then old Jolyon rose to go, and not a word was said about his coming again.\r\nHe walked away very sadly. What a poor miserable place; and he thought of the great, empty house in Stanhope Gate, fit residence for a Forsyte, with its huge billiard-room and drawing-room that no one entered from one week’s end to another.\r\nThat woman, whose face he had rather liked, was too thin-skinned by half; she gave Jo a bad time he knew! And those sweet children! Ah! what a piece of awful folly!\r\nHe walked towards the Edgware Road, between rows of little houses, all suggesting to him (erroneously no doubt, but the prejudices of a Forsyte are sacred) shady histories of some sort or kind.\r\nSociety, forsooth, the chattering hags and jackanapes — had set themselves up to pass judgment on his flesh and blood! A parcel of old women! He stumped his umbrella on the ground, as though to drive it into the heart of that unfortunate body, which had dared to ostracize his son and his son’s son, in whom he could have lived again!\r\nHe stumped his umbrella fiercely; yet he himself had followed Society’s behaviour for fifteen years — had only today been false to it!\r\nHe thought of June, and her dead mother, and the whole story, with all his old bitterness. A wretched business!\r\nHe was a long time reaching Stanhope Gate, for, with native perversity, being extremely tired, he walked the whole way.\r\nAfter washing his hands in the lavatory downstairs, he went to the dining-room to wait for dinner, the only room he used when June was out — it was less lonely so. The evening paper had not yet come; he had finished the Times, there was therefore nothing to do.\r\nThe room faced the backwater of traffic, and was very silent. He disliked dogs, but a dog even would have been company. His gaze, travelling round the walls, rested on a picture entitled: ‘Group of Dutch fishing boats at sunset’; the chef d’oeuvre of his collection. It gave him no pleasure. He closed his eyes. He was lonely! He oughtn’t to complain, he knew, but he couldn’t help it: He was a poor thing — had always been a poor thing — no pluck! Such was his thought.\r\nThe butler came to lay the table for dinner, and seeing his master apparently asleep, exercised extreme caution in his movements. This bearded man also wore a moustache, which had given rise to grave doubts in the minds of many members — of the family — especially those who, like Soames, had been to public schools, and were accustomed to niceness in such matters. Could he really be considered a butler? Playful spirits alluded to him as: ‘Uncle Jolyon’s Nonconformist’; George, the acknowledged wag, had named him: ‘Sankey.’\r\nHe moved to and fro between the great polished sideboard and the great polished table inimitably sleek and soft.\r\nOld Jolyon watched him, feigning sleep. The fellow was a sneak — he had always thought so — who cared about nothing but rattling through his work, and getting out to his betting or his woman or goodness knew what! A slug! Fat too! And didn’t care a pin about his master!\r\nBut then against his will, came one of those moments of philosophy which made old Jolyon different from other Forsytes:\r\nAfter all why should the man care? He wasn’t paid to care, and why expect it? In this world people couldn’t look for affection unless they paid for it. It might be different in the next — he didn’t know — couldn’t tell! And again he shut his eyes.\r\nRelentless and stealthy, the butler pursued his labours, taking things from the various compartments of the sideboard. His back seemed always turned to old Jolyon; thus, he robbed his operations of the unseemliness of being carried on in his master’s presence; now and then he furtively breathed on the silver, and wiped it with a piece of chamois leather. He appeared to pore over the quantities of wine in the decanters, which he carried carefully and rather high, letting his heard droop over them protectingly. When he had finished, he stood for over a minute watching his master, and in his greenish eyes there was a look of contempt:\r\nAfter all, this master of his was an old buffer, who hadn’t much left in him!\r\nSoft as a tom-cat, he crossed the room to press the bell. His orders were ‘dinner at seven.’ What if his master were asleep; he would soon have him out of that; there was the night to sleep in! He had himself to think of, for he was due at his Club at half-past eight!\r\nIn answer to the ring, appeared a page boy with a silver soup tureen. The butler took it from his hands and placed it on the table, then, standing by the open door, as though about to usher company into the room, he said in a solemn voice:\r\n“Dinner is on the table, sir!”\r\nSlowly old Jolyon got up out of his chair, and sat down at the table to eat his dinner.\r\nChapter 8  Plans of the House\r\nForsytes, as is generally admitted, have shells, like that extremely useful little animal which is made into Turkish delight, in other words, they are never seen, or if seen would not be recognised, without habitats, composed of circumstance, property, acquaintances, and wives, which seem to move along with them in their passage through a world composed of thousands of other Forsytes with their habitats. Without a habitat a Forsyte is inconceivable — he would be like a novel without a plot, which is well-known to be an anomaly.\r\nTo Forsyte eyes Bosinney appeared to have no habitat, he seemed one of those rare and unfortunate men who go through life surrounded by circumstance, property, acquaintances, and wives that do not belong to them.\r\nHis rooms in Sloane Street, on the top floor, outside which, on a plate, was his name, ‘Philip Baynes Bosinney, Architect,’ were not those of a Forsyte. — He had no sitting-room apart from his office, but a large recess had been screened off to conceal the necessaries of life — a couch, an easy chair, his pipes, spirit case, novels and slippers. The business part of the room had the usual furniture; an open cupboard with pigeon-holes, a round oak table, a folding wash-stand, some hard chairs, a standing desk of large dimensions covered with drawings and designs. June had twice been to tea there under the chaperonage of his aunt.\r\nHe was believed to have a bedroom at the back.\r\nAs far as the family had been able to ascertain his income, it consisted of two consulting appointments at twenty pounds a year, together with an odd fee once in a way, and — more worthy item — a private annuity under his father’s will of one hundred and fifty pounds a year.\r\nWhat had transpired concerning that father was not so reassuring. It appeared that he had been a Lincolnshire country doctor of Cornish extraction, striking appearance, and Byronic tendencies — a well-known figure, in fact, in his county. Bosinney’s uncle by marriage, Baynes, of Baynes and Bildeboy, a Forsyte in instincts if not in name, had but little that was worthy to relate of his brother-in-law.\r\n“An odd fellow!’ he would say: ‘always spoke of his three eldest boys as ‘good creatures, but so dull’; they’re all doing capitally in the Indian Civil! Philip was the only one he liked. I’ve heard him talk in the queerest way; he once said to me: ‘My dear fellow, never let your poor wife know what you’re thinking of! But I didn’t follow his advice; not I! An eccentric man! He would say to Phil: ‘Whether you live like a gentleman or not, my boy, be sure you die like one! and he had himself embalmed in a frock coat suit, with a satin cravat and a diamond pin. Oh, quite an original, I can assure you!”\r\nOf Bosinney himself Baynes would speak warmly, with a certain compassion: “He’s got a streak of his father’s Byronism. Why, look at the way he threw up his chances when he left my office; going off like that for six months with a knapsack, and all for what? — to study foreign architecture — foreign! What could he expect? And there he is — a clever young fellow — doesn’t make his hundred a year! Now this engagement is the best thing that could have happened — keep him steady; he’s one of those that go to bed all day and stay up all night, simply because they’ve no method; but no vice about him — not an ounce of vice. Old Forsyte’s a rich man!”\r\nMr. Baynes made himself extremely pleasant to June, who frequently visited his house in Lowndes Square at this period.\r\n“This house of your cousin’s — what a capital man of business — is the very thing for Philip,” he would say to her; “you mustn’t expect to see too much of him just now, my dear young lady. The good cause — the good cause! The young man must make his way. When I was his age I was at work day and night. My dear wife used to say to me, ‘Bobby, don’t work too hard, think of your health’; but I never spared myself!”\r\nJune had complained that her lover found no time to come to Stanhope Gate.\r\nThe first time he came again they had not been together a quarter of an hour before, by one of those coincidences of which she was a mistress, Mrs. Septimus Small arrived. Thereon Bosinney rose and hid himself, according to previous arrangement, in the little study, to wait for her departure.\r\n“My dear,” said Aunt Juley, “how thin he is! I’ve often noticed it with engaged people; but you mustn’t let it get worse. There’s Barlow’s extract of veal; it did your Uncle Swithin a lot of good.”\r\nJune, her little figure erect before the hearth, her small face quivering grimly, for she regarded her aunt’s untimely visit in the light of a personal injury, replied with scorn:\r\n“It’s because he’s busy; people who can do anything worth doing are never fat!”\r\nAunt Juley pouted; she herself had always been thin, but the only pleasure she derived from the fact was the opportunity of longing to be stouter.\r\n“I don’t think,” she said mournfully, “that you ought to let them call him ‘The Buccaneer’; people might think it odd, now that he’s going to build a house for Soames. I do hope he will be careful; it’s so important for him. Soames has such good taste!”\r\n“Taste!” cried June, flaring up at once; “wouldn’t give that for his taste, or any of the family’s!”\r\nMrs. Small was taken aback.\r\n“Your Uncle Swithin,” she said, “always had beautiful taste! And Soames’s little house is lovely; you don’t mean to say you don’t think so!”\r\n“H’mph!” said June, “that’s only because Irene’s there!”\r\nAunt Juley tried to say something pleasant:\r\n“And how will dear Irene like living in the country?”\r\nJune gazed at her intently, with a look in her eyes as if her conscience had suddenly leaped up into them; it passed; and an even more intent look took its place, as if she had stared that conscience out of countenance. She replied imperiously:\r\n“Of course she’ll like it; why shouldn’t she?”\r\nMrs. Small grew nervous.\r\n“I didn’t know,” she said; “I thought she mightn’t like to leave her friends. Your Uncle James says she doesn’t take enough interest in life. We think — I mean Timothy thinks — she ought to go out more. I expect you’ll miss her very much!”\r\nJune clasped her hands behind her neck.\r\n“I do wish,” she cried, “Uncle Timothy wouldn’t talk about what doesn’t concern him!”\r\nAunt Juley rose to the full height of her tall figure.\r\n“He never talks about what doesn’t concern him,” she said.\r\nJune was instantly compunctious; she ran to her aunt and kissed her.\r\n“I’m very sorry, auntie; but I wish they’d let Irene alone.”\r\nAunt Juley, unable to think of anything further on the subject that would be suitable, was silent; she prepared for departure, hooking her black silk cape across her chest, and, taking up her green reticule:\r\n“And how is your dear grandfather?” she asked in the hall, “I expect he’s very lonely now that all your time is taken up with Mr. Bosinney.”\r\nShe bent and kissed her niece hungrily, and with little, mincing steps passed away.\r\nThe tears sprang up in June’s eyes; running into the little study, where Bosinney was sitting at the table drawing birds on the back of an envelope, she sank down by his side and cried:\r\n“Oh, Phil! it’s all so horrid!” Her heart was as warm as the colour of her hair.\r\nOn the following Sunday morning, while Soames was shaving, a message was brought him to the effect that Mr. Bosinney was below, and would be glad to see him. Opening the door into his wife’s room, he said:\r\n“Bosinney’s downstairs. Just go and entertain him while I finish shaving. I’ll be down in a minute. It’s about the plans, I expect.”\r\nIrene looked at him, without reply, put the finishing touch to her dress and went downstairs. He could not make her out about this house. She had said nothing against it, and, as far as Bosinney was concerned, seemed friendly enough.\r\nFrom the window of his dressing-room he could see them talking together in the little court below. He hurried on with his shaving, cutting his chin twice. He heard them laugh, and thought to himself: “Well, they get on all right, anyway!”\r\nAs he expected, Bosinney had come round to fetch him to look at the plans.\r\nHe took his hat and went over.\r\nThe plans were spread on the oak table in the architect’s room; and pale, imperturbable, inquiring, Soames bent over them for a long time without speaking.\r\nHe said at last in a puzzled voice:\r\n“It’s an odd sort of house!”\r\nA rectangular house of two stories was designed in a quadrangle round a covered-in court. This court, encircled by a gallery on the upper floor, was roofed with a glass roof, supported by eight columns running up from the ground.\r\nIt was indeed, to Forsyte eyes, an odd house.\r\n“There’s a lot of room cut to waste,” pursued Soames.\r\nBosinney began to walk about, and Soames did not like the expression on his face.\r\n“The principle of this house,” said the architect, “was that you should have room to breathe — like a gentleman!”\r\nSoames extended his finger and thumb, as if measuring the extent of the distinction he should acquire; and replied:\r\n“Oh! yes; I see.”\r\nThe peculiar look came into Bosinney’s face which marked all his enthusiasms.\r\n“I’ve tried to plan you a house here with some self-respect of its own. If you don’t like it, you’d better say so. It’s certainly the last thing to be considered — who wants self-respect in a house, when you can squeeze in an extra lavatory?” He put his finger suddenly down on the left division of the centre oblong: “You can swing a cat here. This is for your pictures, divided from this court by curtains; draw them back and you’ll have a space of fifty-one by twenty-three six. This double-faced stove in the centre, here, looks one way towards the court, one way towards the picture room; this end wall is all window; You’ve a southeast light from that, a north light from the court. The rest of your pictures you can hang round the gallery upstairs, or in the other rooms.” “In architecture,” he went on — and though looking at Soames he did not seem to see him, which gave Soames an unpleasant feeling —“as in life, you’ll get no self-respect without regularity. Fellows tell you that’s old fashioned. It appears to be peculiar any way; it never occurs to us to embody the main principle of life in our buildings; we load our houses with decoration, gimcracks, corners, anything to distract the eye. On the contrary the eye should rest; get your effects with a few strong lines. The whole thing is regularity there’s no self-respect without it.”\r\nSoames, the unconscious ironist, fixed his gaze on Bosinney’s tie, which was far from being in the perpendicular; he was unshaven too, and his dress not remarkable for order. Architecture appeared to have exhausted his regularity.\r\n“Won’t it look like a barrack?” he inquired.\r\nHe did not at once receive a reply.\r\n“I can see what it is,” said Bosinney, “you want one of Littlemaster’s houses — one of the pretty and commodious sort, where the servants will live in garrets, and the front door be sunk so that you may come up again. By all means try Littlemaster, you’ll find him a capital fellow, I’ve known him all my life!”\r\nSoames was alarmed. He had really been struck by the plans, and the concealment of his satisfaction had been merely instinctive. It was difficult for him to pay a compliment. He despised people who were lavish with their praises.\r\nHe found himself now in the embarrassing position of one who must pay a compliment or run the risk of losing a good thing. Bosinney was just the fellow who might tear up the plans and refuse to act for him; a kind of grown-up child!\r\nThis grown-up childishness, to which he felt so superior, exercised a peculiar and almost mesmeric effect on Soames, for he had never felt anything like it in himself.\r\n“Well,” he stammered at last, “it’s — it’s, certainly original.”\r\nHe had such a private distrust and even dislike of the word ‘original’ that he felt he had not really given himself away by this remark.\r\nBosinney seemed pleased. It was the sort of thing that would please a fellow like that! And his success encouraged Soames.\r\n“It’s — a big place,” he said.\r\n“Space, air, light,” he heard Bosinney murmur, “you can’t live like a gentleman in one of Littlemaster’s — he builds for manufacturers.”\r\nSoames made a deprecating movement; he had been identified with a gentleman; not for a good deal of money now would he be classed with manufacturers. But his innate distrust of general principles revived. What the deuce was the good of talking about regularity and self-respect? It looked to him as if the house would be cold.\r\n“Irene can’t stand the cold!” he said.\r\n“Ah!” said Bosinney sarcastically. “Your wife? She doesn’t like the cold? I’ll see to that; she shan’t be cold. Look here!” he pointed, to four marks at regular intervals on the walls of the court. “I’ve given you hot-water pipes in aluminium casings; you can get them with very good designs.”\r\nSoames looked suspiciously at these marks.\r\n“It’s all very well, all this,” he said, “but what’s it going to cost?”\r\nThe architect took a sheet of paper from his pocket:\r\n“The house, of course, should be built entirely of stone, but, as I thought you wouldn’t stand that, I’ve compromised for a facing. It ought to have a copper roof, but I’ve made it green slate. As it is, including metal work, it’ll cost you eight thousand five hundred.”\r\n“Eight thousand five hundred?” said Soames. “Why, I gave you an outside limit of eight!”\r\n“Can’t be done for a penny less,” replied Bosinney coolly.\r\n“You must take it or leave it!”\r\nIt was the only way, probably, that such a proposition could have been made to Soames. He was nonplussed. Conscience told him to throw the whole thing up. But the design was good, and he knew it — there was completeness about it, and dignity; the servants’ apartments were excellent too. He would gain credit by living in a house like that — with such individual features, yet perfectly well-arranged.\r\nHe continued poring over the plans, while Bosinney went into his bedroom to shave and dress.\r\nThe two walked back to Montpellier Square in silence, Soames watching him out of the corner of his eye.\r\nThe Buccaneer was rather a good-looking fellow — so he thought — when he was properly got up.\r\nIrene was bending over her flowers when the two men came in.\r\nShe spoke of sending across the Park to fetch June.\r\n“No, no,” said Soames, “we’ve still got business to talk over!”\r\nAt lunch he was almost cordial, and kept pressing Bosinney to eat. He was pleased to see the architect in such high spirits, and left him to spend the afternoon with Irene, while he stole off to his pictures, after his Sunday habit. At tea-time he came down to the drawing-room, and found them talking, as he expressed it, nineteen to the dozen.\r\nUnobserved in the doorway, he congratulated himself that things were taking the right turn. It was lucky she and Bosinney got on; she seemed to be falling into line with the idea of the new house.\r\nQuiet meditation among his pictures had decided him to spring the five hundred if necessary; but he hoped that the afternoon might have softened Bosinney’s estimates. It was so purely a matter which Bosinney could remedy if he liked; there must be a dozen ways in which he could cheapen the production of a house without spoiling the effect.\r\nHe awaited, therefore, his opportunity till Irene was handing the architect his first cup of tea. A chink of sunshine through the lace of the blinds warmed her cheek, shone in the gold of her hair, and in her soft eyes. Possibly the same gleam deepened Bosinney’s colour, gave the rather startled look to his face.\r\nSoames hated sunshine, and he at once got up, to draw the blind. Then he took his own cup of tea from his wife, and said, more coldly than he had intended:\r\n“Can’t you see your way to do it for eight thousand after all? There must be a lot of little things you could alter.”\r\nBosinney drank off his tea at a gulp, put down his cup, and answered:\r\n“Not one!”\r\nSoames saw that his suggestion had touched some unintelligible point of personal vanity.\r\n“Well,” he agreed, with sulky resignation; “you must have it your own way, I suppose.”\r\nA few minutes later Bosinney rose to go, and Soames rose too, to see him off the premises. The architect seemed in absurdly high spirits. After watching him walk away at a swinging pace, Soames returned moodily to the drawing-room, where Irene was putting away the music, and, moved by an uncontrollable spasm of curiosity, he asked:\r\n“Well, what do you think of ‘The Buccaneer’?”\r\nHe looked at the carpet while waiting for her answer, and he had to wait some time.\r\n“I don’t know,” she said at last.\r\n“Do you think he’s good-looking?”\r\nIrene smiled. And it seemed to Soames that she was mocking him.\r\n“Yes,” she answered; “very.”\r\nChapter 9  Death of Aunt Ann\r\nThere came a morning at the end of September when Aunt Ann was unable to take from Smither’s hands the insignia of personal dignity. After one look at the old face, the doctor, hurriedly sent for, announced that Miss Forsyte had passed away in her sleep.\r\nAunts Juley and Hester were overwhelmed by the shock. They had never imagined such an ending. Indeed, it is doubtful whether they had ever realized that an ending was bound to come. Secretly they felt it unreasonable of Ann to have left them like this without a word, without even a struggle. It was unlike her.\r\nPerhaps what really affected them so profoundly was the thought that a Forsyte should have let go her grasp on life. If one, then why not all!\r\nIt was a full hour before they could make up their minds to tell Timothy. If only it could be kept from him! If only it could be broken to him by degrees!\r\nAnd long they stood outside his door whispering together. And when it was over they whispered together again.\r\nHe would feel it more, they were afraid, as time went on. Still, he had taken it better than could have been expected. He would keep his bed, of course!\r\nThey separated, crying quietly.\r\nAunt Juley stayed in her room, prostrated by the blow. Her face, discoloured by tears, was divided into compartments by the little ridges of pouting flesh which had swollen with emotion. It was impossible to conceive of life without Ann, who had lived with her for seventy-three years, broken only by the short interregnum of her married life, which seemed now so unreal. At fixed intervals she went to her drawer, and took from beneath the lavender bags a fresh pocket-handkerchief. Her warm heart could not bear the thought that Ann was lying there so cold.\r\nAunt Hester, the silent, the patient, that backwater of the family energy, sat in the drawing-room, where the blinds were drawn; and she, too, had wept at first, but quietly, without visible effect. Her guiding principle, the conservation of energy, did not abandon her in sorrow. She sat, slim, motionless, studying the grate, her hands idle in the lap of her black silk dress. They would want to rouse her into doing something, no doubt. As if there were any good in that! Doing something would not bring back Ann! Why worry her?\r\nFive o’clock brought three of the brothers, Jolyon and James and Swithin; Nicholas was at Yarmouth, and Roger had a bad attack of gout. Mrs. Hayman had been by herself earlier in the day, and, after seeing Ann, had gone away, leaving a message for Timothy — which was kept from him — that she ought to have been told sooner. In fact, there was a feeling amongst them all that they ought to have been told sooner, as though they had missed something; and James said:\r\n“I knew how it’d be; I told you she wouldn’t last through the summer.”\r\nAunt Hester made no reply; it was nearly October, but what was the good of arguing; some people were never satisfied.\r\nShe sent up to tell her sister that the brothers were there. Mrs. Small came down at once. She had bathed her face, which was still swollen, and though she looked severely at Swithin’s trousers, for they were of light blue — he had come straight from the club, where the news had reached him — she wore a more cheerful expression than usual, the instinct for doing the wrong thing being even now too strong for her.\r\nPresently all five went up to look at the body. Under the pure white sheet a quilted counter-pane had been placed, for now, more than ever, Aunt Ann had need of warmth; and, the pillows removed, her spine and head rested flat, with the semblance of their life-long inflexibility; the coif banding the top of her brow was drawn on either side to the level of the ears, and between it and the sheet her face, almost as white, was turned with closed eyes to the faces of her brothers and sisters. In its extraordinary peace the face was stronger than ever, nearly all bone now under the scarce-wrinkled parchment of skin — square jaw and chin, cheekbones, forehead with hollow temples, chiselled nose — the fortress of an unconquerable spirit that had yielded to death, and in its upward sightlessness seemed trying to regain that spirit, to regain the guardianship it had just laid down.\r\nSwithin took but one look at the face, and left the room; the sight, he said afterwards, made him very queer. He went downstairs shaking the whole house, and, seizing his hat, clambered into his brougham, without giving any directions to the coachman. He was driven home, and all the evening sat in his chair without moving.\r\nHe could take nothing for dinner but a partridge, with an imperial pint of champagne. . . .\r\nOld Jolyon stood at the bottom of the bed, his hands folded in front of him. He alone of those in the room remembered the death of his mother, and though he looked at Ann, it was of that he was thinking. Ann was an old woman, but death had come to her at last — death came to all! His face did not move, his gaze seemed travelling from very far.\r\nAunt Hester stood beside him. She did not cry now, tears were exhausted — her nature refused to permit a further escape of force; she twisted her hands, looking not at Ann, but from side to side, seeking some way of escaping the effort of realization.\r\nOf all the brothers and sisters James manifested the most emotion. Tears rolled down the parallel furrows of his thin face; where he should go now to tell his troubles he did not know; Juley was no good, Hester worse than useless! He felt Ann’s death more than he had ever thought he should; this would upset him for weeks!\r\nPresently Aunt Hester stole out, and Aunt Juley began moving about, doing ‘what was necessary,’ so that twice she knocked against something. Old Jolyon, roused from his reverie, that reverie of the long, long past, looked sternly at her, and went away. James alone was left by the bedside; glancing stealthily round, to see that he was not observed, he twisted his long body down, placed a kiss on the dead forehead, then he, too, hastily left the room. Encountering Smither in the hall, he began to ask her about the funeral, and, finding that she knew nothing, complained bitterly that, if they didn’t take care, everything would go wrong. She had better send for Mr. Soames — he knew all about that sort of thing; her master was very much upset, he supposed — he would want looking after; as for her mistresses, they were no good — they had no gumption! They would be ill too, he shouldn’t wonder. She had better send for the doctor; it was best to take things in time. He didn’t think his sister Ann had had the best opinion; if she’d had Blank she would have been alive now. Smither might send to Park Lane any time she wanted advice. Of course, his carriage was at their service for the funeral. He supposed she hadn’t such a thing as a glass of claret and a biscuit — he had had no lunch!\r\nThe days before the funeral passed quietly. It had long been known, of course, that Aunt Ann had left her little property to Timothy. There was, therefore, no reason for the slightest agitation. Soames, who was sole executor, took charge of all arrangements, and in due course sent out the following invitation to every male member of the family:\r\nTo. . . . . . . . . . .\r\nYour presence is requested at the funeral of Miss Ann Forsyte, in Highgate Cemetery, at noon of Oct. 1st. Carriages will meet at “The Bower,” Bayswater Road, at 10.45. No flowers by request. ‘R.S.V.P.’\r\nThe morning came, cold, with a high, grey, London sky, and at half-past ten the first carriage, that of James, drove up. It contained James and his son-in-law Dartie, a fine man, with a square chest, buttoned very tightly into a frock coat, and a sallow, fattish face adorned with dark, well-curled moustaches, and that incorrigible commencement of whisker which, eluding the strictest attempts at shaving, seems the mark of something deeply ingrained in the personality of the shaver, being especially noticeable in men who speculate.\r\nSoames, in his capacity of executor, received the guests, for Timothy still kept his bed; he would get up after the funeral; and Aunts Juley and Hester would not be coming down till all was over, when it was understood there would be lunch for anyone who cared to come back. The next to arrive was Roger, still limping from the gout, and encircled by three of his sons — young Roger, Eustace, and Thomas. George, the remaining son, arrived almost immediately afterwards in a hansom, and paused in the hall to ask Soames how he found undertaking pay.\r\nThey disliked each other.\r\nThen came two Haymans — Giles and Jesse perfectly silent, and very well dressed, with special creases down their evening trousers. Then old Jolyon alone. Next, Nicholas, with a healthy colour in his face, and a carefully veiled sprightliness in every movement of his head and body. One of his sons followed him, meek and subdued. Swithin Forsyte, and Bosinney arrived at the same moment — and stood — bowing precedence to each other — but on the door opening they tried to enter together; they renewed their apologies in the hall, and, Swithin, settling his stock, which had become disarranged in the struggle, very slowly mounted the stairs. The other Hayman; two married sons of Nicholas, together with Tweetyman, Spender, and Warry, the husbands of married Forsyte and Hayman daughters. The company was then complete, twenty-one in all, not a male member of the family being absent but Timothy and young Jolyon.\r\nEntering the scarlet and green drawing-room, whose apparel made so vivid a setting for their unaccustomed costumes, each tried nervously to find a seat, desirous of hiding the emphatic blackness of his trousers. There seemed a sort of indecency in that blackness and in the colour of their gloves — a sort of exaggeration of the feelings; and many cast shocked looks of secret envy at ‘the Buccaneer,’ who had no gloves, and was wearing grey trousers. A subdued hum of conversation rose, no one speaking of the departed, but each asking after the other, as though thereby casting an indirect libation to this event, which they had come to honour.\r\nAnd presently James said:\r\n“Well, I think we ought to be starting.”\r\nThey went downstairs, and, two and two, as they had been told off in strict precedence, mounted the carriages.\r\nThe hearse started at a foot’s pace; the carriages moved slowly after. In the first went old Jolyon with Nicholas; in the second, the twins, Swithin and James; in the third, Roger and young Roger; Soames, young Nicholas, George, and Bosinney followed in the fourth. Each of the other carriages, eight in all, held three or four of the family; behind them came the doctor’s brougham; then, at a decent interval, cabs containing family clerks and servants; and at the very end, one containing nobody at all, but bringing the total cortege up to the number of thirteen.\r\nSo long as the procession kept to the highway of the Bayswater Road, it retained the foot’s-pace, but, turning into less important thorough-fares, it soon broke into a trot, and so proceeded, with intervals of walking in the more fashionable streets, until it arrived. In the first carriage old Jolyon and Nicholas were talking of their wills. In the second the twins, after a single attempt, had lapsed into complete silence; both were rather deaf, and the exertion of making themselves heard was too great. Only once James broke this silence:\r\n“I shall have to be looking about for some ground somewhere. What arrangements have you made, Swithin?”\r\nAnd Swithin, fixing him with a dreadful stare, answered:\r\n“Don’t talk to me about such things!”\r\nIn the third carriage a disjointed conversation was carried on in the intervals of looking out to see how far they had got, George remarking, “Well, it was really time that the poor old lady went.” He didn’t believe in people living beyond seventy, Young Nicholas replied mildly that the rule didn’t seem to apply to the Forsytes. George said he himself intended to commit suicide at sixty. Young Nicholas, smiling and stroking a long chin, didn’t think his father would like that theory; he had made a lot of money since he was sixty. Well, seventy was the outside limit; it was then time, George said, for them to go and leave their money to their children. Soames, hitherto silent, here joined in; he had not forgotten the remark about the ‘undertaking,’ and, lifting his eyelids almost imperceptibly, said it was all very well for people who never made money to talk. He himself intended to live as long as he could. This was a hit at George, who was notoriously hard up. Bosinney muttered abstractedly “Hear, hear!” and, George yawning, the conversation dropped.\r\nUpon arriving, the coffin was borne into the chapel, and, two by two, the mourners filed in behind it. This guard of men, all attached to the dead by the bond of kinship, was an impressive and singular sight in the great city of London, with its overwhelming diversity of life, its innumerable vocations, pleasures, duties, its terrible hardness, its terrible call to individualism.\r\nThe family had gathered to triumph over all this, to give a show of tenacious unity, to illustrate gloriously that law of property underlying the growth of their tree, by which it had thriven and spread, trunk and branches, the sap flowing through all, the full growth reached at the appointed time. The spirit of the old woman lying in her last sleep had called them to this demonstration. It was her final appeal to that unity which had been their strength — it was her final triumph that she had died while the tree was yet whole.\r\nShe was spared the watching of the branches jut out beyond the point of balance. She could not look into the hearts of her followers. The same law that had worked in her, bringing her up from a tall, straight-backed slip of a girl to a woman strong and grown, from a woman grown to a woman old, angular, feeble, almost witchlike, with individuality all sharpened and sharpened, as all rounding from the world’s contact fell off from her — that same law would work, was working, in the family she had watched like a mother.\r\nShe had seen it young, and growing, she had seen it strong and grown, and before her old eyes had time or strength to see any more, she died. She would have tried, and who knows but she might have kept it young and strong, with her old fingers, her trembling kisses — a little longer; alas! not even Aunt Ann could fight with Nature.\r\n‘Pride comes before a fall!’ In accordance with this, the greatest of Nature’s ironies, the Forsyte family had gathered for a last proud pageant before they fell. Their faces to right and left, in single lines, were turned for the most part impassively toward the ground, guardians of their thoughts; but here and there, one looking upward, with a line between his brows, searched to see some sight on the chapel walls too much for him, to be listening to something that appalled. And the responses, low-muttered, in voices through which rose the same tone, the same unseizable family ring, sounded weird, as though murmured in hurried duplication by a single person.\r\nThe service in the chapel over, the mourners filed up again to guard the body to the tomb. The vault stood open, and, round it, men in black were waiting.\r\nFrom that high and sacred field, where thousands of the upper middle class lay in their last sleep, the eyes of the Forsytes travelled down across the flocks of graves. There — spreading to the distance, lay London, with no sun over it, mourning the loss of its daughter, mourning with this family, so dear, the loss of her who was mother and guardian. A hundred thousand spires and houses, blurred in the great grey web of property, lay there like prostrate worshippers before the grave of this, the oldest Forsyte of them all.\r\nA few words, a sprinkle of earth, the thrusting of the coffin home, and Aunt Ann had passed to her last rest.\r\nRound the vault, trustees of that passing, the five brothers stood, with white heads bowed; they would see that Ann was comfortable where she was going. Her little property must stay behind, but otherwise, all that could be should be done. . . .\r\nThen severally, each stood aside, and putting on his hat, turned back to inspect the new inscription on the marble of the family vault:\r\nSACRED TO THE MEMORY OF ANN FORSYTE, THE DAUGHTER OF THE ABOVE JOLYON AND ANN FORSYTE, WHO DEPARTED THIS LIFE THE 27TH DAY OF SEPTEMBER, 1886, AGED EIGHTY-SEVEN YEARS AND FOUR DAYS\r\nSoon perhaps, someone else would be wanting an inscription. It was strange and intolerable, for they had not thought somehow, that Forsytes could die. And one and all they had a longing to get away from this painfulness, this ceremony which had reminded them of things they could not bear to think about — to get away quickly and go about their business and forget.\r\nIt was cold, too; the wind, like some slow, disintegrating force, blowing up the hill over the graves, struck them with its chilly breath; they began to split into groups, and as quickly as possible to fill the waiting carriages.\r\nSwithin said he should go back to lunch at Timothy’s, and he offered to take anybody with him in his brougham. It was considered a doubtful privilege to drive with Swithin in his brougham, which was not a large one; nobody accepted, and he went off alone. James and Roger followed immediately after; they also would drop in to lunch. The others gradually melted away, Old Jolyon taking three nephews to fill up his carriage; he had a want of those young faces.\r\nSoames, who had to arrange some details in the cemetery office, walked away with Bosinney. He had much to talk over with him, and, having finished his business, they strolled to Hampstead, lunched together at the Spaniard’s Inn, and spent a long time in going into practical details connected with the building of the house; they then proceeded to the tram-line, and came as far as the Marble Arch, where Bosinney went off to Stanhope Gate to see June.\r\nSoames felt in excellent spirits when he arrived home, and confided to Irene at dinner that he had had a good talk with Bosinney, who really seemed a sensible fellow; they had had a capital walk too, which had done his liver good — he had been short of exercise for a long time — and altogether a very satisfactory day. If only it hadn’t been for poor Aunt Ann, he would have taken her to the theatre; as it was, they must make the best of an evening at home.\r\n“The Buccaneer asked after you more than once,” he said suddenly. And moved by some inexplicable desire to assert his proprietorship, he rose from his chair and planted a kiss on his wife’s shoulder.\r\nPart II  Chapter 10  Progress of the House\r\nThe winter had been an open one. Things in the trade were slack; and as Soames had reflected before making up his mind, it had been a good time for building. The shell of the house at Robin Hill was thus completed by the end of April.\r\nNow that there was something to be seen for his money, he had been coming down once, twice, even three times a week, and would mouse about among the debris for hours, careful never to soil his clothes, moving silently through the unfinished brickwork of doorways, or circling round the columns in the central court.\r\nAnd he would stand before them for minutes’ together, as though peering into the real quality of their substance.\r\nOn April 30 he had an appointment with Bosinney to go over the accounts, and five minutes before the proper time he entered the tent which the architect had pitched for himself close to the old oak tree.\r\nThe accounts were already prepared on a folding table, and with a nod Soames sat down to study them. It was some time before he raised his head.\r\n“I can’t make them out,” he said at last; “they come to nearly seven hundred more than they ought”\r\nAfter a glance at Bosinney’s face he went on quickly:\r\n“If you only make a firm stand against these builder chaps you’ll get them down. They stick you with everything if you don’t look sharp. . . . Take ten per cent. off all round. I shan’t mind it’s coming out a hundred or so over the mark!”\r\nBosinney shook his head:\r\n“I’ve taken off every farthing I can!”\r\nSoames pushed back the table with a movement of anger, which sent the account sheets fluttering to the ground.\r\n“Then all I can say is,” he flustered out, “you’ve made a pretty mess of it!”\r\n“I’ve told you a dozen times,” Bosinney answered sharply, “that there’d be extras. I’ve pointed them out to you over and over again!”\r\n“I know that,” growled Soames: “I shouldn’t have objected to a ten pound note here and there. How was I to know that by ‘extras’ you meant seven hundred pounds?”\r\nThe qualities of both men had contributed to this not-inconsiderable discrepancy. On the one hand, the architect’s devotion to his idea, to the image of a house which he had created and believed in — had made him nervous of being stopped, or forced to the use of makeshifts; on the other, Soames’ not less true and wholehearted devotion to the very best article that could be obtained for the money, had rendered him averse to believing that things worth thirteen shillings could not be bought with twelve.\r\n“I wish I’d never undertaken your house,” said Bosinney suddenly. “You come down here worrying me out of my life. You want double the value for your money anybody else would, and now that you’ve got a house that for its size is not to be beaten in the county, you don’t want to pay for it. If you’re anxious to be off your bargain, I daresay I can find the balance above the estimates myself, but I’m d —— d if I do another stroke of work for you!”\r\nSoames regained his composure. Knowing that Bosinney had no capital, he regarded this as a wild suggestion. He saw, too, that he would be kept indefinitely out of this house on which he had set his heart, and just at the crucial point when the architect’s personal care made all the difference. In the meantime there was Irene to be thought of! She had been very queer lately. He really believed it was only because she had taken to Bosinney that she tolerated the idea of the house at all. It would not do to make an open breach with her.\r\n“You needn’t get into a rage,” he said. “If I’m willing to put up with it, I suppose you needn’t cry out. All I meant was that when you tell me a thing is going to cost so much, I like to — well, in fact, I— like to know where I am.”\r\n“Look here!” said Bosinney, and Soames was both annoyed and surprised by the shrewdness of his glance. “You’ve got my services dirt cheap. For the kind of work I’ve put into this house, and the amount of time I’ve given to it, you’d have had to pay Littlemaster or some other fool four times as much. What you want, in fact, is a first-rate man for a fourth-rate fee, and that’s exactly what you’ve got!”\r\nSoames saw that he really meant what he said, and, angry though he was, the consequences of a row rose before him too vividly. He saw his house unfinished, his wife rebellious, himself a laughingstock.\r\n“Let’s go over it,” he said sulkily, “and see how the money’s gone.”\r\n“Very well,” assented Bosinney. “But we’ll hurry up, if you don’t mind. I have to get back in time to take June to the theatre.”\r\nSoames cast a stealthy look at him, and said: “Coming to our place, I suppose to meet her?” He was always coming to their place!\r\nThere had been rain the night before-a spring rain, and the earth smelt of sap and wild grasses. The warm, soft breeze swung the leaves and the golden buds of the old oak tree, and in the sunshine the blackbirds were whistling their hearts out.\r\nIt was such a spring day as breathes into a man an ineffable yearning, a painful sweetness, a longing that makes him stand motionless, looking at the leaves or grass, and fling out his arms to embrace he knows not what. The earth gave forth a fainting warmth, stealing up through the chilly garment in which winter had wrapped her. It was her long caress of invitation, to draw men down to lie within her arms, to roll their bodies on her, and put their lips to her breast.\r\nOn just such a day as this Soames had got from Irene the promise he had asked her for so often. Seated on the fallen trunk of a tree, he had promised for the twentieth time that if their marriage were not a success, she should be as free as if she had never married him!\r\n“Do you swear it?” she had said. A few days back she had reminded him of that oath. He had answered: “Nonsense! I couldn’t have sworn any such thing!” By some awkward fatality he remembered it now. What queer things men would swear for the sake of women! He would have sworn it at any time to gain her! He would swear it now, if thereby he could touch her — but nobody could touch her, she was cold-hearted!\r\nAnd memories crowded on him with the fresh, sweet savour of the spring wind-memories of his courtship.\r\nIn the spring of the year 1881 he was visiting his old school-fellow and client, George Liversedge, of Branksome, who, with the view of developing his pine-woods in the neighbourhood of Bournemouth, had placed the formation of the company necessary to the scheme in Soames’s hands. Mrs. Liversedge, with a sense of the fitness of things, had given a musical tea in his honour. Later in the course of this function, which Soames, no musician, had regarded as an unmitigated bore, his eye had been caught by the face of a girl dressed in mourning, standing by herself. The lines of her tall, as yet rather thin figure, showed through the wispy, clinging stuff of her black dress, her black-gloved hands were crossed in front of her, her lips slightly parted, and her large, dark eyes wandered from face to face. Her hair, done low on her neck, seemed to gleam above her black collar like coils of shining metal. And as Soames stood looking at her, the sensation that most men have felt at one time or another went stealing through him — a peculiar satisfaction of the senses, a peculiar certainty, which novelists and old ladies call love at first sight. Still stealthily watching her, he at once made his way to his hostess, and stood doggedly waiting for the music to cease.\r\n“Who is that girl with yellow hair and dark eyes?” he asked.\r\n“That — oh! Irene Heron. Her father, Professor Heron, died this year. She lives with her stepmother. She’s a nice girl, a pretty girl, but no money!”\r\n“Introduce me, please,” said Soames.\r\nIt was very little that he found to say, nor did he find her responsive to that little. But he went away with the resolution to see her again. He effected his object by chance, meeting her on the pier with her stepmother, who had the habit of walking there from twelve to one of a forenoon. Soames made this lady’s acquaintance with alacrity, nor was it long before he perceived in her the ally he was looking for. His keen scent for the commercial side of family life soon told him that Irene cost her stepmother more than the fifty pounds a year she brought her; it also told him that Mrs. Heron, a woman yet in the prime of life, desired to be married again. The strange ripening beauty of her stepdaughter stood in the way of this desirable consummation. And Soames, in his stealthy tenacity, laid his plans.\r\nHe left Bournemouth without having given himself away, but in a month’s time came back, and this time he spoke, not to the girl, but to her stepmother. He had made up his mind, he said; he would wait any time. And he had long to wait, watching Irene bloom, the lines of her young figure softening, the stronger blood deepening the gleam of her eyes, and warming her face to a creamy glow; and at each visit he proposed to her, and when that visit was at an end, took her refusal away with him, back to London, sore at heart, but steadfast and silent as the grave. He tried to come at the secret springs of her resistance; only once had he a gleam of light. It was at one of those assembly dances, which afford the only outlet to the passions of the population of seaside watering-places. He was sitting with her in an embrasure, his senses tingling with the contact of the waltz. She had looked at him over her, slowly waving fan; and he had lost his head. Seizing that moving wrist, he pressed his lips to the flesh of her arm. And she had shuddered — to this day he had not forgotten that shudder — nor the look so passionately averse she had given him.\r\nA year after that she had yielded. What had made her yield he could never make out; and from Mrs. Heron, a woman of some diplomatic talent, he learnt nothing. Once after they were married he asked her, “What made you refuse me so often?” She had answered by a strange silence. An enigma to him from the day that he first saw her, she was an enigma to him still. . . .\r\nBosinney was waiting for him at the door; and on his rugged, good-looking, face was a queer, yearning, yet happy look, as though he too saw a promise of bliss in the spring sky, sniffed a coming happiness in the spring air. Soames looked at him waiting there. What was the matter with the fellow that he looked so happy? What was he waiting for with that smile on his lips and in his eyes? Soames could not see that for which Bosinney was waiting as he stood there drinking in the flower-scented wind. And once more he felt baffled in the presence of this man whom by habit he despised. He hastened on to the house.\r\n“The only colour for those tiles,” he heard Bosinney say — “is ruby with a grey tint in the stuff, to give a transparent effect. I should like Irene’s opinion. I’m ordering the purple leather curtains for the doorway of this court; and if you distemper the drawing-room ivory cream over paper, you’ll get an illusive look. You want to aim all through the decorations at what I call charm.”\r\nSoames said: “You mean that my wife has charm!”\r\nBosinney evaded the question.\r\n“You should have a clump of iris plants in the centre of that court.”\r\nSoames smiled superciliously.\r\n“I’ll look into Beech’s some time,” he said, “and see what’s appropriate!”\r\nThey found little else to say to each other, but on the way to the Station Soames asked:\r\n“I suppose you find Irene very artistic.”\r\n“Yes.” The abrupt answer was as distinct a snub as saying: “If you want to discuss her you can do it with someone else!”\r\nAnd the slow, sulky anger Soames had felt all the afternoon burned the brighter within him.\r\nNeither spoke again till they were close to the Station, then Soames asked:\r\n“When do you expect to have finished?”\r\n“By the end of June, if you really wish me to decorate as well.”\r\nSoames nodded. “But you quite understand,” he said, “that the house is costing me a lot beyond what I contemplated. I may as well tell you that I should have thrown it up, only I’m not in the habit of giving up what I’ve set my mind on.”\r\nBosinney made no reply. And Soames gave him askance a look of dogged dislike — for in spite of his fastidious air and that supercilious, dandified taciturnity, Soames, with his set lips and squared chin, was not unlike a bulldog. . . .\r\nWhen, at seven o’clock that evening, June arrived at 62, Montpellier Square, the maid Bilson told her that Mr. Bosinney was in the drawing-room; the mistress — she said — was dressing, and would be down in a minute. She would tell her that Miss June was here.\r\nJune stopped her at once.\r\n“All right, Bilson,” she said, “I’ll just go in. You, needn’t hurry Mrs. Soames.”\r\nShe took off her cloak, and Bilson, with an understanding look, did not even open the drawing-room door for her, but ran downstairs.\r\nJune paused for a moment to look at herself in the little old-fashioned silver mirror above the oaken rug chest — a slim, imperious young figure, with a small resolute face, in a white frock, cut moon-shaped at the base of a neck too slender for her crown of twisted red-gold hair.\r\nShe opened the drawing-room door softly, meaning to take him by surprise. The room was filled with a sweet hot scent of flowering azaleas.\r\nShe took a long breath of the perfume, and heard Bosinney’s voice, not in the room, but quite close, saying.\r\n“Ah! there were such heaps of things I wanted to talk about, and now we shan’t have time!”\r\nIrene’s voice answered: “Why not at dinner?”\r\n“How can one talk. . . . ”\r\nJune’s first thought was to go away, but instead she crossed to the long window opening on the little court. It was from there that the scent of the azaleas came, and, standing with their backs to her, their faces buried in the golden-pink blossoms, stood her lover and Irene.\r\nSilent but unashamed, with flaming cheeks and angry eyes, the girl watched.\r\n“Come on Sunday by yourself — We can go over the house together.”\r\nJune saw Irene look up at him through her screen of blossoms. It was not the look of a coquette, but — far worse to the watching girl — of a woman fearful lest that look should say too much.\r\n“I’ve promised to go for a drive with Uncle. . . . ”\r\n“The big one! Make him bring you; it’s only ten miles — the very thing for his horses.”\r\n“Poor old Uncle Swithin!”\r\nA wave of the azalea scent drifted into June’s face; she felt sick and dizzy.\r\n“Do! ah! do!”\r\n“But why?”\r\n“I must see you there — I thought you’d like to help me. . . . ”\r\nThe answer seemed to the girl to come softly with a tremble from amongst the blossoms: “So I do!”\r\nAnd she stepped into the open space of the window.\r\n“How stuffy it is here!” she said; “I can’t bear this scent!”\r\nHer eyes, so angry and direct, swept both their faces.\r\n“Were you talking about the house? I haven’t seen it yet, you know — shall we all go on Sunday?”’\r\nFrom Irene’s face the colour had flown.\r\n“I am going for a drive that day with Uncle Swithin,” she answered.\r\n“Uncle Swithin! What does he matter? You can throw him over!”\r\n“I am not in the habit of throwing people over!”\r\nThere was a sound of footsteps and June saw Soames standing just behind her.\r\n“Well! if you are all ready,” said Irene, looking from one to the other with a strange smile, “dinner is too!”\r\nChapter 11  June’s Treat\r\nDinner began in silence; the women facing one another, and the men.\r\nIn silence the soup was finished — excellent, if a little thick; and fish was brought. In silence it was handed.\r\nBosinney ventured: “It’s the first spring day.”\r\nIrene echoed softly: “Yes — the first spring day.”\r\n“Spring!” said June: “there isn’t a breath of air!” No one replied.\r\nThe fish was taken away, a fine fresh sole from Dover. And Bilson brought champagne, a bottle swathed around the neck with white. . . .\r\nSoames said: “You’ll find it dry.”\r\nCutlets were handed, each pink-frilled about the legs. They were refused by June, and silence fell.\r\nSoames said: “You’d better take a cutlet, June; there’s nothing coming.”\r\nBut June again refused, so they were borne away. And then Irene asked: “Phil, have you heard my blackbird?”\r\nBosinney answered: “Rather — he’s got a hunting-song. As I came round I heard him in the Square.”\r\n“He’s such a darling!”\r\n“Salad, sir?” Spring chicken was removed.\r\nBut Soames was speaking: “The asparagus is very poor. Bosinney, glass of sherry with your sweet? June, you’re drinking nothing!”\r\nJune said: “You know I never do. Wine’s such horrid stuff!”\r\nAn apple charlotte came upon a silver dish, and smilingly Irene said: “The azaleas are so wonderful this year!”\r\nTo this Bosinney murmured: “Wonderful! The scent’s extraordinary!”\r\nJune said: “How can you like the scent? Sugar, please, Bilson.”\r\nSugar was handed her, and Soames remarked: “This charlottes good!”\r\nThe charlotte was removed. Long silence followed. Irene, beckoning, said: “Take out the azalea, Bilson. Miss June can’t bear the scent.”\r\n“No; let it stay,” said June.\r\nOlives from France, with Russian caviare, were placed on little plates. And Soames remarked: “Why can’t we have the Spanish?” But no one answered.\r\nThe olives were removed. Lifting her tumbler June demanded: “Give me some water, please.” Water was given her. A silver tray was brought, with German plums. There was a lengthy pause. In perfect harmony all were eating them.\r\nBosinney counted up the stones: “This year — next year — some time.”\r\nIrene finished softly: “Never! There was such a glorious sunset. The sky’s all ruby still — so beautiful!”\r\nHe answered: “Underneath the dark.”\r\nTheir eyes had met, and June cried scornfully: “A London sunset!”\r\nEgyptian cigarettes were handed in a silver box. Soames, taking one, remarked: “What time’s your play begin?”\r\nNo one replied, and Turkish coffee followed in enamelled cups.\r\nIrene, smiling quietly, said: “If only. . . . ”\r\n“Only what?” said June.\r\n“If only it could always be the spring!”\r\nBrandy was handed; it was pale and old.\r\nSoames said: “Bosinney, better take some brandy.”\r\nBosinney took a glass; they all arose.\r\n“You want a cab?” asked Soames.\r\nJune answered: “No! My cloaks please, Bilson.” Her cloak was brought.\r\nIrene, from the window, murmured: “Such a lovely night! The stars are coming out!”\r\nSoames added: “Well, I hope you’ll both enjoy yourselves.”\r\nFrom the door June answered: “Thanks. Come, Phil.”\r\nBosinney cried: “I’m coming.”\r\nSoames smiled a sneering smile, and said: “I wish you luck!”\r\nAnd at the door Irene watched them go.\r\nBosinney called: “Good night!”\r\n“Good night!” she answered softly. . . .\r\nJune made her lover take her on the top of a ‘bus, saying she wanted air, and there sat silent, with her face to the breeze.\r\nThe driver turned once or twice, with the intention of venturing a remark, but thought better of it. They were a lively couple! The spring had got into his blood, too; he felt the need for letting steam escape, and clucked his tongue, flourishing his whip, wheeling his horses, and even they, poor things, had smelled the spring, and for a brief half-hour spurned the pavement with happy hoofs.\r\nThe whole town was alive; the boughs, curled upward with their decking of young leaves, awaited some gift the breeze could bring. New-lighted lamps were gaining mastery, and the faces of the crowd showed pale under that glare, while on high the great white clouds slid swiftly, softly, over the purple sky.\r\nMen in, evening dress had thrown back overcoats, stepping jauntily up the steps of Clubs; working folk loitered; and women — those women who at that time of night are solitary — solitary and moving eastward in a stream — swung slowly along, with expectation in their gait, dreaming of good wine and a good supper, or — for an unwonted minute, of kisses given for love.\r\nThose countless figures, going their ways under the lamps and the moving-sky, had one and all received some restless blessing from the stir of spring. And one and all, like those clubmen with their opened coats, had shed something of caste, and creed, and custom, and by the cock of their hats, the pace of their walk, their laughter, or their silence, revealed their common kinship under the passionate heavens.\r\nBosinney and June entered the theatre in silence, and mounted to their seats in the upper boxes. The piece had just begun, and the half-darkened house, with its rows of creatures peering all one way, resembled a great garden of flowers turning their faces to the sun.\r\nJune had never before been in the upper boxes. From the age of fifteen she had habitually accompanied her grandfather to the stalls, and not common stalls, but the best seats in the house, towards the centre of the third row, booked by old Jolyon, at Grogan and Boyne’s, on his way home from the City, long before the day; carried in his overcoat pocket, together with his cigar-case and his old kid gloves, and handed to June to keep till the appointed night. And in those stalls — an erect old figure with a serene white head, a little figure, strenuous and eager, with a red-gold head — they would sit through every kind of play, and on the way home old Jolyon would say of the principal actor: “Oh, he’s a poor stick! You should have seen little Bobson!”\r\nShe had looked forward to this evening with keen delight; it was stolen, chaperone-less, undreamed of at Stanhope Gate, where she was supposed to be at Soames’. She had expected reward for her subterfuge, planned for her lover’s sake; she had expected it to break up the thick, chilly cloud, and make the relations between them which of late had been so puzzling, so tormenting — sunny and simple again as they had been before the winter. She had come with the intention of saying something definite; and she looked at the stage with a furrow between her brows, seeing nothing, her hands squeezed together in her lap. A swarm of jealous suspicions stung and stung her.\r\nIf Bosinney was conscious of her trouble he made no sign.\r\nThe curtain dropped. The first act had come to an end.\r\n“It’s awfully hot here!” said the girl; “I should like to go out.”\r\nShe was very white, and she knew — for with her nerves thus sharpened she saw everything — that he was both uneasy and compunctious.\r\nAt the back of the theatre an open balcony hung over the street; she took possession of this, and stood leaning there without a word, waiting for him to begin.\r\nAt last she could bear it no longer.\r\n“I want to say something to you, Phil,” she said.\r\n“Yes?”\r\nThe defensive tone of his voice brought the colour flying to her cheek, the words flying to her lips: “You don’t give me a chance to be nice to you; you haven’t for ages now!”\r\nBosinney stared down at the street. He made no answer. . . .\r\nJune cried passionately: “You know I want to do everything for you — that I want to be everything to you. . . . ”\r\nA hum rose from the street, and, piercing it with a sharp ‘ping,’ the bell sounded for the raising of the curtain. June did not stir. A desperate struggle was going on within her. Should she put everything to the proof? Should she challenge directly that influence, that attraction which was driving him away from her? It was her nature to challenge, and she said: “Phil, take me to see the house on Sunday!”\r\nWith a smile quivering and breaking on her lips, and trying, how hard, not to show that she was watching, she searched his face, saw it waver and hesitate, saw a troubled line come between his brows, the blood rush into his face. He answered: “Not Sunday, dear; some other day!”\r\n“Why not Sunday? I shouldn’t be in the way on Sunday.”\r\nHe made an evident effort, and said: “I have an engagement.”\r\n“You are going to take. . . . ”\r\nHis eyes grew angry; he shrugged his shoulders, and answered: “An engagement that will prevent my taking you to see the house!”\r\nJune bit her lip till the blood came, and walked back to her seat without another word, but she could not help the tears of rage rolling down her face. The house had been mercifully darkened for a crisis, and no one could see her trouble.\r\nYet in this world of Forsytes let no man think himself immune from observation.\r\nIn the third row behind, Euphemia, Nicholas’s youngest daughter, with her married-sister, Mrs. Tweetyman, were watching.\r\nThey reported at Timothy’s, how they had seen June and her fiance at the theatre.\r\n“In the stalls?” “No, not in the. . . . ” “Oh! in the dress circle, of course. That seemed to be quite fashionable nowadays with young people!”\r\nWell — not exactly. In the. . . . Anyway, that engagement wouldn’t last long. They had never seen anyone look so thunder and lightningy as that little June! With tears of enjoyment in their eyes, they related how she had kicked a man’s hat as she returned to her seat in the middle of an act, and how the man had looked. Euphemia had a noted, silent laugh, terminating most disappointingly in squeaks; and when Mrs. Small, holding up her hands, said: “My dear! Kicked a ha-at?” she let out such a number of these that she had to be recovered with smelling-salts. As she went away she said to Mrs. Tweetyman:\r\n“Kicked a — ha-at! Oh! I shall die.”\r\nFor ‘that little June’ this evening, that was to have been ‘her treat,’ was the most miserable she had ever spent. God knows she tried to stifle her pride, her suspicion, her jealousy!\r\nShe parted from Bosinney at old Jolyon’s door without breaking down; the feeling that her lover must be conquered was strong enough to sustain her till his retiring footsteps brought home the true extent of her wretchedness.\r\nThe noiseless ‘Sankey’ let her in. She would have slipped up to her own room, but old Jolyon, who had heard her entrance, was in the dining-room doorway.\r\n“Come in and have your milk,” he said. “It’s been kept hot for you. You’re very late. Where have you been?”\r\nJune stood at the fireplace, with a foot on the fender and an arm on the mantelpiece, as her grandfather had done when he came in that night of the opera. She was too near a breakdown to care what she told him.\r\n“We dined at Soames’s.”\r\n“H’m! the man of property! His wife there and Bosinney?”\r\n“Yes.”\r\nOld Jolyon’s glance was fixed on her with the penetrating gaze from which it was difficult to hide; but she was not looking at him, and when she turned her face, he dropped his scrutiny at once. He had seen enough, and too much. He bent down to lift the cup of milk for her from the hearth, and, turning away, grumbled: “You oughtn’t to stay out so late; it makes you fit for nothing.”\r\nHe was invisible now behind his paper, which he turned with a vicious crackle; but when June came up to kiss him, he said: “Good-night, my darling,” in a tone so tremulous and unexpected, that it was all the girl could do to get out of the room without breaking into the fit of sobbing which lasted her well on into the night.\r\nWhen the door was closed, old Jolyon dropped his paper, and stared long and anxiously in front of him.\r\n‘The beggar!’ he thought. ‘I always knew she’d have trouble with him!’\r\nUneasy doubts and suspicions, the more poignant that he felt himself powerless to check or control the march of events, came crowding upon him.\r\nWas the fellow going to jilt her? He longed to go and say to him: “Look here, you sir! Are you going to jilt my grand-daughter?” But how could he? Knowing little or nothing, he was yet certain, with his unerring astuteness, that there was something going on. He suspected Bosinney of being too much at Montpellier Square.\r\n‘This fellow,’ he thought, ‘may not be a scamp; his face is not a bad one, but he’s a queer fish. I don’t know what to make of him. I shall never know what to make of him! They tell me he works like a nigger, but I see no good coming of it. He’s unpractical, he has no method. When he comes here, he sits as glum as a monkey. If I ask him what wine he’ll have, he says: “Thanks, any wine.” If I offer him a cigar, he smokes it as if it were a twopenny German thing. I never see him looking at June as he ought to look at her; and yet, he’s not after her money. If she were to make a sign, he’d be off his bargain to-morrow. But she won’t — not she! She’ll stick to him! She’s as obstinate as fate — She’ll never let go!’\r\nSighing deeply, he turned the paper; in its columns, perchance he might find consolation.\r\nAnd upstairs in her room June sat at her open window, where the spring wind came, after its revel across the Park, to cool her hot cheeks and burn her heart.\r\nChapter 12  Drive with Swithin\r\nTwo lines of a certain song in a certain famous old school’s songbook run as follows:\r\n‘How the buttons on his blue frock shone, tra-la-la! How he carolled and he sang, like a bird!. . . . ’\r\nSwithin did not exactly carol and sing like a bird, but he felt almost like endeavouring to hum a tune, as he stepped out of Hyde Park Mansions, and contemplated his horses drawn up before the door.\r\nThe afternoon was as balmy as a day in June, and to complete the simile of the old song, he had put on a blue frock-coat, dispensing with an overcoat, after sending Adolf down three times to make sure that there was not the least suspicion of east in the wind; and the frock-coat was buttoned so tightly around his personable form, that, if the buttons did not shine, they might pardonably have done so. Majestic on the pavement he fitted on a pair of dog-skin gloves; with his large bell-shaped top hat, and his great stature and bulk he looked too primeval for a Forsyte. His thick white hair, on which Adolf had bestowed a touch of pomatum, exhaled the fragrance of opoponax and cigars — the celebrated Swithin brand, for which he paid one hundred and forty shillings the hundred, and of which old Jolyon had unkindly said, he wouldn’t smoke them as a gift; they wanted the stomach of a horse!\r\n“Adolf!”\r\n“Sare!”\r\n“The new plaid rug!”\r\nHe would never teach that fellow to look smart; and Mrs. Soames he felt sure, had an eye!\r\n“The phaeton hood down; I am going — to — drive — a — lady!”\r\nA pretty woman would want to show off her frock; and well — he was going to drive a lady! It was like a new beginning to the good old days.\r\nAges since he had driven a woman! The last time, if he remembered, it had been Juley; the poor old soul had been as nervous as a cat the whole time, and so put him out of patience that, as he dropped her in the Bayswater Road, he had said: “Well I’m d —-d if I ever drive you again!” And he never had, not he!\r\nGoing up to his horses’ heads, he examined their bits; not that he knew anything about bits — he didn’t pay his coachman sixty pounds a year to do his work for him, that had never been his principle. Indeed, his reputation as a horsey man rested mainly on the fact that once, on Derby Day, he had been welshed by some thimble-riggers. But someone at the Club, after seeing him drive his greys up to the door — he always drove grey horses, you got more style for the money, some thought — had called him ‘Four-in-hand Forsyte.’ The name having reached his ears through that fellow Nicholas Treffry, old Jolyon’s dead partner, the great driving man notorious for more carriage accidents than any man in the kingdom — Swithin had ever after conceived it right to act up to it. The name had taken his fancy, not because he had ever driven four-in-hand, or was ever likely to, but because of something distinguished in the sound. Four-in-hand Forsyte! Not bad! Born too soon, Swithin had missed his vocation. Coming upon London twenty years later, he could not have failed to have become a stockbroker, but at the time when he was obliged to select, this great profession had not as yet became the chief glory of the upper-middle class. He had literally been forced into land agency.\r\nOnce in the driving seat, with the reins handed to him, and blinking over his pale old cheeks in the full sunlight, he took a slow look round — Adolf was already up behind; the cockaded groom at the horses’ heads stood ready to let go; everything was prepared for the signal, and Swithin gave it. The equipage dashed forward, and before you could say Jack Robinson, with a rattle and flourish drew up at Soames’ door.\r\nIrene came out at once, and stepped in — he afterward described it at Timothy’s —“as light as — er — Taglioni, no fuss about it, no wanting this or wanting that;” and above all, Swithin dwelt on this, staring at Mrs. Septimus in a way that disconcerted her a good deal, “no silly nervousness!” To Aunt Hester he portrayed Irene’s hat. “Not one of your great flopping things, sprawling about, and catching the dust, that women are so fond of nowadays, but a neat little —” he made a circular motion of his hand, “white veil — capital taste.”\r\n“What was it made of?” inquired Aunt Hester, who manifested a languid but permanent excitement at any mention of dress.\r\n“Made of?” returned Swithin; “now how should I know?”\r\nHe sank into silence so profound that Aunt Hester began to be afraid he had fallen into a trance. She did not try to rouse him herself, it not being her custom.\r\n‘I wish somebody would come,’ she thought; ‘I don’t like the look of him!’\r\nBut suddenly Swithin returned to life. “Made of” he wheezed out slowly, “what should it be made of?”\r\nThey had not gone four miles before Swithin received the impression that Irene liked driving with him. Her face was so soft behind that white veil, and her dark eyes shone so in the spring light, and whenever he spoke she raised them to him and smiled.\r\nOn Saturday morning Soames had found her at her writing-table with a note written to Swithin, putting him off. Why did she want to put him off? he asked. She might put her own people off when she liked, he would not have her putting off his people!\r\nShe had looked at him intently, had torn up the note, and said: “Very well!”\r\nAnd then she began writing another. He took a casual glance presently, and saw that it was addressed to Bosinney.\r\n“What are you writing to him about?” he asked.\r\nIrene, looking at him again with that intent look, said quietly: “Something he wanted me to do for him!”\r\n“Humph!” said Soames — “Commissions!”\r\n“You’ll have your work cut out if you begin that sort of thing!” He said no more.\r\nSwithin opened his eyes at the mention of Robin Hill; it was a long way for his horses, and he always dined at half-past seven, before the rush at the Club began; the new chef took more trouble with an early dinner — a lazy rascal!\r\nHe would like to have a look at the house, however. A house appealed to any Forsyte, and especially to one who had been an auctioneer. After all he said the distance was nothing. When he was a younger man he had had rooms at Richmond for many years, kept his carriage and pair there, and drove them up and down to business every day of his life.\r\nFour-in-hand Forsyte they called him! His T-cart, his horses had been known from Hyde Park Corner to the Star and Garter. The Duke of Z. . . . wanted to get hold of them, would have given him double the money, but he had kept them; know a good thing when you have it, eh? A look of solemn pride came portentously on his shaven square old face, he rolled his head in his stand-up collar, like a turkey-cock preening himself.\r\nShe was really — a charming woman! He enlarged upon her frock afterwards to Aunt Juley, who held up her hands at his way of putting it.\r\nFitted her like a skin — tight as a drum; that was how he liked ’em, all of a piece, none of your daverdy, scarecrow women! He gazed at Mrs. Septimus Small, who took after James — long and thin.\r\n“There’s style about her,” he went on, “fit for a king! And she’s so quiet with it too!”\r\n“She seems to have made quite a conquest of you, any way,” drawled Aunt Hester from her corner.\r\nSwithin heard extremely well when anybody attacked him.\r\n“What’s that?” he said. “I know a — pretty — woman when I see one, and all I can say is, I don’t see the young man about that’s fit for her; but perhaps — you — do, come, perhaps — you-do!”\r\n“Oh?” murmured Aunt Hester, “ask Juley!”\r\nLong before they reached Robin Hill, however, the unaccustomed airing had made him terribly sleepy; he drove with his eyes closed, a life-time of deportment alone keeping his tall and bulky form from falling askew.\r\nBosinney, who was watching, came out to meet them, and all three entered the house together; Swithin in front making play with a stout gold-mounted Malacca cane, put into his hand by Adolf, for his knees were feeling the effects of their long stay in the same position. He had assumed his fur coat, to guard against the draughts of the unfinished house.\r\nThe staircase — he said — was handsome! the baronial style! They would want some statuary about! He came to a standstill between the columns of the doorway into the inner court, and held out his cane inquiringly.\r\nWhat was this to be — this vestibule, or whatever they called it? But gazing at the skylight, inspiration came to him.\r\n“Ah! the billiard-room!”\r\nWhen told it was to be a tiled court with plants in the centre, he turned to Irene:\r\n“Waste this on plants? You take my advice and have a billiard table here!”\r\nIrene smiled. She had lifted her veil, banding it like a nun’s coif across her forehead, and the smile of her dark eyes below this seemed to Swithin more charming than ever. He nodded. She would take his advice he saw.\r\nHe had little to say of the drawing or dining-rooms, which he described as “spacious”; but fell into such raptures as he permitted to a man of his dignity, in the wine-cellar, to which he descended by stone steps, Bosinney going first with a light.\r\n“You’ll have room here,” he said, “for six or seven hundred dozen — a very pooty little cellar!”\r\nBosinney having expressed the wish to show them the house from the copse below, Swithin came to a stop.\r\n“There’s a fine view from here,” he remarked; “you haven’t such a thing as a chair?”\r\nA chair was brought him from Bosinney’s tent.\r\n“You go down,” he said blandly; “you two! I’ll sit here and look at the view.”\r\nHe sat down by the oak tree, in the sun; square and upright, with one hand stretched out, resting on the nob of his cane, the other planted on his knee; his fur coat thrown open, his hat, roofing with its flat top the pale square of his face; his stare, very blank, fixed on the landscape.\r\nHe nodded to them as they went off down through the fields. He was, indeed, not sorry to be left thus for a quiet moment of reflection. The air was balmy, not too much heat in the sun; the prospect a fine one, a remarka. . . . His head fell a little to one side; he jerked it up and thought: Odd! He — ah! They were waving to him from the bottom! He put up his hand, and moved it more than once. They were active — the prospect was remar. . . . His head fell to the left, he jerked it up at once; it fell to the right. It remained there; he was asleep.\r\nAnd asleep, a sentinel on the — top of the rise, he appeared to rule over this prospect — remarkable — like some image blocked out by the special artist, of primeval Forsytes in pagan days, to record the domination of mind over matter!\r\nAnd all the unnumbered generations of his yeoman ancestors, wont of a Sunday to stand akimbo surveying their little plots of land, their grey unmoving eyes hiding their instinct with its hidden roots of violence, their instinct for possession to the exclusion of all the world — all these unnumbered generations seemed to sit there with him on the top of the rise.\r\nBut from him, thus slumbering, his jealous Forsyte spirit travelled far, into God-knows-what jungle of fancies; with those two young people, to see what they were doing down there in the copse — in the copse where the spring was running riot with the scent of sap and bursting buds, the song of birds innumerable, a carpet of bluebells and sweet growing things, and the sun caught like gold in the tops of the trees; to see what they were doing, walking along there so close together on the path that was too narrow; walking along there so close that they were always touching; to watch Irene’s eyes, like dark thieves, stealing the heart out of the spring. And a great unseen chaperon, his spirit was there, stopping with them to look at the little furry corpse of a mole, not dead an hour, with his mushroom-and-silver coat untouched by the rain or dew; watching over Irene’s bent head, and the soft look of her pitying eyes; and over that young man’s head, gazing at her so hard, so strangely. Walking on with them, too, across the open space where a wood-cutter had been at work, where the bluebells were trampled down, and a trunk had swayed and staggered down from its gashed stump. Climbing it with them, over, and on to the very edge of the copse, whence there stretched an undiscovered country, from far away in which came the sounds, ‘Cuckoo-cuckoo!’\r\nSilent, standing with them there, and uneasy at their silence! Very queer, very strange!\r\nThen back again, as though guilty, through the wood — back to the cutting, still silent, amongst the songs of birds that never ceased, and the wild scent — hum! what was it — like that herb they put in — back to the log across the path. . . .\r\nAnd then unseen, uneasy, flapping above them, trying to make noises, his Forsyte spirit watched her balanced on the log, her pretty figure swaying, smiling down at that young man gazing up with such strange, shining eyes, slipping now — a — ah! falling, o — oh! sliding — down his breast; her soft, warm body clutched, her head bent back from his lips; his kiss; her recoil; his cry: “You must know — I love you!” Must know — indeed, a pretty . . .? Love! Hah!\r\nSwithin awoke; virtue had gone out of him. He had a taste in his mouth. Where was he?\r\nDamme! He had been asleep!\r\nHe had dreamed something about a new soup, with a taste of mint in it.\r\nThose young people — where had they got to? His left leg had pins and needles.\r\n“Adolf!” The rascal was not there; the rascal was asleep somewhere.\r\nHe stood up, tall, square, bulky in his fur, looking anxiously down over the fields, and presently he saw them coming.\r\nIrene was in front; that young fellow — what had they nicknamed him —‘The Buccaneer?’ looked precious hangdog there behind her; had got a flea in his ear, he shouldn’t wonder. Serve him right, taking her down all that way to look at the house! The proper place to look at a house from was the lawn.\r\nThey saw him. He extended his arm, and moved it spasmodically to encourage them. But they had stopped. What were they standing there for, talking — talking? They came on again. She had been, giving him a rub, he had not the least doubt of it, and no wonder, over a house like that — a great ugly thing, not the sort of house he was accustomed to.\r\nHe looked intently at their faces, with his pale, immovable stare. That young man looked very queer!\r\n“You’ll never make anything of this!” he said tartly, pointing at the mansion; —“too newfangled!”\r\nBosinney gazed at him as though he had not heard; and Swithin afterwards described him to Aunt Hester as “an extravagant sort of fellow very odd way of looking at you — a bumpy beggar!”\r\nWhat gave rise to this sudden piece of psychology he did not state; possibly Bosinney’s, prominent forehead and cheekbones and chin, or something hungry in his face, which quarrelled with Swithin’s conception of the calm satiety that should characterize the perfect gentleman.\r\nHe brightened up at the mention of tea. He had a contempt for tea — his brother Jolyon had been in tea; made a lot of money by it — but he was so thirsty, and had such a taste in his mouth, that he was prepared to drink anything. He longed to inform Irene of the taste in his mouth — she was so sympathetic — but it would not be a distinguished thing to do; he rolled his tongue round, and faintly smacked it against his palate.\r\nIn a far corner of the tent Adolf was bending his cat-like moustaches over a kettle. He left it at once to draw the cork of a pint-bottle of champagne. Swithin smiled, and, nodding at Bosinney, said: “Why, you’re quite a Monte Cristo!” This celebrated novel — one of the half-dozen he had read — had produced an extraordinary impression on his mind.\r\nTaking his glass from the table, he held it away from him to scrutinize the colour; thirsty as he was, it was not likely that he was going to drink trash! Then, placing it to his lips, he took a sip.\r\n“A very nice wine,” he said at last, passing it before his nose; “not the equal of my Heidsieck!”\r\nIt was at this moment that the idea came to him which he afterwards imparted at Timothy’s in this nutshell: “I shouldn’t wonder a bit if that architect chap were sweet upon Mrs. Soames!”\r\nAnd from this moment his pale, round eyes never ceased to bulge with the interest of his discovery.\r\n“The fellow,” he said to Mrs. Septimus, “follows her about with his eyes like a dog — the bumpy beggar! I don’t wonder at it — she’s a very charming woman, and, I should say, the pink of discretion!” A vague consciousness of perfume caging about Irene, like that from a flower with half-closed petals and a passionate heart, moved him to the creation of this image. “But I wasn’t sure of it,” he said, “till I saw him pick up her handkerchief.”\r\nMrs. Small’s eyes boiled with excitement.\r\n“And did he give it her back?” she asked.\r\n“Give it back?” said Swithin: “I saw him slobber on it when he thought I wasn’t looking!”\r\nMrs. Small gasped — too interested to speak.\r\n“But she gave him no encouragement,” went on Swithin; he stopped, and stared for a minute or two in the way that alarmed Aunt Hester so — he had suddenly recollected that, as they were starting back in the phaeton, she had given Bosinney her hand a second time, and let it stay there too. . . . He had touched his horses smartly with the whip, anxious to get her all to himself. But she had looked back, and she had not answered his first question; neither had he been able to see her face — she had kept it hanging down.\r\nThere is somewhere a picture, which Swithin has not seen, of a man sitting on a rock, and by him, immersed in the still, green water, a sea-nymph lying on her back, with her hand on her naked breast. She has a half-smile on her face — a smile of hopeless surrender and of secret joy.\r\nSeated by Swithin’s side, Irene may have been smiling like that.\r\nWhen, warmed by champagne, he had her all to himself, he unbosomed himself of his wrongs; of his smothered resentment against the new chef at the club; his worry over the house in Wigmore Street, where the rascally tenant had gone bankrupt through helping his brother-in-law as if charity did not begin at home; of his deafness, too, and that pain he sometimes got in his right side. She listened, her eyes swimming under their lids. He thought she was thinking deeply of his troubles, and pitied himself terribly. Yet in his fur coat, with frogs across the breast, his top hat aslant, driving this beautiful woman, he had never felt more distinguished.\r\nA coster, however, taking his girl for a Sunday airing, seemed to have the same impression about himself. This person had flogged his donkey into a gallop alongside, and sat, upright as a waxwork, in his shallopy chariot, his chin settled pompously on a red handkerchief, like Swithin’s on his full cravat; while his girl, with the ends of a fly-blown boa floating out behind, aped a woman of fashion. Her swain moved a stick with a ragged bit of string dangling from the end, reproducing with strange fidelity the circular flourish of Swithin’s whip, and rolled his head at his lady with a leer that had a weird likeness to Swithin’s primeval stare.\r\nThough for a time unconscious of the lowly ruffian’s presence, Swithin presently took it into his head that he was being guyed. He laid his whip-lash across the mares flank. The two chariots, however, by some unfortunate fatality continued abreast. Swithin’s yellow, puffy face grew red; he raised his whip to lash the costermonger, but was saved from so far forgetting his dignity by a special intervention of Providence. A carriage driving out through a gate forced phaeton and donkey-cart into proximity; the wheels grated, the lighter vehicle skidded, and was overturned.\r\nSwithin did not look round. On no account would he have pulled up to help the ruffian. Serve him right if he had broken his neck!\r\nBut he could not if he would. The greys had taken alarm. The phaeton swung from side to side, and people raised frightened faces as they went dashing past. Swithin’s great arms, stretched at full length, tugged at the reins. His cheeks were puffed, his lips compressed, his swollen face was of a dull, angry red.\r\nIrene had her hand on the rail, and at every lurch she gripped it tightly. Swithin heard her ask:\r\n“Are we going to have an accident, Uncle Swithin?”\r\nHe gasped out between his pants: “It’s nothing; a — little fresh!”\r\n“I’ve never been in an accident.”\r\n“Don’t you move!” He took a look at her. She was smiling, perfectly calm. “Sit still,” he repeated. “Never fear, I’ll get you home!”\r\nAnd in the midst of all his terrible efforts, he was surprised to hear her answer in a voice not like her own:\r\n“I don’t care if I never get home!”\r\nThe carriage giving a terrific lurch, Swithin’s exclamation was jerked back into his throat. The horses, winded by the rise of a hill, now steadied to a trot, and finally stopped of their own accord.\r\n“When”— Swithin described it at Timothy’s —“I pulled ’em up, there she was as cool as myself. God bless my soul! she behaved as if she didn’t care whether she broke her neck or not! What was it she said: ‘I don’t care if I never get home?” Leaning over the handle of his cane, he wheezed out, to Mrs. Small’s terror: “And I’m not altogether surprised, with a finickin’ feller like young Soames for a husband!”\r\nIt did not occur to him to wonder what Bosinney had done after they had left him there alone; whether he had gone wandering about like the dog to which Swithin had compared him; wandering down to that copse where the spring was still in riot, the cuckoo still calling from afar; gone down there with her handkerchief pressed to lips, its fragrance mingling with the scent of mint and thyme. Gone down there with such a wild, exquisite pain in his heart that he could have cried out among the trees. Or what, indeed, the fellow had done. In fact, till he came to Timothy’s, Swithin had forgotten all about him.\r\nChapter 13  James Goes to See for Himself\r\nThose ignorant of Forsyte ‘Change would not, perhaps, foresee all the stir made by Irene’s visit to the house.\r\nAfter Swithin had related at Timothy’s the full story of his memorable drive, the same, with the least suspicion of curiosity, the merest touch of malice, and a real desire to do good, was passed on to June.\r\n“And what a dreadful thing to say, my dear!” ended Aunt Juley; “that about not going home. What did she mean?”\r\nIt was a strange recital for the girl. She heard it flushing painfully, and, suddenly, with a curt handshake, took her departure.\r\n“Almost rude!” Mrs. Small said to Aunt Hester, when June was gone.\r\nThe proper construction was put on her reception of the news. She was upset. Something was therefore very wrong. Odd! She and Irene had been such friends!\r\nIt all tallied too well with whispers and hints that had been going about for some time past. Recollections of Euphemia’s account of the visit to the theatre — Mr. Bosinney always at Soames’s? Oh, indeed! Yes, of course, he would be about the house! Nothing open. Only upon the greatest, the most important provocation was it necessary to say anything open on Forsyte ‘Change. This machine was too nicely adjusted; a hint, the merest trifling expression of regret or doubt, sufficed to set the family soul so sympathetic — vibrating. No one desired that harm should come of these vibrations — far from it; they were set in motion with the best intentions, with the feeling, that each member of the family had a stake in the family soul.\r\nAnd much kindness lay at the bottom of the gossip; it would frequently result in visits of condolence being made, in accordance with the customs of Society, thereby conferring a real benefit upon the sufferers, and affording consolation to the sound, who felt pleasantly that someone at all events was suffering from that from which they themselves were not suffering. In fact, it was simply a desire to keep things well-aired, the desire which animates the Public Press, that brought James, for instance, into communication with Mrs. Septimus, Mrs. Septimus, with the little Nicholases, the little Nicholases with who-knows-whom, and so on. That great class to which they had risen, and now belonged, demanded a certain candour, a still more certain reticence. This combination guaranteed their membership.\r\nMany of the younger Forsytes felt, very naturally, and would openly declare, that they did not want their affairs pried into; but so powerful was the invisible, magnetic current of family gossip, that for the life of them they could not help knowing all about everything. It was felt to be hopeless.\r\nOne of them (young Roger) had made an heroic attempt to free the rising generation, by speaking of Timothy as an ‘old cat.’ The effort had justly recoiled upon himself; the words, coming round in the most delicate way to Aunt Juley’s ears, were repeated by her in a shocked voice to Mrs. Roger, whence they returned again to young Roger.\r\nAnd, after all, it was only the wrong-doers who suffered; as, for instance, George, when he lost all that money playing billiards; or young Roger himself, when he was so dreadfully near to marrying the girl to whom, it was whispered, he was already married by the laws of Nature; or again Irene, who was thought, rather than said, to be in danger.\r\nAll this was not only pleasant but salutary. And it made so many hours go lightly at Timothy’s in the Bayswater Road; so many hours that must otherwise have been sterile and heavy to those three who lived there; and Timothy’s was but one of hundreds of such homes in this City of London — the homes of neutral persons of the secure classes, who are out of the battle themselves, and must find their reason for existing, in the battles of others.\r\nBut for the sweetness of family gossip, it must indeed have been lonely there. Rumours and tales, reports, surmises — were they not the children of the house, as dear and precious as the prattling babes the brother and sisters had missed in their own journey? To talk about them was as near as they could get to the possession of all those children and grandchildren, after whom their soft hearts yearned. For though it is doubtful whether Timothy’s heart yearned, it is indubitable that at the arrival of each fresh Forsyte child he was quite upset.\r\nUseless for young Roger to say, “Old cat!” for Euphemia to hold up her hands and cry: “Oh! those three!” and break into her silent laugh with the squeak at the end. Useless, and not too kind.\r\nThe situation which at this stage might seem, and especially to Forsyte eyes, strange — not to say ‘impossible’— was, in view of certain facts, not so strange after all. Some things had been lost sight of. And first, in the security bred of many harmless marriages, it had been forgotten that Love is no hot-house flower, but a wild plant, born of a wet night, born of an hour of sunshine; sprung from wild seed, blown along the road by a wild wind. A wild plant that, when it blooms by chance within the hedge of our gardens, we call a flower; and when it blooms outside we call a weed; but, flower or weed, whose scent and colour are always, wild! And further — the facts and figures of their own lives being against the perception of this truth — it was not generally recognised by Forsytes that, where, this wild plant springs, men and women are but moths around the pale, flame-like blossom.\r\nIt was long since young Jolyon’s escapade — there was danger of a tradition again arising that people in their position never cross the hedge to pluck that flower; that one could reckon on having love, like measles, once in due season, and getting over it comfortably for all time — as with measles, on a soothing mixture of butter and honey — in the arms of wedlock.\r\nOf all those whom this strange rumour about Bosinney and Mrs. Soames reached, James was the most affected. He had long forgotten how he had hovered, lanky and pale, in side whiskers of chestnut hue, round Emily, in the days of his own courtship. He had long forgotten the small house in the purlieus of Mayfair, where he had spent the early days of his married life, or rather, he had long forgotten the early days, not the small house — a Forsyte never forgot a house — he had afterwards sold it at a clear profit of four hundred pounds.\r\nHe had long forgotten those days, with their hopes and fears and doubts about the prudence of the match (for Emily, though pretty, had nothing, and he himself at that time was making a bare thousand a year), and that strange, irresistible attraction which had drawn him on, till he felt he must die if he could not marry the girl with the fair hair, looped so neatly back, the fair arms emerging from a skin-tight bodice, the fair form decorously shielded by a cage of really stupendous circumference.\r\nJames had passed through the fire, but he had passed also through the river of years which washes out the fire; he had experienced the saddest experience of all — forgetfulness of what it was like to be in love.\r\nForgotten! Forgotten so long, that he had forgotten even that he had forgotten.\r\nAnd now this rumour had come upon him, this rumour about his son’s wife; very vague, a shadow dodging among the palpable, straightforward appearances of things, unreal, unintelligible as a ghost, but carrying with it, like a ghost, inexplicable terror.\r\nHe tried to bring it home to his mind, but it was no more use than trying to apply to himself one of those tragedies he read of daily in his evening paper. He simply could not. There could be nothing in it. It was all their nonsense. She didn’t get on with Soames as well as she might, but she was a good little thing — a good little thing!\r\nLike the not inconsiderable majority of men, James relished a nice little bit of scandal, and would say, in a matter-of-fact tone, licking his lips, “Yes, yes — she and young Dyson; they tell me they’re living at Monte Carlo!”\r\nBut the significance of an affair of this sort — of its past, its present, or its future — had never struck him. What it meant, what torture and raptures had gone to its construction, what slow, overmastering fate had lurked within the facts, very naked, sometimes sordid, but generally spicy, presented to his gaze. He was not in the habit of blaming, praising, drawing deductions, or generalizing at all about such things; he simply listened rather greedily, and repeated what he was told, finding considerable benefit from the practice, as from the consumption of a sherry and bitters before a meal.\r\nNow, however, that such a thing — or rather the rumour, the breath of it — had come near him personally, he felt as in a fog, which filled his mouth full of a bad, thick flavour, and made it difficult to draw breath.\r\nA scandal! A possible scandal!\r\nTo repeat this word to himself thus was the only way in which he could focus or make it thinkable. He had forgotten the sensations necessary for understanding the progress, fate, or meaning of any such business; he simply could no longer grasp the possibilities of people running any risk for the sake of passion.\r\nAmongst all those persons of his acquaintance, who went into the City day after day and did their business there, whatever it was, and in their leisure moments bought shares, and houses, and ate dinners, and played games, as he was told, it would have seemed to him ridiculous to suppose that there were any who would run risks for the sake of anything so recondite, so figurative, as passion.\r\nPassion! He seemed, indeed, to have heard of it, and rules such as ‘A young man and a young woman ought never to be trusted together’ were fixed in his mind as the parallels of latitude are fixed on a map (for all Forsytes, when it comes to ‘bed-rock’ matters of fact, have quite a fine taste in realism); but as to anything else — well, he could only appreciate it at all through the catch-word ‘scandal.’\r\nAh! but there was no truth in it — could not be. He was not afraid; she was really a good little thing. But there it was when you got a thing like that into your mind. And James was of a nervous temperament — one of those men whom things will not leave alone, who suffer tortures from anticipation and indecision. For fear of letting something slip that he might otherwise secure, he was physically unable to make up his mind until absolutely certain that, by not making it up, he would suffer loss.\r\nIn life, however, there were many occasions when the business of making up his mind did not even rest with himself, and this was one of them.\r\nWhat could he do? Talk it over with Soames? That would only make matters worse. And, after all, there was nothing in it, he felt sure.\r\nIt was all that house. He had mistrusted the idea from the first. What did Soames want to go into the country for? And, if he must go spending a lot of money building himself a house, why not have a first-rate man, instead of this young Bosinney, whom nobody knew anything about? He had told them how it would be. And he had heard that the house was costing Soames a pretty penny beyond what he had reckoned on spending.\r\nThis fact, more than any other, brought home to James the real danger of the situation. It was always like this with these ‘artistic’ chaps; a sensible man should have nothing to say to them. He had warned Irene, too. And see what had come of it!\r\nAnd it suddenly sprang into James’s mind that he ought to go and see for himself. In the midst of that fog of uneasiness in which his mind was enveloped the notion that he could go and look at the house afforded him inexplicable satisfaction. It may have been simply the decision to do something — more possibly the fact that he was going to look at a house — that gave him relief. He felt that in staring at an edifice of bricks and mortar, of wood and stone, built by the suspected man himself, he would be looking into the heart of that rumour about Irene.\r\nWithout saying a word, therefore, to anyone, he took a hansom to the station and proceeded by train to Robin Hill; thence — there being no ‘flies,’ in accordance with the custom of the neighbourhood — he found himself obliged to walk.\r\nHe started slowly up the hill, his angular knees and high shoulders bent complainingly, his eyes fixed on his feet, yet, neat for all that, in his high hat and his frock-coat, on which was the speckless gloss imparted by perfect superintendence. Emily saw to that; that is, she did not, of course, see to it — people of good position not seeing to each other’s buttons, and Emily was of good position — but she saw that the butler saw to it.\r\nHe had to ask his way three times; on each occasion he repeated the directions given him, got the man to repeat them, then repeated them a second time, for he was naturally of a talkative disposition, and one could not be too careful in a new neighbourhood.\r\nHe kept assuring them that it was a new house he was looking for; it was only, however, when he was shown the roof through the trees that he could feel really satisfied that he had not been directed entirely wrong.\r\nA heavy sky seemed to cover the world with the grey whiteness of a whitewashed ceiling. There was no freshness or fragrance in the air. On such a day even British workmen scarcely cared to do more then they were obliged, and moved about their business without the drone of talk which whiles away the pangs of labour.\r\nThrough spaces of the unfinished house, shirt-sleeved figures worked slowly, and sounds arose — spasmodic knockings, the scraping of metal, the sawing of wood, with the rumble of wheelbarrows along boards; now and again the foreman’s dog, tethered by a string to an oaken beam, whimpered feebly, with a sound like the singing of a kettle.\r\nThe fresh-fitted window-panes, daubed each with a white patch in the centre, stared out at James like the eyes of a blind dog.\r\nAnd the building chorus went on, strident and mirthless under the grey-white sky. But the thrushes, hunting amongst the fresh-turned earth for worms, were silent quite.\r\nJames picked his way among the heaps of gravel — the drive was being laid — till he came opposite the porch. Here he stopped and raised his eyes. There was but little to see from this point of view, and that little he took in at once; but he stayed in this position many minutes, and who shall know of what he thought.\r\nHis china-blue eyes under white eyebrows that jutted out in little horns, never stirred; the long upper lip of his wide mouth, between the fine white whiskers, twitched once or twice; it was easy to see from that anxious rapt expression, whence Soames derived the handicapped look which sometimes came upon his face. James might have been saying to himself: ‘I don’t know — life’s a tough job.’\r\nIn this position Bosinney surprised him.\r\nJames brought his eyes down from whatever bird’s-nest they had been looking for in the sky to Bosinney’s face, on which was a kind of humorous scorn.\r\n“How do you do, Mr. Forsyte? Come down to see for yourself?”\r\nIt was exactly what James, as we know, had come for, and he was made correspondingly uneasy. He held out his hand, however, saying:\r\n“How are you?” without looking at Bosinney.\r\nThe latter made way for him with an ironical smile.\r\nJames scented something suspicious in this courtesy. “I should like to walk round the outside first,” he said, “and see what you’ve been doing!”\r\nA flagged terrace of rounded stones with a list of two or three inches to port had been laid round the south-east and south-west sides of the house, and ran with a bevelled edge into mould, which was in preparation for being turfed; along this terrace James led the way.\r\n“Now what did this cost?” he asked, when he saw the terrace extending round the corner.\r\n“What should you think?” inquired Bosinney.\r\n“How should I know?” replied James somewhat nonplussed; “two or three hundred, I dare say!”\r\n“The exact sum!”\r\nJames gave him a sharp look, but the architect appeared unconscious, and he put the answer down to mishearing.\r\nOn arriving at the garden entrance, he stopped to look at the view.\r\n“That ought to come down,” he said, pointing to the oak-tree.\r\n“You think so? You think that with the tree there you don’t get enough view for your money.”\r\nAgain James eyed him suspiciously — this young man had a peculiar way of putting things: “Well!” he said, with a perplexed, nervous, emphasis, “I don’t see what you want with a tree.”\r\n“It shall come down to-morrow,” said Bosinney.\r\nJames was alarmed. “Oh,” he said, “don’t go saying I said it was to come down! I know nothing about it!”\r\n“No?”\r\nJames went on in a fluster: “Why, what should I know about it? It’s nothing to do with me! You do it on your own responsibility.”\r\n“You’ll allow me to mention your name?”\r\nJames grew more and more alarmed: “I don’t know what you want mentioning my name for,” he muttered; “you’d better leave the tree alone. It’s not your tree!”\r\nHe took out a silk handkerchief and wiped his brow. They entered the house. Like Swithin, James was impressed by the inner court-yard.\r\n“You must have spent a douce of a lot of money here,” he said, after staring at the columns and gallery for some time. “Now, what did it cost to put up those columns?”\r\n“I can’t tell you off-hand,” thoughtfully answered Bosinney, “but I know it was a deuce of a lot!”\r\n“I should think so,” said James. “I should. . . . ” He caught the architect’s eye, and broke off. And now, whenever he came to anything of which he desired to know the cost, he stifled that curiosity.\r\nBosinney appeared determined that he should see everything, and had not James been of too ‘noticing’ a nature, he would certainly have found himself going round the house a second time. He seemed so anxious to be asked questions, too, that James felt he must be on his guard. He began to suffer from his exertions, for, though wiry enough for a man of his long build, he was seventy-five years old.\r\nHe grew discouraged; he seemed no nearer to anything, had not obtained from his inspection any of the knowledge he had vaguely hoped for. He had merely increased his dislike and mistrust of this young man, who had tired him out with his politeness, and in whose manner he now certainly detected mockery.\r\nThe fellow was sharper than he had thought, and better-looking than he had hoped. He had a — a ‘don’t care’ appearance that James, to whom risk was the most intolerable thing in life, did not appreciate; a peculiar smile, too, coming when least expected; and very queer eyes. He reminded James, as he said afterwards, of a hungry cat. This was as near as he could get, in conversation with Emily, to a description of the peculiar exasperation, velvetiness, and mockery, of which Bosinney’s manner had been composed.\r\nAt last, having seen all that was to be seen, he came out again at the door where he had gone in; and now, feeling that he was wasting time and strength and money, all for nothing, he took the courage of a Forsyte in both hands, and, looking sharply at Bosinney, said:\r\n“I dare say you see a good deal of my daughter-in-law; now, what does she think of the house? But she hasn’t seen it, I suppose?”\r\nThis he said, knowing all about Irene’s visit not, of course, that there was anything in the visit, except that extraordinary remark she had made about ‘not caring to get home’— and the story of how June had taken the news!\r\nHe had determined, by this way of putting the question, to give Bosinney a chance, as he said to himself.\r\nThe latter was long in answering, but kept his eyes with uncomfortable steadiness on James.\r\n“She has seen the house, but I can’t tell you what she thinks of it.”\r\nNervous and baffled, James was constitutionally prevented from letting the matter drop.\r\n“Oh!” he said, “she has seen it? Soames brought her down, I suppose?”\r\nBosinney smilingly replied: “Oh, no!”\r\n“What, did she come down alone?”\r\n“Oh, no!”\r\n“Then — who brought her?”\r\n“I really don’t know whether I ought to tell you who brought her.”\r\nTo James, who knew that it was Swithin, this answer appeared incomprehensible.\r\n“Why!” he stammered, “you know that. . . . ” but he stopped, suddenly perceiving his danger.\r\n“Well,” he said, “if you don’t want to tell me I suppose you won’t! Nobody tells me anything.”\r\nSomewhat to his surprise Bosinney asked him a question.\r\n“By the by,” he said, “could you tell me if there are likely to be any more of you coming down? I should like to be on the spot!”\r\n“Any more?” said James bewildered, “who should there be more? I don’t know of any more. Good-bye?”\r\nLooking at the ground he held out his hand, crossed the palm of it with Bosinney’s, and taking his umbrella just above the silk, walked away along the terrace.\r\nBefore he turned the corner he glanced back, and saw Bosinney following him slowly —‘slinking along the wall’ as he put it to himself, ‘like a great cat.’ He paid no attention when the young fellow raised his hat.\r\nOutside the drive, and out of sight, he slackened his pace still more. Very slowly, more bent than when he came, lean, hungry, and disheartened, he made his way back to the station.\r\nThe Buccaneer, watching him go so sadly home, felt sorry perhaps for his behaviour to the old man.\r\nChapter 14  Soames and Bosinney Correspond\r\nJames said nothing to his son of this visit to the house; but, having occasion to go to Timothy’s on morning on a matter connected with a drainage scheme which was being forced by the sanitary authorities on his brother, he mentioned it there.\r\nIt was not, he said, a bad house. He could see that a good deal could be made of it. The fellow was clever in his way, though what it was going to cost Soames before it was done with he didn’t know.\r\nEuphemia Forsyte, who happened to be in the room — she had come round to borrow the Rev. Mr. Scoles’ last novel, ‘Passion and Paregoric’, which was having such a vogue — chimed in.\r\n“I saw Irene yesterday at the Stores; she and Mr. Bosinney were having a nice little chat in the Groceries.”\r\nIt was thus, simply, that she recorded a scene which had really made a deep and complicated impression on her. She had been hurrying to the silk department of the Church and Commercial Stores — that Institution than which, with its admirable system, admitting only guaranteed persons on a basis of payment before delivery, no emporium can be more highly recommended to Forsytes — to match a piece of prunella silk for her mother, who was waiting in the carriage outside.\r\nPassing through the Groceries her eye was unpleasantly attracted by the back view of a very beautiful figure. It was so charmingly proportioned, so balanced, and so well clothed, that Euphemia’s instinctive propriety was at once alarmed; such figures, she knew, by intuition rather than experience, were rarely connected with virtue — certainly never in her mind, for her own back was somewhat difficult to fit.\r\nHer suspicions were fortunately confirmed. A young man coming from the Drugs had snatched off his hat, and was accosting the lady with the unknown back.\r\nIt was then that she saw with whom she had to deal; the lady was undoubtedly Mrs. Soames, the young man Mr. Bosinney. Concealing herself rapidly over the purchase of a box of Tunisian dates, for she was impatient of awkwardly meeting people with parcels in her hands, and at the busy time of the morning, she was quite unintentionally an interested observer of their little interview.\r\nMrs. Soames, usually somewhat pale, had a delightful colour in her cheeks; and Mr. Bosinney’s manner was strange, though attractive (she thought him rather a distinguished-looking man, and George’s name for him, ‘The Buccaneer’— about which there was something romantic — quite charming). He seemed to be pleading. Indeed, they talked so earnestly — or, rather, he talked so earnestly, for Mrs. Soames did not say much — that they caused, inconsiderately, an eddy in the traffic. One nice old General, going towards Cigars, was obliged to step quite out of the way, and chancing to look up and see Mrs. Soames’ face, he actually took off his hat, the old fool! So like a man!\r\nBut it was Mrs. Soames’ eyes that worried Euphemia. She never once looked at Mr. Bosinney until he moved on, and then she looked after him. And, oh, that look!\r\nOn that look Euphemia had spent much anxious thought. It is not too much to say that it had hurt her with its dark, lingering softness, for all the world as though the woman wanted to drag him back, and unsay something she had been saying.\r\nAh, well, she had had no time to go deeply into the matter just then, with that prunella silk on her hands; but she was ‘very intriguee’— very! She had just nodded to Mrs. Soames, to show her that she had seen; and, as she confided, in talking it over afterwards, to her chum Francie (Roger’s daughter), “Didn’t she look caught out just? . . . . ”\r\nJames, most averse at the first blush to accepting any news confirmatory of his own poignant suspicions, took her up at once.\r\n“Oh” he said, “they’d be after wall-papers no doubt.”\r\nEuphemia smiled. “In the Groceries?” she said softly; and, taking ‘Passion and Paregoric’ from the table, added: “And so you’ll lend me this, dear Auntie? Good-bye!” and went away.\r\nJames left almost immediately after; he was late as it was.\r\nWhen he reached the office of Forsyte, Bustard and Forsyte, he found Soames, sitting in his revolving, chair, drawing up a defence. The latter greeted his father with a curt good-morning, and, taking an envelope from his pocket, said:\r\n“It may interest you to look through this.”\r\nJames read as follows:\r\n309D, SLOANE STREET, May 15. ‘DEAR FORSYTE,\r\n‘The construction of your house being now completed, my duties as architect have come to an end. If I am to go on with the business of decoration, which at your request I undertook, I should like you to clearly understand that I must have a free hand.\r\n‘You never come down without suggesting something that goes counter to my scheme. I have here three letters from you, each of which recommends an article I should never dream of putting in. I had your father here yesterday afternoon, who made further valuable suggestions.\r\n‘Please make up your mind, therefore, whether you want me to decorate for you, or to retire which on the whole I should prefer to do.\r\n‘But understand that, if I decorate, I decorate alone, without interference of any sort.\r\nIf I do the thing, I will do it thoroughly, but I must have a free hand.\r\n‘Yours truly, ‘PHILIP BOSINNEY.’\r\nThe exact and immediate cause of this letter cannot, of course, be told, though it is not improbable that Bosinney may have been moved by some sudden revolt against his position towards Soames — that eternal position of Art towards Property — which is so admirably summed up, on the back of the most indispensable of modern appliances, in a sentence comparable to the very finest in Tacitus:\r\nTHOS. T. SORROW, Inventor. BERT M. PADLAND, Proprietor.\r\n“What are you going to say to him?” James asked.\r\nSoames did not even turn his head. “I haven’t made up my mind,” he said, and went on with his defence.\r\nA client of his, having put some buildings on a piece of ground that did not belong to him, had been suddenly and most irritatingly warned to take them off again. After carefully going into the facts, however, Soames had seen his way to advise that his client had what was known as a title by possession, and that, though undoubtedly the ground did not belong to him, he was entitled to keep it, and had better do so; and he was now following up this advice by taking steps to — as the sailors say —‘make it so.’\r\nHe had a distinct reputation for sound advice; people saying of him: “Go to young Forsyte — a long-headed fellow!” and he prized this reputation highly.\r\nHis natural taciturnity was in his favour; nothing could be more calculated to give people, especially people with property (Soames had no other clients), the impression that he was a safe man. And he was safe. Tradition, habit, education, inherited aptitude, native caution, all joined to form a solid professional honesty, superior to temptation — from the very fact that it was built on an innate avoidance of risk. How could he fall, when his soul abhorred circumstances which render a fall possible — a man cannot fall off the floor!\r\nAnd those countless Forsytes, who, in the course of innumerable transactions concerned with property of all sorts (from wives to water rights), had occasion for the services of a safe man, found it both reposeful and profitable to confide in Soames. That slight superciliousness of his, combined with an air of mousing amongst precedents, was in his favour too — a man would not be supercilious unless he knew!\r\nHe was really at the head of the business, for though James still came nearly every day to, see for himself, he did little now but sit in his chair, twist his legs, slightly confuse things already decided, and presently go away again, and the other partner, Bustard, was a poor thing, who did a great deal of work, but whose opinion was never taken.\r\nSo Soames went steadily on with his defence. Yet it would be idle to say that his mind was at ease. He was suffering from a sense of impending trouble, that had haunted him for some time past. He tried to think it physical — a condition of his liver — but knew that it was not.\r\nHe looked at his watch. In a quarter of an hour he was due at the General Meeting of the New Colliery Company — one of Uncle Jolyon’s concerns; he should see Uncle Jolyon there, and say something to him about Bosinney — he had not made up his mind what, but something — in any case he should not answer this letter until he had seen Uncle Jolyon. He got up and methodically put away the draft of his defence. Going into a dark little cupboard, he turned up the light, washed his hands with a piece of brown Windsor soap, and dried them on a roller towel. Then he brushed his hair, paying strict attention to the parting, turned down the light, took his hat, and saying he would be back at half-past two, stepped into the Poultry.\r\nIt was not far to the Offices of the New Colliery Company in Ironmonger Lane, where, and not at the Cannon Street Hotel, in accordance with the more ambitious practice of other companies, the General Meeting was always held. Old Jolyon had from the first set his face against the Press. What business — he said — had the Public with his concerns!\r\nSoames arrived on the stroke of time, and took his seat alongside the Board, who, in a row, each Director behind his own ink-pot, faced their Shareholders.\r\nIn the centre of this row old Jolyon, conspicuous in his black, tightly-buttoned frock-coat and his white moustaches, was leaning back with finger tips crossed on a copy of the Directors’ report and accounts.\r\nOn his right hand, always a little larger than life, sat the Secretary, ‘Down-by-the-starn’ Hemmings; an all-too-sad sadness beaming in his fine eyes; his iron-grey beard, in mourning like the rest of him, giving the feeling of an all-too-black tie behind it.\r\nThe occasion indeed was a melancholy one, only six weeks having elapsed since that telegram had come from Scorrier, the mining expert, on a private mission to the Mines, informing them that Pippin, their Superintendent, had committed suicide in endeavouring, after his extraordinary two years’ silence, to write a letter to his Board. That letter was on the table now; it would be read to the Shareholders, who would of course be put into possession of all the facts.\r\nHemmings had often said to Soames, standing with his coat-tails divided before the fireplace:\r\n“What our Shareholders don’t know about our affairs isn’t worth knowing. You may take that from me, Mr. Soames.”\r\nOn one occasion, old Jolyon being present, Soames recollected a little unpleasantness. His uncle had looked up sharply and said: “Don’t talk nonsense, Hemmings! You mean that what they do know isn’t worth knowing!” Old Jolyon detested humbug.\r\nHemmings, angry-eyed, and wearing a smile like that of a trained poodle, had replied in an outburst of artificial applause: “Come, now, that’s good, sir — that’s very good. Your uncle will have his joke!”\r\nThe next time he had seen Soames he had taken the opportunity of saying to him: “The chairman’s getting very old! — I can’t get him to understand things; and he’s so wilful — but what can you expect, with a chin like his?”\r\nSoames had nodded.\r\nEveryone knew that Uncle Jolyon’s chin was a caution. He was looking worried to-day, in spite of his General Meeting look; he (Soames) should certainly speak to him about Bosinney.\r\nBeyond old Jolyon on the left was little Mr. Booker, and he, too, wore his General Meeting look, as though searching for some particularly tender shareholder. And next him was the deaf director, with a frown; and beyond the deaf director, again, was old Mr. Bleedham, very bland, and having an air of conscious virtue — as well he might, knowing that the brown-paper parcel he always brought to the Board-room was concealed behind his hat (one of that old-fashioned class, of flat-brimmed top-hats which go with very large bow ties, clean-shaven lips, fresh cheeks, and neat little, white whiskers).\r\nSoames always attended the General Meeting; it was considered better that he should do so, in case ‘anything should arise!’ He glanced round with his close, supercilious air at the walls of the room, where hung plans of the mine and harbour, together with a large photograph of a shaft leading to a working which had proved quite remarkably unprofitable. This photograph — a witness to the eternal irony underlying commercial enterprise till retained its position on the — wall, an effigy of the directors’ pet, but dead, lamb.\r\nAnd now old Jolyon rose, to present the report and accounts.\r\nVeiling under a Jove-like serenity that perpetual antagonism deep-seated in the bosom of a director towards his shareholders, he faced them calmly. Soames faced them too. He knew most of them by sight. There was old Scrubsole, a tar man, who always came, as Hemmings would say, ‘to make himself nasty,’ a cantankerous-looking old fellow with a red face, a jowl, and an enormous low-crowned hat reposing on his knee. And the Rev. Mr. Boms, who always proposed a vote of thanks to the chairman, in which he invariably expressed the hope that the Board would not forget to elevate their employees, using the word with a double e, as being more vigorous and Anglo-Saxon (he had the strong Imperialistic tendencies of his cloth). It was his salutary custom to buttonhole a director afterwards, and ask him whether he thought the coming year would be good or bad; and, according to the trend of the answer, to buy or sell three shares within the ensuing fortnight.\r\nAnd there was that military man, Major O’Bally, who could not help speaking, if only to second the re-election of the auditor, and who sometimes caused serious consternation by taking toasts — proposals rather — out of the hands of persons who had been flattered with little slips of paper, entrusting the said proposals to their care.\r\nThese made up the lot, together with four or five strong, silent shareholders, with whom Soames could sympathize — men of business, who liked to keep an eye on their affairs for themselves, without being fussy — good, solid men, who came to the City every day and went back in the evening to good, solid wives.\r\nGood, solid wives! There was something in that thought which roused the nameless uneasiness in Soames again.\r\nWhat should he say to his uncle? What answer should he make to this letter?\r\n. . . . “If any shareholder has any question to put, I shall be glad to answer it.” A soft thump. Old Jolyon had let the report and accounts fall, and stood twisting his tortoise-shell glasses between thumb and forefinger.\r\nThe ghost of a smile appeared on Soames’ face. They had better hurry up with their questions! He well knew his uncle’s method (the ideal one) of at once saying: “I propose, then, that the report and accounts be adopted!” Never let them get their wind — shareholders were notoriously wasteful of time!\r\nA tall, white-bearded man, with a gaunt, dissatisfied face, arose:\r\n“I believe I am in order, Mr. Chairman, in raising a question on this figure of L5000 in the accounts. ‘To the widow and family”’ (he looked sourly round), “‘of our late superintendent,’ who so — er — ill-advisedly (I say — ill-advisedly) committed suicide, at a time when his services were of the utmost value to this Company. You have stated that the agreement which he has so unfortunately cut short with his own hand was for a period of five years, of which one only had expired — I—”\r\nOld Jolyon made a gesture of impatience.\r\n“I believe I am in order, Mr. Chairman — I ask whether this amount paid, or proposed to be paid, by the Board to the er — deceased — is for services which might have been rendered to the Company — had he not committed suicide?”\r\n“It is in recognition of past services, which we all know — you as well as any of us — to have been of vital value.”\r\n“Then, sir, all I have to say is that the services being past, the amount is too much.”\r\nThe shareholder sat down.\r\nOld Jolyon waited a second and said: “I now propose that the report and —”\r\nThe shareholder rose again: “May I ask if the Board realizes that it is not their money which — I don’t hesitate to say that if it were their money. . . . ”\r\nA second shareholder, with a round, dogged face, whom Soames recognised as the late superintendent’s brother-in-law, got up and said warmly: “In my opinion, sir, the sum is not enough!”\r\nThe Rev. Mr. Boms now rose to his feet. “If I may venture to express myself,” he said, “I should say that the fact of the — er — deceased having committed suicide should weigh very heavily — very heavily with our worthy chairman. I have no doubt it has weighed with him, for — I say this for myself and I think for everyone present (hear, hear)— he enjoys our confidence in a high degree. We all desire, I should hope, to be charitable. But I feel sure” (he-looked severely at the late superintendent’s brother-in-law) “that he will in some way, by some written expression, or better perhaps by reducing the amount, record our grave disapproval that so promising and valuable a life should have been thus impiously removed from a sphere where both its own interests and — if I may say so — our interests so imperatively demanded its continuance. We should not — nay, we may not — countenance so grave a dereliction of all duty, both human and divine.”\r\nThe reverend gentleman resumed his seat. The late superintendent’s brother-in-law again rose: “What I have said I stick to,” he said; “the amount is not enough!”\r\nThe first shareholder struck in: “I challenge the legality of the payment. In my opinion this payment is not legal. The Company’s solicitor is present; I believe I am in order in asking him the question.”\r\nAll eyes were now turned upon Soames. Something had arisen!\r\nHe stood up, close-lipped and cold; his nerves inwardly fluttered, his attention tweaked away at last from contemplation of that cloud looming on the horizon of his mind.\r\n“The point,” he said in a low, thin voice, “is by no means clear. As there is no possibility of future consideration being received, it is doubtful whether the payment is strictly legal. If it is desired, the opinion of the court could be taken.”\r\nThe superintendent’s brother-in-law frowned, and said in a meaning tone: “We have no doubt the opinion of the court could be taken. May I ask the name of the gentleman who has given us that striking piece of information? Mr. Soames Forsyte? Indeed!” He looked from Soames to old Jolyon in a pointed manner.\r\nA flush coloured Soames’ pale cheeks, but his superciliousness did not waver. Old Jolyon fixed his eyes on the speaker.\r\n“If,” he said, “the late superintendents brother-in-law has nothing more to say, I propose that the report and accounts. . . . ”\r\nAt this moment, however, there rose one of those five silent, stolid shareholders, who had excited Soames’ sympathy. He said:\r\n“I deprecate the proposal altogether. We are expected to give charity to this man’s wife and children, who, you tell us, were dependent on him. They may have been; I do not care whether they were or not. I object to the whole thing on principle. It is high time a stand was made against this sentimental humanitarianism. The country is eaten up with it. I object to my money being paid to these people of whom I know nothing, who have done nothing to earn it. I object in toto; it is not business. I now move that the report and accounts be put back, and amended by striking out the grant altogether.”\r\nOld Jolyon had remained standing while the strong, silent man was speaking. The speech awoke an echo in all hearts, voicing, as it did, the worship of strong men, the movement against generosity, which had at that time already commenced among the saner members of the community.\r\nThe words ‘it is not business’ had moved even the Board; privately everyone felt that indeed it was not. But they knew also the chairman’s domineering temper and tenacity. He, too, at heart must feel that it was not business; but he was committed to his own proposition. Would he go back upon it? It was thought to be unlikely.\r\nAll waited with interest. Old Jolyon held up his hand; dark-rimmed glasses depending between his finger and thumb quivered slightly with a suggestion of menace.\r\nHe addressed the strong, silent shareholder.\r\n“Knowing, as you do, the efforts of our late superintendent upon the occasion of the explosion at the mines, do you seriously wish me to put that amendment, sir?”\r\n“I do.”\r\nOld Jolyon put the amendment.\r\n“Does anyone second this?” he asked, looking calmly round.\r\nAnd it was then that Soames, looking at his uncle, felt the power of will that was in that old man. No one stirred. Looking straight into the eyes of the strong, silent shareholder, old Jolyon said:\r\n“I now move, ‘That the report and accounts for the year 1886 be received and adopted.’ You second that? Those in favour signify the same in the usual way. Contrary — no. Carried. The next business, gentlemen. . . . ”\r\nSoames smiled. Certainly Uncle Jolyon had a way with him!\r\nBut now his attention relapsed upon Bosinney.\r\nOdd how that fellow haunted his thoughts, even in business hours.\r\nIrene’s visit to the house — but there was nothing in that, except that she might have told him; but then, again, she never did tell him anything. She was more silent, more touchy, every day. He wished to God the house were finished, and they were in it, away from London. Town did not suit her; her nerves were not strong enough. That nonsense of the separate room had cropped up again!\r\nThe meeting was breaking up now. Underneath the photograph of the lost shaft Hemmings was buttonholed by the Rev. Mr. Boms. Little Mr. Booker, his bristling eyebrows wreathed in angry smiles, was having a parting turn-up with old Scrubsole. The two hated each other like poison. There was some matter of a tar-contract between them, little Mr. Booker having secured it from the Board for a nephew of his, over old Scrubsole’s head. Soames had heard that from Hemmings, who liked a gossip, more especially about his directors, except, indeed, old Jolyon, of whom he was afraid.\r\nSoames awaited his opportunity. The last shareholder was vanishing through the door, when he approached his uncle, who was putting on his hat.\r\n“Can I speak to you for a minute, Uncle Jolyon?”\r\nIt is uncertain what Soames expected to get out of this interview.\r\nApart from that somewhat mysterious awe in which Forsytes in general held old Jolyon, due to his philosophic twist, or perhaps — as Hemmings would doubtless have said — to his chin, there was, and always had been, a subtle antagonism between the younger man and the old. It had lurked under their dry manner of greeting, under their non-committal allusions to each other, and arose perhaps from old Jolyon’s perception of the quiet tenacity (‘obstinacy,’ he rather naturally called it) of the young man, of a secret doubt whether he could get his own way with him.\r\nBoth these Forsytes, wide asunder as the poles in many respects, possessed in their different ways — to a greater degree than the rest of the family — that essential quality of tenacious and prudent insight into ‘affairs,’ which is the highwater mark of their great class. Either of them, with a little luck and opportunity, was equal to a lofty career; either of them would have made a good financier, a great contractor, a statesman, though old Jolyon, in certain of his moods when under the influence of a cigar or of Nature — would have been capable of, not perhaps despising, but certainly of questioning, his own high position, while Soames, who never smoked cigars, would not.\r\nThen, too, in old Jolyon’s mind there was always the secret ache, that the son of James — of James, whom he had always thought such a poor thing, should be pursuing the paths of success, while his own son . . .!\r\nAnd last, not least — for he was no more outside the radiation of family gossip than any other Forsyte — he had now heard the sinister, indefinite, but none the less disturbing rumour about Bosinney, and his pride was wounded to the quick.\r\nCharacteristically, his irritation turned not against Irene but against Soames. The idea that his nephew’s wife (why couldn’t the fellow take better care of her — Oh! quaint injustice! as though Soames could possibly take more care!)— should be drawing to herself June’s lover, was intolerably humiliating. And seeing the danger, he did not, like James, hide it away in sheer nervousness, but owned with the dispassion of his broader outlook, that it was not unlikely; there was something very attractive about Irene!\r\nHe had a presentiment on the subject of Soames’ communication as they left the Board Room together, and went out into the noise and hurry of Cheapside. They walked together a good minute without speaking, Soames with his mousing, mincing step, and old Jolyon upright and using his umbrella languidly as a walking-stick.\r\nThey turned presently into comparative quiet, for old Jolyon’s way to a second Board led him in the direction of Moorage Street.\r\nThen Soames, without lifting his eyes, began: “I’ve had this letter from Bosinney. You see what he says; I thought I’d let you know. I’ve spent a lot more than I intended on this house, and I want the position to be clear.”\r\nOld Jolyon ran his eyes unwillingly over the letter: “What he says is clear enough,” he said.\r\n“He talks about ‘a free hand,’” replied Soames.\r\nOld Jolyon looked at him. The long-suppressed irritation and antagonism towards this young fellow, whose affairs were beginning to intrude upon his own, burst from him.\r\n“Well, if you don’t trust him, why do you employ him?”\r\nSoames stole a sideway look: “It’s much too late to go into that,” he said, “I only want it to be quite understood that if I give him a free hand, he doesn’t let me in. I thought if you were to speak to him, it would carry more weight!”\r\n“No,” said old Jolyon abruptly; “I’ll have nothing to do with it!”\r\nThe words of both uncle and nephew gave the impression of unspoken meanings, far more important, behind. And the look they interchanged was like a revelation of this consciousness.\r\n“Well,” said Soames; “I thought, for June’s sake, I’d tell you, that’s all; I thought you’d better know I shan’t stand any nonsense!”\r\n“What is that to me?” old Jolyon took him up.\r\n“Oh! I don’t know,” said Soames, and flurried by that sharp look he was unable to say more. “Don’t say I didn’t tell you,” he added sulkily, recovering his composure.\r\n“Tell me!” said old Jolyon; “I don’t know what you mean. You come worrying me about a thing like this. I don’t want to hear about your affairs; you must manage them yourself!”\r\n“Very well,” said Soames immovably, “I will!”\r\n“Good-morning, then,” said old Jolyon, and they parted.\r\nSoames retraced his steps, and going into a celebrated eating-house, asked for a plate of smoked salmon and a glass of Chablis; he seldom ate much in the middle of the day, and generally ate standing, finding the position beneficial to his liver, which was very sound, but to which he desired to put down all his troubles.\r\nWhen he had finished he went slowly back to his office, with bent head, taking no notice of the swarming thousands on the pavements, who in their turn took no notice of him.\r\nThe evening post carried the following reply to Bosinney:\r\n‘FORSYTE, BUSTARD AND FORSYTE, ‘Commissioners for Oaths, ‘92001, BRANCH LANE, POULTRY, E.C.,\r\n‘May 17, 1887. ‘DEAR BOSINNEY,\r\n‘I have, received your letter, the terms of which not a little surprise me. I was under the impression that you had, and have had all along, a “free hand”; for I do not recollect that any suggestions I have been so unfortunate as to make have met with your approval. In giving you, in accordance with your request, this “free hand,” I wish you to clearly understand that the total cost of the house as handed over to me completely decorated, inclusive of your fee (as arranged between us), must not exceed twelve thousand pounds — L12,000. This gives you an ample margin, and, as you know, is far more than I originally contemplated.\r\n‘I am, ‘Yours truly,\r\n‘SOAMES FORSYTE.’\r\nOn the following day he received a note from Bosinney:\r\n‘PHILIP BAYNES BOSINNEY, ‘Architect, ‘309D, SLOANE STREET, S.W., ‘May 18. ‘DEAR FORSYTE,\r\n‘If you think that in such a delicate matter as decoration I can bind myself to the exact pound, I am afraid you are mistaken. I can see that you are tired of the arrangement, and of me, and I had better, therefore, resign.\r\n‘Yours faithfully, ‘PHILIP BAYNES BOSINNEY.’\r\nSoames pondered long and painfully over his answer, and late at night in the dining-room, when Irene had gone to bed, he composed the following:\r\n‘62, MONTPELLIER SQUARE, S.W., ‘May 19, 1887. ‘DEAR BOSINNEY,\r\n‘I think that in both our interests it would be extremely undesirable that matters should be so left at this stage. I did not mean to say that if you should exceed the sum named in my letter to you by ten or twenty or even fifty pounds, there would be any difficulty between us. This being so, I should like you to reconsider your answer. You have a “free hand” in the terms of this correspondence, and I hope you will see your way to completing the decorations, in the matter of which I know it is difficult to be absolutely exact.\r\n‘Yours truly, ‘SOAMES FORSYTE.’\r\nBosinney’s answer, which came in the course of the next day, was:\r\n‘May 20. ‘DEAR FORSYTE,\r\n‘Very well. ‘PH. BOSINNEY.’\r\nChapter 15  Old Jolyon at the Zoo\r\nOld Jolyon disposed of his second Meeting — an ordinary Board — summarily. He was so dictatorial that his fellow directors were left in cabal over the increasing domineeringness of old Forsyte, which they were far from intending to stand much longer, they said.\r\nHe went out by Underground to Portland Road Station, whence he took a cab and drove to the Zoo.\r\nHe had an assignation there, one of those assignations that had lately been growing more frequent, to which his increasing uneasiness about June and the ‘change in her,’ as he expressed it, was driving him.\r\nShe buried herself away, and was growing thin; if he spoke to her he got no answer, or had his head snapped off, or she looked as if she would burst into tears. She was as changed as she could be, all through this Bosinney. As for telling him about anything, not a bit of it!\r\nAnd he would sit for long spells brooding, his paper unread before him, a cigar extinct between his lips. She had been such a companion to him ever since she was three years old! And he loved her so!\r\nForces regardless of family or class or custom were beating down his guard; impending events over which he had no control threw their shadows on his head. The irritation of one accustomed to have his way was roused against he knew not what.\r\nChafing at the slowness of his cab, he reached the Zoo door; but, with his sunny instinct for seizing the good of each moment, he forgot his vexation as he walked towards the tryst.\r\nFrom the stone terrace above the bear-pit his son and his two grandchildren came hastening down when they saw old Jolyon coming, and led him away towards the lion-house. They supported him on either side, holding one to each of his hands — whilst Jolly, perverse like his father, carried his grandfather’s umbrella in such a way as to catch people’s legs with the crutch of the handle.\r\nYoung Jolyon followed.\r\nIt was as good as a play to see his father with the children, but such a play as brings smiles with tears behind. An old man and two small children walking together can be seen at any hour of the day; but the sight of old Jolyon, with Jolly and Holly seemed to young Jolyon a special peep-show of the things that lie at the bottom of our hearts. The complete surrender of that erect old figure to those little figures on either hand was too poignantly tender, and, being a man of an habitual reflex action, young Jolyon swore softly under his breath. The show affected him in a way unbecoming to a Forsyte, who is nothing if not undemonstrative.\r\nThus they reached the lion-house.\r\nThere had been a morning fete at the Botanical Gardens, and a large number of Forsy . . . ’— that is, of well-dressed people who kept carriages had brought them on to the Zoo, so as to have more, if possible, for their money, before going back to Rutland Gate or Bryanston Square.\r\n“Let’s go on to the Zoo,” they had said to each other; “it’ll be great fun!” It was a shilling day; and there would not be all those horrid common people.\r\nIn front of the long line of cages they were collected in rows, watching the tawny, ravenous beasts behind the bars await their only pleasure of the four-and-twenty hours. The hungrier the beast, the greater the fascination. But whether because the spectators envied his appetite, or, more humanely, because it was so soon to be satisfied, young Jolyon could not tell. Remarks kept falling on his ears: “That’s a nasty-looking brute, that tiger!” “Oh, what a love! Look at his little mouth!” “Yes, he’s rather nice! Don’t go too near, mother.”\r\nAnd frequently, with little pats, one or another would clap their hands to their pockets behind and look round, as though expecting young Jolyon or some disinterested-looking person to relieve them of the contents.\r\nA well-fed man in a white waistcoat said slowly through his teeth: “It’s all greed; they can’t be hungry. Why, they take no exercise.” At these words a tiger snatched a piece of bleeding liver, and the fat man laughed. His wife, in a Paris model frock and gold nose-nippers, reproved him: “How can you laugh, Harry? Such a horrid sight!”\r\nYoung Jolyon frowned.\r\nThe circumstances of his life, though he had ceased to take a too personal view of them, had left him subject to an intermittent contempt; and the class to which he had belonged — the carriage class — especially excited his sarcasm.\r\nTo shut up a lion or tiger in confinement was surely a horrible barbarity. But no cultivated person would admit this.\r\nThe idea of its being barbarous to confine wild animals had probably never even occurred to his father for instance; he belonged to the old school, who considered it at once humanizing and educational to confine baboons and panthers, holding the view, no doubt, that in course of time they might induce these creatures not so unreasonably to die of misery and heart-sickness against the bars of their cages, and put the society to the expense of getting others! In his eyes, as in the eyes of all Forsytes, the pleasure of seeing these beautiful creatures in a state of captivity far outweighed the inconvenience of imprisonment to beasts whom God had so improvidently placed in a state of freedom! It was for the animals good, removing them at once from the countless dangers of open air and exercise, and enabling them to exercise their functions in the guaranteed seclusion of a private compartment! Indeed, it was doubtful what wild animals were made for but to be shut up in cages!\r\nBut as young Jolyon had in his constitution the elements of impartiality, he reflected that to stigmatize as barbarity that which was merely lack of imagination must be wrong; for none who held these views had been placed in a similar position to the animals they caged, and could not, therefore, be expected to enter into their sensations. It was not until they were leaving the gardens — Jolly and Holly in a state of blissful delirium — that old Jolyon found an opportunity of speaking to his son on the matter next his heart. “I don’t know what to make of it,” he said; “if she’s to go on as she’s going on now, I can’t tell what’s to come. I wanted her to see the doctor, but she won’t. She’s not a bit like me. She’s your mother all over. Obstinate as a mule! If she doesn’t want to do a thing, she won’t, and there’s an end of it!”\r\nYoung Jolyon smiled; his eyes had wandered to his father’s chin. ‘A pair of you,’ he thought, but he said nothing.\r\n“And then,” went on old Jolyon, “there’s this Bosinney. I should like to punch the fellow’s head, but I can’t, I suppose, though — I don’t see why you shouldn’t,” he added doubtfully.\r\n“What has he done? Far better that it should come to an end, if they don’t hit it off!”\r\nOld Jolyon looked at his son. Now they had actually come to discuss a subject connected with the relations between the sexes he felt distrustful. Jo would be sure to hold some loose view or other.\r\n“Well, I don’t know what you think,” he said; “I dare say your sympathy’s with him — shouldn’t be surprised; but I think he’s behaving precious badly, and if he comes my way I shall tell him so.” He dropped the subject.\r\nIt was impossible to discuss with his son the true nature and meaning of Bosinney’s defection. Had not his son done the very same thing (worse, if possible) fifteen years ago? There seemed no end to the consequences of that piece of folly.\r\nYoung Jolyon also was silent; he had quickly penetrated his father’s thought, for, dethroned from the high seat of an obvious and uncomplicated view of things, he had become both perceptive and subtle.\r\nThe attitude he had adopted towards sexual matters fifteen years before, however, was too different from his father’s. There was no bridging the gulf.\r\nHe said coolly: “I suppose he’s fallen in love with some other woman?”\r\nOld Jolyon gave him a dubious look: “I can’t tell,” he said; “they say so!”\r\n“Then, it’s probably true,” remarked young Jolyon unexpectedly; “and I suppose they’ve told you who she is?”\r\n“Yes,” said old Jolyon, “Soames’s wife!”\r\nYoung Jolyon did not whistle: The circumstances of his own life had rendered him incapable of whistling on such a subject, but he looked at his father, while the ghost of a smile hovered over his face.\r\nIf old Jolyon saw, he took no notice.\r\n“She and June were bosom friends!” he muttered.\r\n“Poor little June!” said young Jolyon softly. He thought of his daughter still as a babe of three.\r\nOld Jolyon came to a sudden halt.\r\n“I don’t believe a word of it,” he said, “it’s some old woman’s tale. Get me a cab, Jo, I’m tired to death!”\r\nThey stood at a corner to see if an empty cab would come along, while carriage after carriage drove past, bearing Forsytes of all descriptions from the Zoo. The harness, the liveries, the gloss on the horses’ coats, shone and glittered in the May sunlight, and each equipage, landau, sociable, barouche, Victoria, or brougham, seemed to roll out proudly from its wheels:\r\n‘I and my horses and my men you know,’ Indeed the whole turn-out have cost a pot. But we were worth it every penny. Look At Master and at Missis now, the dawgs! Ease with security — ah! that’s the ticket!\r\nAnd such, as everyone knows, is fit accompaniment for a perambulating Forsyte.\r\nAmongst these carriages was a barouche coming at a greater pace than the others, drawn by a pair of bright bay horses. It swung on its high springs, and the four people who filled it seemed rocked as in a cradle.\r\nThis chariot attracted young Jolyon’s attention; and suddenly, on the back seat, he recognised his Uncle James, unmistakable in spite of the increased whiteness of his whiskers; opposite, their backs defended by sunshades, Rachel Forsyte and her elder but married sister, Winifred Dartie, in irreproachable toilettes, had posed their heads haughtily, like two of the birds they had been seeing at the Zoo; while by James’ side reclined Dartie, in a brand-new frock-coat buttoned tight and square, with a large expanse of carefully shot linen protruding below each wristband.\r\nAn extra, if subdued, sparkle, an added touch of the best gloss or varnish characterized this vehicle, and seemed to distinguish it from all the others, as though by some happy extravagance — like that which marks out the real ‘work of art’ from the ordinary ‘picture’— it were designated as the typical car, the very throne of Forsytedom.\r\nOld Jolyon did not see them pass; he was petting poor Holly who was tired, but those in the carriage had taken in the little group; the ladies’ heads tilted suddenly, there was a spasmodic screening movement of parasols; James’ face protruded naively, like the head of a long bird, his mouth slowly opening. The shield-like rounds of the parasols grew smaller and smaller, and vanished.\r\nYoung Jolyon saw that he had been recognised, even by Winifred, who could not have been more than fifteen when he had forfeited the right to be considered a Forsyte.\r\nThere was not much change in them! He remembered the exact look of their turn-out all that time ago: Horses, men, carriage — all different now, no doubt — but of the precise stamp of fifteen years before; the same neat display, the same nicely calculated arrogance ease with security! The swing exact, the pose of the sunshades exact, exact the spirit of the whole thing.\r\nAnd in the sunlight, defended by the haughty shields of parasols, carriage after carriage went by.\r\n“Uncle James has just passed, with his female folk,” said young Jolyon.\r\nHis father looked black. “Did your uncle see us? Yes? Hmph! What’s he want, coming down into these parts?”\r\nAn empty cab drove up at this moment, and old Jolyon stopped it.\r\n“I shall see you again before long, my boy!” he said. “Don’t you go paying any attention to what I’ve been saying about young Bosinney — I don’t believe a word of it!”\r\nKissing the children, who tried to detain him, he stepped in and was borne away.\r\nYoung Jolyon, who had taken Holly up in his arms, stood motionless at the corner, looking after the cab.\r\nChapter 16  Afternoon at Timothy’s\r\nIf old Jolyon, as he got into his cab, had said: ‘I won’t believe a word of it!’ he would more truthfully have expressed his sentiments.\r\nThe notion that James and his womankind had seen him in the company of his son had awakened in him not only the impatience he always felt when crossed, but that secret hostility natural between brothers, the roots of which — little nursery rivalries — sometimes toughen and deepen as life goes on, and, all hidden, support a plant capable of producing in season the bitterest fruits.\r\nHitherto there had been between these six brothers no more unfriendly feeling than that caused by the secret and natural doubt that the others might be richer than themselves; a feeling increased to the pitch of curiosity by the approach of death — that end of all handicaps — and the great ‘closeness’ of their man of business, who, with some sagacity, would profess to Nicholas ignorance of James’ income, to James ignorance of old Jolyon’s, to Jolyon ignorance of Roger’s, to Roger ignorance of Swithin’s, while to Swithin he would say most irritatingly that Nicholas must be a rich man. Timothy alone was exempt, being in gilt-edged securities.\r\nBut now, between two of them at least, had arisen a very different sense of injury. From the moment when James had the impertinence to pry into his affairs — as he put it — old Jolyon no longer chose to credit this story about Bosinney. His grand-daughter slighted through a member of ‘that fellow’s’ family! He made up his mind that Bosinney was maligned. There must be some other reason for his defection.\r\nJune had flown out at him, or something; she was as touchy as she could be!\r\nHe would, however, let Timothy have a bit of his mind, and see if he would go on dropping hints! And he would not let the grass grow under his feet either, he would go there at once, and take very good care that he didn’t have to go again on the same errand.\r\nHe saw James’ carriage blocking the pavement in front of ‘The Bower.’ So they had got there before him — cackling about having seen him, he dared say! And further on, Swithin’s greys were turning their noses towards the noses of James’ bays, as though in conclave over the family, while their coachmen were in conclave above.\r\nOld Jolyon, depositing his hat on the chair in the narrow hall, where that hat of Bosinney’s had so long ago been mistaken for a cat, passed his thin hand grimly over his face with its great drooping white moustaches, as though to remove all traces of expression, and made his way upstairs.\r\nHe found the front drawing-room full. It was full enough at the best of times — without visitors — without any one in it — for Timothy and his sisters, following the tradition of their generation, considered that a room was not quite ‘nice’ unless it was ‘properly’ furnished. It held, therefore, eleven chairs, a sofa, three tables, two cabinets, innumerable knicknacks, and part of a large grand piano. And now, occupied by Mrs. Small, Aunt Hester, by Swithin, James, Rachel, Winifred, Euphemia, who had come in again to return ‘Passion and Paregoric’ which she had read at lunch, and her chum Frances, Roger’s daughter (the musical Forsyte, the one who composed songs), there was only one chair left unoccupied, except, of course, the two that nobody ever sat on — and the only standing room was occupied by the cat, on whom old Jolyon promptly stepped.\r\nIn these days it was by no means unusual for Timothy to have so many visitors. The family had always, one and all, had a real respect for Aunt Ann, and now that she was gone, they were coming far more frequently to The Bower, and staying longer.\r\nSwithin had been the first to arrive, and seated torpid in a red satin chair with a gilt back, he gave every appearance of lasting the others out. And symbolizing Bosinney’s name ‘the big one,’ with his great stature and bulk, his thick white hair, his puffy immovable shaven face, he looked more primeval than ever in the highly upholstered room.\r\nHis conversation, as usual of late, had turned at once upon Irene, and he had lost no time in giving Aunts Juley and Hester his opinion with regard to this rumour he heard was going about. No — as he said — she might want a bit of flirtation — a pretty woman must have her fling; but more than that he did not believe. Nothing open; she had too much good sense, too much proper appreciation of what was due to her position, and to the family! No sc . . ., he was going to say ‘scandal’ but the very idea was so preposterous that he waved his hand as though to say —‘but let that pass!’\r\nGranted that Swithin took a bachelor’s view of the situation — still what indeed was not due to that family in which so many had done so well for themselves, had attained a certain position? If he had heard in dark, pessimistic moments the words ‘yeomen’ and ‘very small beer’ used in connection with his origin, did he believe them?\r\nNo! he cherished, hugging it pathetically to his bosom the secret theory that there was something distinguished somewhere in his ancestry.\r\n“Must be,” he once said to young Jolyon, before the latter went to the bad. “Look at us, we’ve got on! There must be good blood in us somewhere.”\r\nHe had been fond of young Jolyon: the boy had been in a good set at College, had known that old ruffian Sir Charles Fiste’s sons — a pretty rascal one of them had turned out, too; and there was style about him — it was a thousand pities he had run off with that half-foreign governess! If he must go off like that why couldn’t he have chosen someone who would have done them credit! And what was he now? — an underwriter at Lloyd’s; they said he even painted pictures — pictures! Damme! he might have ended as Sir Jolyon Forsyte, Bart., with a seat in Parliament, and a place in the country!\r\nIt was Swithin who, following the impulse which sooner or later urges thereto some member of every great family, went to the Heralds’ Office, where they assured him that he was undoubtedly of the same family as the well-known Forsites with an ‘i,’ whose arms were ‘three dexter buckles on a sable ground gules,’ hoping no doubt to get him to take them up.\r\nSwithin, however, did not do this, but having ascertained that the crest was a ‘pheasant proper,’ and the motto ‘For Forsite,’ he had the pheasant proper placed upon his carriage and the buttons of his coachman, and both crest and motto on his writing-paper. The arms he hugged to himself, partly because, not having paid for them, he thought it would look ostentatious to put them on his carriage, and he hated ostentation, and partly because he, like any practical man all over the country, had a secret dislike and contempt for things he could not understand he found it hard, as anyone might, to swallow ‘three dexter buckles on a sable ground gules.’\r\nHe never forgot, however, their having told him that if he paid for them he would be entitled to use them, and it strengthened his conviction that he was a gentleman. Imperceptibly the rest of the family absorbed the ‘pheasant proper,’ and some, more serious than others, adopted the motto; old Jolyon, however, refused to use the latter, saying that it was humbug meaning nothing, so far as he could see.\r\nAmong the older generation it was perhaps known at bottom from what great historical event they derived their crest; and if pressed on the subject, sooner than tell a lie — they did not like telling lies, having an impression that only Frenchmen and Russians told them — they would confess hurriedly that Swithin had got hold of it somehow.\r\nAmong the younger generation the matter was wrapped in a discretion proper. They did not want to hurt the feelings of their elders, nor to feel ridiculous themselves; they simply used the crest. . . .\r\n“No,” said Swithin, “he had had an opportunity of seeing for himself, and what he should say was, that there was nothing in her manner to that young Buccaneer or Bosinney or whatever his name was, different from her manner to himself; in fact, he should rather say. . . . ” But here the entrance of Frances and Euphemia put an unfortunate stop to the conversation, for this was not a subject which could be discussed before young people.\r\nAnd though Swithin was somewhat upset at being stopped like this on the point of saying something important, he soon recovered his affability. He was rather fond of Frances — Francie, as she was called in the family. She was so smart, and they told him she made a pretty little pot of pin-money by her songs; he called it very clever of her.\r\nHe rather prided himself indeed on a liberal attitude towards women, not seeing any reason why they shouldn’t paint pictures, or write tunes, or books even, for the matter of that, especially if they could turn a useful penny by it; not at all — kept them out of mischief. It was not as if they were men!\r\n‘Little Francie,’ as she was usually called with good-natured contempt, was an important personage, if only as a standing illustration of the attitude of Forsytes towards the Arts. She was not really ‘little,’ but rather tall, with dark hair for a Forsyte, which, together with a grey eye, gave her what was called ‘a Celtic appearance.’ She wrote songs with titles like ‘Breathing Sighs,’ or ‘Kiss me, Mother, ere I die,’ with a refrain like an anthem:\r\n‘Kiss me, Mother, ere I die;\r\nKiss me-kiss me, Mother, ah!\r\nKiss, ah! kiss me e-ere I—\r\nKiss me, Mother, ere I d-d-die!’\r\nShe wrote the words to them herself, and other poems. In lighter moments she wrote waltzes, one of which, the ‘Kensington Coil,’ was almost national to Kensington, having a sweet dip in it.\r\nIt was very original. Then there were her ‘Songs for Little People,’ at once educational and witty, especially ‘Gran’ma’s Porgie,’ and that ditty, almost prophetically imbued with the coming Imperial spirit, entitled ‘Black Him In His Little Eye.’\r\nAny publisher would take these, and reviews like ‘High Living,’ and the ‘Ladies’ Genteel Guide’ went into raptures over: ‘Another of Miss Francie Forsyte’s spirited ditties, sparkling and pathetic. We ourselves were moved to tears and laughter. Miss Forsyte should go far.’\r\nWith the true instinct of her breed, Francie had made a point of knowing the right people — people who would write about her, and talk about her, and people in Society, too — keeping a mental register of just where to exert her fascinations, and an eye on that steady scale of rising prices, which in her mind’s eye represented the future. In this way she caused herself to be universally respected.\r\nOnce, at a time when her emotions were whipped by an attachment — for the tenor of Roger’s life, with its whole-hearted collection of house property, had induced in his only daughter a tendency towards passion — she turned to great and sincere work, choosing the sonata form, for the violin. This was the only one of her productions that troubled the Forsytes. They felt at once that it would not sell.\r\nRoger, who liked having a clever daughter well enough, and often alluded to the amount of pocket-money she made for herself, was upset by this violin sonata.\r\n“Rubbish like that!” he called it. Francie had borrowed young Flageoletti from Euphemia, to play it in the drawing-room at Prince’s Gardens.\r\nAs a matter of fact Roger was right. It was rubbish, but — annoying! the sort of rubbish that wouldn’t sell. As every Forsyte knows, rubbish that sells is not rubbish at all — far from it.\r\nAnd yet, in spite of the sound common sense which fixed the worth of art at what it would fetch, some of the Forsytes — Aunt Hester, for instance, who had always been musical — could not help regretting that Francie’s music was not ‘classical’; the same with her poems. But then, as Aunt Hester said, they didn’t see any poetry nowadays, all the poems were ‘little light things.’\r\nThere was nobody who could write a poem like ‘Paradise Lost,’ or ‘Childe Harold’; either of which made you feel that you really had read something. Still, it was nice for Francie to have something to occupy her; while other girls were spending money shopping she was making it!\r\nAnd both Aunt Hester and Aunt Juley were always ready to listen to the latest story of how Francie had got her price increased.\r\nThey listened now, together with Swithin, who sat pretending not to, for these young people talked so fast and mumbled so, he never could catch what they said.\r\n“And I can’t think,” said Mrs. Septimus, “how you do it. I should never have the audacity!”\r\nFrancie smiled lightly. “I’d much rather deal with a man than a woman. Women are so sharp!”\r\n“My dear,” cried Mrs. Small, “I’m sure we’re not.”\r\nEuphemia went off into her silent laugh, and, ending with the squeak, said, as though being strangled: “Oh, you’ll kill me some day, auntie.”\r\nSwithin saw no necessity to laugh; he detested people laughing when he himself perceived no joke. Indeed, he detested Euphemia altogether, to whom he always alluded as ‘Nick’s daughter, what’s she called — the pale one?’ He had just missed being her god-father — indeed, would have been, had he not taken a firm stand against her outlandish name. He hated becoming a godfather. Swithin then said to Francie with dignity: “It’s a fine day — er — for the time of year.” But Euphemia, who knew perfectly well that he had refused to be her godfather, turned to Aunt Hester, and began telling her how she had seen Irene — Mrs. Soames — at the Church and Commercial Stores.\r\n“And Soames was with her?” said Aunt Hester, to whom Mrs. Small had as yet had no opportunity of relating the incident.\r\n“Soames with her? Of course not!”\r\n“But was she all alone in London?”\r\n“Oh, no; there was Mr. Bosinney with her. She was perfectly dressed.”\r\nBut Swithin, hearing the name Irene, looked severely at Euphemia, who, it is true, never did look well in a dress, whatever she may have done on other occasions, and said:\r\n“Dressed like a lady, I’ve no doubt. It’s a pleasure to see her.”\r\nAt this moment James and his daughters were announced. Dartie, feeling badly in want of a drink, had pleaded an appointment with his dentist, and, being put down at the Marble Arch, had got into a hansom, and was already seated in the window of his club in Piccadilly.\r\nHis wife, he told his cronies, had wanted to take him to pay some calls. It was not in his line — not exactly. Haw!\r\nHailing the waiter, he sent him out to the hall to see what had won the 4.30 race. He was dog-tired, he said, and that was a fact; had been drivin’ about with his wife to ‘shows’ all the afternoon. Had put his foot down at last. A fellow must live his own life.\r\nAt this moment, glancing out of the bay window — for he loved this seat whence he could see everybody pass — his eye unfortunately, or perhaps fortunately, chanced to light on the figure of Soames, who was mousing across the road from the Green Park-side, with the evident intention of coming in, for he, too, belonged to ‘The Iseeum.’\r\nDartie sprang to his feet; grasping his glass, he muttered something about ‘that 4.30 race,’ and swiftly withdrew to the card-room, where Soames never came. Here, in complete isolation and a dim light, he lived his own life till half past seven, by which hour he knew Soames must certainly have left the club.\r\nIt would not do, as he kept repeating to himself whenever he felt the impulse to join the gossips in the bay-window getting too strong for him — it absolutely would not do, with finances as low as his, and the ‘old man’ (James) rusty ever since that business over the oil shares, which was no fault of his, to risk a row with Winifred.\r\nIf Soames were to see him in the club it would be sure to come round to her that he wasn’t at the dentist’s at all. He never knew a family where things ‘came round’ so. Uneasily, amongst the green baize card-tables, a frown on his olive coloured face, his check trousers crossed, and patent-leather boots shining through the gloom, he sat biting his forefinger, and wondering where the deuce he was to get the money if Erotic failed to win the Lancashire Cup.\r\nHis thoughts turned gloomily to the Forsytes. What a set they were! There was no getting anything out of them — at least, it was a matter of extreme difficulty. They were so d —-d particular about money matters; not a sportsman amongst the lot, unless it were George. That fellow Soames, for instance, would have a ft if you tried to borrow a tenner from him, or, if he didn’t have a fit, he looked at you with his cursed supercilious smile, as if you were a lost soul because you were in want of money.\r\nAnd that wife of his (Dartie’s mouth watered involuntarily), he had tried to be on good terms with her, as one naturally would with any pretty sister-in-law, but he would be cursed if the (he mentally used a coarse word)— would have anything to say to him — she looked at him, indeed, as if he were dirt — and yet she could go far enough, he wouldn’t mind betting. He knew women; they weren’t made with soft eyes and figures like that for nothing, as that fellow Soames would jolly soon find out, if there were anything in what he had heard about this Buccaneer Johnny.\r\nRising from his chair, Dartie took a turn across the room, ending in front of the looking-glass over the marble chimney-piece; and there he stood for a long time contemplating in the glass the reflection of his face. It had that look, peculiar to some men, of having been steeped in linseed oil, with its waxed dark moustaches and the little distinguished commencements of side whiskers; and concernedly he felt the promise of a pimple on the side of his slightly curved and fattish nose.\r\nIn the meantime old Jolyon had found the remaining chair in Timothy’s commodious drawing-room. His advent had obviously put a stop to the conversation, decided awkwardness having set in. Aunt Juley, with her well-known kindheartedness, hastened to set people at their ease again.\r\n“Yes, Jolyon,” she said, “we were just saying that you haven’t been here for a long time; but we mustn’t be surprised. You’re busy, of course? James was just saying what a busy time of year. . . . ”\r\n“Was he?” said old Jolyon, looking hard at James. “It wouldn’t be half so busy if everybody minded their own business.”\r\nJames, brooding in a small chair from which his knees ran uphill, shifted his feet uneasily, and put one of them down on the cat, which had unwisely taken refuge from old Jolyon beside him.\r\n“Here, you’ve got a cat here,” he said in an injured voice, withdrawing his foot nervously as he felt it squeezing into the soft, furry body.\r\n“Several,” said old Jolyon, looking at one face and another; “I trod on one just now.”\r\nA silence followed.\r\nThen Mrs. Small, twisting her fingers and gazing round with ‘pathetic calm’, asked: “And how is dear June?”\r\nA twinkle of humour shot through the sternness of old Jolyon’s eyes. Extraordinary old woman, Juley! No one quite like her for saying the wrong thing!\r\n“Bad!” he said; “London don’t agree with her — too many people about, too much clatter and chatter by half.” He laid emphasis on the words, and again looked James in the face.\r\nNobody spoke.\r\nA feeling of its being too dangerous to take a step in any direction, or hazard any remark, had fallen on them all. Something of the sense of the impending, that comes over the spectator of a Greek tragedy, had entered that upholstered room, filled with those white-haired, frock-coated old men, and fashionably attired women, who were all of the same blood, between all of whom existed an unseizable resemblance.\r\nNot that they were conscious of it — the visits of such fateful, bitter spirits are only felt.\r\nThen Swithin rose. He would not sit there, feeling like that — he was not to be put down by anyone! And, manoeuvring round the room with added pomp, he shook hands with each separately.\r\n“You tell Timothy from me,” he said, “that he coddles himself too much!” Then, turning to Francie, whom he considered ‘smart,’ he added: “You come with me for a drive one of these days.” But this conjured up the vision of that other eventful drive which had been so much talked about, and he stood quite still for a second, with glassy eyes, as though waiting to catch up with the significance of what he himself had said; then, suddenly recollecting that he didn’t care a damn, he turned to old Jolyon: “Well, good-bye, Jolyon! You shouldn’t go about without an overcoat; you’ll be getting sciatica or something!” And, kicking the cat slightly with the pointed tip of his patent leather boot, he took his huge form away.\r\nWhen he had gone everyone looked secretly at the others, to see how they had taken the mention of the word ‘drive’— the word which had become famous, and acquired an overwhelming importance, as the only official — so to speak — news in connection with the vague and sinister rumour clinging to the family tongue.\r\nEuphemia, yielding to an impulse, said with a short laugh: “I’m glad Uncle Swithin doesn’t ask me to go for drives.”\r\nMrs. Small, to reassure her and smooth over any little awkwardness the subject might have, replied: “My dear, he likes to take somebody well dressed, who will do him a little credit. I shall never forget the drive he took me. It was an experience!” And her chubby round old face was spread for a moment with a strange contentment; then broke into pouts, and tears came into her eyes. She was thinking of that long ago driving tour she had once taken with Septimus Small.\r\nJames, who had relapsed into his nervous brooding in the little chair, suddenly roused himself: “He’s a funny fellow, Swithin,” he said, but in a half-hearted way.\r\nOld Jolyon’s silence, his stern eyes, held them all in a kind of paralysis. He was disconcerted himself by the effect of his own words — an effect which seemed to deepen the importance of the very rumour he had come to scotch; but he was still angry.\r\nHe had not done with them yet — No, no — he would give them another rub or two.\r\nHe did not wish to rub his nieces, he had no quarrel with them — a young and presentable female always appealed to old Jolyon’s clemency — but that fellow James, and, in a less degree perhaps, those others, deserved all they would get. And he, too, asked for Timothy.\r\nAs though feeling that some danger threatened her younger brother, Aunt Juley suddenly offered him tea: “There it is,” she said, “all cold and nasty, waiting for you in the back drawing room, but Smither shall make you some fresh.”\r\nOld Jolyon rose: “Thank you,” he said, looking straight at James, “but I’ve no time for tea, and — scandal, and the rest of it! It’s time I was at home. Good-bye, Julia; good-bye, Hester; good-bye, Winifred.”\r\nWithout more ceremonious adieux, he marched out.\r\nOnce again in his cab, his anger evaporated, for so it ever was with his wrath — when he had rapped out, it was gone. Sadness came over his spirit. He had stopped their mouths, maybe, but at what a cost! At the cost of certain knowledge that the rumour he had been resolved not to believe was true. June was abandoned, and for the wife of that fellow’s son! He felt it was true, and hardened himself to treat it as if it were not; but the pain he hid beneath this resolution began slowly, surely, to vent itself in a blind resentment against James and his son.\r\nThe six women and one man left behind in the little drawing-room began talking as easily as might be after such an occurrence, for though each one of them knew for a fact that he or she never talked scandal, each one of them also knew that the other six did; all were therefore angry and at a loss. James only was silent, disturbed, to the bottom of his soul.\r\nPresently Francie said: “Do you know, I think Uncle Jolyon is terribly changed this last year. What do you think, Aunt Hester?”\r\nAunt Hester made a little movement of recoil: “Oh, ask your Aunt Julia!” she said; “I know nothing about it.”\r\nNo one else was afraid of assenting, and James muttered gloomily at the floor: “He’s not half the man he was.”\r\n“I’ve noticed it a long time,” went on Francie; “he’s aged tremendously.”\r\nAunt Juley shook her head; her face seemed suddenly to have become one immense pout.\r\n“Poor dear Jolyon,” she said, “somebody ought to see to it for him!”\r\nThere was again silence; then, as though in terror of being left solitarily behind, all five visitors rose simultaneously, and took their departure.\r\nMrs. Small, Aunt Hester, and their cat were left once more alone, the sound of a door closing in the distance announced the approach of Timothy.\r\nThat evening, when Aunt Hester had just got off to sleep in the back bedroom that used to be Aunt Juley’s before Aunt Juley took Aunt Ann’s, her door was opened, and Mrs. Small, in a pink night-cap, a candle in her hand, entered: “Hester!” she said. “Hester!”\r\nAunt Hester faintly rustled the sheet.\r\n“Hester,” repeated Aunt Juley, to make quite sure that she had awakened her, “I am quite troubled about poor dear Jolyon. What,” Aunt Juley dwelt on the word, “do you think ought to be done?”\r\nAunt Hester again rustled the sheet, her voice was heard faintly pleading: “Done? How should I know?”\r\nAunt Juley turned away satisfied, and closing the door with extra gentleness so as not to disturb dear Hester, let it slip through her fingers and fall to with a ‘crack.’\r\nBack in her own room, she stood at the window gazing at the moon over the trees in the Park, through a chink in the muslin curtains, close drawn lest anyone should see. And there, with her face all round and pouting in its pink cap, and her eyes wet, she thought of ‘dear Jolyon,’ so old and so lonely, and how she could be of some use to him; and how he would come to love her, as she had never been loved since — since poor Septimus went away.\r\nChapter 17  Dance at Roger’s\r\nRoger’s house in Prince’s Gardens was brilliantly alight. Large numbers of wax candles had been collected and placed in cut-glass chandeliers, and the parquet floor of the long, double drawing-room reflected these constellations. An appearance of real spaciousness had been secured by moving out all the furniture on to the upper landings, and enclosing the room with those strange appendages of civilization known as ‘rout’ seats. In a remote corner, embowered in palms, was a cottage piano, with a copy of the ‘Kensington Coil’ open on the music-stand.\r\nRoger had objected to a band. He didn’t see in the least what they wanted with a band; he wouldn’t go to the expense, and there was an end of it. Francie (her mother, whom Roger had long since reduced to chronic dyspepsia, went to bed on such occasions), had been obliged to content herself with supplementing the piano by a young man who played the cornet, and she so arranged with palms that anyone who did not look into the heart of things might imagine there were several musicians secreted there. She made up her mind to tell them to play loud — there was a lot of music in a cornet, if the man would only put his soul into it.\r\nIn the more cultivated American tongue, she was ‘through’ at last — through that tortuous labyrinth of make-shifts, which must be traversed before fashionable display can be combined with the sound economy of a Forsyte. Thin but brilliant, in her maize-coloured frock with much tulle about the shoulders, she went from place to place, fitting on her gloves, and casting her eye over it all.\r\nTo the hired butler (for Roger only kept maids) she spoke about the wine. Did he quite understand that Mr. Forsyte wished a dozen bottles of the champagne from Whiteley’s to be put out? But if that were finished (she did not suppose it would be, most of the ladies would drink water, no doubt), but if it were, there was the champagne cup, and he must do the best he could with that.\r\nShe hated having to say this sort of thing to a butler, it was so infra dig.; but what could you do with father? Roger, indeed, after making himself consistently disagreeable about the dance, would come down presently, with his fresh colour and bumpy forehead, as though he had been its promoter; and he would smile, and probably take the prettiest woman in to supper; and at two o’clock, just as they were getting into the swing, he would go up secretly to the musicians and tell them to play ‘God Save the Queen,’ and go away.\r\nFrancie devoutly hoped he might soon get tired, and slip off to bed.\r\nThe three or four devoted girl friends who were staying in the house for this dance had partaken with her, in a small, abandoned room upstairs, of tea and cold chicken-legs, hurriedly served; the men had been sent out to dine at Eustace’s Club, it being felt that they must be fed up.\r\nPunctually on the stroke of nine arrived Mrs. Small alone. She made elaborate apologies for the absence of Timothy, omitting all mention of Aunt Hester, who, at the last minute, had said she could not be bothered. Francie received her effusively, and placed her on a rout seat, where she left her, pouting and solitary in lavender-coloured satin — the first time she had worn colour since Aunt Ann’s death.\r\nThe devoted maiden friends came now from their rooms, each by magic arrangement in a differently coloured frock, but all with the same liberal allowance of tulle on the shoulders and at the bosom — for they were, by some fatality, lean to a girl. They were all taken up to Mrs. Small. None stayed with her more than a few seconds, but clustering together talked and twisted their programmes, looking secretly at the door for the first appearance of a man.\r\nThen arrived in a group a number of Nicholases, always punctual — the fashion up Ladbroke Grove way; and close behind them Eustace and his men, gloomy and smelling rather of smoke.\r\nThree or four of Francie’s lovers now appeared, one after the other; she had made each promise to come early. They were all clean-shaven and sprightly, with that peculiar kind of young-man sprightliness which had recently invaded Kensington; they did not seem to mind each other’s presence in the least, and wore their ties bunching out at the ends, white waistcoats, and socks with clocks. All had handkerchiefs concealed in their cuffs. They moved buoyantly, each armoured in professional gaiety, as though he had come to do great deeds. Their faces when they danced, far from wearing the traditional solemn look of the dancing Englishman, were irresponsible, charming, suave; they bounded, twirling their partners at great pace, without pedantic attention to the rhythm of the music.\r\nAt other dancers they looked with a kind of airy scorn — they, the light brigade, the heroes of a hundred Kensington ‘hops’— from whom alone could the right manner and smile and step be hoped.\r\nAfter this the stream came fast; chaperones silting up along the wall facing the entrance, the volatile element swelling the eddy in the larger room.\r\nMen were scarce, and wallflowers wore their peculiar, pathetic expression, a patient, sourish smile which seemed to say: “Oh, no! don’t mistake me, I know you are not coming up to me. I can hardly expect that!” And Francie would plead with one of her lovers, or with some callow youth: “Now, to please me, do let me introduce you to Miss Pink; such a nice girl, really!” and she would bring him up, and say: “Miss Pink — Mr. Gathercole. Can you spare him a dance?” Then Miss Pink, smiling her forced smile, colouring a little, answered: “Oh! I think so!” and screening her empty card, wrote on it the name of Gathercole, spelling it passionately in the district that he proposed, about the second extra.\r\nBut when the youth had murmured that it was hot, and passed, she relapsed into her attitude of hopeless expectation, into her patient, sourish smile.\r\nMothers, slowly fanning their faces, watched their daughters, and in their eyes could be read all the story of those daughters’ fortunes. As for themselves, to sit hour after hour, dead tired, silent, or talking spasmodically — what did it matter, so long as the girls were having a good time! But to see them neglected and passed by! Ah! they smiled, but their eyes stabbed like the eyes of an offended swan; they longed to pluck young Gathercole by the slack of his dandified breeches, and drag him to their daughters — the jackanapes!\r\nAnd all the cruelties and hardness of life, its pathos and unequal chances, its conceit, self-forgetfulness, and patience, were presented on the battle-field of this Kensington ball-room.\r\nHere and there, too, lovers — not lovers like Francie’s, a peculiar breed, but simply lovers — trembling, blushing, silent, sought each other by flying glances, sought to meet and touch in the mazes of the dance, and now and again dancing together, struck some beholder by the light in their eyes.\r\nNot a second before ten o’clock came the Jameses — Emily, Rachel, Winifred (Dartie had been left behind, having on a former occasion drunk too much of Roger’s champagne), and Cicely, the youngest, making her debut; behind them, following in a hansom from the paternal mansion where they had dined, Soames and Irene.\r\nAll these ladies had shoulder-straps and no tulle — thus showing at once, by a bolder exposure of flesh, that they came from the more fashionable side of the Park.\r\nSoames, sidling back from the contact of the dancers, took up a position against the wall. Guarding himself with his pale smile, he stood watching. Waltz after waltz began and ended, couple after couple brushed by with smiling lips, laughter, and snatches of talk; or with set lips, and eyes searching the throng; or again, with silent, parted lips, and eyes on each other. And the scent of festivity, the odour of flowers, and hair, of essences that women love, rose suffocatingly in the heat of the summer night.\r\nSilent, with something of scorn in his smile, Soames seemed to notice nothing; but now and again his eyes, finding that which they sought, would fix themselves on a point in the shifting throng, and the smile die off his lips.\r\nHe danced with no one. Some fellows danced with their wives; his sense of ‘form’ had never permitted him to dance with Irene since their marriage, and the God of the Forsytes alone can tell whether this was a relief to him or not.\r\nShe passed, dancing with other men, her dress, iris-coloured, floating away from her feet. She danced well; he was tired of hearing women say with an acid smile: “How beautifully your wife dances, Mr. Forsyte — it’s quite a pleasure to watch her!” Tired of answering them with his sidelong glance: “You think so?”\r\nA young couple close by flirted a fan by turns, making an unpleasant draught. Francie and one of her lovers stood near. They were talking of love.\r\nHe heard Roger’s voice behind, giving an order about supper to a servant. Everything was very second-class! He wished that he had not come! He had asked Irene whether she wanted him; she had answered with that maddening smile of hers “Oh, no!”\r\nWhy had he come? For the last quarter of an hour he had not even seen her. Here was George advancing with his Quilpish face; it was too late to get out of his way.\r\n“Have you seen ‘The Buccaneer’?” said this licensed wag; “he’s on the warpath — hair cut and everything!”\r\nSoames said he had not, and crossing the room, half-empty in an interval of the dance, he went out on the balcony, and looked down into the street.\r\nA carriage had driven up with late arrivals, and round the door hung some of those patient watchers of the London streets who spring up to the call of light or music; their faces, pale and upturned above their black and rusty figures, had an air of stolid watching that annoyed Soames. Why were they allowed to hang about; why didn’t the bobby move them on?\r\nBut the policeman took no notice of them; his feet were planted apart on the strip of crimson carpet stretched across the pavement; his face, under the helmet, wore the same stolid, watching look as theirs.\r\nAcross the road, through the railings, Soames could see the branches of trees shining, faintly stirring in the breeze, by the gleam of the street lamps; beyond, again, the upper lights of the houses on the other side, so many eyes looking down on the quiet blackness of the garden; and over all, the sky, that wonderful London sky, dusted with the innumerable reflection of countless lamps; a dome woven over between its stars with the refraction of human needs and human fancies — immense mirror of pomp and misery that night after night stretches its kindly mocking over miles of houses and gardens, mansions and squalor, over Forsytes, policemen, and patient watchers in the streets.\r\nSoames turned away, and, hidden in the recess, gazed into the lighted room. It was cooler out there. He saw the new arrivals, June and her grandfather, enter. What had made them so late? They stood by the doorway. They looked fagged. Fancy Uncle Jolyon turning out at this time of night! Why hadn’t June come to Irene, as she usually did, and it occurred to him suddenly that he had seen nothing of June for a long time now.\r\nWatching her face with idle malice, he saw it change, grow so pale that he thought she would drop, then flame out crimson. Turning to see at what she was looking, he saw his wife on Bosinney’s arm, coming from the conservatory at the end of the room. Her eyes were raised to his, as though answering some question he had asked, and he was gazing at her intently.\r\nSoames looked again at June. Her hand rested on old Jolyon’s arm; she seemed to be making a request. He saw a surprised look on his uncle’s face; they turned and passed through the door out of his sight.\r\nThe music began again — a waltz — and, still as a statue in the recess of the window, his face unmoved, but no smile on his lips, Soames waited. Presently, within a yard of the dark balcony, his wife and Bosinney passed. He caught the perfume of the gardenias that she wore, saw the rise and fall of her bosom, the languor in her eyes, her parted lips, and a look on her face that he did not know. To the slow, swinging measure they danced by, and it seemed to him that they clung to each other; he saw her raise her eyes, soft and dark, to Bosinney’s, and drop them again.\r\nVery white, he turned back to the balcony, and leaning on it, gazed down on the Square; the figures were still there looking up at the light with dull persistency, the policeman’s face, too, upturned, and staring, but he saw nothing of them. Below, a carriage drew up, two figures got in, and drove away. . . .\r\nThat evening June and old Jolyon sat down to dinner at the usual hour. The girl was in her customary high-necked frock, old Jolyon had not dressed.\r\nAt breakfast she had spoken of the dance at Uncle Roger’s, she wanted to go; she had been stupid enough, she said, not to think of asking anyone to take her. It was too late now.\r\nOld Jolyon lifted his keen eyes. June was used to go to dances with Irene as a matter of course! and deliberately fixing his gaze on her, he asked: “Why don’t you get Irene?”\r\nNo! June did not want to ask Irene; she would only go if — if her grandfather wouldn’t mind just for once for a little time!\r\nAt her look, so eager and so worn, old Jolyon had grumblingly consented. He did not know what she wanted, he said, with going to a dance like this, a poor affair, he would wager; and she no more fit for it than a cat! What she wanted was sea air, and after his general meeting of the Globular Gold Concessions he was ready to take her. She didn’t want to go away? Ah! she would knock herself up! Stealing a mournful look at her, he went on with his breakfast.\r\nJune went out early, and wandered restlessly about in the heat. Her little light figure that lately had moved so languidly about its business, was all on fire. She bought herself some flowers. She wanted — she meant to look her best. He would be there! She knew well enough that he had a card. She would show him that she did not care. But deep down in her heart she resolved that evening to win him back. She came in flushed, and talked brightly all lunch; old Jolyon was there, and he was deceived.\r\nIn the afternoon she was overtaken by a desperate fit of sobbing. She strangled the noise against the pillows of her bed, but when at last it ceased she saw in the glass a swollen face with reddened eyes, and violet circles round them. She stayed in the darkened room till dinner time.\r\nAll through that silent meal the struggle went on within her.\r\nShe looked so shadowy and exhausted that old Jolyon told ‘Sankey’ to countermand the carriage, he would not have her going out. . . . She was to go to bed! She made no resistance. She went up to her room, and sat in the dark. At ten o’clock she rang for her maid.\r\n“Bring some hot water, and go down and tell Mr. Forsyte that I feel perfectly rested. Say that if he’s too tired I can go to the dance by myself.”\r\nThe maid looked askance, and June turned on her imperiously. “Go,” she said, “bring the hot water at once!”\r\nHer ball-dress still lay on the sofa, and with a sort of fierce care she arrayed herself, took the flowers in her hand, and went down, her small face carried high under its burden of hair. She could hear old Jolyon in his room as she passed.\r\nBewildered and vexed, he was dressing. It was past ten, they would not get there till eleven; the girl was mad. But he dared not cross her — the expression of her face at dinner haunted him.\r\nWith great ebony brushes he smoothed his hair till it shone like silver under the light; then he, too, came out on the gloomy staircase.\r\nJune met him below, and, without a word, they went to the carriage.\r\nWhen, after that drive which seemed to last for ever, she entered Roger’s drawing-room, she disguised under a mask of resolution a very torment of nervousness and emotion. The feeling of shame at what might be called ‘running after him’ was smothered by the dread that he might not be there, that she might not see him after all, and by that dogged resolve — somehow, she did not know how — to win him back.\r\nThe sight of the ballroom, with its gleaming floor, gave her a feeling of joy, of triumph, for she loved dancing, and when dancing she floated, so light was she, like a strenuous, eager little spirit. He would surely ask her to dance, and if he danced with her it would all be as it was before. She looked about her eagerly.\r\nThe sight of Bosinney coming with Irene from the conservatory, with that strange look of utter absorption on his face, struck her too suddenly. They had not seen — no one should see — her distress, not even her grandfather.\r\nShe put her hand on Jolyon’s arm, and said very low:\r\n“I must go home, Gran; I feel ill.”\r\nHe hurried her away, grumbling to himself that he had known how it would be.\r\nTo her he said nothing; only when they were once more in the carriage, which by some fortunate chance had lingered near the door, he asked her: “What is it, my darling?”\r\nFeeling her whole slender body shaken by sobs, he was terribly alarmed. She must have Blank to-morrow. He would insist upon it. He could not have her like this. . . . There, there!\r\nJune mastered her sobs, and squeezing his hand feverishly, she lay back in her corner, her face muffled in a shawl.\r\nHe could only see her eyes, fixed and staring in the dark, but he did not cease to stroke her hand with his thin fingers.\r\nChapter 18  Evening at Richmond\r\nOther eyes besides the eyes of June and of Soames had seen ‘those two’ (as Euphemia had already begun to call them) coming from the conservatory; other eyes had noticed the look on Bosinney’s face.\r\nThere are moments when Nature reveals the passion hidden beneath the careless calm of her ordinary moods — violent spring flashing white on almond-blossom through the purple clouds; a snowy, moonlit peak, with its single star, soaring up to the passionate blue; or against the flames of sunset, an old yew-tree standing dark guardian of some fiery secret.\r\nThere are moments, too, when in a picture-gallery, a work, noted by the casual spectator as ‘. . . . ..Titian — remarkably fine,’ breaks through the defences of some Forsyte better lunched perhaps than his fellows, and holds him spellbound in a kind of ecstasy. There are things, he feels — there are things here which — well, which are things. Something unreasoning, unreasonable, is upon him; when he tries to define it with the precision of a practical man, it eludes him, slips away, as the glow of the wine he has drunk is slipping away, leaving him cross, and conscious of his liver. He feels that he has been extravagant, prodigal of something; virtue has gone out of him. He did not desire this glimpse of what lay under the three stars of his catalogue. God forbid that he should know anything about the forces of Nature! God forbid that he should admit for a moment that there are such things! Once admit that, and where was he? One paid a shilling for entrance, and another for the programme.\r\nThe look which June had seen, which other Forsytes had seen, was like the sudden flashing of a candle through a hole in some imaginary canvas, behind which it was being moved — the sudden flaming-out of a vague, erratic glow, shadowy and enticing. It brought home to onlookers the consciousness that dangerous forces were at work. For a moment they noticed it with pleasure, with interest, then felt they must not notice it at all.\r\nIt supplied, however, the reason of June’s coming so late and disappearing again without dancing, without even shaking hands with her lover. She was ill, it was said, and no wonder.\r\nBut here they looked at each other guiltily. They had no desire to spread scandal, no desire to be ill-natured. Who would have? And to outsiders no word was breathed, unwritten law keeping them silent.\r\nThen came the news that June had gone to the seaside with old Jolyon.\r\nHe had carried her off to Broadstairs, for which place there was just then a feeling, Yarmouth having lost caste, in spite of Nicholas, and no Forsyte going to the sea without intending to have an air for his money such as would render him bilious in a week. That fatally aristocratic tendency of the first Forsyte to drink Madeira had left his descendants undoubtedly accessible.\r\nSo June went to the sea. The family awaited developments; there was nothing else to do.\r\nBut how far — how far had ‘those two’ gone? How far were they going to go? Could they really be going at all? Nothing could surely come of it, for neither of them had any money. At the most a flirtation, ending, as all such attachments should, at the proper time.\r\nSoames’ sister, Winifred Dartie, who had imbibed with the breezes of Mayfair — she lived in Green Street — more fashionable principles in regard to matrimonial behaviour than were current, for instance, in Ladbroke Grove, laughed at the idea of there being anything in it. The ‘little thing’— Irene was taller than herself, and it was real testimony to the solid worth of a Forsyte that she should always thus be a ‘little thing’— the little thing was bored. Why shouldn’t she amuse herself? Soames was rather tiring; and as to Mr. Bosinney — only that buffoon George would have called him the Buccaneer — she maintained that he was very chic.\r\nThis dictum — that Bosinney was chic — caused quit a sensation. It failed to convince. That he was ‘good-looking in a way’ they were prepared to admit, but that anyone could call a man with his pronounced cheekbones, curious eyes, and soft felt hats chic was only another instance of Winifred’s extravagant way of running after something new.\r\nIt was that famous summer when extravagance was fashionable, when the very earth was extravagant, chestnut-trees spread with blossom, and flowers drenched in perfume, as they had never been before; when roses blew in every garden; and for the swarming stars the nights had hardly space; when every day and all day long the sun, in full armour, swung his brazen shield above the Park, and people did strange things, lunching and dining in the open air. Unprecedented was the tale of cabs and carriages that streamed across the bridges of the shining river, bearing the upper-middle class in thousands to the green glories of Bushey, Richmond, Kew, and Hampton Court. Almost every family with any pretensions to be of the carriage-class paid one visit that year to the horse-chestnuts at Bushey, or took one drive amongst the Spanish chestnuts of Richmond Park. Bowling smoothly, if dustily, along, in a cloud of their own creation, they would stare fashionably at the antlered heads which the great slow deer raised out of a forest of bracken that promised to autumn lovers such cover as was never seen before. And now and again, as the amorous perfume of chestnut flowers and of fern was drifted too near, one would say to the other: “My dear! What a peculiar scent!”\r\nAnd the lime-flowers that year were of rare prime, near honey-coloured. At the corners of London squares they gave out, as the sun went down, a perfume sweeter than the honey bees had taken — a perfume that stirred a yearning unnamable in the hearts of Forsytes and their peers, taking the cool after dinner in the precincts of those gardens to which they alone had keys.\r\nAnd that yearning made them linger amidst the dim shapes of flower-beds in the failing daylight, made them turn, and turn, and turn again, as though lovers were waiting for them — waiting for the last light to die away under the shadow of the branches.\r\nSome vague sympathy evoked by the scent of the limes, some sisterly desire to see for herself, some idea of demonstrating the soundness of her dictum that there was ‘nothing in it’; or merely the craving to drive down to Richmond, irresistible that summer, moved the mother of the little Darties (of little Publius, of Imogen, Maud, and Benedict) to write the following note to her sister-in-law:\r\n‘DEAR IRENE, ‘June 30.\r\n‘I hear that Soames is going to Henley tomorrow for the night. I thought it would be great fun if we made up a little party and drove down to, Richmond. Will you ask Mr. Bosinney, and I will get young Flippard.\r\n‘Emily (they called their mother Emily — it was so chic) will lend us the carriage. I will call for you and your young man at seven o’clock.\r\n‘Your affectionate sister, ‘WINIFRED DARTIE.\r\n‘Montague believes the dinner at the Crown and Sceptre to be quite eatable.’\r\nMontague was Dartie’s second and better known name — his first being Moses; for he was nothing if not a man of the world.\r\nHer plan met with more opposition from Providence than so benevolent a scheme deserved. In the first place young Flippard wrote:\r\n‘DEAR Mrs. DARTIE,\r\n‘Awfully sorry. Engaged two deep.\r\n‘Yours, ‘AUGUSTUS FLIPPARD.’\r\nIt was late to send into the by-ways and hedges to remedy this misfortune. With the promptitude and conduct of a mother, Winifred fell back on her husband. She had, indeed, the decided but tolerant temperament that goes with a good deal of profile, fair hair, and greenish eyes. She was seldom or never at a loss; or if at a loss, was always able to convert it into a gain.\r\nDartie, too, was in good feather. Erotic had failed to win the Lancashire Cup. Indeed, that celebrated animal, owned as he was by a pillar of the turf, who had secretly laid many thousands against him, had not even started. The forty-eight hours that followed his scratching were among the darkest in Dartie’s life.\r\nVisions of James haunted him day and night. Black thoughts about Soames mingled with the faintest hopes. On the Friday night he got drunk, so greatly was he affected. But on Saturday morning the true Stock Exchange instinct triumphed within him. Owing some hundreds, which by no possibility could he pay, he went into town and put them all on Concertina for the Saltown Borough Handicap.\r\nAs he said to Major Scrotton, with whom he lunched at the Iseeum: “That little Jew boy, Nathans, had given him the tip. He didn’t care a cursh. He wash in — a mucker. If it didn’t come up — well then, damme, the old man would have to pay!”\r\nA bottle of Pol Roger to his own cheek had given him a new contempt for James.\r\nIt came up. Concertina was squeezed home by her neck — a terrible squeak! But, as Dartie said: There was nothing like pluck!\r\nHe was by no means averse to the expedition to Richmond. He would ‘stand’ it himself! He cherished an admiration for Irene, and wished to be on more playful terms with her.\r\nAt half-past five the Park Lane footman came round to say: Mrs. Forsyte was very sorry, but one of the horses was coughing!\r\nUndaunted by this further blow, Winifred at once despatched little Publius (now aged seven) with the nursery governess to Montpellier Square.\r\nThey would go down in hansoms and meet at the Crown and Sceptre at 7.45.\r\nDartie, on being told, was pleased enough. It was better than going down with your back to the horses! He had no objection to driving down with Irene. He supposed they would pick up the others at Montpellier Square, and swop hansoms there?\r\nInformed that the meet was at the Crown and Sceptre, and that he would have to drive with his wife, he turned sulky, and said it was d —-d slow!\r\nAt seven o’clock they started, Dartie offering to bet the driver half-a-crown he didn’t do it in the three-quarters of an hour.\r\nTwice only did husband and wife exchange remarks on the way.\r\nDartie said: “It’ll put Master Soames’s nose out of joint to hear his wife’s been drivin’ in a hansom with Master Bosinney!”\r\nWinifred replied: “Don’t talk such nonsense, Monty!”\r\n“Nonsense!” repeated Dartie. “You don’t know women, my fine lady!”\r\nOn the other occasion he merely asked: “How am I looking? A bit puffy about the gills? That fizz old George is so fond of is a windy wine!”\r\nHe had been lunching with George Forsyte at the Haversnake.\r\nBosinney and Irene had arrived before them. They were standing in one of the long French windows overlooking the river.\r\nWindows that summer were open all day long, and all night too, and day and night the scents of flowers and trees came in, the hot scent of parching grass, and the cool scent of the heavy dews.\r\nTo the eye of the observant Dartie his two guests did not appear to be making much running, standing there close together, without a word. Bosinney was a hungry-looking creature — not much go about him.\r\nHe left them to Winifred, however, and busied himself to order the dinner.\r\nA Forsyte will require good, if not delicate feeding, but a Dartie will tax the resources of a Crown and Sceptre. Living as he does, from hand to mouth, nothing is too good for him to eat; and he will eat it. His drink, too, will need to be carefully provided; there is much drink in this country ‘not good enough’ for a Dartie; he will have the best. Paying for things vicariously, there is no reason why he should stint himself. To stint yourself is the mark of a fool, not of a Dartie.\r\nThe best of everything! No sounder principle on which a man can base his life, whose father-in-law has a very considerable income, and a partiality for his grandchildren.\r\nWith his not unable eye Dartie had spotted this weakness in James the very first year after little Publius’s arrival (an error); he had profited by his perspicacity. Four little Darties were now a sort of perpetual insurance.\r\nThe feature of the feast was unquestionably the red mullet. This delectable fish, brought from a considerable distance in a state of almost perfect preservation, was first fried, then boned, then served in ice, with Madeira punch in place of sauce, according to a recipe known to a few men of the world.\r\nNothing else calls for remark except the payment of the bill by Dartie.\r\nHe had made himself extremely agreeable throughout the meal; his bold, admiring stare seldom abandoning Irene’s face and figure. As he was obliged to confess to himself, he got no change out of her — she was cool enough, as cool as her shoulders looked under their veil of creamy lace. He expected to have caught her out in some little game with Bosinney; but not a bit of it, she kept up her end remarkably well. As for that architect chap, he was as glum as a bear with a sore head — Winifred could barely get a word out of him; he ate nothing, but he certainly took his liquor, and his face kept getting whiter, and his eyes looked queer.\r\nIt was all very amusing.\r\nFor Dartie himself was in capital form, and talked freely, with a certain poignancy, being no fool. He told two or three stories verging on the improper, a concession to the company, for his stories were not used to verging. He proposed Irene’s health in a mock speech. Nobody drank it, and Winifred said: “Don’t be such a clown, Monty!”\r\nAt her suggestion they went after dinner to the public terrace overlooking the river.\r\n“I should like to see the common people making love,” she said, “it’s such fun!”\r\nThere were numbers of them walking in the cool, after the day’s heat, and the air was alive with the sound of voices, coarse and loud, or soft as though murmuring secrets.\r\nIt was not long before Winifred’s better sense — she was the only Forsyte present — secured them an empty bench. They sat down in a row. A heavy tree spread a thick canopy above their heads, and the haze darkened slowly over the river.\r\nDartie sat at the end, next to him Irene, then Bosinney, then Winifred. There was hardly room for four, and the man of the world could feel Irene’s arm crushed against his own; he knew that she could not withdraw it without seeming rude, and this amused him; he devised every now and again a movement that would bring her closer still. He thought: ‘That Buccaneer Johnny shan’t have it all to himself! It’s a pretty tight fit, certainly!’\r\nFrom far down below on the dark river came drifting the tinkle of a mandoline, and voices singing the old round:\r\n‘A boat, a boat, unto the ferry, For we’ll go over and be merry; And laugh, and quaff, and drink brown sherry!’\r\nAnd suddenly the moon appeared, young and tender, floating up on her back from behind a tree; and as though she had breathed, the air was cooler, but down that cooler air came always the warm odour of the limes.\r\nOver his cigar Dartie peered round at Bosinney, who was sitting with his arms crossed, staring straight in front of him, and on his face the look of a man being tortured.\r\nAnd Dartie shot a glance at the face between, so veiled by the overhanging shadow that it was but like a darker piece of the darkness shaped and breathed on; soft, mysterious, enticing.\r\nA hush had fallen on the noisy terrace, as if all the strollers were thinking secrets too precious to be spoken.\r\nAnd Dartie thought: ‘Women!’\r\nThe glow died above the river, the singing ceased; the young moon hid behind a tree, and all was dark. He pressed himself against Irene.\r\nHe was not alarmed at the shuddering that ran through the limbs he touched, or at the troubled, scornful look of her eyes. He felt her trying to draw herself away, and smiled.\r\nIt must be confessed that the man of the world had drunk quite as much as was good for him.\r\nWith thick lips parted under his well-curled moustaches, and his bold eyes aslant upon her, he had the malicious look of a satyr.\r\nAlong the pathway of sky between the hedges of the tree tops the stars clustered forth; like mortals beneath, they seemed to shift and swarm and whisper. Then on the terrace the buzz broke out once more, and Dartie thought: ‘Ah! he’s a poor, hungry-looking devil, that Bosinney!’ and again he pressed himself against Irene.\r\nThe movement deserved a better success. She rose, and they all followed her.\r\nThe man of the world was more than ever determined to see what she was made of. Along the terrace he kept close at her elbow. He had within him much good wine. There was the long drive home, the long drive and the warm dark and the pleasant closeness of the hansom cab — with its insulation from the world devised by some great and good man. That hungry architect chap might drive with his wife — he wished him joy of her! And, conscious that his voice was not too steady, he was careful not to speak; but a smile had become fixed on his thick lips.\r\nThey strolled along toward the cabs awaiting them at the farther end. His plan had the merit of all great plans, an almost brutal simplicity he would merely keep at her elbow till she got in, and get in quickly after her.\r\nBut when Irene reached the cab she did not get in; she slipped, instead, to the horse’s head. Dartie was not at the moment sufficiently master of his legs to follow. She stood stroking the horse’s nose, and, to his annoyance, Bosinney was at her side first. She turned and spoke to him rapidly, in a low voice; the words ‘That man’ reached Dartie. He stood stubbornly by the cab step, waiting for her to come back. He knew a trick worth two of that!\r\nHere, in the lamp-light, his figure (no more than medium height), well squared in its white evening waistcoat, his light overcoat flung over his arm, a pink flower in his button-hole, and on his dark face that look of confident, good-humoured insolence, he was at his best — a thorough man of the world.\r\nWinifred was already in her cab. Dartie reflected that Bosinney would have a poorish time in that cab if he didn’t look sharp! Suddenly he received a push which nearly overturned him in the road. Bosinney’s voice hissed in his ear: “I am taking Irene back; do you understand?” He saw a face white with passion, and eyes that glared at him like a wild cat’s.\r\n“Eh?” he stammered. “What? Not a bit. You take my wife!”\r\n“Get away!” hissed Bosinney —“or I’ll throw you into the road!”\r\nDartie recoiled; he saw as plainly as possible that the fellow meant it. In the space he made Irene had slipped by, her dress brushed his legs. Bosinney stepped in after her.\r\n“Go on!” he heard the Buccaneer cry. The cabman flicked his horse. It sprang forward.\r\nDartie stood for a moment dumbfounded; then, dashing at the cab where his wife sat, he scrambled in.\r\n“Drive on!” he shouted to the driver, “and don’t you lose sight of that fellow in front!”\r\nSeated by his wife’s side, he burst into imprecations. Calming himself at last with a supreme effort, he added: “A pretty mess you’ve made of it, to let the Buccaneer drive home with her; why on earth couldn’t you keep hold of him? He’s mad with love; any fool can see that!”\r\nHe drowned Winifred’s rejoinder with fresh calls to the Almighty; nor was it until they reached Barnes that he ceased a Jeremiad, in the course of which he had abused her, her father, her brother, Irene, Bosinney, the name of Forsyte, his own children, and cursed the day when he had ever married.\r\nWinifred, a woman of strong character, let him have his say, at the end of which he lapsed into sulky silence. His angry eyes never deserted the back of that cab, which, like a lost chance, haunted the darkness in front of him.\r\nFortunately he could not hear Bosinney’s passionate pleading — that pleading which the man of the world’s conduct had let loose like a flood; he could not see Irene shivering, as though some garment had been torn from her, nor her eyes, black and mournful, like the eyes of a beaten child. He could not hear Bosinney entreating, entreating, always entreating; could not hear her sudden, soft weeping, nor see that poor, hungry-looking devil, awed and trembling, humbly touching her hand.\r\nIn Montpellier Square their cabman, following his instructions to the letter, faithfully drew up behind the cab in front. The Darties saw Bosinney spring out, and Irene follow, and hasten up the steps with bent head. She evidently had her key in her hand, for she disappeared at once. It was impossible to tell whether she had turned to speak to Bosinney.\r\nThe latter came walking past their cab; both husband and wife had an admirable view of his face in the light of a street lamp. It was working with violent emotion.\r\n“Good-night, Mr. Bosinney!” called Winifred.\r\nBosinney started, clawed off his hat, and hurried on. He had obviously forgotten their existence.\r\n“There!” said Dartie, “did you see the beast’s face? What did I say? Fine games!” He improved the occasion.\r\nThere had so clearly been a crisis in the cab that Winifred was unable to defend her theory.\r\nShe said: “I shall say nothing about it. I don’t see any use in making a fuss!”\r\nWith that view Dartie at once concurred; looking upon James as a private preserve, he disapproved of his being disturbed by the troubles of others.\r\n“Quite right,” he said; “let Soames look after himself. He’s jolly well able to!”\r\nThus speaking, the Darties entered their habitat in Green Street, the rent of which was paid by James, and sought a well-earned rest. The hour was midnight, and no Forsytes remained abroad in the streets to spy out Bosinney’s wanderings; to see him return and stand against the rails of the Square garden, back from the glow of the street lamp; to see him stand there in the shadow of trees, watching the house where in the dark was hidden she whom he would have given the world to see for a single minute — she who was now to him the breath of the lime-trees, the meaning of the light and the darkness, the very beating of his own heart.\r\nChapter 19  Diagnosis of a Forsyte\r\nIt is in the nature of a Forsyte to be ignorant that he is a Forsyte; but young Jolyon was well aware of being one. He had not known it till after the decisive step which had made him an outcast; since then the knowledge had been with him continually. He felt it throughout his alliance, throughout all his dealings with his second wife, who was emphatically not a Forsyte.\r\nHe knew that if he had not possessed in great measure the eye for what he wanted, the tenacity to hold on to it, the sense of the folly of wasting that for which he had given so big a price — in other words, the ‘sense of property’ he could never have retained her (perhaps never would have desired to retain her) with him through all the financial troubles, slights, and misconstructions of those fifteen years; never have induced her to marry him on the death of his first wife; never have lived it all through, and come up, as it were, thin, but smiling.\r\nHe was one of those men who, seated cross-legged like miniature Chinese idols in the cages of their own hearts, are ever smiling at themselves a doubting smile. Not that this smile, so intimate and eternal, interfered with his actions, which, like his chin and his temperament, were quite a peculiar blend of softness and determination.\r\nHe was conscious, too, of being a Forsyte in his work, that painting of water-colours to which he devoted so much energy, always with an eye on himself, as though he could not take so unpractical a pursuit quite seriously, and always with a certain queer uneasiness that he did not make more money at it.\r\nIt was, then, this consciousness of what it meant to be a Forsyte, that made him receive the following letter from old Jolyon, with a mixture of sympathy and disgust:\r\n‘SHELDRAKE HOUSE,\r\n‘BROADSTAIRS,\r\n‘July 1. ‘MY DEAR JO,’\r\n(The Dad’s handwriting had altered very little in the thirty odd years that he remembered it.)\r\n‘We have been here now a fortnight, and have had good weather on the whole. The air is bracing, but my liver is out of order, and I shall be glad enough to get back to town. I cannot say much for June, her health and spirits are very indifferent, and I don’t see what is to come of it. She says nothing, but it is clear that she is harping on this engagement, which is an engagement and no engagement, and — goodness knows what. I have grave doubts whether she ought to be allowed to return to London in the present state of affairs, but she is so self-willed that she might take it into her head to come up at any moment. The fact is someone ought to speak to Bosinney and ascertain what he means. I’m afraid of this myself, for I should certainly rap him over the knuckles, but I thought that you, knowing him at the Club, might put in a word, and get to ascertain what the fellow is about. You will of course in no way commit June. I shall be glad to hear from you in the course of a few days whether you have succeeded in gaining any information. The situation is very distressing to me, I worry about it at night.\r\nWith my love to Jolly and Holly. ‘I am,\r\n‘Your affect. father,\r\n‘JOLYON FORSYTE.’\r\nYoung Jolyon pondered this letter so long and seriously that his wife noticed his preoccupation, and asked him what was the matter. He replied: “Nothing.”\r\nIt was a fixed principle with him never to allude to June. She might take alarm, he did not know what she might think; he hastened, therefore, to banish from his manner all traces of absorption, but in this he was about as successful as his father would have been, for he had inherited all old Jolyon’s transparency in matters of domestic finesse; and young Mrs. Jolyon, busying herself over the affairs of the house, went about with tightened lips, stealing at him unfathomable looks.\r\nHe started for the Club in the afternoon with the letter in his pocket, and without having made up his mind.\r\nTo sound a man as to ‘his intentions’ was peculiarly unpleasant to him; nor did his own anomalous position diminish this unpleasantness. It was so like his family, so like all the people they knew and mixed with, to enforce what they called their rights over a man, to bring him up to the mark; so like them to carry their business principles into their private relations.\r\nAnd how that phrase in the letter —‘You will, of course, in no way commit June’— gave the whole thing away.\r\nYet the letter, with the personal grievance, the concern for June, the ‘rap over the knuckles,’ was all so natural. No wonder his father wanted to know what Bosinney meant, no wonder he was angry.\r\nIt was difficult to refuse! But why give the thing to him to do? That was surely quite unbecoming; but so long as a Forsyte got what he was after, he was not too particular about the means, provided appearances were saved.\r\nHow should he set about it, or how refuse? Both seemed impossible. So, young Jolyon!\r\nHe arrived at the Club at three o’clock, and the first person he saw was Bosinney himself, seated in a corner, staring out of the window.\r\nYoung Jolyon sat down not far off, and began nervously to reconsider his position. He looked covertly at Bosinney sitting there unconscious. He did not know him very well, and studied him attentively for perhaps the first time; an unusual looking man, unlike in dress, face, and manner to most of the other members of the Club — young Jolyon himself, however different he had become in mood and temper, had always retained the neat reticence of Forsyte appearance. He alone among Forsytes was ignorant of Bosinney’s nickname. The man was unusual, not eccentric, but unusual; he looked worn, too, haggard, hollow in the cheeks beneath those broad, high cheekbones, though without any appearance of ill-health, for he was strongly built, with curly hair that seemed to show all the vitality of a fine constitution.\r\nSomething in his face and attitude touched young Jolyon. He knew what suffering was like, and this man looked as if he were suffering.\r\nHe got up and touched his arm.\r\nBosinney started, but exhibited no sign of embarrassment on seeing who it was.\r\nYoung Jolyon sat down.\r\n“I haven’t seen you for a long time,” he said. “How are you getting on with my cousin’s house?”\r\n“It’ll be finished in about a week.”\r\n“I congratulate you!”\r\n“Thanks — I don’t know that it’s much of a subject for congratulation.”\r\n“No?” queried young Jolyon; “I should have thought you’d be glad to get a long job like that off your hands; but I suppose you feel it much as I do when I part with a picture — a sort of child?”\r\nHe looked kindly at Bosinney.\r\n“Yes,” said the latter more cordially, “it goes out from you and there’s an end of it. I didn’t know you painted.”\r\n“Only water-colours; I can’t say I believe in my work.”\r\n“Don’t believe in it? There — how can you do it? Work’s no use unless you believe in it!”\r\n“Good,” said young Jolyon; “it’s exactly what I’ve always said. By-the-bye, have you noticed that whenever one says ‘Good,’ one always adds ‘it’s exactly what I’ve always said’! But if you ask me how I do it, I answer, because I’m a Forsyte.”\r\n“A Forsyte! I never thought of you as one!”\r\n“A Forsyte,” replied young Jolyon, “is not an uncommon animal. There are hundreds among the members of this Club. Hundreds out there in the streets; you meet them wherever you go!”\r\n“And how do you tell them, may I ask?” said Bosinney.\r\n“By their sense of property. A Forsyte takes a practical — one might say a commonsense — view of things, and a practical view of things is based fundamentally on a sense of property. A Forsyte, you will notice, never gives himself away.”\r\n“Joking?”\r\nYoung Jolyon’s eye twinkled.\r\n“Not much. As a Forsyte myself, I have no business to talk. But I’m a kind of thoroughbred mongrel; now, there’s no mistaking you: You’re as different from me as I am from my Uncle James, who is the perfect specimen of a Forsyte. His sense of property is extreme, while you have practically none. Without me in between, you would seem like a different species. I’m the missing link. We are, of course, all of us the slaves of property, and I admit that it’s a question of degree, but what I call a ‘Forsyte’ is a man who is decidedly more than less a slave of property. He knows a good thing, he knows a safe thing, and his grip on property — it doesn’t matter whether it be wives, houses, money, or reputation — is his hall-mark.”\r\n“Ah!” murmured Bosinney. “You should patent the word.”\r\n“I should like,” said young Jolyon, “to lecture on it:\r\n“Properties and quality of a Forsyte: This little animal, disturbed by the ridicule of his own sort, is unaffected in his motions by the laughter of strange creatures (you or I). Hereditarily disposed to myopia, he recognises only the persons of his own species, amongst which he passes an existence of competitive tranquillity.”\r\n“You talk of them,” said Bosinney, “as if they were half England.”\r\n“They are,” repeated young Jolyon, “half England, and the better half, too, the safe half, the three per cent. half, the half that counts. It’s their wealth and security that makes everything possible; makes your art possible, makes literature, science, even religion, possible. Without Forsytes, who believe in none of these things, and habitats but turn them all to use, where should we be? My dear sir, the Forsytes are the middlemen, the commercials, the pillars of society, the cornerstones of convention; everything that is admirable!”\r\n“I don’t know whether I catch your drift,” said Bosinney, “but I fancy there are plenty of Forsytes, as you call them, in my profession.”\r\n“Certainly,” replied young Jolyon. “The great majority of architects, painters, or writers have no principles, like any other Forsytes. Art, literature, religion, survive by virtue of the few cranks who really believe in such things, and the many Forsytes who make a commercial use of them. At a low estimate, three-fourths of our Royal Academicians are Forsytes, seven-eighths of our novelists, a large proportion of the press. Of science I can’t speak; they are magnificently represented in religion; in the House of Commons perhaps more numerous than anywhere; the aristocracy speaks for itself. But I’m not laughing. It is dangerous to go against the majority and what a majority!” He fixed his eyes on Bosinney: “It’s dangerous to let anything carry you away — a house, a picture, a — woman!”\r\nThey looked at each other. — And, as though he had done that which no Forsyte did — given himself away, young Jolyon drew into his shell. Bosinney broke the silence.\r\n“Why do you take your own people as the type?” said he.\r\n“My people,” replied young Jolyon, “are not very extreme, and they have their own private peculiarities, like every other family, but they possess in a remarkable degree those two qualities which are the real tests of a Forsyte — the power of never being able to give yourself up to anything soul and body, and the ‘sense of property’.”\r\nBosinney smiled: “How about the big one, for instance?”\r\n“Do you mean Swithin?” asked young Jolyon. “Ah! in Swithin there’s something primeval still. The town and middle-class life haven’t digested him yet. All the old centuries of farm work and brute force have settled in him, and there they’ve stuck, for all he’s so distinguished.”\r\nBosinney seemed to ponder. “Well, you’ve hit your cousin Soames off to the life,” he said suddenly. “He’ll never blow his brains out.”\r\nYoung Jolyon shot at him a penetrating glance.\r\n“No,” he said; “he won’t. That’s why he’s to be reckoned with. Look out for their grip! It’s easy to laugh, but don’t mistake me. It doesn’t do to despise a Forsyte; it doesn’t do to disregard them!”\r\n“Yet you’ve done it yourself!”\r\nYoung Jolyon acknowledged the hit by losing his smile.\r\n“You forget,” he said with a queer pride, “I can hold on, too — I’m a Forsyte myself. We’re all in the path of great forces. The man who leaves the shelter of the wall — well — you know what I mean. I don’t,” he ended very low, as though uttering a threat, “recommend every man to-go-my-way. It depends.”\r\nThe colour rushed into Bosinney’s face, but soon receded, leaving it sallow-brown as before. He gave a short laugh, that left his lips fixed in a queer, fierce smile; his eyes mocked young Jolyon.\r\n“Thanks,” he said. “It’s deuced kind of you. But you’re not the only chaps that can hold on.” He rose.\r\nYoung Jolyon looked after him as he walked away, and, resting his head on his hand, sighed.\r\nIn the drowsy, almost empty room the only sounds were the rustle of newspapers, the scraping of matches being struck. He stayed a long time without moving, living over again those days when he, too, had sat long hours watching the clock, waiting for the minutes to pass — long hours full of the torments of uncertainty, and of a fierce, sweet aching; and the slow, delicious agony of that season came back to him with its old poignancy. The sight of Bosinney, with his haggard face, and his restless eyes always wandering to the clock, had roused in him a pity, with which was mingled strange, irresistible envy.\r\nHe knew the signs so well. Whither was he going — to what sort of fate? What kind of woman was it who was drawing him to her by that magnetic force which no consideration of honour, no principle, no interest could withstand; from which the only escape was flight.\r\nFlight! But why should Bosinney fly? A man fled when he was in danger of destroying hearth and home, when there were children, when he felt himself trampling down ideals, breaking something. But here, so he had heard, it was all broken to his hand.\r\nHe himself had not fled, nor would he fly if it were all to come over again. Yet he had gone further than Bosinney, had broken up his own unhappy home, not someone else’s: And the old saying came back to him: ‘A man’s fate lies in his own heart.’\r\nIn his own heart! The proof of the pudding was in the eating — Bosinney had still to eat his pudding.\r\nHis thoughts passed to the woman, the woman whom he did not know, but the outline of whose story he had heard.\r\nAn unhappy marriage! No ill-treatment — only that indefinable malaise, that terrible blight which killed all sweetness under Heaven; and so from day to day, from night to night, from week to week, from year to year, till death should end it.\r\nBut young Jolyon, the bitterness of whose own feelings time had assuaged, saw Soames’ side of the question too. Whence should a man like his cousin, saturated with all the prejudices and beliefs of his class, draw the insight or inspiration necessary to break up this life? It was a question of imagination, of projecting himself into the future beyond the unpleasant gossip, sneers, and tattle that followed on such separations, beyond the passing pangs that the lack of the sight of her would cause, beyond the grave disapproval of the worthy. But few men, and especially few men of Soames’ class, had imagination enough for that. A deal of mortals in this world, and not enough imagination to go round! And sweet Heaven, what a difference between theory and practice; many a man, perhaps even Soames, held chivalrous views on such matters, who when the shoe pinched found a distinguishing factor that made of himself an exception.\r\nThen, too, he distrusted his judgment. He had been through the experience himself, had tasted too the dregs the bitterness of an unhappy marriage, and how could he take the wide and dispassionate view of those who had never been within sound of the battle? His evidence was too first-hand — like the evidence on military matters of a soldier who has been through much active service, against that of civilians who have not suffered the disadvantage of seeing things too close. Most people would consider such a marriage as that of Soames and Irene quite fairly successful; he had money, she had beauty; it was a case for compromise. There was no reason why they should not jog along, even if they hated each other. It would not matter if they went their own ways a little so long as the decencies were observed — the sanctity of the marriage tie, of the common home, respected. Half the marriages of the upper classes were conducted on these lines: Do not offend the susceptibilities of Society; do not offend the susceptibilities of the Church. To avoid offending these is worth the sacrifice of any private feelings. The advantages of the stable home are visible, tangible, so many pieces of property; there is no risk in the statu quo. To break up a home is at the best a dangerous experiment, and selfish into the bargain.\r\nThis was the case for the defence, and young Jolyon sighed.\r\n‘The core of it all,’ he thought, ‘is property, but there are many people who would not like it put that way. To them it is “the sanctity of the marriage tie”; but the sanctity of the marriage tie is dependent on the sanctity of the family, and the sanctity of the family is dependent on the sanctity of property. And yet I imagine all these people are followers of One who never owned anything. It is curious!\r\nAnd again young Jolyon sighed.\r\n‘Am I going on my way home to ask any poor devils I meet to share my dinner, which will then be too little for myself, or, at all events, for my wife, who is necessary to my health and happiness? It may be that after all Soames does well to exercise his rights and support by his practice the sacred principle of property which benefits us all, with the exception of those who suffer by the process.’\r\nAnd so he left his chair, threaded his way through the maze of seats, took his hat, and languidly up the hot streets crowded with carriages, reeking with dusty odours, wended his way home.\r\nBefore reaching Wistaria Avenue he removed old Jolyon’s letter from his pocket, and tearing it carefully into tiny pieces, scattered them in the dust of the road.\r\nHe let himself in with his key, and called his wife’s name. But she had gone out, taking Jolly and Holly, and the house was empty; alone in the garden the dog Balthasar lay in the shade snapping at flies.\r\nYoung Jolyon took his seat there, too, under the pear-tree that bore no fruit.\r\nChapter 20  Bosinney on Parole\r\nThe day after the evening at Richmond Soames returned from Henley by a morning train. Not constitutionally interested in amphibious sports, his visit had been one of business rather than pleasure, a client of some importance having asked him down.\r\nHe went straight to the City, but finding things slack, he left at three o’clock, glad of this chance to get home quietly. Irene did not expect him. Not that he had any desire to spy on her actions, but there was no harm in thus unexpectedly surveying the scene.\r\nAfter changing to Park clothes he went into the drawing-room. She was sitting idly in the corner of the sofa, her favourite seat; and there were circles under her eyes, as though she had not slept.\r\nHe asked: “How is it you’re in? Are you expecting somebody?”\r\n“Yes that is, not particularly.”\r\n“Who?”\r\n“Mr. Bosinney said he might come.”\r\n“Bosinney. He ought to be at work.”\r\nTo this she made no answer.\r\n“Well,” said Soames, “I want you to come out to the Stores with me, and after that we’ll go to the Park.”\r\n“I don’t want to go out; I have a headache.”\r\nSoames replied: “If ever I want you to do anything, you’ve always got a headache. It’ll do you good to come and sit under the trees.”\r\nShe did not answer.\r\nSoames was silent for some minutes; at last he said: “I don’t know what your idea of a wife’s duty is. I never have known!”\r\nHe had not expected her to reply, but she did.\r\n“I have tried to do what you want; it’s not my fault that I haven’t been able to put my heart into it.”\r\n“Whose fault is it, then?” He watched her askance.\r\n“Before we were married you promised to let me go if our marriage was not a success. Is it a success?”\r\nSoames frowned.\r\n“Success,” he stammered —“it would be a success if you behaved yourself properly!”\r\n“I have tried,” said Irene. “Will you let me go?”\r\nSoames turned away. Secretly alarmed, he took refuge in bluster.\r\n“Let you go? You don’t know what you’re talking about. Let you go? How can I let you go? We’re married, aren’t we? Then, what are you talking about? For God’s sake, don’t let’s have any of this sort of nonsense! Get your hat on, and come and sit in the Park.”\r\n“Then, you won’t let me go?”\r\nHe felt her eyes resting on him with a strange, touching look.\r\n“Let you go!” he said; “and what on earth would you do with yourself if I did? You’ve got no money!”\r\n“I could manage somehow.”\r\nHe took a swift turn up and down the room; then came and stood before her.\r\n“Understand,” he said, “once and for all, I won’t have you say this sort of thing. Go and get your hat on!”\r\nShe did not move.\r\n“I suppose,” said Soames, “you don’t want to miss Bosinney if he comes!”\r\nIrene got up slowly and left the room. She came down with her hat on.\r\nThey went out.\r\nIn the Park, the motley hour of mid-afternoon, when foreigners and other pathetic folk drive, thinking themselves to be in fashion, had passed; the right, the proper, hour had come, was nearly gone, before Soames and Irene seated themselves under the Achilles statue.\r\nIt was some time since he had enjoyed her company in the Park. That was one of the past delights of the first two seasons of his married life, when to feel himself the possessor of this gracious creature before all London had been his greatest, though secret, pride. How many afternoons had he not sat beside her, extremely neat, with light grey gloves and faint, supercilious smile, nodding to acquaintances, and now and again removing his hat.\r\nHis light grey gloves were still on his hands, and on his lips his smile sardonic, but where the feeling in his heart?\r\nThe seats were emptying fast, but still he kept her there, silent and pale, as though to work out a secret punishment. Once or twice he made some comment, and she bent her head, or answered “Yes” with a tired smile.\r\nAlong the rails a man was walking so fast that people stared after him when he passed.\r\n“Look at that ass!” said Soames; “he must be mad to walk like that in this heat!”\r\nHe turned; Irene had made a rapid movement.\r\n“Hallo!” he said: “it’s our friend the Buccaneer!”\r\nAnd he sat still, with his sneering smile, conscious that Irene was sitting still, and smiling too.\r\n“Will she bow to him?” he thought.\r\nBut she made no sign.\r\nBosinney reached the end of the rails, and came walking back amongst the chairs, quartering his ground like a pointer. When he saw them he stopped dead, and raised his hat.\r\nThe smile never left Soames’ face; he also took off his hat.\r\nBosinney came up, looking exhausted, like a man after hard physical exercise; the sweat stood in drops on his brow, and Soames’ smile seemed to say: “You’ve had a trying time, my friend . . . . ..What are you doing in the Park?” he asked. “We thought you despised such frivolity!”\r\nBosinney did not seem to hear; he made his answer to Irene: “I’ve been round to your place; I hoped I should find you in.”\r\nSomebody tapped Soames on the back, and spoke to him; and in the exchange of those platitudes over his shoulder, he missed her answer, and took a resolution.\r\n“We’re just going in,” he said to Bosinney; “you’d better come back to dinner with us.” Into that invitation he put a strange bravado, a stranger pathos: “You, can’t deceive me,” his look and voice seemed saying, “but see — I trust you — I’m not afraid of you!”\r\nThey started back to Montpellier Square together, Irene between them. In the crowded streets Soames went on in front. He did not listen to their conversation; the strange resolution of trustfulness he had taken seemed to animate even his secret conduct. Like a gambler, he said to himself: ‘It’s a card I dare not throw away — I must play it for what it’s worth. I have not too many chances.’\r\nHe dressed slowly, heard her leave her room and go downstairs, and, for full five minutes after, dawdled about in his dressing-room. Then he went down, purposely shutting the door loudly to show that he was coming. He found them standing by the hearth, perhaps talking, perhaps not; he could not say.\r\nHe played his part out in the farce, the long evening through — his manner to his guest more friendly than it had ever been before; and when at last Bosinney went, he said: “You must come again soon; Irene likes to have you to talk about the house!” Again his voice had the strange bravado and the stranger pathos; but his hand was cold as ice.\r\nLoyal to his resolution, he turned away from their parting, turned away from his wife as she stood under the hanging lamp to say good-night — away from the sight of her golden head shining so under the light, of her smiling mournful lips; away from the sight of Bosinney’s eyes looking at her, so like a dog’s looking at its master.\r\nAnd he went to bed with the certainty that Bosinney was in love with his wife.\r\nThe summer night was hot, so hot and still that through every opened window came in but hotter air. For long hours he lay listening to her breathing.\r\nShe could sleep, but he must lie awake. And, lying awake, he hardened himself to play the part of the serene and trusting husband.\r\nIn the small hours he slipped out of bed, and passing into his dressing-room, leaned by the open window.\r\nHe could hardly breathe.\r\nA night four years ago came back to him — the night but one before his marriage; as hot and stifling as this.\r\nHe remembered how he had lain in a long cane chair in the window of his sitting-room off Victoria Street. Down below in a side street a man had banged at a door, a woman had cried out; he remembered, as though it were now, the sound of the scuffle, the slam of the door, the dead silence that followed. And then the early water-cart, cleansing the reek of the streets, had approached through the strange-seeming, useless lamp-light; he seemed to hear again its rumble, nearer and nearer, till it passed and slowly died away.\r\nHe leaned far out of the dressing-room window over the little court below, and saw the first light spread. The outlines of dark walls and roofs were blurred for a moment, then came out sharper than before.\r\nHe remembered how that other night he had watched the lamps paling all the length of Victoria Street; how he had hurried on his clothes and gone down into the street, down past houses and squares, to the street where she was staying, and there had stood and looked at the front of the little house, as still and grey as the face of a dead man.\r\nAnd suddenly it shot through his mind; like a sick man’s fancy: What’s he doing? — that fellow who haunts me, who was here this evening, who’s in love with my wife — prowling out there, perhaps, looking for her as I know he was looking for her this afternoon; watching my house now, for all I can tell!\r\nHe stole across the landing to the front of the house, stealthily drew aside a blind, and raised a window.\r\nThe grey light clung about the trees of the square, as though Night, like a great downy moth, had brushed them with her wings. The lamps were still alight, all pale, but not a soul stirred — no living thing in sight.\r\nYet suddenly, very faint, far off in the deathly stillness, he heard a cry writhing, like the voice of some wandering soul barred out of heaven, and crying for its happiness. There it was again — again! Soames shut the window, shuddering.\r\nThen he thought: ‘Ah! it’s only the peacocks, across the water.’\r\nChapter 21  June Pays Some Calls\r\nJolyon stood in the narrow hall at Broadstairs, inhaling that odour of oilcloth and herrings which permeates all respectable seaside lodging-houses. On a chair — a shiny leather chair, displaying its horsehair through a hole in the top left-hand corner — stood a black despatch case. This he was filling with papers, with the Times, and a bottle of Eau-de Cologne. He had meetings that day of the ‘Globular Gold Concessions’ and the ‘New Colliery Company, Limited,’ to which he was going up, for he never missed a Board; to ‘miss a Board’ would be one more piece of evidence that he was growing old, and this his jealous Forsyte spirit could not bear.\r\nHis eyes, as he filled that black despatch case, looked as if at any moment they might blaze up with anger. So gleams the eye of a schoolboy, baited by a ring of his companions; but he controls himself, deterred by the fearful odds against him. And old Jolyon controlled himself, keeping down, with his masterful restraint now slowly wearing out, the irritation fostered in him by the conditions of his life.\r\nHe had received from his son an unpractical letter, in which by rambling generalities the boy seemed trying to get out of answering a plain question. ‘I’ve seen Bosinney,’ he said; ‘he is not a criminal. The more I see of people the more I am convinced that they are never good or bad — merely comic, or pathetic. You probably don’t agree with me!’\r\nOld Jolyon did not; he considered it cynical to so express oneself; he had not yet reached that point of old age when even Forsytes, bereft of those illusions and principles which they have cherished carefully for practical purposes but never believed in, bereft of all corporeal enjoyment, stricken to the very heart by having nothing left to hope for — break through the barriers of reserve and say things they would never have believed themselves capable of saying.\r\nPerhaps he did not believe in ‘goodness’ and ‘badness’ any more than his son; but as he would have said: He didn’t know — couldn’t tell; there might be something in it; and why, by an unnecessary expression of disbelief, deprive yourself of possible advantage?\r\nAccustomed to spend his holidays among the mountains, though (like a true Forsyte) he had never attempted anything too adventurous or too foolhardy, he had been passionately fond of them. And when the wonderful view (mentioned in Baedeker —‘fatiguing but repaying’)— was disclosed to him after the effort of the climb, he had doubtless felt the existence of some great, dignified principle crowning the chaotic strivings, the petty precipices, and ironic little dark chasms of life. This was as near to religion, perhaps, as his practical spirit had ever gone.\r\nBut it was many years since he had been to the mountains. He had taken June there two seasons running, after his wife died, and had realized bitterly that his walking days were over.\r\nTo that old mountain — given confidence in a supreme order of things he had long been a stranger.\r\nHe knew himself to be old, yet he felt young; and this troubled him. It troubled and puzzled him, too, to think that he, who had always been so careful, should be father and grandfather to such as seemed born to disaster. He had nothing to say against Jo — who could say anything against the boy, an amiable chap? — but his position was deplorable, and this business of June’s nearly as bad. It seemed like a fatality, and a fatality was one of those things no man of his character could either understand or put up with.\r\nIn writing to his son he did not really hope that anything would come of it. Since the ball at Roger’s he had seen too clearly how the land lay — he could put two and two together quicker than most men — and, with the example of his own son before his eyes, knew better than any Forsyte of them all that the pale flame singes men’s wings whether they will or no.\r\nIn the days before June’s engagement, when she and Mrs. Soames were always together, he had seen enough of Irene to feel the spell she cast over men. She was not a flirt, not even a coquette — words dear to the heart of his generation, which loved to define things by a good, broad, inadequate word — but she was dangerous. He could not say why. Tell him of a quality innate in some women — a seductive power beyond their own control! He would but answer: ‘Humbug!’ She was dangerous, and there was an end of it. He wanted to close his eyes to that affair. If it was, it was; he did not want to hear any more about it — he only wanted to save June’s position and her peace of mind. He still hoped she might once more become a comfort to himself.\r\nAnd so he had written. He got little enough out of the answer. As to what young Jolyon had made of the interview, there was practically only the queer sentence: ‘I gather that he’s in the stream.’ The stream! What stream? What was this new-fangled way of talking?\r\nHe sighed, and folded the last of the papers under the flap of the bag; he knew well enough what was meant.\r\nJune came out of the dining-room, and helped him on with his summer coat. From her costume, and the expression of her little resolute face, he saw at once what was coming.\r\n“I’m going with you,” she said.\r\n“Nonsense, my dear; I go straight into the City. I can’t have you racketting about!”\r\n“I must see old Mrs. Smeech.”\r\n“Oh, your precious ‘lame ducks!” grumbled out old Jolyon. He did not believe her excuse, but ceased his opposition. There was no doing anything with that pertinacity of hers.\r\nAt Victoria he put her into the carriage which had been ordered for himself — a characteristic action, for he had no petty selfishnesses.\r\n“Now, don’t you go tiring yourself, my darling,” he said, and took a cab on into the city.\r\nJune went first to a back-street in Paddington, where Mrs. Smeech, her ‘lame duck,’ lived — an aged person, connected with the charring interest; but after half an hour spent in hearing her habitually lamentable recital, and dragooning her into temporary comfort, she went on to Stanhope Gate. The great house was closed and dark.\r\nShe had decided to learn something at all costs. It was better to face the worst, and have it over. And this was her plan: To go first to Phil’s aunt, Mrs. Baynes, and, failing information there, to Irene herself. She had no clear notion of what she would gain by these visits.\r\nAt three o’clock she was in Lowndes Square. With a woman’s instinct when trouble is to be faced, she had put on her best frock, and went to the battle with a glance as courageous as old Jolyon’s itself. Her tremors had passed into eagerness.\r\nMrs. Baynes, Bosinney’s aunt (Louisa was her name), was in her kitchen when June was announced, organizing the cook, for she was an excellent housewife, and, as Baynes always said, there was ‘a lot in a good dinner.’ He did his best work after dinner. It was Baynes who built that remarkably fine row of tall crimson houses in Kensington which compete with so many others for the title of ‘the ugliest in London.’\r\nOn hearing June’s name, she went hurriedly to her bedroom, and, taking two large bracelets from a red morocco case in a locked drawer, put them on her white wrists — for she possessed in a remarkable degree that ‘sense of property,’ which, as we know, is the touchstone of Forsyteism, and the foundation of good morality.\r\nHer figure, of medium height and broad build, with a tendency to embonpoint, was reflected by the mirror of her whitewood wardrobe, in a gown made under her own organization, of one of those half-tints, reminiscent of the distempered walls of corridors in large hotels. She raised her hands to her hair, which she wore a la Princesse de Galles, and touched it here and there, settling it more firmly on her head, and her eyes were full of an unconscious realism, as though she were looking in the face one of life’s sordid facts, and making the best of it. In youth her cheeks had been of cream and roses, but they were mottled now by middle-age, and again that hard, ugly directness came into her eyes as she dabbed a powder-puff across her forehead. Putting the puff down, she stood quite still before the glass, arranging a smile over her high, important nose, her, chin, (never large, and now growing smaller with the increase of her neck), her thin-lipped, down-drooping mouth. Quickly, not to lose the effect, she grasped her skirts strongly in both hands, and went downstairs.\r\nShe had been hoping for this visit for some time past. Whispers had reached her that things were not all right between her nephew and his fiancee. Neither of them had been near her for weeks. She had asked Phil to dinner many times; his invariable answer had been ‘Too busy.’\r\nHer instinct was alarmed, and the instinct in such matters of this excellent woman was keen. She ought to have been a Forsyte; in young Jolyon’s sense of the word, she certainly had that privilege, and merits description as such.\r\nShe had married off her three daughters in a way that people said was beyond their deserts, for they had the professional plainness only to be found, as a rule, among the female kind of the more legal callings. Her name was upon the committees of numberless charities connected with the Church-dances, theatricals, or bazaars — and she never lent her name unless sure beforehand that everything had been thoroughly organized.\r\nShe believed, as she often said, in putting things on a commercial basis; the proper function of the Church, of charity, indeed, of everything, was to strengthen the fabric of ‘Society.’ Individual action, therefore, she considered immoral. Organization was the only thing, for by organization alone could you feel sure that you were getting a return for your money. Organization — and again, organization! And there is no doubt that she was what old Jolyon called her —“a ‘dab’ at that”— he went further, he called her “a humbug.”\r\nThe enterprises to which she lent her name were organized so admirably that by the time the takings were handed over, they were indeed skim milk divested of all cream of human kindness. But as she often justly remarked, sentiment was to be deprecated. She was, in fact, a little academic.\r\nThis great and good woman, so highly thought of in ecclesiastical circles, was one of the principal priestesses in the temple of Forsyteism, keeping alive day and night a sacred flame to the God of Property, whose altar is inscribed with those inspiring words: ‘Nothing for nothing, and really remarkably little for sixpence.’\r\nWhen she entered a room it was felt that something substantial had come in, which was probably the reason of her popularity as a patroness. People liked something substantial when they had paid money for it; and they would look at her — surrounded by her staff in charity ballrooms, with her high nose and her broad, square figure, attired in an uniform covered with sequins — as though she were a general.\r\nThe only thing against her was that she had not a double name. She was a power in upper middle-class society, with its hundred sets and circles, all intersecting on the common battlefield of charity functions, and on that battlefield brushing skirts so pleasantly with the skirts of Society with the capital ‘S.’ She was a power in society with the smaller ‘s,’ that larger, more significant, and more powerful body, where the commercially Christian institutions, maxims, and ‘principle,’ which Mrs. Baynes embodied, were real life-blood, circulating freely, real business currency, not merely the sterilized imitation that flowed in the veins of smaller Society with the larger ‘S.’ People who knew her felt her to be sound — a sound woman, who never gave herself away, nor anything else, if she could possibly help it.\r\nShe had been on the worst sort of terms with Bosinney’s father, who had not infrequently made her the object of an unpardonable ridicule. She alluded to him now that he was gone as her ‘poor, dear, irreverend brother.’\r\nShe greeted June with the careful effusion of which she was a mistress, a little afraid of her as far as a woman of her eminence in the commercial and Christian world could be afraid — for so slight a girl June had a great dignity, the fearlessness of her eyes gave her that. And Mrs. Baynes, too, shrewdly recognized that behind the uncompromising frankness of June’s manner there was much of the Forsyte. If the girl had been merely frank and courageous, Mrs. Baynes would have thought her ‘cranky,’ and despised her; if she had been merely a Forsyte, like Francie — let us say — she would have patronized her from sheer weight of metal; but June, small though she was — Mrs. Baynes habitually admired quantity — gave her an uneasy feeling; and she placed her in a chair opposite the light.\r\nThere was another reason for her respect which Mrs. Baynes, too good a churchwoman to be worldly, would have been the last to admit — she often heard her husband describe old Jolyon as extremely well off, and was biassed towards his granddaughter for the soundest of all reasons. To-day she felt the emotion with which we read a novel describing a hero and an inheritance, nervously anxious lest, by some frightful lapse of the novelist, the young man should be left without it at the end.\r\nHer manner was warm; she had never seen so clearly before how distinguished and desirable a girl this was. She asked after old Jolyon’s health. A wonderful man for his age; so upright, and young looking, and how old was he? Eighty-one! She would never have thought it! They were at the sea! Very nice for them; she supposed June heard from Phil every day? Her light grey eyes became more prominent as she asked this question; but the girl met the glance without flinching.\r\n“No,” she said, “he never writes!”\r\nMrs. Baynes’s eyes dropped; they had no intention of doing so, but they did. They recovered immediately.\r\n“Of course not. That’s Phil all over — he was always like that!”\r\n“Was he?” said June.\r\nThe brevity of the answer caused Mrs. Baynes’s bright smile a moment’s hesitation; she disguised it by a quick movement, and spreading her skirts afresh, said: “Why, my dear — he’s quite the most harum-scarum person; one never pays the slightest attention to what he does!”\r\nThe conviction came suddenly to June that she was wasting her time; even were she to put a question point-blank, she would never get anything out of this woman.\r\n‘Do you see him?’ she asked, her face crimsoning.\r\nThe perspiration broke out on Mrs. Baynes’ forehead beneath the powder.\r\n“Oh, yes! I don’t remember when he was here last — indeed, we haven’t seen much of him lately. He’s so busy with your cousin’s house; I’m told it’ll be finished directly. We must organize a little dinner to celebrate the event; do come and stay the night with us!”\r\n“Thank you,” said June. Again she thought: ‘I’m only wasting my time. This woman will tell me nothing.’\r\nShe got up to go. A change came over Mrs. Baynes. She rose too; her lips twitched, she fidgeted her hands. Something was evidently very wrong, and she did not dare to ask this girl, who stood there, a slim, straight little figure, with her decided face, her set jaw, and resentful eyes. She was not accustomed to be afraid of asking question’s — all organization was based on the asking of questions!\r\nBut the issue was so grave that her nerve, normally strong, was fairly shaken; only that morning her husband had said: “Old Mr. Forsyte must be worth well over a hundred thousand pounds!”\r\nAnd this girl stood there, holding out her hand — holding out her hand!\r\nThe chance might be slipping away — she couldn’t tell — the chance of keeping her in the family, and yet she dared not speak.\r\nHer eyes followed June to the door.\r\nIt closed.\r\nThen with an exclamation Mrs. Baynes ran forward, wobbling her bulky frame from side to side, and opened it again.\r\nToo late! She heard the front door click, and stood still, an expression of real anger and mortification on her face.\r\nJune went along the Square with her bird-like quickness. She detested that woman now whom in happier days she had been accustomed to think so kind. Was she always to be put off thus, and forced to undergo this torturing suspense?\r\nShe would go to Phil himself, and ask him what he meant. She had the right to know. She hurried on down Sloane Street till she came to Bosinney’s number. Passing the swing-door at the bottom, she ran up the stairs, her heart thumping painfully.\r\nAt the top of the third flight she paused for breath, and holding on to the bannisters, stood listening. No sound came from above.\r\nWith a very white face she mounted the last flight. She saw the door, with his name on the plate. And the resolution that had brought her so far evaporated.\r\nThe full meaning of her conduct came to her. She felt hot all over; the palms of her hands were moist beneath the thin silk covering of her gloves.\r\nShe drew back to the stairs, but did not descend. Leaning against the rail she tried to get rid of a feeling of being choked; and she gazed at the door with a sort of dreadful courage. No! she refused to go down. Did it matter what people thought of her? They would never know! No one would help her if she did not help herself! She would go through with it.\r\nForcing herself, therefore, to leave the support of the wall, she rang the bell. The door did not open, and all her shame and fear suddenly abandoned her; she rang again and again, as though in spite of its emptiness she could drag some response out of that closed room, some recompense for the shame and fear that visit had cost her. It did not open; she left off ringing, and, sitting down at the top of the stairs, buried her face in her hands.\r\nPresently she stole down, out into the air. She felt as though she had passed through a bad illness, and had no desire now but to get home as quickly as she could. The people she met seemed to know where she had been, what she had been doing; and suddenly — over on the opposite side, going towards his rooms from the direction of Montpellier Square — she saw Bosinney himself.\r\nShe made a movement to cross into the traffic. Their eyes met, and he raised his hat. An omnibus passed, obscuring her view; then, from the edge of the pavement, through a gap in the traffic, she saw him walking on.\r\nAnd June stood motionless, looking after him.\r\nChapter 22  Perfection of the House\r\n‘One mockturtle, clear; one oxtail; two glasses of port.’\r\nIn the upper room at French’s, where a Forsyte could still get heavy English food, James and his son were sitting down to lunch.\r\nOf all eating-places James liked best to come here; there was something unpretentious, well-flavoured, and filling about it, and though he had been to a certain extent corrupted by the necessity for being fashionable, and the trend of habits keeping pace with an income that would increase, he still hankered in quiet City moments after the tasty fleshpots of his earlier days. Here you were served by hairy English waiters in aprons; there was sawdust on the floor, and three round gilt looking-glasses hung just above the line of sight. They had only recently done away with the cubicles, too, in which you could have your chop, prime chump, with a floury-potato, without seeing your neighbours, like a gentleman.\r\nHe tucked the top corner of his napkin behind the third button of his waistcoat, a practice he had been obliged to abandon years ago in the West End. He felt that he should relish his soup — the entire morning had been given to winding up the estate of an old friend.\r\nAfter filling his mouth with household bread, stale, he at once began: “How are you going down to Robin Hill? You going to take Irene? You’d better take her. I should think there’ll be a lot that’ll want seeing to.”\r\nWithout looking up, Soames answered: “She won’t go.”\r\n“Won’t go? What’s the meaning of that? She’s going to live in the house, isn’t she?”\r\nSoames made no reply.\r\n“I don’t know what’s coming to women nowadays,” mumbled James; “I never used to have any trouble with them. She’s had too much liberty. She’s spoiled. . . . ”\r\nSoames lifted his eyes: “I won’t have anything said against her,” he said unexpectedly.\r\nThe silence was only broken now by the supping of James’s soup.\r\nThe waiter brought the two glasses of port, but Soames stopped him.\r\n“That’s not the way to serve port,” he said; “take them away, and bring the bottle.”\r\nRousing himself from his reverie over the soup, James took one of his rapid shifting surveys of surrounding facts.\r\n“Your mother’s in bed,” he said; “you can have the carriage to take you down. I should think Irene’d like the drive. This young Bosinney’ll be there, I suppose, to show you over”\r\nSoames nodded.\r\n“I should like to go and see for myself what sort of a job he’s made finishing off,” pursued James. “I’ll just drive round and pick you both up.”\r\n“I am going down by train,” replied Soames. “If you like to drive round and see, Irene might go with you, I can’t tell.”\r\nHe signed to the waiter to bring the bill, which James paid.\r\nThey parted at St. Paul’s, Soames branching off to the station, James taking his omnibus westwards.\r\nHe had secured the corner seat next the conductor, where his long legs made it difficult for anyone to get in, and at all who passed him he looked resentfully, as if they had no business to be using up his air.\r\nHe intended to take an opportunity this afternoon of speaking to Irene. A word in time saved nine; and now that she was going to live in the country there was a chance for her to turn over a new leaf! He could see that Soames wouldn’t stand very much more of her goings on!\r\nIt did not occur to him to define what he meant by her ‘goings on’; the expression was wide, vague, and suited to a Forsyte. And James had more than his common share of courage after lunch.\r\nOn reaching home, he ordered out the barouche, with special instructions that the groom was to go too. He wished to be kind to her, and to give her every chance.\r\nWhen the door of No.62 was opened he could distinctly hear her singing, and said so at once, to prevent any chance of being denied entrance.\r\nYes, Mrs. Soames was in, but the maid did not know if she was seeing people.\r\nJames, moving with the rapidity that ever astonished the observers of his long figure and absorbed expression, went forthwith into the drawing-room without permitting this to be ascertained. He found Irene seated at the piano with her hands arrested on the keys, evidently listening to the voices in the hall. She greeted him without smiling.\r\n“Your mother-in-law’s in bed,” he began, hoping at once to enlist her sympathy. “I’ve got the carriage here. Now, be a good girl, and put on your hat and come with me for a drive. It’ll do you good!”\r\nIrene looked at him as though about to refuse, but, seeming to change her mind, went upstairs, and came down again with her hat on.\r\n“Where are you going to take me?” she asked.\r\n“We’ll just go down to Robin Hill,” said James, spluttering out his words very quick; “the horses want exercise, and I should like to see what they’ve been doing down there.”\r\nIrene hung back, but again changed her mind, and went out to the carriage, James brooding over her closely, to make quite sure.\r\nIt was not before he had got her more than half way that he began: “Soames is very fond of you — he won’t have anything said against you; why don’t you show him more affection?”\r\nIrene flushed, and said in a low voice: “I can’t show what I haven’t got.”\r\nJames looked at her sharply; he felt that now he had her in his own carriage, with his own horses and servants, he was really in command of the situation. She could not put him off; nor would she make a scene in public.\r\n“I can’t think what you’re about,” he said. “He’s a very good husband!”\r\nIrene’s answer was so low as to be almost inaudible among the sounds of traffic. He caught the words: “You are not married to him!”\r\n“What’s that got to do with it? He’s given you everything you want. He’s always ready to take you anywhere, and now he’s built you this house in the country. It’s not as if you had anything of your own.”\r\n“No.”\r\nAgain James looked at her; he could not make out the expression on her face. She looked almost as if she were going to cry, and yet. . . .\r\n“I’m sure,” he muttered hastily, “we’ve all tried to be kind to you.”\r\nIrene’s lips quivered; to his dismay James saw a tear steal down her cheek. He felt a choke rise in his own throat.\r\n“We’re all fond of you,” he said, “if you’d only”— he was going to say, “behave yourself,” but changed it to —“if you’d only be more of a wife to him.”\r\nIrene did not answer, and James, too, ceased speaking. There was something in her silence which disconcerted him; it was not the silence of obstinacy, rather that of acquiescence in all that he could find to say. And yet he felt as if he had not had the last word. He could not understand this.\r\nHe was unable, however, to long keep silence.\r\n“I suppose that young Bosinney,” he said, “will be getting married to June now?”\r\nIrene’s face changed. “I don’t know,” she said; “you should ask her.”\r\n“Does she write to you?” No.\r\n“How’s that?” said James. “I thought you and she were such great friends.”\r\nIrene turned on him. “Again,” she said, “you should ask her!”\r\n“Well,” flustered James, frightened by her look, “it’s very odd that I can’t get a plain answer to a plain question, but there it is.”\r\nHe sat ruminating over his rebuff, and burst out at last:\r\n“Well, I’ve warned you. You won’t look ahead. Soames he doesn’t say much, but I can see he won’t stand a great deal more of this sort of thing. You’ll have nobody but yourself to blame, and, what’s more, you’ll get no sympathy from anybody.”\r\nIrene bent her head with a little smiling bow. “I am very much obliged to you.”\r\nJames did not know what on earth to answer.\r\nThe bright hot morning had changed slowly to a grey, oppressive afternoon; a heavy bank of clouds, with the yellow tinge of coming thunder, had risen in the south, and was creeping up.\r\nThe branches of the trees dropped motionless across the road without the smallest stir of foliage. A faint odour of glue from the heated horses clung in the thick air; the coachman and groom, rigid and unbending, exchanged stealthy murmurs on the box, without ever turning their heads.\r\nTo James’ great relief they reached the house at last; the silence and impenetrability of this woman by his side, whom he had always thought so soft and mild, alarmed him.\r\nThe carriage put them down at the door, and they entered.\r\nThe hall was cool, and so still that it was like passing into a tomb; a shudder ran down James’s spine. He quickly lifted the heavy leather curtains between the columns into the inner court.\r\nHe could not restrain an exclamation of approval.\r\nThe decoration was really in excellent taste. The dull ruby tiles that extended from the foot of the walls to the verge of a circular clump of tall iris plants, surrounding in turn a sunken basin of white marble filled with water, were obviously of the best quality. He admired extremely the purple leather curtains drawn along one entire side, framing a huge white-tiled stove. The central partitions of the skylight had been slid back, and the warm air from outside penetrated into the very heart of the house.\r\nHe stood, his hands behind him, his head bent back on his high, narrow shoulders, spying the tracery on the columns and the pattern of the frieze which ran round the ivory-coloured walls under the gallery. Evidently, no pains had been spared. It was quite the house of a gentleman. He went up to the curtains, and, having discovered how they were worked, drew them asunder and disclosed the picture-gallery, ending in a great window taking up the whole end of the room. It had a black oak floor, and its walls, again, were of ivory white. He went on throwing open doors, and peeping in. Everything was in apple-pie order, ready for immediate occupation.\r\nHe turned round at last to speak to Irene, and saw her standing over in the garden entrance, with her husband and Bosinney.\r\nThough not remarkable for sensibility, James felt at once that something was wrong. He went up to them, and, vaguely alarmed, ignorant of the nature of the trouble, made an attempt to smooth things over.\r\n“How are you, Mr. Bosinney?” he said, holding out his hand. “You’ve been spending money pretty freely down here, I should say!”\r\nSoames turned his back, and walked away.\r\nJames looked from Bosinney’s frowning face to Irene, and, in his agitation, spoke his thoughts aloud: “Well, I can’t tell what’s the matter. Nobody tells me anything!” And, making off after his son, he heard Bosinney’s short laugh, and his “Well, thank God! You look so. . . . ” Most unfortunately he lost the rest.\r\nWhat had happened? He glanced back. Irene was very close to the architect, and her face not like the face he knew of her. He hastened up to his son.\r\nSoames was pacing the picture-gallery.\r\n“What’s the matter?” said James. “What’s all this?”\r\nSoames looked at him with his supercilious calm unbroken, but James knew well enough that he was violently angry.\r\n“Our friend,” he said, “has exceeded his instructions again, that’s all. So much the worse for him this time.”\r\nHe turned round and walked back towards the door. James followed hurriedly, edging himself in front. He saw Irene take her finger from before her lips, heard her say something in her ordinary voice, and began to speak before he reached them.\r\n“There’s a storm coming on. We’d better get home. We can’t take you, I suppose, Mr. Bosinney? No, I suppose not. Then, good-bye!” He held out his hand. Bosinney did not take it, but, turning with a laugh, said:\r\n“Good-bye, Mr. Forsyte. Don’t get caught in the storm!” and walked away.\r\n“Well,” began James, “I don’t know. . . . ”\r\nBut the ‘sight of Irene’s face stopped him. Taking hold of his daughter-in-law by the elbow, he escorted her towards the carriage. He felt certain, quite certain, they had been making some appointment or other. . . .\r\nNothing in this world is more sure to upset a Forsyte than the discovery that something on which he has stipulated to spend a certain sum has cost more. And this is reasonable, for upon the accuracy of his estimates the whole policy of his life is ordered. If he cannot rely on definite values of property, his compass is amiss; he is adrift upon bitter waters without a helm.\r\nAfter writing to Bosinney in the terms that have already been chronicled, Soames had dismissed the cost of the house from his mind. He believed that he had made the matter of the final cost so very plain that the possibility of its being again exceeded had really never entered his head. On hearing from Bosinney that his limit of twelve thousand pounds would be exceeded by something like four hundred, he had grown white with anger. His original estimate of the cost of the house completed had been ten thousand pounds, and he had often blamed himself severely for allowing himself to be led into repeated excesses. Over this last expenditure, however, Bosinney had put himself completely in the wrong. How on earth a fellow could make such an ass of himself Soames could not conceive; but he had done so, and all the rancour and hidden jealousy that had been burning against him for so long was now focussed in rage at this crowning piece of extravagance. The attitude of the confident and friendly husband was gone. To preserve property — his wife — he had assumed it, to preserve property of another kind he lost it now.\r\n“Ah!” he had said to Bosinney when he could speak, “and I suppose you’re perfectly contented with yourself. But I may as well tell you that you’ve altogether mistaken your man!”\r\nWhat he meant by those words he did not quite know at the time, but after dinner he looked up the correspondence between himself and Bosinney to make quite sure. There could be no two opinions about it — the fellow had made himself liable for that extra four hundred, or, at all events, for three hundred and fifty of it, and he would have to make it good.\r\nHe was looking at his wife’s face when he came to this conclusion. Seated in her usual seat on the sofa, she was altering the lace on a collar. She had not once spoken to him all the evening.\r\nHe went up to the mantelpiece, and contemplating his face in the mirror said: “Your friend the Buccaneer has made a fool of himself; he will have to pay for it!”\r\nShe looked at him scornfully, and answered: “I don’t know what you are talking about!”\r\n“You soon will. A mere trifle, quite beneath your contempt — four hundred pounds.”\r\n“Do you mean that you are going to make him pay that towards this hateful, house?”\r\n“I do.”\r\n“And you know he’s got nothing?”\r\n“Yes.”\r\n“Then you are meaner than I thought you.”\r\nSoames turned from the mirror, and unconsciously taking a china cup from the mantelpiece, clasped his hands around it as though praying. He saw her bosom rise and fall, her eyes darkening with anger, and taking no notice of the taunt, he asked quietly:\r\n“Are you carrying on a flirtation with Bosinney?”\r\n“No, I am not!”\r\nHer eyes met his, and he looked away. He neither believed nor disbelieved her, but he knew that he had made a mistake in asking; he never had known, never would know, what she was thinking. The sight of her inscrutable face, the thought of all the hundreds of evenings he had seen her sitting there like that soft and passive, but unreadable, unknown, enraged him beyond measure.\r\n“I believe you are made of stone,” he said, clenching his fingers so hard that he broke the fragile cup. The pieces fell into the grate. And Irene smiled.\r\n“You seem to forget,” she said, “that cup is not!”\r\nSoames gripped her arm. “A good beating,” he said, “is the only thing that would bring you to your senses,” but turning on his heel, he left the room.\r\nChapter 23  Soames Sits on the Stairs\r\nSoames went upstairs that night that he had gone too far. He was prepared to offer excuses for his words.\r\nHe turned out the gas still burning in the passage outside their room. Pausing, with his hand on the knob of the door, he tried to shape his apology, for he had no intention of letting her see that he was nervous.\r\nBut the door did not open, nor when he pulled it and turned the handle firmly. She must have locked it for some reason, and forgotten.\r\nEntering his dressing-room where the gas was also light and burning low, he went quickly to the other door. That too was locked. Then he noticed that the camp bed which he occasionally used was prepared, and his sleeping-suit laid out upon it. He put his hand up to his forehead, and brought it away wet. It dawned on him that he was barred out.\r\nHe went back to the door, and rattling the handle stealthily, called: “Unlock the door, do you hear? Unlock the door!”\r\nThere was a faint rustling, but no answer.\r\n“Do you hear? Let me in at once — I insist on being let in!”\r\nHe could catch the sound of her breathing close to the door, like the breathing of a creature threatened by danger.\r\nThere was something terrifying in this inexorable silence, in the impossibility of getting at her. He went back to the other door, and putting his whole weight against it, tried to burst it open. The door was a new one — he had had them renewed himself, in readiness for their coming in after the honeymoon. In a rage he lifted his foot to kick in the panel; the thought of the servants restrained him, and he felt suddenly that he was beaten.\r\nFlinging himself down in the dressing-room, he took up a book.\r\nBut instead of the print he seemed to see his wife — with her yellow hair flowing over her bare shoulders, and her great dark eyes — standing like an animal at bay. And the whole meaning of her act of revolt came to him. She meant it to be for good.\r\nHe could not sit still, and went to the door again. He could still hear her, and he called: “Irene! Irene!”\r\nHe did not mean to make his voice pathetic.\r\nIn ominous answer, the faint sounds ceased. He stood with clenched hands, thinking.\r\nPresently he stole round on tiptoe, and running suddenly at the other door, made a supreme effort to break it open. It creaked, but did not yield. He sat down on the stairs and buried his face in his hands.\r\nFor a long time he sat there in the dark, the moon through the skylight above laying a pale smear which lengthened slowly towards him down the stairway. He tried to be philosophical.\r\nSince she had locked her doors she had no further claim as a wife, and he would console himself with other women.\r\nIt was but a spectral journey he made among such delights — he had no appetite for these exploits. He had never had much, and he had lost the habit. He felt that he could never recover it. His hunger could only be appeased by his wife, inexorable and frightened, behind these shut doors. No other woman could help him.\r\nThis conviction came to him with terrible force out there in the dark.\r\nHis philosophy left him; and surly anger took its place. Her conduct was immoral, inexcusable, worthy of any punishment within his power. He desired no one but her, and she refused him!\r\nShe must really hate him, then! He had never believed it yet. He did not believe it now. It seemed to him incredible. He felt as though he had lost for ever his power of judgment. If she, so soft and yielding as he had always judged her, could take this decided step — what could not happen?\r\nThen he asked himself again if she were carrying on an intrigue with Bosinney. He did not believe that she was; he could not afford to believe such a reason for her conduct — the thought was not to be faced.\r\nIt would be unbearable to contemplate the necessity of making his marital relations public property. Short of the most convincing proofs he must still refuse to believe, for he did not wish to punish himself. And all the time at heart — he did believe.\r\nThe moonlight cast a greyish tinge over his figure, hunched against the staircase wall.\r\nBosinney was in love with her! He hated the fellow, and would not spare him now. He could and would refuse to pay a penny piece over twelve thousand and fifty pounds — the extreme limit fixed in the correspondence; or rather he would pay, he would pay and sue him for damages. He would go to Jobling and Boulter and put the matter in their hands. He would ruin the impecunious beggar! And suddenly — though what connection between the thoughts? — he reflected that Irene had no money either. They were both beggars. This gave him a strange satisfaction.\r\nThe silence was broken by a faint creaking through the wall. She was going to bed at last. Ah! Joy and pleasant dreams! If she threw the door open wide he would not go in now!\r\nBut his lips, that were twisted in a bitter smile, twitched; he covered his eyes with his hands. . . .\r\nIt was late the following afternoon when Soames stood in the dining-room window gazing gloomily into the Square.\r\nThe sunlight still showered on the plane-trees, and in the breeze their gay broad leaves shone and swung in rhyme to a barrel organ at the corner. It was playing a waltz, an old waltz that was out of fashion, with a fateful rhythm in the notes; and it went on and on, though nothing indeed but leaves danced to the tune.\r\nThe woman did not look too gay, for she was tired; and from the tall houses no one threw her down coppers. She moved the organ on, and three doors off began again.\r\nIt was the waltz they had played at Roger’s when Irene had danced with Bosinney; and the perfume of the gardenias she had worn came back to Soames, drifted by the malicious music, as it had been drifted to him then, when she passed, her hair glistening, her eyes so soft, drawing Bosinney on and on down an endless ballroom.\r\nThe organ woman plied her handle slowly; she had been grinding her tune all day-grinding it in Sloane Street hard by, grinding it perhaps to Bosinney himself.\r\nSoames turned, took a cigarette from the carven box, and walked back to the window. The tune had mesmerized him, and there came into his view Irene, her sunshade furled, hastening homewards down the Square, in a soft, rose-coloured blouse with drooping sleeves, that he did not know. She stopped before the organ, took out her purse, and gave the woman money.\r\nSoames shrank back and stood where he could see into the hall.\r\nShe came in with her latch-key, put down her sunshade, and stood looking at herself in the glass. Her cheeks were flushed as if the sun had burned them; her lips were parted in a smile. She stretched her arms out as though to embrace herself, with a laugh that for all the world was like a sob.\r\nSoames stepped forward.\r\n“Very-pretty!” he said.\r\nBut as though shot she spun round, and would have passed him up the stairs. He barred the way.\r\n“Why such a hurry?” he said, and his eyes fastened on a curl of hair fallen loose across her ear. . . .\r\nHe hardly recognised her. She seemed on fire, so deep and rich the colour of her cheeks, her eyes, her lips, and of the unusual blouse she wore.\r\nShe put up her hand and smoothed back the curl. She was breathing fast and deep, as though she had been running, and with every breath perfume seemed to come from her hair, and from her body, like perfume from an opening flower.\r\n“I don’t like that blouse,” he said slowly, “it’s a soft, shapeless thing!”\r\nHe lifted his finger towards her breast, but she dashed his hand aside.\r\n“Don’t touch me!” she cried.\r\nHe caught her wrist; she wrenched it away.\r\n“And where may you have been?” he asked.\r\n“In heaven — out of this house!” With those words she fled upstairs.\r\nOutside — in thanksgiving — at the very door, the organ-grinder was playing the waltz.\r\nAnd Soames stood motionless. What prevented him from following her?\r\nWas it that, with the eyes of faith, he saw Bosinney looking down from that high window in Sloane Street, straining his eyes for yet another glimpse of Irene’s vanished figure, cooling his flushed face, dreaming of the moment when she flung herself on his breast — the scent of her still in the air around, and the sound of her laugh that was like a sob?\r\nPart III  Chapter 24  Mrs. Macander’s Evidence\r\nMany people, no doubt, including the editor of the ‘Ultra Vivisectionist,’ then in the bloom of its first youth, would say that Soames was less than a man not to have removed the locks from his wife’s doors, and, after beating her soundly, resumed wedded happiness.\r\nBrutality is not so deplorably diluted by humaneness as it used to be, yet a sentimental segment of the population may still be relieved to learn that he did none of these things. For active brutality is not popular with Forsytes; they are too circumspect, and, on the whole, too softhearted. And in Soames there was some common pride, not sufficient to make him do a really generous action, but enough to prevent his indulging in an extremely mean one, except, perhaps, in very hot blood. Above all this a true Forsyte refused to feel himself ridiculous. Short of actually beating his wife, he perceived nothing to be done; he therefore accepted the situation without another word.\r\nThroughout the summer and autumn he continued to go to the office, to sort his pictures, and ask his friends to dinner.\r\nHe did not leave town; Irene refused to go away. The house at Robin Hill, finished though it was, remained empty and ownerless. Soames had brought a suit against the Buccaneer, in which he claimed from him the sum of three hundred and fifty pounds.\r\nA firm of solicitors, Messrs. Freak and Able, had put in a defence on Bosinney’s behalf. Admitting the facts, they raised a point on the correspondence which, divested of legal phraseology, amounted to this: To speak of ‘a free hand in the terms of this correspondence’ is an Irish bull.\r\nBy a chance, fortuitous but not improbable in the close borough of legal circles, a good deal of information came to Soames’ ear anent this line of policy, the working partner in his firm, Bustard, happening to sit next at dinner at Walmisley’s, the Taxing Master, to young Chankery, of the Common Law Bar.\r\nThe necessity for talking what is known as ‘shop,’ which comes on all lawyers with the removal of the ladies, caused Chankery, a young and promising advocate, to propound an impersonal conundrum to his neighbour, whose name he did not know, for, seated as he permanently was in the background, Bustard had practically no name.\r\nHe had, said Chankery, a case coming on with a ‘very nice point.’ He then explained, preserving every professional discretion, the riddle in Soames’ case. Everyone, he said, to whom he had spoken, thought it a nice point. The issue was small unfortunately, ‘though d —— d serious for his client he believed’— Walmisley’s champagne was bad but plentiful. A Judge would make short work of it, he was afraid. He intended to make a big effort — the point was a nice one. What did his neighbour say?\r\nBustard, a model of secrecy, said nothing. He related the incident to Soames however with some malice, for this quiet man was capable of human feeling, ending with his own opinion that the point was ‘a very nice one.’\r\nIn accordance with his resolve, our Forsyte had put his interests into the hands of Jobling and Boulter. From the moment of doing so he regretted that he had not acted for himself. On receiving a copy of Bosinney’s defence he went over to their offices.\r\nBoulter, who had the matter in hand, Jobling having died some years before, told him that in his opinion it was rather a nice point; he would like counsel’s opinion on it.\r\nSoames told him to go to a good man, and they went to Waterbuck, Q.C., marking him ten and one, who kept the papers six weeks and then wrote as follows:\r\n‘In my opinion the true interpretation of this correspondence depends very much on the intention of the parties, and will turn upon the evidence given at the trial. I am of opinion that an attempt should be made to secure from the architect an admission that he understood he was not to spend at the outside more than twelve thousand and fifty pounds. With regard to the expression, “a free hand in the terms of this correspondence,” to which my attention is directed, the point is a nice one; but I am of opinion that upon the whole the ruling in “Boileau v. The Blasted Cement Co., Ltd.,” will apply.’\r\nUpon this opinion they acted, administering interrogatories, but to their annoyance Messrs. Freak and Able answered these in so masterly a fashion that nothing whatever was admitted and that without prejudice.\r\nIt was on October 1 that Soames read Waterbuck’s opinion, in the dining-room before dinner.\r\nIt made him nervous; not so much because of the case of ‘Boileau v. The Blasted Cement Co., Ltd.,’ as that the point had lately begun to seem to him, too, a nice one; there was about it just that pleasant flavour of subtlety so attractive to the best legal appetites. To have his own impression confirmed by Waterbuck, Q.C., would have disturbed any man.\r\nHe sat thinking it over, and staring at the empty grate, for though autumn had come, the weather kept as gloriously fine that jubilee year as if it were still high August. It was not pleasant to be disturbed; he desired too passionately to set his foot on Bosinney’s neck.\r\nThough he had not seen the architect since the last afternoon at Robin Hill, he was never free from the sense of his presence — never free from the memory of his worn face with its high cheek bones and enthusiastic eyes. It would not be too much to say that he had never got rid of the feeling of that night when he heard the peacock’s cry at dawn — the feeling that Bosinney haunted the house. And every man’s shape that he saw in the dark evenings walking past, seemed that of him whom George had so appropriately named the Buccaneer.\r\nIrene still met him, he was certain; where, or how, he neither knew, nor asked; deterred by a vague and secret dread of too much knowledge. It all seemed subterranean nowadays.\r\nSometimes when he questioned his wife as to where she had been, which he still made a point of doing, as every Forsyte should, she looked very strange. Her self-possession was wonderful, but there were moments when, behind the mask of her face, inscrutable as it had always been to him, lurked an expression he had never been used to see there.\r\nShe had taken to lunching out too; when he asked Bilson if her mistress had been in to lunch, as often as not she would answer: “No, sir.”\r\nHe strongly disapproved of her gadding about by herself, and told her so. But she took no notice. There was something that angered, amazed, yet almost amused him about the calm way in which she disregarded his wishes. It was really as if she were hugging to herself the thought of a triumph over him.\r\nHe rose from the perusal of Waterbuck, Q.C.‘s opinion, and, going upstairs, entered her room, for she did not lock her doors till bed-time — she had the decency, he found, to save the feelings of the servants. She was brushing her hair, and turned to him with strange fierceness.\r\n“What do you want?” she said. “Please leave my room!”\r\nHe answered: “I want to know how long this state of things between us is to last? I have put up with it long enough.”\r\n“Will you please leave my room?”\r\n“Will you treat me as your husband?”\r\n“No.”\r\n“Then, I shall take steps to make you.”\r\n“Do!”\r\nHe stared, amazed at the calmness of her answer. Her lips were compressed in a thin line; her hair lay in fluffy masses on her bare shoulders, in all its strange golden contrast to her dark eyes — those eyes alive with the emotions of fear, hate, contempt, and odd, haunting triumph.\r\n“Now, please, will you leave my room?” He turned round, and went sulkily out.\r\nHe knew very well that he had no intention of taking steps, and he saw that she knew too — knew that he was afraid to.\r\nIt was a habit with him to tell her the doings of his day: how such and such clients had called; how he had arranged a mortgage for Parkes; how that long-standing suit of Fryer v. Forsyte was getting on, which, arising in the preternaturally careful disposition of his property by his great uncle Nicholas, who had tied it up so that no one could get at it at all, seemed likely to remain a source of income for several solicitors till the Day of Judgment.\r\nAnd how he had called in at Jobson’s, and seen a Boucher sold, which he had just missed buying of Talleyrand and Sons in Pall Mall.\r\nHe had an admiration for Boucher, Watteau, and all that school. It was a habit with him to tell her all these matters, and he continued to do it even now, talking for long spells at dinner, as though by the volubility of words he could conceal from himself the ache in his heart.\r\nOften, if they were alone, he made an attempt to kiss her when she said good-night. He may have had some vague notion that some night she would let him; or perhaps only the feeling that a husband ought to kiss his wife. Even if she hated him, he at all events ought not to put himself in the wrong by neglecting this ancient rite.\r\nAnd why did she hate him? Even now he could not altogether believe it. It was strange to be hated! — the emotion was too extreme; yet he hated Bosinney, that Buccaneer, that prowling vagabond, that night-wanderer. For in his thoughts Soames always saw him lying in wait — wandering. Ah, but he must be in very low water! Young Burkitt, the architect, had seen him coming out of a third-rate restaurant, looking terribly down in the mouth!\r\nDuring all the hours he lay awake, thinking over the situation, which seemed to have no end — unless she should suddenly come to her senses — never once did the thought of separating from his wife seriously enter his head. . . .\r\nAnd the Forsytes! What part did they play in this stage of Soames’ subterranean tragedy?\r\nTruth to say, little or none, for they were at the sea.\r\nFrom hotels, hydropathics, or lodging-houses, they were bathing daily; laying in a stock of ozone to last them through the winter.\r\nEach section, in the vineyard of its own choosing, grew and culled and pressed and bottled the grapes of a pet sea-air.\r\nThe end of September began to witness their several returns.\r\nIn rude health and small omnibuses, with considerable colour in their cheeks, they arrived daily from the various termini. The following morning saw them back at their vocations.\r\nOn the next Sunday Timothy’s was thronged from lunch till dinner.\r\nAmongst other gossip, too numerous and interesting to relate, Mrs. Septimus Small mentioned that Soames and Irene had not been away.\r\nIt remained for a comparative outsider to supply the next evidence of interest.\r\nIt chanced that one afternoon late in September, Mrs. MacAnder, Winifred Dartie’s greatest friend, taking a constitutional, with young Augustus Flippard, on her bicycle in Richmond Park, passed Irene and Bosinney walking from the bracken towards the Sheen Gate.\r\nPerhaps the poor little woman was thirsty, for she had ridden long on a hard, dry road, and, as all London knows, to ride a bicycle and talk to young Flippard will try the toughest constitution; or perhaps the sight of the cool bracken grove, whence ‘those two’ were coming down, excited her envy. The cool bracken grove on the top of the hill, with the oak boughs for roof, where the pigeons were raising an endless wedding hymn, and the autumn, humming, whispered to the ears of lovers in the fern, while the deer stole by. The bracken grove of irretrievable delights, of golden minutes in the long marriage of heaven and earth! The bracken grove, sacred to stags, to strange tree-stump fauns leaping around the silver whiteness of a birch-tree nymph at summer dusk.\r\nThis lady knew all the Forsytes, and having been at June’s ‘at home,’ was not at a loss to see with whom she had to deal. Her own marriage, poor thing, had not been successful, but having had the good sense and ability to force her husband into pronounced error, she herself had passed through the necessary divorce proceedings without incurring censure.\r\nShe was therefore a judge of all that sort of thing, and lived in one of those large buildings, where in small sets of apartments, are gathered incredible quantities of Forsytes, whose chief recreation out of business hours is the discussion of each other’s affairs.\r\nPoor little woman, perhaps she was thirsty, certainly she was bored, for Flippard was a wit. To see ‘those two’ in so unlikely a spot was quite a merciful ‘pick-me-up.’\r\nAt the MacAnder, like all London, Time pauses.\r\nThis small but remarkable woman merits attention; her all-seeing eye and shrewd tongue were inscrutably the means of furthering the ends of Providence.\r\nWith an air of being in at the death, she had an almost distressing power of taking care of herself. She had done more, perhaps, in her way than any woman about town to destroy the sense of chivalry which still clogs the wheel of civilization. So smart she was, and spoken of endearingly as ‘the little MacAnder!’\r\nDressing tightly and well, she belonged to a Woman’s Club, but was by no means the neurotic and dismal type of member who was always thinking of her rights. She took her rights unconsciously, they came natural to her, and she knew exactly how to make the most of them without exciting anything but admiration amongst that great class to whom she was affiliated, not precisely perhaps by manner, but by birth, breeding, and the true, the secret gauge, a sense of property.\r\nThe daughter of a Bedfordshire solicitor, by the daughter of a clergyman, she had never, through all the painful experience of being married to a very mild painter with a cranky love of Nature, who had deserted her for an actress, lost touch with the requirements, beliefs, and inner feeling of Society; and, on attaining her liberty, she placed herself without effort in the very van of Forsyteism.\r\nAlways in good spirits, and ‘full of information,’ she was universally welcomed. She excited neither surprise nor disapprobation when encountered on the Rhine or at Zermatt, either alone, or travelling with a lady and two gentlemen; it was felt that she was perfectly capable of taking care of herself; and the hearts of all Forsytes warmed to that wonderful instinct, which enabled her to enjoy everything without giving anything away. It was generally felt that to such women as Mrs. MacAnder should we look for the perpetuation and increase of our best type of woman. She had never had any children.\r\nIf there was one thing more than another that she could not stand it was one of those soft women with what men called ‘charm’ about them, and for Mrs. Soames she always had an especial dislike.\r\nObscurely, no doubt, she felt that if charm were once admitted as the criterion, smartness and capability must go to the wall; and she hated — with a hatred the deeper that at times this so-called charm seemed to disturb all calculations — the subtle seductiveness which she could not altogether overlook in Irene.\r\nShe said, however, that she could see nothing in the woman — there was no ‘go’ about her — she would never be able to stand up for herself — anyone could take advantage of her, that was plain — she could not see in fact what men found to admire!\r\nShe was not really ill-natured, but, in maintaining her position after the trying circumstances of her married life, she had found it so necessary to be ‘full of information,’ that the idea of holding her tongue about ‘those two’ in the Park never occurred to her.\r\nAnd it so happened that she was dining that very evening at Timothy’s, where she went sometimes to ‘cheer the old things up,’ as she was wont to put it. The same people were always asked to meet her: Winifred Dartie and her husband; Francie, because she belonged to the artistic circles, for Mrs. MacAnder was known to contribute articles on dress to ‘The Ladies Kingdom Come’; and for her to flirt with, provided they could be obtained, two of the Hayman boys, who, though they never said anything, were believed to be fast and thoroughly intimate with all that was latest in smart Society.\r\nAt twenty-five minutes past seven she turned out the electric light in her little hall, and wrapped in her opera cloak with the chinchilla collar, came out into the corridor, pausing a moment to make sure she had her latch-key. These little self-contained flats were convenient; to be sure, she had no light and no air, but she could shut it up whenever she liked and go away. There was no bother with servants, and she never felt tied as she used to when poor, dear Fred was always about, in his mooney way. She retained no rancour against poor, dear Fred, he was such a fool; but the thought of that actress drew from her, even now, a little, bitter, derisive smile.\r\nFirmly snapping the door to, she crossed the corridor, with its gloomy, yellow-ochre walls, and its infinite vista of brown, numbered doors. The lift was going down; and wrapped to the ears in the high cloak, with every one of her auburn hairs in its place, she waited motionless for it to stop at her floor. The iron gates clanked open; she entered. There were already three occupants, a man in a great white waistcoat, with a large, smooth face like a baby’s, and two old ladies in black, with mittened hands.\r\nMrs. MacAnder smiled at them; she knew everybody; and all these three, who had been admirably silent before, began to talk at once. This was Mrs. MacAnder’s successful secret. She provoked conversation.\r\nThroughout a descent of five stories the conversation continued, the lift boy standing with his back turned, his cynical face protruding through the bars.\r\nAt the bottom they separated, the man in the white waistcoat sentimentally to the billiard room, the old ladies to dine and say to each other: “A dear little woman!” “Such a rattle!” and Mrs. MacAnder to her cab.\r\nWhen Mrs. MacAnder dined at Timothy’s, the conversation (although Timothy himself could never be induced to be present) took that wider, man-of-the-world tone current among Forsytes at large, and this, no doubt, was what put her at a premium there.\r\nMrs. Small and Aunt Hester found it an exhilarating change. “If only,” they said, “Timothy would meet her!” It was felt that she would do him good. She could tell you, for instance, the latest story of Sir Charles Fiste’s son at Monte Carlo; who was the real heroine of Tynemouth Eddy’s fashionable novel that everyone was holding up their hands over, and what they were doing in Paris about wearing bloomers. She was so sensible, too, knowing all about that vexed question, whether to send young Nicholas’ eldest into the navy as his mother wished, or make him an accountant as his father thought would be safer. She strongly deprecated the navy. If you were not exceptionally brilliant or exceptionally well connected, they passed you over so disgracefully, and what was it after all to look forward to, even if you became an admiral — a pittance! An accountant had many more chances, but let him be put with a good firm, where there was no risk at starting!\r\nSometimes she would give them a tip on the Stock Exchange; not that Mrs. Small or Aunt Hester ever took it. They had indeed no money to invest; but it seemed to bring them into such exciting touch with the realities of life. It was an event. They would ask Timothy, they said. But they never did, knowing in advance that it would upset him. Surreptitiously, however, for weeks after they would look in that paper, which they took with respect on account of its really fashionable proclivities, to see whether ‘Bright’s Rubies’ or ‘The Woollen Mackintosh Company’ were up or down. Sometimes they could not find the name of the company at all; and they would wait until James or Roger or even Swithin came in, and ask them in voices trembling with curiosity how that ‘Bolivia Lime and Speltrate’ was doing — they could not find it in the paper.\r\nAnd Roger would answer: “What do you want to know for? Some trash! You’ll go burning your fingers — investing your money in lime, and things you know nothing about! Who told you?” and ascertaining what they had been told, he would go away, and, making inquiries in the City, would perhaps invest some of his own money in the concern.\r\nIt was about the middle of dinner, just in fact as the saddle of mutton had been brought in by Smither, that Mrs. MacAnder, looking airily round, said: “Oh! and whom do you think I passed to-day in Richmond Park? You’ll never guess — Mrs. Soames and — Mr. Bosinney. They must have been down to look at the house!”\r\nWinifred Dartie coughed, and no one said a word. It was the piece of evidence they had all unconsciously been waiting for.\r\nTo do Mrs. MacAnder justice, she had been to Switzerland and the Italian lakes with a party of three, and had not heard of Soames’ rupture with his architect. She could not tell, therefore, the profound impression her words would make.\r\nUpright and a little flushed, she moved her small, shrewd eyes from face to face, trying to gauge the effect of her words. On either side of her a Hayman boy, his lean, taciturn, hungry face turned towards his plate, ate his mutton steadily.\r\nThese two, Giles and Jesse, were so alike and so inseparable that they were known as the Dromios. They never talked, and seemed always completely occupied in doing nothing. It was popularly supposed that they were cramming for an important examination. They walked without hats for long hours in the Gardens attached to their house, books in their hands, a fox-terrier at their heels, never saying a word, and smoking all the time. Every morning, about fifty yards apart, they trotted down Campden Hill on two lean hacks, with legs as long as their own, and every morning about an hour later, still fifty yards apart, they cantered up again. Every evening, wherever they had dined, they might be observed about half-past ten, leaning over the balustrade of the Alhambra promenade.\r\nThey were never seen otherwise than together; in this way passing their lives, apparently perfectly content.\r\nInspired by some dumb stirring within them of the feelings of gentlemen, they turned at this painful moment to Mrs. MacAnder, and said in precisely the same voice: “Have you seen the . . .?”\r\nSuch was her surprise at being thus addressed that she put down her fork; and Smither, who was passing, promptly removed her plate. Mrs. MacAnder, however, with presence of mind, said instantly: “I must have a little more of that nice mutton.”\r\nBut afterwards in the drawing — room she sat down by Mrs. Small, determined to get to the bottom of the matter. And she began:\r\n“What a charming woman, Mrs. Soames; such a sympathetic temperament! Soames is a really lucky man!”\r\nHer anxiety for information had not made sufficient allowance for that inner Forsyte skin which refuses to share its troubles with outsiders.\r\nMrs. Septimus Small, drawing herself up with a creak and rustle of her whole person, said, shivering in her dignity:\r\n“My dear, it is a subject we do not talk about!”\r\nChapter 25  Night in the Park\r\nAlthough with her infallible instinct Mrs. Small had said the very thing to make her guest ‘more intriguee than ever,’ it is difficult to see how else she could truthfully have spoken.\r\nIt was not a subject which the Forsytes could talk about even among themselves — to use the word Soames had invented to characterize to himself the situation, it was ‘subterranean.’\r\nYet, within a week of Mrs. MacAnder’s encounter in Richmond Park, to all of them — save Timothy, from whom it was carefully kept — to James on his domestic beat from the Poultry to Park Lane, to George the wild one, on his daily adventure from the bow window at the Haversnake to the billiard room at the ‘Red Pottle,’ was it known that ‘those two’ had gone to extremes.\r\nGeorge (it was he who invented many of those striking expressions still current in fashionable circles) voiced the sentiment more accurately than any one when he said to his brother Eustace that ‘the Buccaneer’ was ‘going it’; he expected Soames was about ‘fed up.’\r\nIt was felt that he must be, and yet, what could be done? He ought perhaps to take steps; but to take steps would be deplorable.\r\nWithout an open scandal which they could not see their way to recommending, it was difficult to see what steps could be taken. In this impasse, the only thing was to say nothing to Soames, and nothing to each other; in fact, to pass it over.\r\nBy displaying towards Irene a dignified coldness, some impression might be made upon her; but she was seldom now to be seen, and there seemed a slight difficulty in seeking her out on purpose to show her coldness. Sometimes in the privacy of his bedroom James would reveal to Emily the real suffering that his son’s misfortune caused him.\r\n“I can’t tell,” he would say; “it worries me out of my life. There’ll be a scandal, and that’ll do him no good. I shan’t say anything to him. There might be nothing in it. What do you think? She’s very artistic, they tell me. What? Oh, you’re a ‘regular Juley! Well, I don’t know; I expect the worst. This is what comes of having no children. I knew how it would be from the first. They never told me they didn’t mean to have any children — nobody tells me anything!”\r\nOn his knees by the side of the bed, his eyes open and fixed with worry, he would breathe into the counterpane. Clad in his nightshirt, his neck poked forward, his back rounded, he resembled some long white bird.\r\n“Our Father-,” he repeated, turning over and over again the thought of this possible scandal.\r\nLike old Jolyon, he, too, at the bottom of his heart set the blame of the tragedy down to family interference. What business had that lot — he began to think of the Stanhope Gate branch, including young Jolyon and his daughter, as ‘that lot’— to introduce a person like this Bosinney into the family? (He had heard George’s soubriquet, ‘The Buccaneer,’ but he could make nothing of that — the young man was an architect.)\r\nHe began to feel that his brother Jolyon, to whom he had always looked up and on whose opinion he had relied, was not quite what he had expected.\r\nNot having his eldest brother’s force of character, he was more sad than angry. His great comfort was to go to Winifred’s, and take the little Darties in his carriage over to Kensington Gardens, and there, by the Round Pond, he could often be seen walking with his eyes fixed anxiously on little Publius Dartie’s sailing-boat, which he had himself freighted with a penny, as though convinced that it would never again come to shore; while little Publius — who, James delighted to say, was not a bit like his father skipping along under his lee, would try to get him to bet another that it never would, having found that it always did. And James would make the bet; he always paid — sometimes as many as three or four pennies in the afternoon, for the game seemed never to pall on little Publius — and always in paying he said: “Now, that’s for your money-box. Why, you’re getting quite a rich man!” The thought of his little grandson’s growing wealth was a real pleasure to him. But little Publius knew a sweet-shop, and a trick worth two of that.\r\nAnd they would walk home across the Park, James’ figure, with high shoulders and absorbed and worried face, exercising its tall, lean protectorship, pathetically unregarded, over the robust child-figures of Imogen and little Publius.\r\nBut those Gardens and that Park were not sacred to James. Forsytes and tramps, children and lovers, rested and wandered day after day, night after night, seeking one and all some freedom from labour, from the reek and turmoil of the streets.\r\nThe leaves browned slowly, lingering with the sun and summer-like warmth of the nights.\r\nOn Saturday, October 5, the sky that had been blue all day deepened after sunset to the bloom of purple grapes. There was no moon, and a clear dark, like some velvety garment, was wrapped around the trees, whose thinned branches, resembling plumes, stirred not in the still, warm air. All London had poured into the Park, draining the cup of summer to its dregs.\r\nCouple after couple, from every gate, they streamed along the paths and over the burnt grass, and one after another, silently out of the lighted spaces, stole into the shelter of the feathery trees, where, blotted against some trunk, or under the shadow of shrubs, they were lost to all but themselves in the heart of the soft darkness.\r\nTo fresh-comers along the paths, these forerunners formed but part of that passionate dusk, whence only a strange murmur, like the confused beating of hearts, came forth. But when that murmur reached each couple in the lamp-light their voices wavered, and ceased; their arms enlaced, their eyes began seeking, searching, probing the blackness. Suddenly, as though drawn by invisible hands, they, too, stepped over the railing, and, silent as shadows, were gone from the light.\r\nThe stillness, enclosed in the far, inexorable roar of the town, was alive with the myriad passions, hopes, and loves of multitudes of struggling human atoms; for in spite of the disapproval of that great body of Forsytes, the Municipal Council — to whom Love had long been considered, next to the Sewage Question, the gravest danger to the community — a process was going on that night in the Park, and in a hundred other parks, without which the thousand factories, churches, shops, taxes, and drains, of which they were custodians, were as arteries without blood, a man without a heart.\r\nThe instincts of self-forgetfulness, of passion, and of love, hiding under the trees, away from the trustees of their remorseless enemy, the ‘sense of property,’ were holding a stealthy revel, and Soames, returning from Bayswater for he had been alone to dine at Timothy’s walking home along the water, with his mind upon that coming lawsuit, had the blood driven from his heart by a low laugh and the sound of kisses. He thought of writing to the Times the next morning, to draw the attention of the Editor to the condition of our parks. He did not, however, for he had a horror of seeing his name in print.\r\nBut starved as he was, the whispered sounds in the stillness, the half-seen forms in the dark, acted on him like some morbid stimulant. He left the path along the water and stole under the trees, along the deep shadow of little plantations, where the boughs of chestnut trees hung their great leaves low, and there was blacker refuge, shaping his course in circles which had for their object a stealthy inspection of chairs side by side, against tree-trunks, of enlaced lovers, who stirred at his approach.\r\nNow he stood still on the rise overlooking the Serpentine, where, in full lamp-light, black against the silver water, sat a couple who never moved, the woman’s face buried on the man’s neck — a single form, like a carved emblem of passion, silent and unashamed.\r\nAnd, stung by the sight, Soames hurried on deeper into the shadow of the trees.\r\nIn this search, who knows what he thought and what he sought? Bread for hunger — light in darkness? Who knows what he expected to find — impersonal knowledge of the human heart — the end of his private subterranean tragedy — for, again, who knew, but that each dark couple, unnamed, unnameable, might not be he and she?\r\nBut it could not be such knowledge as this that he was seeking — the wife of Soames Forsyte sitting in the Park like a common wench! Such thoughts were inconceivable; and from tree to tree, with his noiseless step, he passed.\r\nOnce he was sworn at; once the whisper, “If only it could always be like this!” sent the blood flying again from his heart, and he waited there, patient and dogged, for the two to move. But it was only a poor thin slip of a shop-girl in her draggled blouse who passed him, clinging to her lover’s arm.\r\nA hundred other lovers too whispered that hope in the stillness of the trees, a hundred other lovers clung to each other.\r\nBut shaking himself with sudden disgust, Soames returned to the path, and left that seeking for he knew not what.\r\nChapter 26  Meeting at the Botanical\r\nYoung Jolyon, whose circumstances were not those of a Forsyte, found at times a difficulty in sparing the money needful for those country jaunts and researches into Nature, without having prosecuted which no watercolour artist ever puts brush to paper.\r\nHe was frequently, in fact, obliged to take his colour-box into the Botanical Gardens, and there, on his stool, in the shade of a monkey-puzzler or in the lee of some India-rubber plant, he would spend long hours sketching.\r\nAn Art critic who had recently been looking at his work had delivered himself as follows:\r\n“In a way your drawings are very good; tone and colour, in some of them certainly quite a feeling for Nature. But, you see, they’re so scattered; you’ll never get the public to look at them. Now, if you’d taken a definite subject, such as ‘London by Night,’ or ‘The Crystal Palace in the Spring,’ and made a regular series, the public would have known at once what they were looking at. I can’t lay too much stress upon that. All the men who are making great names in Art, like Crum Stone or Bleeder, are making them by avoiding the unexpected; by specializing and putting their works all in the same pigeon-hole, so that the public know pat once where to go. And this stands to reason, for if a man’s a collector he doesn’t want people to smell at the canvas to find out whom his pictures are by; he wants them to be able to say at once, ‘A capital Forsyte!’ It is all the more important for you to be careful to choose a subject that they can lay hold of on the spot, since there’s no very marked originality in your style.”\r\nYoung Jolyon, standing by the little piano, where a bowl of dried rose leaves, the only produce of the garden, was deposited on a bit of faded damask, listened with his dim smile.\r\nTurning to his wife, who was looking at the speaker with an angry expression on her thin face, he said:\r\n“You see, dear?”\r\n“I do not,” she answered in her staccato voice, that still had a little foreign accent; “your style has originality.”\r\nThe critic looked at her, smiled’ deferentially, and said no more. Like everyone else, he knew their history.\r\nThe words bore good fruit with young Jolyon; they were contrary to all that he believed in, to all that he theoretically held good in his Art, but some strange, deep instinct moved him against his will to turn them to profit.\r\nHe discovered therefore one morning that an idea had come to him for making a series of watercolour drawings of London. How the idea had arisen he could not tell; and it was not till the following year, when he had completed and sold them at a very fair price, that in one of his impersonal moods, he found himself able to recollect the Art critic, and to discover in his own achievement another proof that he was a Forsyte.\r\nHe decided to commence with the Botanical Gardens, where he had already made so many studies, and chose the little artificial pond, sprinkled now with an autumn shower of red and yellow leaves, for though the gardeners longed to sweep them off, they could not reach them with their brooms. The rest of the gardens they swept bare enough, removing every morning Nature’s rain of leaves; piling them in heaps, whence from slow fires rose the sweet, acrid smoke that, like the cuckoo’s note for spring, the scent of lime trees for the summer, is the true emblem of the fall. The gardeners’ tidy souls could not abide the gold and green and russet pattern on the grass. The gravel paths must lie unstained, ordered, methodical, without knowledge of the realities of life, nor of that slow and beautiful decay which flings crowns underfoot to star the earth with fallen glories, whence, as the cycle rolls, will leap again wild spring.\r\nThus each leaf that fell was marked from the moment when it fluttered a good-bye and dropped, slow turning, from its twig.\r\nBut on that little pond the leaves floated in peace, and praised Heaven with their hues, the sunlight haunting over them.\r\nAnd so young Jolyon found them.\r\nComing there one morning in the middle of October, he was disconcerted to find a bench about twenty paces from his stand occupied, for he had a proper horror of anyone seeing him at work.\r\nA lady in a velvet jacket was sitting there, with her eyes fixed on the ground. A flowering laurel, however, stood between, and, taking shelter behind this, young Jolyon prepared his easel.\r\nHis preparations were leisurely; he caught, as every true artist should, at anything that might delay for a moment the effort of his work, and he found himself looking furtively at this unknown dame.\r\nLike his father before him, he had an eye for a face. This face was charming!\r\nHe saw a rounded chin nestling in a cream ruffle, a delicate face with large dark eyes and soft lips. A black ‘picture’ hat concealed the hair; her figure was lightly poised against the back of the bench, her knees were crossed; the tip of a patent-leather shoe emerged beneath her skirt. There was something, indeed, inexpressibly dainty about the person of this lady, but young Jolyon’s attention was chiefly riveted by the look on her face, which reminded him of his wife. It was as though its owner had come into contact with forces too strong for her. It troubled him, arousing vague feelings of attraction and chivalry. Who was she? And what doing there, alone?\r\nTwo young gentlemen of that peculiar breed, at once forward and shy, found in the Regent’s Park, came by on their way to lawn tennis, and he noted with disapproval their furtive stares of admiration. A loitering gardener halted to do something unnecessary to a clump of pampas grass; he, too, wanted an excuse for peeping. A gentleman, old, and, by his hat, a professor of horticulture, passed three times to scrutinize her long and stealthily, a queer expression about his lips.\r\nWith all these men young Jolyon felt the same vague irritation. She looked at none of them, yet was he certain that every man who passed would look at her like that.\r\nHer face was not the face of a sorceress, who in every look holds out to men the offer of pleasure; it had none of the ‘devil’s beauty’ so highly prized among the first Forsytes of the land; neither was it of that type, no less adorable, associated with the box of chocolate; it was not of the spiritually passionate, or passionately spiritual order, peculiar to house-decoration and modern poetry; nor did it seem to promise to the playwright material for the production of the interesting and neurasthenic figure, who commits suicide in the last act.\r\nIn shape and colouring, in its soft persuasive passivity, its sensuous purity, this woman’s face reminded him of Titian’s ‘Heavenly Love,’ a reproduction of which hung over the sideboard in his dining-room. And her attraction seemed to be in this soft passivity, in the feeling she gave that to pressure she must yield.\r\nFor what or whom was she waiting, in the silence, with the trees dropping here and there a leaf, and the thrushes strutting close on grass, touched with the sparkle of the autumn rime? Then her charming face grew eager, and, glancing round, with almost a lover’s jealousy, young Jolyon saw Bosinney striding across the grass.\r\nCuriously he watched the meeting, the look in their eyes, the long clasp of their hands. They sat down close together, linked for all their outward discretion. He heard the rapid murmur of their talk; but what they said he could not catch.\r\nHe had rowed in the galley himself! He knew the long hours of waiting and the lean minutes of a half-public meeting; the tortures of suspense that haunt the unhallowed lover.\r\nIt required, however, but a glance at their two faces to see that this was none of those affairs of a season that distract men and women about town; none of those sudden appetites that wake up ravening, and are surfeited and asleep again in six weeks. This was the real thing! This was what had happened to himself! Out of this anything might come!\r\nBosinney was pleading, and she so quiet, so soft, yet immovable in her passivity, sat looking over the grass.\r\nWas he the man to carry her off, that tender, passive being, who would never stir a step for herself? Who had given him all herself, and would die for him, but perhaps would never run away with him!\r\nIt seemed to young Jolyon that he could hear her saying: “But, darling, it would ruin you!” For he himself had experienced to the full the gnawing fear at the bottom of each woman’s heart that she is a drag on the man she loves.\r\nAnd he peeped at them no more; but their soft, rapid talk came to his ears, with the stuttering song of some bird who seemed trying to remember the notes of spring: Joy — tragedy? Which — which?\r\nAnd gradually their talk ceased; long silence followed.\r\n‘And where does Soames come in?’ young Jolyon thought. ‘People think she is concerned about the sin of deceiving her husband! Little they know of women! She’s eating, after starvation — taking her revenge! And Heaven help her — for he’ll take his.’\r\nHe heard the swish of silk, and, spying round the laurel, saw them walking away, their hands stealthily joined. . . .\r\nAt the end of July old Jolyon had taken his grand-daughter to the mountains; and on that visit (the last they ever paid) June recovered to a great extent her health and spirits. In the hotels, filled with British Forsytes — for old Jolyon could not bear a ‘set of Germans,’ as he called all foreigners — she was looked upon with respect — the only grand-daughter of that fine-looking, and evidently wealthy, old Mr. Forsyte. She did not mix freely with people — to mix freely with people was not June’s habit — but she formed some friendships, and notably one in the Rhone Valley, with a French girl who was dying of consumption.\r\nDetermining at once that her friend should not die, she forgot, in the institution of a campaign against Death, much of her own trouble.\r\nOld Jolyon watched the new intimacy with relief and disapproval; for this additional proof that her life was to be passed amongst ‘lame ducks’ worried him. Would she never make a friendship or take an interest in something that would be of real benefit to her?\r\n‘Taking up with a parcel of foreigners,’ he called it. He often, however, brought home grapes or roses, and presented them to ‘Mam’zelle’ with an ingratiating twinkle.\r\nTowards the end of September, in spite of June’s disapproval, Mademoiselle Vigor breathed her last in the little hotel at St. Luc, to which they had moved her; and June took her defeat so deeply to heart that old Jolyon carried her away to Paris. Here, in contemplation of the ‘Venus de Milo’ and the ‘Madeleine,’ she shook off her depression, and when, towards the middle of October, they returned to town, her grandfather believed that he had effected a cure.\r\nNo sooner, however, had they established themselves in Stanhope Gate than he perceived to his dismay a return of her old absorbed and brooding manner. She would sit, staring in front of her, her chin on her hand, like a little Norse spirit, grim and intent, while all around in the electric light, then just installed, shone the great, drawing-room brocaded up to the frieze, full of furniture from Baple and Pullbred’s. And in the huge gilt mirror were reflected those Dresden china groups of young men in tight knee breeches, at the feet of full-bosomed ladies nursing on their laps pet lambs, which old Jolyon had bought when he was a bachelor and thought so highly of in these days of degenerate taste. He was a man of most open mind, who, more than any Forsyte of them all, had moved with the times, but he could never forget that he had bought these groups at Jobson’s, and given a lot of money for them. He often said to June, with a sort of disillusioned contempt:\r\n“You don’t care about them! They’re not the gimcrack things you and your friends like, but they cost me seventy pounds!” He was not a man who allowed his taste to be warped when he knew for solid reasons that it was sound.\r\nOne of the first things that June did on getting home was to go round to Timothy’s. She persuaded herself that it was her duty to call there, and cheer him with an account of all her travels; but in reality she went because she knew of no other place where, by some random speech, or roundabout question, she could glean news of Bosinney.\r\nThey received her most cordially: And how was her dear grandfather? He had not been to see them since May. Her Uncle Timothy was very poorly, he had had a lot of trouble with the chimney-sweep in his bedroom; the stupid man had let the soot down the chimney! It had quite upset her uncle.\r\nJune sat there a long time, dreading, yet passionately hoping, that they would speak of Bosinney.\r\nBut paralyzed by unaccountable discretion, Mrs. Septimus Small let fall no word, neither did she question June about him. In desperation the girl asked at last whether Soames and Irene were in town — she had not yet been to see anyone.\r\nIt was Aunt Hester who replied: Oh, yes, they were in town, they had not been away at all. There was some little difficulty about the house, she believed. June had heard, no doubt! She had better ask her Aunt Juley!\r\nJune turned to Mrs. Small, who sat upright in her chair, her hands clasped, her face covered with innumerable pouts. In answer to the girl’s look she maintained a strange silence, and when she spoke it was to ask June whether she had worn night-socks up in those high hotels where it must be so cold of a night.\r\nJune answered that she had not, she hated the stuffy things; and rose to leave.\r\nMrs. Small’s infallibly chosen silence was far more ominous to her than anything that could have been said.\r\nBefore half an hour was over she had dragged the truth from Mrs. Baynes in Lowndes Square, that Soames was bringing an action against Bosinney over the decoration of the house.\r\nInstead of disturbing her, the news had a strangely calming effect; as though she saw in the prospect of this struggle new hope for herself. She learnt that the case was expected to come on in about a month, and there seemed little or no prospect of Bosinney’s success.\r\n“And whatever he’ll do I can’t think,” said Mrs. Baynes; “it’s very dreadful for him, you know — he’s got no money — he’s very hard up. And we can’t help him, I’m sure. I’m told the money-lenders won’t lend if you have no security, and he has none — none at all.”\r\nHer embonpoint had increased of late; she was in the full swing of autumn organization, her writing-table literally strewn with the menus of charity functions. She looked meaningly at June, with her round eyes of parrot-grey.\r\nThe sudden flush that rose on the girl’s intent young face — she must have seen spring up before her a great hope — the sudden sweetness of her smile, often came back to Lady Baynes in after years (Baynes was knighted when he built that public Museum of Art which has given so much employment to officials, and so little pleasure to those working classes for whom it was designed).\r\nThe memory of that change, vivid and touching, like the breaking open of a flower, or the first sun after long winter, the memory, too, of all that came after, often intruded itself, unaccountably, inopportunely on Lady Baynes, when her mind was set upon the most important things.\r\nThis was the very afternoon of the day that young Jolyon witnessed the meeting in the Botanical Gardens, and on this day, too, old Jolyon paid a visit to his solicitors, Forsyte, Bustard, and Forsyte, in the Poultry. Soames was not in, he had gone down to Somerset House; Bustard was buried up to the hilt in papers and that inaccessible apartment, where he was judiciously placed, in order that he might do as much work as possible; but James was in the front office, biting a finger, and lugubriously turning over the pleadings in Forsyte v. Bosinney.\r\nThis sound lawyer had only a sort of luxurious dread of the ‘nice point,’ enough to set up a pleasurable feeling of fuss; for his good practical sense told him that if he himself were on the Bench he would not pay much attention to it. But he was afraid that this Bosinney would go bankrupt and Soames would have to find the money after all, and costs into the bargain. And behind this tangible dread there was always that intangible trouble, lurking in the background, intricate, dim, scandalous, like a bad dream, and of which this action was but an outward and visible sign.\r\nHe raised his head as old Jolyon came in, and muttered: “How are you, Jolyon? Haven’t seen you for an age. You’ve been to Switzerland, they tell me. This young Bosinney, he’s got himself into a mess. I knew how it would be!” He held out the papers, regarding his elder brother with nervous gloom.\r\nOld Jolyon read them in silence, and while he read them James looked at the floor, biting his fingers the while.\r\nOld Jolyon pitched them down at last, and they fell with a thump amongst a mass of affidavits in ‘re Buncombe, deceased,’ one of the many branches of that parent and profitable tree, ‘Fryer v. Forsyte.’\r\n“I don’t know what Soames is about,” he said, “to make a fuss over a few hundred pounds. I thought he was a man of property.”\r\nJames’ long upper lip twitched angrily; he could not bear his son to be attacked in such a spot.\r\n“It’s not the money,” he began, but meeting his brother’s glance, direct, shrewd, judicial, he stopped.\r\nThere was a silence.\r\n“I’ve come in for my Will,” said old Jolyon at last, tugging at his moustache.\r\nJames’ curiosity was roused at once. Perhaps nothing in this life was more stimulating to him than a Will; it was the supreme deal with property, the final inventory of a man’s belongings, the last word on what he was worth. He sounded the bell.\r\n“Bring in Mr. Jolyon’s Will,” he said to an anxious, dark-haired clerk.\r\n“You going to make some alterations?” And through his mind there flashed the thought: ‘Now, am I worth as much as he?’\r\nOld Jolyon put the Will in his breast pocket, and James twisted his long legs regretfully.\r\n“You’ve made some nice purchases lately, they tell me,” he said.\r\n“I don’t know where you get your information from,” answered old Jolyon sharply. “When’s this action coming on? Next month? I can’t tell what you’ve got in your minds. You must manage your own affairs; but if you take my advice, you’ll settle it out of Court. Good-bye!” With a cold handshake he was gone.\r\nJames, his fixed grey-blue eye corkscrewing round some secret anxious image, began again to bite his finger.\r\nOld Jolyon took his Will to the offices of the New Colliery Company, and sat down in the empty Board Room to read it through. He answered ‘Down-by-the-starn’ Hemmings so tartly when the latter, seeing his Chairman seated there, entered with the new Superintendent’s first report, that the Secretary withdrew with regretful dignity; and sending for the transfer clerk, blew him up till the poor youth knew not where to look.\r\nIt was not — by George — as he (Down-by-the-starn) would have him know, for a whippersnapper of a young fellow like him, to come down to that office, and think that he was God Almighty. He (Down-by-the-starn) had been head of that office for more years than a boy like him could count, and if he thought that when he had finished all his work, he could sit there doing nothing, he did not know him, Hemmings (Down-by-the-starn), and so forth.\r\nOn the other side of the green baize door old Jolyon sat at the long, mahogany-and-leather board table, his thick, loose-jointed, tortoiseshell eye-glasses perched on the bridge of his nose, his gold pencil moving down the clauses of his Will.\r\nIt was a simple affair, for there were none of those vexatious little legacies and donations to charities, which fritter away a man’s possessions, and damage the majestic effect of that little paragraph in the morning papers accorded to Forsytes who die with a hundred thousand pounds.\r\nA simple affair. Just a bequest to his son of twenty thousand, and ‘as to the residue of my property of whatsoever kind whether realty or personalty, or partaking of the nature of either — upon trust to pay the proceeds rents annual produce dividends or interest thereof and thereon to my said grand-daughter June Forsyte or her assigns during her life to be for her sole use and benefit and without, etc . . . and from and after her death or decease upon trust to convey assign transfer or make over the said last-mentioned lands hereditaments premises trust moneys stocks funds investments and securities or such as shall then stand for and represent the same unto such person or persons whether one or more for such intents purposes and uses and generally in such manner way and form in all respects as the said June Forsyte notwithstanding coverture shall by her last Will and Testament or any writing or writings in the nature of a Will testament or testamentary disposition to be by her duly made signed and published direct appoint or make over give and dispose of the same And in default etc. . . . Provided always . . . ’ and so on, in seven folios of brief and simple phraseology.\r\nThe Will had been drawn by James in his palmy days. He had foreseen almost every contingency.\r\nOld Jolyon sat a long time reading this Will; at last he took half a sheet of paper from the rack, and made a prolonged pencil note; then buttoning up the Will, he caused a cab to be called and drove to the offices of Paramor and Herring, in Lincoln’s Inn Fields. Jack Herring was dead, but his nephew was still in the firm, and old Jolyon was closeted with him for half an hour.\r\nHe had kept the hansom, and on coming out, gave the driver the address — 3, Wistaria Avenue.\r\nHe felt a strange, slow satisfaction, as though he had scored a victory over James and the man of property. They should not poke their noses into his affairs any more; he had just cancelled their trusteeships of his Will; he would take the whole of his business out of their hands, and put it into the hands of young Herring, and he would move the business of his Companies too. If that young Soames were such a man of property, he would never miss a thousand a year or so; and under his great white moustache old Jolyon grimly smiled. He felt that what he was doing was in the nature of retributive justice, richly deserved.\r\nSlowly, surely, with the secret inner process that works the destruction of an old tree, the poison of the wounds to his happiness, his will, his pride, had corroded the comely edifice of his philosophy. Life had worn him down on one side, till, like that family of which he was the head, he had lost balance.\r\nTo him, borne northwards towards his son’s house, the thought of the new disposition of property, which he had just set in motion, appeared vaguely in the light of a stroke of punishment, levelled at that family and that Society, of which James and his son seemed to him the representatives. He had made a restitution to young Jolyon, and restitution to young Jolyon satisfied his secret craving for revenge-revenge against Time, sorrow, and interference, against all that incalculable sum of disapproval that had been bestowed by the world for fifteen years on his only son. It presented itself as the one possible way of asserting once more the domination of his will; of forcing James, and Soames, and the family, and all those hidden masses of Forsytes — a great stream rolling against the single dam of his obstinacy — to recognise once and for all that he would be master. It was sweet to think that at last he was going to make the boy a richer man by far than that son of James, that ‘man of property.’ And it was sweet to give to Jo, for he loved his son.\r\nNeither young Jolyon nor his wife were in (young Jolyon indeed was not back from the Botanical), but the little maid told him that she expected the master at any moment:\r\n“He’s always at ‘ome to tea, sir, to play with the children.”\r\nOld Jolyon said he would wait; and sat down patiently enough in the faded, shabby drawing room, where, now that the summer chintzes were removed, the old chairs and sofas revealed all their threadbare deficiencies. He longed to send for the children; to have them there beside him, their supple bodies against his knees; to hear Jolly’s: “Hallo, Gran!” and see his rush; and feel Holly’s soft little hand stealing up against his cheek. But he would not. There was solemnity in what he had come to do, and until it was over he would not play. He amused himself by thinking how with two strokes of his pen he was going to restore the look of caste so conspicuously absent from everything in that little house; how he could fill these rooms, or others in some larger mansion, with triumphs of art from Baple and Pullbred’s; how he could send little Jolly to Harrow and Oxford (he no longer had faith in Eton and Cambridge, for his son had been there); how he could procure little Holly the best musical instruction, the child had a remarkable aptitude.\r\nAs these visions crowded before him, causing emotion to swell his heart, he rose, and stood at the window, looking down into the little walled strip of garden, where the pear-tree, bare of leaves before its time, stood with gaunt branches in the slow-gathering mist of the autumn afternoon. The dog Balthasar, his tail curled tightly over a piebald, furry back, was walking at the farther end, sniffing at the plants, and at intervals placing his leg for support against the wall.\r\nAnd old Jolyon mused.\r\nWhat pleasure was there left but to give? It was pleasant to give, when you could find one who would be thankful for what you gave — one of your own flesh and blood! There was no such satisfaction to be had out of giving to those who did not belong to you, to those who had no claim on you! Such giving as that was a betrayal of the individualistic convictions and actions of his life, of all his enterprise, his labour, and his moderation, of the great and proud fact that, like tens of thousands of Forsytes before him, tens of thousands in the present, tens of thousands in the future, he had always made his own, and held his own, in the world.\r\nAnd, while he stood there looking down on the smut-covered foliage of the laurels, the black-stained grass-plot, the progress of the dog Balthasar, all the suffering of the fifteen years during which he had been baulked of legitimate enjoyment mingled its gall with the sweetness of the approaching moment.\r\nYoung Jolyon came at last, pleased with his work, and fresh from long hours in the open air. On hearing that his father was in the drawing room, he inquired hurriedly whether Mrs. Forsyte was at home, and being informed that she was not, heaved a sigh of relief. Then putting his painting materials carefully in the little coat-closet out of sight, he went in.\r\nWith characteristic decision old Jolyon came at once to the point. “I’ve been altering my arrangements, Jo,” he said. “You can cut your coat a bit longer in the future — I’m settling a thousand a year on you at once. June will have fifty thousand at my death; and you the rest. That dog of yours is spoiling the garden. I shouldn’t keep a dog, if I were you!”\r\nThe dog Balthasar, seated in the centre of the lawn, was examining his tail.\r\nYoung Jolyon looked at the animal, but saw him dimly, for his eyes were misty.\r\n“Yours won’t come short of a hundred thousand, my boy,” said old Jolyon; “I thought you’d better know. I haven’t much longer to live at my age. I shan’t allude to it again. How’s your wife? And — give her my love.”\r\nYoung Jolyon put his hand on his father’s shoulder, and, as neither spoke, the episode closed.\r\nHaving seen his father into a hansom, young Jolyon came back to the drawing-room and stood, where old Jolyon had stood, looking down on the little garden. He tried to realize all that this meant to him, and, Forsyte that he was, vistas of property were opened out in his brain; the years of half rations through which he had passed had not sapped his natural instincts. In extremely practical form, he thought of travel, of his wife’s costume, the children’s education, a pony for Jolly, a thousand things; but in the midst of all he thought, too, of Bosinney and his mistress, and the broken song of the thrush. Joy — tragedy! Which? Which?\r\nThe old past — the poignant, suffering, passionate, wonderful past, that no money could buy, that nothing could restore in all its burning sweetness — had come back before him.\r\nWhen his wife came in he went straight up to her and took her in his arms; and for a long time he stood without speaking, his eyes closed, pressing her to him, while she looked at him with a wondering, adoring, doubting look in her eyes.\r\nChapter 27  Voyage into the Inferno\r\nThe morning after a certain night on which Soames at last asserted his rights and acted like a man, he breakfasted alone.\r\nHe breakfasted by gaslight, the fog of late November wrapping the town as in some monstrous blanket till the trees of the Square even were barely visible from the dining-room window.\r\nHe ate steadily, but at times a sensation as though he could not swallow attacked him. Had he been right to yield to his overmastering hunger of the night before, and break down the resistance which he had suffered now too long from this woman who was his lawful and solemnly constituted helpmate?\r\nHe was strangely haunted by the recollection of her face, from before which, to soothe her, he had tried to pull her hands — of her terrible smothered sobbing, the like of which he had never heard, and still seemed to hear; and he was still haunted by the odd, intolerable feeling of remorse and shame he had felt, as he stood looking at her by the flame of the single candle, before silently slinking away.\r\nAnd somehow, now that he had acted like this, he was surprised at himself.\r\nTwo nights before, at Winifred Dartie’s, he had taken Mrs. MacAnder into dinner. She had said to him, looking in his face with her sharp, greenish eyes: “And so your wife is a great friend of that Mr. Bosinney’s?”\r\nNot deigning to ask what she meant, he had brooded over her words.\r\nThey had roused in him a fierce jealousy, which, with the peculiar perversion of this instinct, had turned to fiercer desire.\r\nWithout the incentive of Mrs. MacAnder’s words he might never have done what he had done. Without their incentive and the accident of finding his wife’s door for once unlocked, which had enabled him to steal upon her asleep.\r\nSlumber had removed his doubts, but the morning brought them again. One thought comforted him: No one would know — it was not the sort of thing that she would speak about.\r\nAnd, indeed, when the vehicle of his daily business life, which needed so imperatively the grease of clear and practical thought, started rolling once more with the reading of his letters, those nightmare-like doubts began to assume less extravagant importance at the back of his mind. The incident was really not of great moment; women made a fuss about it in books; but in the cool judgment of right-thinking men, of men of the world, of such as he recollected often received praise in the Divorce Court, he had but done his best to sustain the sanctity of marriage, to prevent her from abandoning her duty, possibly, if she were still seeing Bosinney, from. . . .\r\nNo, he did not regret it.\r\nNow that the first step towards reconciliation had been taken, the rest would be comparatively — comparatively. . . .\r\nHe, rose and walked to the window. His nerve had been shaken. The sound of smothered sobbing was in his ears again. He could not get rid of it.\r\nHe put on his fur coat, and went out into the fog; having to go into the City, he took the underground railway from Sloane Square station.\r\nIn his corner of the first-class compartment filled with City men the smothered sobbing still haunted him, so he opened the Times with the rich crackle that drowns all lesser sounds, and, barricaded behind it, set himself steadily to con the news.\r\nHe read that a Recorder had charged a grand jury on the previous day with a more than usually long list of offences. He read of three murders, five manslaughters, seven arsons, and as many as eleven rapes — a surprisingly high number — in addition to many less conspicuous crimes, to be tried during a coming Sessions; and from one piece of news he went on to another, keeping the paper well before his face.\r\nAnd still, inseparable from his reading, was the memory of Irene’s tear-stained face, and the sounds from her broken heart.\r\nThe day was a busy one, including, in addition to the ordinary affairs of his practice, a visit to his brokers, Messrs. Grin and Grinning, to give them instructions to sell his shares in the New Colliery Co., Ltd., whose business he suspected, rather than knew, was stagnating (this enterprise afterwards slowly declined, and was ultimately sold for a song to an American syndicate); and a long conference at Waterbuck, Q.C.‘s chambers, attended by Boulter, by Fiske, the junior counsel, and Waterbuck, Q.C., himself.\r\nThe case of Forsyte v. Bosinney was expected to be reached on the morrow, before Mr. Justice Bentham.\r\nMr. Justice Bentham, a man of common-sense rather than too great legal knowledge, was considered to be about the best man they could have to try the action. He was a ‘strong’ Judge.\r\nWaterbuck, Q.C., in pleasing conjunction with an almost rude neglect of Boulter and Fiske paid to Soames a good deal of attention, by instinct or the sounder evidence of rumour, feeling him to be a man of property.\r\nHe held with remarkable consistency to the opinion he had already expressed in writing, that the issue would depend to a great extent on the evidence given at the trial, and in a few well directed remarks he advised Soames not to be too careful in giving that evidence. “A little bluffness, Mr. Forsyte,” he said, “a little bluffness,” and after he had spoken he laughed firmly, closed his lips tight, and scratched his head just below where he had pushed his wig back, for all the world like the gentleman-farmer for whom he loved to be taken. He was considered perhaps the leading man in breach of promise cases.\r\nSoames used the underground again in going home.\r\nThe fog was worse than ever at Sloane Square station. Through the still, thick blur, men groped in and out; women, very few, grasped their reticules to their bosoms and handkerchiefs to their mouths; crowned with the weird excrescence of the driver, haloed by a vague glow of lamp-light that seemed to drown in vapour before it reached the pavement, cabs loomed dim-shaped ever and again, and discharged citizens, bolting like rabbits to their burrows.\r\nAnd these shadowy figures, wrapped each in his own little shroud of fog, took no notice of each other. In the great warren, each rabbit for himself, especially those clothed in the more expensive fur, who, afraid of carriages on foggy days, are driven underground.\r\nOne figure, however, not far from Soames, waited at the station door.\r\nSome buccaneer or lover, of whom each Forsyte thought: ‘Poor devil! looks as if he were having a bad time!’ Their kind hearts beat a stroke faster for that poor, waiting, anxious lover in the fog; but they hurried by, well knowing that they had neither time nor money to spare for any suffering but their own.\r\nOnly a policeman, patrolling slowly and at intervals, took an interest in that waiting figure, the brim of whose slouch hat half hid a face reddened by the cold, all thin, and haggard, over which a hand stole now and again to smooth away anxiety, or renew the resolution that kept him waiting there. But the waiting lover (if lover he were) was used to policemen’s scrutiny, or too absorbed in his anxiety, for he never flinched. A hardened case, accustomed to long trysts, to anxiety, and fog, and cold, if only his mistress came at last. Foolish lover! Fogs last until the spring; there is also snow and rain, no comfort anywhere; gnawing fear if you bring her out, gnawing fear if you bid her stay at home!\r\n“Serve him right; he should arrange his affairs better!”\r\nSo any respectable Forsyte. Yet, if that sounder citizen could have listened at the waiting lover’s heart, out there in the fog and the cold, he would have said again: “Yes, poor devil he’s having a bad time!”\r\nSoames got into his cab, and, with the glass down, crept along Sloane Street, and so along the Brompton Road, and home. He reached his house at five.\r\nHis wife was not in. She had gone out a quarter of an hour before. Out at such a time of night, into this terrible fog! What was the meaning of that?\r\nHe sat by the dining-room fire, with the door open, disturbed to the soul, trying to read the evening paper. A book was no good — in daily papers alone was any narcotic to such worry as his. From the customary events recorded in the journal he drew some comfort. ‘Suicide of an actress’—‘Grave indisposition of a Statesman’ (that chronic sufferer)—‘Divorce of an army officer’—‘Fire in a colliery’— he read them all. They helped him a little — prescribed by the greatest of all doctors, our natural taste.\r\nIt was nearly seven when he heard her come in.\r\nThe incident of the night before had long lost its importance under stress of anxiety at her strange sortie into the fog. But now that Irene was home, the memory of her broken-hearted sobbing came back to him, and he felt nervous at the thought of facing her.\r\nShe was already on the stairs; her grey fur coat hung to her knees, its high collar almost hid her face, she wore a thick veil.\r\nShe neither turned to look at him nor spoke. No ghost or stranger could have passed more silently.\r\nBilson came to lay dinner, and told him that Mrs. Forsyte was not coming down; she was having the soup in her room.\r\nFor once Soames did not ‘change’; it was, perhaps, the first time in his life that he had sat down to dinner with soiled cuffs, and, not even noticing them, he brooded long over his wine. He sent Bilson to light a fire in his picture-room, and presently went up there himself.\r\nTurning on the gas, he heaved a deep sigh, as though amongst these treasures, the backs of which confronted him in stacks, around the little room, he had found at length his peace of mind. He went straight up to the greatest treasure of them all, an undoubted Turner, and, carrying it to the easel, turned its face to the light. There had been a movement in Turners, but he had not been able to make up his mind to part with it. He stood for a long time, his pale, clean-shaven face poked forward above his stand-up collar, looking at the picture as though he were adding it up; a wistful expression came into his eyes; he found, perhaps, that it came to too little. He took it down from the easel to put it back against the wall; but, in crossing the room, stopped, for he seemed to hear sobbing.\r\nIt was nothing — only the sort of thing that had been bothering him in the morning. And soon after, putting the high guard before the blazing fire, he stole downstairs.\r\nFresh for the morrow! was his thought. It was long before he went to sleep. . . .\r\nIt is now to George Forsyte that the mind must turn for light on the events of that fog-engulfed afternoon.\r\nThe wittiest and most sportsmanlike of the Forsytes had passed the day reading a novel in the paternal mansion at Princes’ Gardens. Since a recent crisis in his financial affairs he had been kept on parole by Roger, and compelled to reside ‘at home.’\r\nTowards five o’clock he went out, and took train at South Kensington Station (for everyone to-day went Underground). His intention was to dine, and pass the evening playing billiards at the Red Pottle — that unique hostel, neither club, hotel, nor good gilt restaurant.\r\nHe got out at Charing Cross, choosing it in preference to his more usual St. James’s Park, that he might reach Jermyn Street by better lighted ways.\r\nOn the platform his eyes — for in combination with a composed and fashionable appearance, George had sharp eyes, and was always on the look-out for fillips to his sardonic humour — his eyes were attracted by a man, who, leaping from a first-class compartment, staggered rather than walked towards the exit.\r\n‘So ho, my bird!’ said George to himself; ‘why, it’s “the Buccaneer!”’ and he put his big figure on the trail. Nothing afforded him greater amusement than a drunken man.\r\nBosinney, who wore a slouch hat, stopped in front of him, spun around, and rushed back towards the carriage he had just left. He was too late. A porter caught him by the coat; the train was already moving on.\r\nGeorge’s practised glance caught sight of the face of a lady clad in a grey fur coat at the carriage window. It was Mrs. Soames — and George felt that this was interesting!\r\nAnd now he followed Bosinney more closely than ever — up the stairs, past the ticket collector into the street. In that progress, however, his feelings underwent a change; no longer merely curious and amused, he felt sorry for the poor fellow he was shadowing. ‘The Buccaneer’ was not drunk, but seemed to be acting under the stress of violent emotion; he was talking to himself, and all that George could catch were the words “Oh, God!” Nor did he appear to know what he was doing, or where going; but stared, hesitated, moved like a man out of his mind; and from being merely a joker in search of amusement, George felt that he must see the poor chap through.\r\nHe had ‘taken the knock’—‘taken the knock!’ And he wondered what on earth Mrs. Soames had been saying, what on earth she had been telling him in the railway carriage. She had looked bad enough herself! It made George sorry to think of her travelling on with her trouble all alone.\r\nHe followed close behind Bosinney’s elbow — tall, burly figure, saying nothing, dodging warily — and shadowed him out into the fog.\r\nThere was something here beyond a jest! He kept his head admirably, in spite of some excitement, for in addition to compassion, the instincts of the chase were roused within him.\r\nBosinney walked right out into the thoroughfare — a vast muffled blackness, where a man could not see six paces before him; where, all around, voices or whistles mocked the sense of direction; and sudden shapes came rolling slow upon them; and now and then a light showed like a dim island in an infinite dark sea.\r\nAnd fast into this perilous gulf of night walked Bosinney, and fast after him walked George. If the fellow meant to put his ‘twopenny’ under a ‘bus, he would stop it if he could! Across the street and back the hunted creature strode, not groping as other men were groping in that gloom, but driven forward as though the faithful George behind wielded a knout; and this chase after a haunted man began to have for George the strangest fascination.\r\nBut it was now that the affair developed in a way which ever afterwards caused it to remain green in his mind. Brought to a stand-still in the fog, he heard words which threw a sudden light on these proceedings. What Mrs. Soames had said to Bosinney in the train was now no longer dark. George understood from those mutterings that Soames had exercised his rights over an estranged and unwilling wife in the greatest — the supreme act of property.\r\nHis fancy wandered in the fields of this situation; it impressed him; he guessed something of the anguish, the sexual confusion and horror in Bosinney’s heart. And he thought: ‘Yes, it’s a bit thick! I don’t wonder the poor fellow is half-cracked!’\r\nHe had run his quarry to earth on a bench under one of the lions in Trafalgar Square, a monster sphynx astray like themselves in that gulf of darkness. Here, rigid and silent, sat Bosinney, and George, in whose patience was a touch of strange brotherliness, took his stand behind. He was not lacking in a certain delicacy — a sense of form — that did not permit him to intrude upon this tragedy, and he waited, quiet as the lion above, his fur collar hitched above his ears concealing the fleshy redness of his cheeks, concealing all but his eyes with their sardonic, compassionate stare. And men kept passing back from business on the way to their clubs — men whose figures shrouded in cocoons of fog came into view like spectres, and like spectres vanished. Then even in his compassion George’s Quilpish humour broke forth in a sudden longing to pluck these spectres by the sleeve, and say:\r\n“Hi, you Johnnies! You don’t often see a show like this! Here’s a poor devil whose mistress has just been telling him a pretty little story of her husband; walk up, walk up! He’s taken the knock, you see.”\r\nIn fancy he saw them gaping round the tortured lover; and grinned as he thought of some respectable, newly-married spectre enabled by the state of his own affections to catch an inkling of what was going on within Bosinney; he fancied he could see his mouth getting wider and wider, and the fog going down and down. For in George was all that contempt of the of the married middle-class — peculiar to the wild and sportsmanlike spirits in its ranks.\r\nBut he began to be bored. Waiting was not what he had bargained for.\r\n‘After all,’ he thought, ‘the poor chap will get over it; not the first time such a thing has happened in this little city!’ But now his quarry again began muttering words of violent hate and anger. And following a sudden impulse George touched him on the shoulder.\r\nBosinney spun round.\r\n“Who are you? What do you want?”\r\nGeorge could have stood it well enough in the light of the gas lamps, in the light of that everyday world of which he was so hardy a connoisseur; but in this fog, where all was gloomy and unreal, where nothing had that matter-of-fact value associated by Forsytes with earth, he was a victim to strange qualms, and as he tried to stare back into the eyes of this maniac, he thought:\r\n‘If I see a bobby, I’ll hand him over; he’s not fit to be at large.’\r\nBut waiting for no answer, Bosinney strode off into the fog, and George followed, keeping perhaps a little further off, yet more than ever set on tracking him down.\r\n‘He can’t go on long like this,’ he thought. ‘It’s God’s own miracle he’s not been run over already.’ He brooded no more on policemen, a sportsman’s sacred fire alive again within him.\r\nInto a denser gloom than ever Bosinney held on at a furious pace; but his pursuer perceived more method in his madness — he was clearly making his way westwards.\r\n‘He’s really going for Soames!’ thought George. The idea was attractive. It would be a sporting end to such a chase. He had always disliked his cousin.\r\nThe shaft of a passing cab brushed against his shoulder and made him leap aside. He did not intend to be killed for the Buccaneer, or anyone. Yet, with hereditary tenacity, he stuck to the trail through vapour that blotted out everything but the shadow of the hunted man and the dim moon of the nearest lamp.\r\nThen suddenly, with the instinct of a town-stroller, George knew himself to be in Piccadilly. Here he could find his way blindfold; and freed from the strain of geographical uncertainty, his mind returned to Bosinney’s trouble.\r\nDown the long avenue of his man-about-town experience, bursting, as it were, through a smirch of doubtful amours, there stalked to him a memory of his youth. A memory, poignant still, that brought the scent of hay, the gleam of moonlight, a summer magic, into the reek and blackness of this London fog — the memory of a night when in the darkest shadow of a lawn he had overheard from a woman’s lips that he was not her sole possessor. And for a moment George walked no longer in black Piccadilly, but lay again, with hell in his heart, and his face to the sweet-smelling, dewy grass, in the long shadow of poplars that hid the moon.\r\nA longing seized him to throw his arm round the Buccaneer, and say, “Come, old boy. Time cures all. Let’s go and drink it off!”\r\nBut a voice yelled at him, and he started back. A cab rolled out of blackness, and into blackness disappeared. And suddenly George perceived that he had lost Bosinney. He ran forward and back, felt his heart clutched by a sickening fear, the dark fear which lives in the wings of the fog. Perspiration started out on his brow. He stood quite still, listening with all his might.\r\n“And then,” as he confided to Dartie the same evening in the course of a game of billiards at the Red Pottle, “I lost him.”\r\nDartie twirled complacently at his dark moustache. He had just put together a neat break of twenty-three — failing at a ‘Jenny.’ “And who was she?” he asked.\r\nGeorge looked slowly at the ‘man of the world’s’ fattish, sallow face, and a little grim smile lurked about the curves of his cheeks and his heavy-lidded eyes.\r\n‘No, no, my fine fellow,’ he thought, ‘I’m not going to tell you.’ For though he mixed with Dartie a good deal, he thought him a bit of a cad.\r\n“Oh, some little love-lady or other,” he said, and chalked his cue.\r\n“A love-lady!” exclaimed Dartie — he used a more figurative expression. “I made sure it was our friend Soa. . . . ”\r\n“Did you?” said George curtly. “Then damme you’ve made an error.”\r\nHe missed his shot. He was careful not to allude to the subject again till, towards eleven o’clock, having, in his poetic phraseology, ‘looked upon the drink when it was yellow,’ he drew aside the blind, and gazed out into the street. The murky blackness of the fog was but faintly broken by the lamps of the ‘Red Pottle,’ and no shape of mortal man or thing was in sight.\r\n“I can’t help thinking of that poor Buccaneer,” he said. “He may be wandering out there now in that fog. If he’s not a corpse,” he added with strange dejection.\r\n“Corpse!” said Dartie, in whom the recollection of his defeat at Richmond flared up. “He’s all right. Ten to one if he wasn’t tight!”\r\nGeorge turned on him, looking really formidable, with a sort of savage gloom on his big face.\r\n“Dry up!” he said. “Don’t I tell you he’s ‘taken the knock!”’\r\nChapter 28  The Trial\r\nIn the morning of his case, which was second in the list, Soames was again obliged to start without seeing Irene, and it was just as well, for he had not as yet made up his mind what attitude to adopt towards her.\r\nHe had been requested to be in court by half-past ten, to provide against the event of the first action (a breach of promise) collapsing, which however it did not, both sides showing a courage that afforded Waterbuck, Q.C., an opportunity for improving his already great reputation in this class of case. He was opposed by Ram, the other celebrated breach of promise man. It was a battle of giants.\r\nThe court delivered judgment just before the luncheon interval. The jury left the box for good, and Soames went out to get something to eat. He met James standing at the little luncheon-bar, like a pelican in the wilderness of the galleries, bent over a sandwich with a glass of sherry before him. The spacious emptiness of the great central hall, over which father and son brooded as they stood together, was marred now and then for a fleeting moment by barristers in wig and gown hurriedly bolting across, by an occasional old lady or rusty-coated man, looking up in a frightened way, and by two persons, bolder than their generation, seated in an embrasure arguing. The sound of their voices arose, together with a scent as of neglected wells, which, mingling with the odour of the galleries, combined to form the savour, like nothing but the emanation of a refined cheese, so indissolubly connected with the administration of British Justice.\r\nIt was not long before James addressed his son.\r\n“When’s your case coming on? I suppose it’ll be on directly. I shouldn’t wonder if this Bosinney’d say anything; I should think he’d have to. He’ll go bankrupt if it goes against him.” He took a large bite at his sandwich and a mouthful of sherry. “Your mother,” he said, “wants you and Irene to come and dine to-night.”\r\nA chill smile played round Soames’ lips; he looked back at his father. Anyone who had seen the look, cold and furtive, thus interchanged, might have been pardoned for not appreciating the real understanding between them. James finished his sherry at a draught.\r\n“How much?” he asked.\r\nOn returning to the court Soames took at once his rightful seat on the front bench beside his solicitor. He ascertained where his father was seated with a glance so sidelong as to commit nobody.\r\nJames, sitting back with his hands clasped over the handle of his umbrella, was brooding on the end of the bench immediately behind counsel, whence he could get away at once when the case was over. He considered Bosinney’s conduct in every way outrageous, but he did not wish to run up against him, feeling that the meeting would be awkward.\r\nNext to the Divorce Court, this court was, perhaps, the favourite emporium of justice, libel, breach of promise, and other commercial actions being frequently decided there. Quite a sprinkling of persons unconnected with the law occupied the back benches, and the hat of a woman or two could be seen in the gallery.\r\nThe two rows of seats immediately in front of James were gradually filled by barristers in wigs, who sat down to make pencil notes, chat, and attend to their teeth; but his interest was soon diverted from these lesser lights of justice by the entrance of Waterbuck, Q.C., with the wings of his silk gown rustling, and his red, capable face supported by two short, brown whiskers. The famous Q.C. looked, as James freely admitted, the very picture of a man who could heckle a witness.\r\nFor all his experience, it so happened that he had never seen Waterbuck, Q.C., before, and, like many Forsytes in the lower branch of the profession, he had an extreme admiration for a good cross-examiner. The long, lugubrious folds in his cheeks relaxed somewhat after seeing him, especially as he now perceived that Soames alone was represented by silk.\r\nWaterbuck, Q.C., had barely screwed round on his elbow to chat with his Junior before Mr. Justice Bentham himself appeared — a thin, rather hen-like man, with a little stoop, clean-shaven under his snowy wig. Like all the rest of the court, Waterbuck rose, and remained on his feet until the judge was seated. James rose but slightly; he was already comfortable, and had no opinion of Bentham, having sat next but one to him at dinner twice at the Bumley Tomms’. Bumley Tomm was rather a poor thing, though he had been so successful. James himself had given him his first brief. He was excited, too, for he had just found out that Bosinney was not in court.\r\n‘Now, what’s he mean by that?’ he kept on thinking.\r\nThe case having been called on, Waterbuck, Q.C., pushing back his papers, hitched his gown on his shoulder, and, with a semi-circular look around him, like a man who is going to bat, arose and addressed the Court.\r\nThe facts, he said, were not in dispute, and all that his Lordship would be asked was to interpret the correspondence which had taken place between his client and the defendant, an architect, with reference to the decoration of a house. He would, however, submit that this correspondence could only mean one very plain thing. After briefly reciting the history of the house at Robin Hill, which he described as a mansion, and the actual facts of expenditure, he went on as follows:\r\n“My client, Mr. Soames Forsyte, is a gentleman, a man of property, who would be the last to dispute any legitimate claim that might be made against him, but he has met with such treatment from his architect in the matter of this house, over which he has, as your lordship has heard, already spent some twelve — some twelve thousand pounds, a sum considerably in advance of the amount he had originally contemplated, that as a matter of principle — and this I cannot too strongly emphasize — as a matter of principle, and in the interests of others, he has felt himself compelled to bring this action. The point put forward in defence by the architect I will suggest to your lordship is not worthy of a moment’s serious consideration.” He then read the correspondence.\r\nHis client, “a man of recognised position,” was prepared to go into the box, and to swear that he never did authorize, that it was never in his mind to authorize, the expenditure of any money beyond the extreme limit of twelve thousand and fifty pounds, which he had clearly fixed; and not further to waste the time of the court, he would at once call Mr. Forsyte.\r\nSoames then went into the box. His whole appearance was striking in its composure. His face, just supercilious enough, pale and clean-shaven, with a little line between the eyes, and compressed lips; his dress in unostentatious order, one hand neatly gloved, the other bare. He answered the questions put to him in a somewhat low, but distinct voice. His evidence under cross-examination savoured of taciturnity.\r\nHad he not used the expression, “a free hand”? No.\r\n“Come, come!”\r\nThe expression he had used was ‘a free hand in the terms of this correspondence.’\r\n“Would you tell the Court that that was English?”\r\n“Yes!”\r\n“What do you say it means?”\r\n“What it says!”\r\n“Are you prepared to deny that it is a contradiction in terms?”\r\n“Yes.”\r\n“You are not an Irishman?”\r\n“No.”\r\n“Are you a well-educated man?”\r\n“Yes.”\r\n“And yet you persist in that statement?”\r\n“Yes.”\r\nThroughout this and much more cross-examination, which turned again and again around the ‘nice point,’ James sat with his hand behind his ear, his eyes fixed upon his son.\r\nHe was proud of him! He could not but feel that in similar circumstances he himself would have been tempted to enlarge his replies, but his instinct told him that this taciturnity was the very thing. He sighed with relief, however, when Soames, slowly turning, and without any change of expression, descended from the box.\r\nWhen it came to the turn of Bosinney’s Counsel to address the Judge, James redoubled his attention, and he searched the Court again and again to see if Bosinney were not somewhere concealed.\r\nYoung Chankery began nervously; he was placed by Bosinney’s absence in an awkward position. He therefore did his best to turn that absence to account.\r\nHe could not but fear — he said — that his client had met with an accident. He had fully expected him there to give evidence; they had sent round that morning both to Mr. Bosinney’s office and to his rooms (though he knew they were one and the same, he thought it was as well not to say so), but it was not known where he was, and this he considered to be ominous, knowing how anxious Mr. Bosinney had been to give his evidence. He had not, however, been instructed to apply for an adjournment, and in default of such instruction he conceived it his duty to go on. The plea on which he somewhat confidently relied, and which his client, had he not unfortunately been prevented in some way from attending, would have supported by his evidence, was that such an expression as a ‘free hand’ could not be limited, fettered, and rendered unmeaning, by any verbiage which might follow it. He would go further and say that the correspondence showed that whatever he might have said in his evidence, Mr. Forsyte had in fact never contemplated repudiating liability on any of the work ordered or executed by his architect. The defendant had certainly never contemplated such a contingency, or, as was demonstrated by his letters, he would never have proceeded with the work — a work of extreme delicacy, carried out with great care and efficiency, to meet and satisfy the fastidious taste of a connoisseur, a rich man, a man of property. He felt strongly on this point, and feeling strongly he used, perhaps, rather strong words when he said that this action was of a most unjustifiable, unexpected, indeed — unprecedented character. If his Lordship had had the opportunity that he himself had made it his duty to take, to go over this very fine house and see the great delicacy and beauty of the decorations executed by his client — an artist in his most honourable profession — he felt convinced that not for one moment would his Lordship tolerate this, he would use no stronger word than daring attempt to evade legitimate responsibility.\r\nTaking the text of Soames’ letters, he lightly touched on ‘Boileau v. The Blasted Cement Company, Limited.’ “It is doubtful,” he said, “what that authority has decided; in any case I would submit that it is just as much in my favour as in my friend’s.” He then argued the ‘nice point’ closely. With all due deference he submitted that Mr. Forsyte’s expression nullified itself. His client not being a rich man, the matter was a serious one for him; he was a very talented architect, whose professional reputation was undoubtedly somewhat at stake. He concluded with a perhaps too personal appeal to the Judge, as a lover of the arts, to show himself the protector of artists, from what was occasionally — he said occasionally — the too iron hand of capital. “What,” he said, “will be the position of the artistic professions, if men of property like this Mr. Forsyte refuse, and are allowed to refuse, to carry out the obligations of the commissions which they have given.” He would now call his client, in case he should at the last moment have found himself able to be present.\r\nThe name Philip Baynes Bosinney was called three times by the Ushers, and the sound of the calling echoed with strange melancholy throughout the Court and Galleries.\r\nThe crying of this name, to which no answer was returned, had upon James a curious effect: it was like calling for your lost dog about the streets. And the creepy feeling that it gave him, of a man missing, grated on his sense of comfort and security-on his cosiness. Though he could not have said why, it made him feel uneasy.\r\nHe looked now at the clock — a quarter to three! It would be all over in a quarter of an hour. Where could the young fellow be?\r\nIt was only when Mr. Justice Bentham delivered judgment that he got over the turn he had received.\r\nBehind the wooden erection, by which he was fenced from more ordinary mortals, the learned Judge leaned forward. The electric light, just turned on above his head, fell on his face, and mellowed it to an orange hue beneath the snowy crown of his wig; the amplitude of his robes grew before the eye; his whole figure, facing the comparative dusk of the Court, radiated like some majestic and sacred body. He cleared his throat, took a sip of water, broke the nib of a quill against the desk, and, folding his bony hands before him, began.\r\nTo James he suddenly loomed much larger than he had ever thought Bentham would loom. It was the majesty of the law; and a person endowed with a nature far less matter-of-fact than that of James might have been excused for failing to pierce this halo, and disinter therefrom the somewhat ordinary Forsyte, who walked and talked in every-day life under the name of Sir Walter Bentham.\r\nHe delivered judgment in the following words:\r\n“The facts in this case are not in dispute. On May 15 last the defendant wrote to the plaintiff, requesting to be allowed to withdraw from his professional position in regard to the decoration of the plaintiff’s house, unless he were given ‘a free hand.’ The plaintiff, on May 17, wrote back as follows: ‘In giving you, in accordance with your request, this free hand, I wish you to clearly understand that the total cost of the house as handed over to me completely decorated, inclusive of your fee (as arranged between us) must not exceed twelve thousand pounds.’ To this letter the defendant replied on May 18: ‘If you think that in such a delicate matter as decoration I can bind myself to the exact pound, I am afraid you are mistaken.’ On May 19 the plaintiff wrote as follows: ‘I did not mean to say that if you should exceed the sum named in my letter to you by ten or twenty or even fifty pounds there would be any difficulty between us. You have a free hand in the terms of this correspondence, and I hope you will see your way to completing the decorations.’ On May 20 the defendant replied thus shortly: ‘Very well.’\r\n“In completing these decorations, the defendant incurred liabilities and expenses which brought the total cost of this house up to the sum of twelve thousand four hundred pounds, all of which expenditure has been defrayed by the plaintiff. This action has been brought by the plaintiff to recover from the defendant the sum of three hundred and fifty pounds expended by him in excess of a sum of twelve thousand and fifty pounds, alleged by the plaintiff to have been fixed by this correspondence as the maximum sum that the defendant had authority to expend.\r\n“The question for me to decide is whether or no the defendant is liable to refund to the plaintiff this sum. In my judgment he is so liable.\r\n“What in effect the plaintiff has said is this ‘I give you a free hand to complete these decorations, provided that you keep within a total cost to me of twelve thousand pounds. If you exceed that sum by as much as fifty pounds, I will not hold you responsible; beyond that point you are no agent of mine, and I shall repudiate liability.’ It is not quite clear to me whether, had the plaintiff in fact repudiated liability under his agent’s contracts, he would, under all the circumstances, have been successful in so doing; but he has not adopted this course. He has accepted liability, and fallen back upon his rights against the defendant under the terms of the latter’s engagement.\r\n“In my judgment the plaintiff is entitled to recover this sum from the defendant.\r\n“It has been sought, on behalf of the defendant, to show that no limit of expenditure was fixed or intended to be fixed by this correspondence. If this were so, I can find no reason for the plaintiff’s importation into the correspondence of the figures of twelve thousand pounds and subsequently of fifty pounds. The defendant’s contention would render these figures meaningless. It is manifest to me that by his letter of May 20 he assented to a very clear proposition, by the terms of which he must be held to be bound.\r\n“For these reasons there will be judgment for the plaintiff for the amount claimed with costs.”\r\nJames sighed, and stooping, picked up his umbrella which had fallen with a rattle at the words ‘importation into this correspondence.’\r\nUntangling his legs, he rapidly left the Court; without waiting for his son, he snapped up a hansom cab (it was a clear, grey afternoon) and drove straight to Timothy’s where he found Swithin; and to him, Mrs. Septimus Small, and Aunt Hester, he recounted the whole proceedings, eating two muffins not altogether in the intervals of speech.\r\n“Soames did very well,” he ended; “he’s got his head screwed on the right way. This won’t please Jolyon. It’s a bad business for that young Bosinney; he’ll go bankrupt, I shouldn’t wonder,” and then after a long pause, during which he had stared disquietly into the fire, he added:\r\n“He wasn’t there — now why?”\r\nThere was a sound of footsteps. The figure of a thick-set man, with the ruddy brown face of robust health, was seen in the back drawing-room. The forefinger of his upraised hand was outlined against the black of his frock coat. He spoke in a grudging voice.\r\n“Well, James,” he said, “I can’t — I can’t stop,” and turning round, he walked out.\r\nIt was Timothy.\r\nJames rose from his chair. “There!” he said, “there! I knew there was something wro. . . . ” He checked himself, and was silent, staring before him, as though he had seen a portent.\r\nChapter 29  Soames Breaks the News\r\nIn leaving the Court Soames did not go straight home. He felt disinclined for the City, and drawn by need for sympathy in his triumph, he, too, made his way, but slowly and on foot, to Timothy’s in the Bayswater Road.\r\nHis father had just left; Mrs. Small and Aunt Hester, in possession of the whole story, greeted him warmly. They were sure he was hungry after all that evidence. Smither should toast him some more muffins, his dear father had eaten them all. He must put his legs up on the sofa; and he must have a glass of prune brandy too. It was so strengthening.\r\nSwithin was still present, having lingered later than his wont, for he felt in want of exercise. On hearing this suggestion, he ‘pished.’ A pretty pass young men were coming to! His own liver was out of order, and he could not bear the thought of anyone else drinking prune brandy.\r\nHe went away almost immediately, saying to Soames: “And how’s your wife? You tell her from me that if she’s dull, and likes to come and dine with me quietly, I’ll give her such a bottle of champagne as she doesn’t get every day.” Staring down from his height on Soames he contracted his thick, puffy, yellow hand as though squeezing within it all this small fry, and throwing out his chest he waddled slowly away.\r\nMrs. Small and Aunt Hester were left horrified. Swithin was so droll!\r\nThey themselves were longing to ask Soames how Irene would take the result, yet knew that they must not; he would perhaps say something of his own accord, to throw some light on this, the present burning question in their lives, the question that from necessity of silence tortured them almost beyond bearing; for even Timothy had now been told, and the effect on his health was little short of alarming. And what, too, would June do? This, also, was a most exciting, if dangerous speculation!\r\nThey had never forgotten old Jolyon’s visit, since when he had not once been to see them; they had never forgotten the feeling it gave all who were present, that the family was no longer what it had been — that the family was breaking up.\r\nBut Soames gave them no help, sitting with his knees crossed, talking of the Barbizon school of painters, whom he had just discovered. These were the coming men, he said; he should not wonder if a lot of money were made over them; he had his eye on two pictures by a man called Corot, charming things; if he could get them at a reasonable price he was going to buy them — they would, he thought, fetch a big price some day.\r\nInterested as they could not but be, neither Mrs. Septimus Small nor Aunt Hester could entirely acquiesce in being thus put off.\r\nIt was interesting — most interesting — and then Soames was so clever that they were sure he would do something with those pictures if anybody could; but what was his plan now that he had won his case; was he going to leave London at once, and live in the country, or what was he going to do?\r\nSoames answered that he did not know, he thought they should be moving soon. He rose and kissed his aunts.\r\nNo sooner had Aunt Juley received this emblem of departure than a change came over her, as though she were being visited by dreadful courage; every little roll of flesh on her face seemed trying to escape from an invisible, confining mask.\r\nShe rose to the full extent of her more than medium height, and said: “It has been on my mind a long time, dear, and if nobody else will tell you, I have made up my mind that. . . . ”\r\nAunt Hester interrupted her: “Mind, Julia, you do it. . . . ” she gasped —“on your own responsibility!”\r\nMrs. Small went on as though she had not heard: “I think you ought to know, dear, that Mrs. MacAnder saw Irene walking in Richmond Park with Mr. Bosinney.”\r\nAunt Hester, who had also risen, sank back in her chair, and turned her face away. Really Juley was too — she should not do such things when she — Aunt Hester, was in the room; and, breathless with anticipation, she waited for what Soames would answer.\r\nHe had flushed the peculiar flush which always centred between his eyes; lifting his hand, and, as it were, selecting a finger, he bit a nail delicately; then, drawling it out between set lips, he said: “Mrs. MacAnder is a cat!”\r\nWithout waiting for any reply, he left the room.\r\nWhen he went into Timothy’s he had made up his mind what course to pursue on getting home. He would go up to Irene and say:\r\n“Well, I’ve won my case, and there’s an end of it! I don’t want to be hard on Bosinney; I’ll see if we can’t come to some arrangement; he shan’t be pressed. And now let’s turn over a new leaf! We’ll let the house, and get out of these fogs. We’ll go down to Robin Hill at once. I— I never meant to be rough with you! Let’s shake hands — and —” Perhaps she would let him kiss her, and forget!\r\nWhen he came out of Timothy’s his intentions were no longer so simple. The smouldering jealousy and suspicion of months blazed up within him. He would put an end to that sort of thing once and for all; he would not have her drag his name in the dirt! If she could not or would not love him, as was her duty and his right — she should not play him tricks with anyone else! He would tax her with it; threaten to divorce her! That would make her behave; she would never face that. But — but — what if she did? He was staggered; this had not occurred to him.\r\nWhat if she did? What if she made him a confession? How would he stand then? He would have to bring a divorce!\r\nA divorce! Thus close, the word was paralyzing, so utterly at variance with all the principles that had hitherto guided his life. Its lack of compromise appalled him; he felt — like the captain of a ship, going to the side of his vessel, and, with his own hands throwing over the most precious of his bales. This jettisoning of his property with his own hand seemed uncanny to Soames. It would injure him in his profession: He would have to get rid of the house at Robin Hill, on which he had spent so much money, so much anticipation — and at a sacrifice. And she! She would no longer belong to him, not even in name! She would pass out of his life, and he — he should never see her again!\r\nHe traversed in the cab the length of a street without getting beyond the thought that he should never see her again!\r\nBut perhaps there was nothing to confess, even now very likely there was nothing to confess. Was it wise to push things so far? Was it wise to put himself into a position where he might have to eat his words? The result of this case would ruin Bosinney; a ruined man was desperate, but — what could he do? He might go abroad, ruined men always went abroad. What could they do — if indeed it was ‘they’— without money? It would be better to wait and see how things turned out. If necessary, he could have her watched. The agony of his jealousy (for all the world like the crisis of an aching tooth) came on again; and he almost cried out. But he must decide, fix on some course of action before he got home. When the cab drew up at the door, he had decided nothing.\r\nHe entered, pale, his hands moist with perspiration, dreading to meet her, burning to meet her, ignorant of what he was to say or do.\r\nThe maid Bilson was in the hall, and in answer to his question: “Where is your mistress?” told him that Mrs. Forsyte had left the house about noon, taking with her a trunk and bag.\r\nSnatching the sleeve of his fur coat away from her grasp, he confronted her:\r\n“What?” he exclaimed; “what’s that you said?” Suddenly recollecting that he must not betray emotion, he added: “What message did she leave?” and noticed with secret terror the startled look of the maid’s eyes.\r\n“Mrs. Forsyte left no message, sir.”\r\n“No message; very well, thank you, that will do. I shall be dining out.”\r\nThe maid went downstairs, leaving him still in his fur coat, idly turning over the visiting cards in the porcelain bowl that stood on the carved oak rug chest in the hall.\r\nMr. and Mrs. Bareham Culcher. Mrs. Septimus Small. Mrs. Baynes. Mr. Solomon Thornworthy. Lady Bellis. Miss Hermione Bellis. Miss Winifred Bellis. Miss Ella Bellis.\r\nWho the devil were all these people? He seemed to have forgotten all familiar things. The words ‘no message — a trunk, and a bag,’ played a hide-and-seek in his brain. It was incredible that she had left no message, and, still in his fur coat, he ran upstairs two steps at a time, as a young married man when he comes home will run up to his wife’s room.\r\nEverything was dainty, fresh, sweet-smelling; everything in perfect order. On the great bed with its lilac silk quilt, was the bag she had made and embroidered with her own hands to hold her sleeping things; her slippers ready at the foot; the sheets even turned over at the head as though expecting her.\r\nOn the table stood the silver-mounted brushes and bottles from her dressing bag, his own present. There must, then, be some mistake. What bag had she taken? He went to the bell to summon Bilson, but remembered in time that he must assume knowledge of where Irene had gone, take it all as a matter of course, and grope out the meaning for himself.\r\nHe locked the doors, and tried to think, but felt his brain going round; and suddenly tears forced themselves into his eyes.\r\nHurriedly pulling off his coat, he looked at himself in the mirror.\r\nHe was too pale, a greyish tinge all over his face; he poured out water, and began feverishly washing.\r\nHer silver-mounted brushes smelt faintly of the perfumed lotion she used for her hair; and at this scent the burning sickness of his jealousy seized him again.\r\nStruggling into his fur, he ran downstairs and out into the street.\r\nHe had not lost all command of himself, however, and as he went down Sloane Street he framed a story for use, in case he should not find her at Bosinney’s. But if he should? His power of decision again failed; he reached the house without knowing what he should do if he did find her there.\r\nIt was after office hours, and the street door was closed; the woman who opened it could not say whether Mr. Bosinney were in or no; she had not seen him that day, not for two or three days; she did not attend to him now, nobody attended to him, he. . . .\r\nSoames interrupted her, he would go up and see for himself. He went up with a dogged, white face.\r\nThe top floor was unlighted, the door closed, no one answered his ringing, he could hear no sound. He was obliged to descend, shivering under his fur, a chill at his heart. Hailing a cab, he told the man to drive to Park Lane.\r\nOn the way he tried to recollect when he had last given her a cheque; she could not have more than three or four pounds, but there were her jewels; and with exquisite torture he remembered how much money she could raise on these; enough to take them abroad; enough for them to live on for months! He tried to calculate; the cab stopped, and he got out with the calculation unmade.\r\nThe butler asked whether Mrs. Soames was in the cab, the master had told him they were both expected to dinner.\r\nSoames answered: “No. Mrs. Forsyte has a cold.”\r\nThe butler was sorry.\r\nSoames thought he was looking at him inquisitively, and remembering that he was not in dress clothes, asked: “Anybody here to dinner, Warmson?”\r\n“Nobody but Mr. and Mrs. Dartie, sir.”\r\nAgain it seemed to Soames that the butler was looking curiously at him. His composure gave way.\r\n“What are you looking at?” he said. “What’s the matter with me, eh?”\r\nThe butler blushed, hung up the fur coat, murmured something that sounded like: “Nothing, sir, I’m sure, sir,” and stealthily withdrew.\r\nSoames walked upstairs. Passing the drawing-room without a look, he went straight up to his mother’s and father’s bedroom.\r\nJames, standing sideways, the concave lines of his tall, lean figure displayed to advantage in shirt-sleeves and evening waistcoat, his head bent, the end of his white tie peeping askew from underneath one white Dundreary whisker, his eyes peering with intense concentration, his lips pouting, was hooking the top hooks of his wife’s bodice. Soames stopped; he felt half-choked, whether because he had come upstairs too fast, or for some other reason. He — he himself had never — never been asked to. . . .\r\nHe heard his father’s voice, as though there were a pin in his mouth, saying: “Who’s that? Who’s there? What d’you want?” His mother’s: “Here, Felice, come and hook this; your master’ll never get done.”\r\nHe put his hand up to his throat, and said hoarsely:\r\n“It’s I— Soames!”\r\nHe noticed gratefully the affectionate surprise in Emily’s: “Well, my dear boy?” and James’, as he dropped the hook: “What, Soames! What’s brought you up? Aren’t you well?”\r\nHe answered mechanically: “I’m all right,” and looked at them, and it seemed impossible to bring out his news.\r\nJames, quick to take alarm, began: “You don’t look well. I expect you’ve taken a chill — it’s liver, I shouldn’t wonder. Your mother’ll give you. . . . ”\r\nBut Emily broke in quietly: “Have you brought Irene?”\r\nSoames shook his head.\r\n“No,” he stammered, “she — she’s left me!”\r\nEmily deserted the mirror before which she was standing. Her tall, full figure lost its majesty and became very human as she came running over to Soames.\r\n“My dear boy! My dear boy!”\r\nShe put her lips to his forehead, and stroked his hand.\r\nJames, too, had turned full towards his son; his face looked older.\r\n“Left you?” he said. “What d’you mean — left you? You never told me she was going to leave you.”\r\nSoames answered surlily: “How could I tell? What’s to be done?”\r\nJames began walking up and down; he looked strange and stork-like without a coat. “What’s to be done!” he muttered. “How should I know what’s to be done? What’s the good of asking me? Nobody tells me anything, and then they come and ask me what’s to be done; and I should like to know how I’m to tell them! Here’s your mother, there she stands; she doesn’t say anything. What I should say you’ve got to do is to follow her..”\r\nSoames smiled; his peculiar, supercilious smile had never before looked pitiable.\r\n“I don’t know where she’s gone,” he said.\r\n“Don’t know where she’s gone!” said James. “How d’you mean, don’t know where she’s gone? Where d’you suppose she’s gone? She’s gone after that young Bosinney, that’s where she’s gone. I knew how it would be.”\r\nSoames, in the long silence that followed, felt his mother pressing his hand. And all that passed seemed to pass as though his own power of thinking or doing had gone to sleep.\r\nHis father’s face, dusky red, twitching as if he were going to cry, and words breaking out that seemed rent from him by some spasm in his soul.\r\n“There’ll be a scandal; I always said so.” Then, no one saying anything: “And there you stand, you and your mother!”\r\nAnd Emily’s voice, calm, rather contemptuous: “Come, now, James! Soames will do all that he can.”\r\nAnd James, staring at the floor, a little brokenly: “Well, I can’t help you; I’m getting old. Don’t you be in too great a hurry, my boy.”\r\nAnd his mother’s voice again: “Soames will do all he can to get her back. We won’t talk of it. It’ll all come right, I dare say.”\r\nAnd James: “Well, I can’t see how it can come right. And if she hasn’t gone off with that young Bosinney, my advice to you is not to listen to her, but to follow her and get her back.”\r\nOnce more Soames felt his mother stroking his hand, in token of her approval, and as though repeating some form of sacred oath, he muttered between his teeth: “I will!”\r\nAll three went down to the drawing-room together. There, were gathered the three girls and Dartie; had Irene been present, the family circle would have been complete.\r\nJames sank into his armchair, and except for a word of cold greeting to Dartie, whom he both despised and dreaded, as a man likely to be always in want of money, he said nothing till dinner was announced. Soames, too, was silent; Emily alone, a woman of cool courage, maintained a conversation with Winifred on trivial subjects. She was never more composed in her manner and conversation than that evening.\r\nA decision having been come to not to speak of Irene’s flight, no view was expressed by any other member of the family as to the right course to be pursued; there can be little doubt, from the general tone adopted in relation to events as they afterwards turned out, that James’s advice: “Don’t you listen to her, follow-her and get her back!” would, with here and there an exception, have been regarded as sound, not only in Park Lane, but amongst the Nicholases, the Rogers, and at Timothy’s. Just as it would surely have been endorsed by that wider body of Forsytes all over London, who were merely excluded from judgment by ignorance of the story.\r\nIn spite then of Emily’s efforts, the dinner was served by Warmson and the footman almost in silence. Dartie was sulky, and drank all he could get; the girls seldom talked to each other at any time. James asked once where June was, and what she was doing with herself in these days. No one could tell him. He sank back into gloom. Only when Winifred recounted how little Publius had given his bad penny to a beggar, did he brighten up.\r\n“Ah!” he said, “that’s a clever little chap. I don’t know what’ll become of him, if he goes on like this. An intelligent little chap, I call him!” But it was only a flash.\r\nThe courses succeeded one another solemnly, under the electric light, which glared down onto the table, but barely reached the principal ornament of the walls, a so-called ‘Sea Piece by Turner,’ almost entirely composed of cordage and drowning men.\r\nChampagne was handed, and then a bottle of James’ prehistoric port, but as by the chill hand of some skeleton.\r\nAt ten o’clock Soames left; twice in reply to questions, he had said that Irene was not well; he felt he could no longer trust himself. His mother kissed him with her large soft kiss, and he pressed her hand, a flush of warmth in his cheeks. He walked away in the cold wind, which whistled desolately round the corners of the streets, under a sky of clear steel-blue, alive with stars; he noticed neither their frosty greeting, nor the crackle of the curled-up plane-leaves, nor the night-women hurrying in their shabby furs, nor the pinched faces of vagabonds at street corners. Winter was come! But Soames hastened home, oblivious; his hands trembled as he took the late letters from the gilt wire cage into which they had been thrust through the slit in the door.’\r\nNone from Irene!\r\nHe went into the dining-room; the fire was bright there, his chair drawn up to it, slippers ready, spirit case, and carven cigarette box on the table; but after staring at it all for a minute or two, he turned out the light and went upstairs. There was a fire too in his dressing-room, but her room was dark and cold. It was into this room that Soames went.\r\nHe made a great illumination with candles, and for a long time continued pacing up and down between the bed and the door. He could not get used to the thought that she had really left him, and as though still searching for some message, some reason, some reading of all the mystery of his married life, he began opening every recess and drawer.\r\nThere were her dresses; he had always liked, indeed insisted, that she should be well-dressed — she had taken very few; two or three at most, and drawer after drawer; full of linen and silk things, was untouched.\r\nPerhaps after all it was only a freak, and she had gone to the seaside for a few days’ change. If only that were so, and she were really coming back, he would never again do as he had done that fatal night before last, never again run that risk — though it was her duty, her duty as a wife; though she did belong to him — he would never again run that risk; she was evidently not quite right in her head!\r\nHe stooped over the drawer where she kept her jewels; it was not locked, and came open as he pulled; the jewel box had the key in it. This surprised him until he remembered that it was sure to be empty. He opened it.\r\nIt was far from empty. Divided, in little green velvet compartments, were all the things he had given her, even her watch, and stuck into the recess that contained — the watch was a three-cornered note addressed ‘Soames Forsyte,’ in Irene’s handwriting:\r\n‘I think I have taken nothing that you or your people have given me.’ And that was all.\r\nHe looked at the clasps and bracelets of diamonds and pearls, at the little flat gold watch with a great diamond set in sapphires, at the chains and rings, each in its nest, and the tears rushed up in his eyes and dropped upon them.\r\nNothing that she could have done, nothing that she had done, brought home to him like this the inner significance of her act. For the moment, perhaps, he understood nearly all there was to understand — understood that she loathed him, that she had loathed him for years, that for all intents and purposes they were like people living in different worlds, that there was no hope for him, never had been; even, that she had suffered — that she was to be pitied.\r\nIn that moment of emotion he betrayed the Forsyte in him — forgot himself, his interests, his property — was capable of almost anything; was lifted into the pure ether of the selfless and unpractical.\r\nSuch moments pass quickly.\r\nAnd as though with the tears he had purged himself of weakness, he got up, locked the box, and slowly, almost trembling, carried it with him into the other room.\r\nChapter 30  June’s Victory\r\nJune had waited for her chance, scanning the duller columns of the journals, morning and evening with an assiduity which at first puzzled old Jolyon; and when her chance came, she took it with all the promptitude and resolute tenacity of her character.\r\nShe will always remember best in her life that morning when at last she saw amongst the reliable Cause List of the Times newspaper, under the heading of Court XIII, Mr. Justice Bentham, the case of Forsyte v. Bosinney.\r\nLike a gambler who stakes his last piece of money, she had prepared to hazard her all upon this throw; it was not her nature to contemplate defeat. How, unless with the instinct of a woman in love, she knew that Bosinney’s discomfiture in this action was assured, cannot be told — on this assumption, however, she laid her plans, as upon a certainty.\r\nHalf past eleven found her at watch in the gallery of Court XIII., and there she remained till the case of Forsyte v. Bosinney was over. Bosinney’s absence did not disquiet her; she had felt instinctively that he would not defend himself. At the end of the judgment she hastened down, and took a cab to his rooms.\r\nShe passed the open street-door and the offices on the three lower floors without attracting notice; not till she reached the top did her difficulties begin.\r\nHer ring was not answered; she had now to make up her mind whether she would go down and ask the caretaker in the basement to let her in to await Mr. Bosinney’s return, or remain patiently outside the door, trusting that no one would, come up. She decided on the latter course.\r\nA quarter of an hour had passed in freezing vigil on the landing, before it occurred to her that Bosinney had been used to leave the key of his rooms under the door-mat. She looked and found it there. For some minutes she could not decide to make use of it; at last she let herself in and left the door open that anyone who came might see she was there on business.\r\nThis was not the same June who had paid the trembling visit five months ago; those months of suffering and restraint had made her less sensitive; she had dwelt on this visit so long, with such minuteness, that its terrors were discounted beforehand. She was not there to fail this time, for if she failed no one could help her.\r\nLike some mother beast on the watch over her young, her little quick figure never stood still in that room, but wandered from wall to wall, from window to door, fingering now one thing, now another. There was dust everywhere, the room could not have been cleaned for weeks, and June, quick to catch at anything that should buoy up her hope, saw in it a sign that he had been obliged, for economy’s sake, to give up his servant.\r\nShe looked into the bedroom; the bed was roughly made, as though by the hand of man. Listening intently, she darted in, and peered into his cupboards. A few shirts and collars, a pair of muddy boots — the room was bare even of garments.\r\nShe stole back to the sitting-room, and now she noticed the absence of all the little things he had set store by. The clock that had been his mother’s, the field-glasses that had hung over the sofa; two really valuable old prints of Harrow, where his father had been at school, and last, not least, the piece of Japanese pottery she herself had given him. All were gone; and in spite of the rage roused within her championing soul at the thought that the world should treat him thus, their disappearance augured happily for the success of her plan.\r\nIt was while looking at the spot where the piece of Japanese pottery had stood that she felt a strange certainty of being watched, and, turning, saw Irene in the open doorway.\r\nThe two stood gazing at each other for a minute in silence; then June walked forward and held out her hand. Irene did not take it.\r\nWhen her hand was refused, June put it behind her. Her eyes grew steady with anger; she waited for Irene to speak; and thus waiting, took in, with who-knows-what rage of jealousy, suspicion, and curiosity, every detail of her friend’s face and dress and figure.\r\nIrene was clothed in her long grey fur; the travelling cap on her head left a wave of gold hair visible above her forehead. The soft fullness of the coat made her face as small as a child’s.\r\nUnlike June’s cheeks, her cheeks had no colour in them, but were ivory white and pinched as if with cold. Dark circles lay round her eyes. In one hand she held a bunch of violets.\r\nShe looked back at June, no smile on her lips; and with those great dark eyes fastened on her, the girl, for all her startled anger, felt something of the old spell.\r\nShe spoke first, after all.\r\n“What have you come for?” But the feeling that she herself was being asked the same question, made her add: “This horrible case. I came to tell him — he has lost it.”\r\nIrene did not speak, her eyes never moved from June’s face, and the girl cried:\r\n“Don’t stand there as if you were made of stone!”\r\nIrene laughed: “I wish to God I were!”\r\nBut June turned away: “Stop!” she cried, “don’t tell me! I don’t want to hear! I don’t want to hear what you’ve come for. I don’t want to hear!” And like some uneasy spirit, she began swiftly walking to and fro. Suddenly she broke out:\r\n“I was here first. We can’t both stay here together!”\r\nOn Irene’s face a smile wandered up, and died out like a flicker of firelight. She did not move. And then it was that June perceived under the softness and immobility of this figure something desperate and resolved; something not to be turned away, something dangerous. She tore off her hat, and, putting both hands to her brow, pressed back the bronze mass of her hair.\r\n“You have no right here!” she cried defiantly.\r\nIrene answered: “I have no right anywhere!\r\n“What do you mean?”\r\n“I have left Soames. You always wanted me to!”\r\nJune put her hands over her ears.\r\n“Don’t! I don’t want to hear anything — I don’t want to know anything. It’s impossible to fight with you! What makes you stand like that? Why don’t you go?”\r\nIrene’s lips moved; she seemed to be saying: “Where should I go?”\r\nJune turned to the window. She could see the face of a clock down in the street. It was nearly four. At any moment he might come! She looked back across her shoulder, and her face was distorted with anger.\r\nBut Irene had not moved; in her gloved hands she ceaselessly turned and twisted the little bunch of violets.\r\nThe tears of rage and disappointment rolled down June’s cheeks.\r\n“How could you come?” she said. “You have been a false friend to me!”\r\nAgain Irene laughed. June saw that she had played a wrong card, and broke down.\r\n“Why have you come?” she sobbed. “You’ve ruined my life, and now you want to ruin his!”\r\nIrene’s mouth quivered; her eyes met June’s with a look so mournful that the girl cried out in the midst of her sobbing, “No, no!”\r\nBut Irene’s head bent till it touched her breast. She turned, and went quickly out, hiding her lips with the little bunch of violets.\r\nJune ran to the door. She heard the footsteps going down and down. She called out: “Come back, Irene! Come back!”\r\nThe footsteps died away. . . .\r\nBewildered and torn, the girl stood at the top of the stairs. Why had Irene gone, leaving her mistress of the field? What did it mean? Had she really given him up to her? Or had she . . .? And she was the prey of a gnawing uncertainty. . . . Bosinney did not come. . . .\r\nAbout six o’clock that afternoon old Jolyon returned from Wistaria Avenue, where now almost every day he spent some hours, and asked if his grand-daughter were upstairs. On being told that she had just come in, he sent up to her room to request her to come down and speak to him.\r\nHe had made up his mind to tell her that he was reconciled with her father. In future bygones must be bygones. He would no longer live alone, or practically alone, in this great house; he was going to give it up, and take one in the country for his son, where they could all go and live together. If June did not like this, she could have an allowance and live by herself. It wouldn’t make much difference to her, for it was a long time since she had shown him any affection.\r\nBut when June came down, her face was pinched and piteous; there was a strained, pathetic look in her eyes. She snuggled up in her old attitude on the arm of his chair, and what he said compared but poorly with the clear, authoritative, injured statement he had thought out with much care. His heart felt sore, as the great heart of a mother-bird feels sore when its youngling flies and bruises its wing. His words halted, as though he were apologizing for having at last deviated from the path of virtue, and succumbed, in defiance of sounder principles, to his more natural instincts.\r\nHe seemed nervous lest, in thus announcing his intentions, he should be setting his granddaughter a bad example; and now that he came to the point, his way of putting the suggestion that, if she didn’t like it, she could live by herself and lump it, was delicate in the extreme.’\r\n“And if, by any chance, my darling,” he said, “you found you didn’t get on — with them, why, I could make that all right. You could have what you liked. We could find a little flat in London where you could set up, and I could be running to continually. But the children,” he added, “are dear little things!”\r\nThen, in the midst of this grave, rather transparent, explanation of changed policy, his eyes twinkled. “This’ll astonish Timothy’s weak nerves. That precious young thing will have something to say about this, or I’m a Dutchman!”\r\nJune had not yet spoken. Perched thus on the arm of his chair, with her head above him, her face was invisible. But presently he felt her warm cheek against his own, and knew that, at all events, there was nothing very alarming in her attitude towards his news. He began to take courage.\r\n“You’ll like your father,” he said —“an amiable chap. Never was much push about him, but easy to get on with. You’ll find him artistic and all that.”\r\nAnd old Jolyon bethought him of the dozen or so water-colour drawings all carefully locked up in his bedroom; for now that his son was going to become a man of property he did not think them quite such poor things as heretofore.\r\n“As to your — your stepmother,” he said, using the word with some little difficulty, “I call her a refined woman — a bit of a Mrs. Gummidge, I shouldn’t wonder — but very fond of Jo. And the children,” he repeated — indeed, this sentence ran like music through all his solemn self-justification —“are sweet little things!”\r\nIf June had known, those words but reincarnated that tender love for little children, for the young and weak, which in the past had made him desert his son for her tiny self, and now, as the cycle rolled, was taking him from her.\r\nBut he began to get alarmed at her silence, and asked impatiently: “Well, what do you say?”\r\nJune slid down to his knee, and she in her turn began her tale. She thought it would all go splendidly; she did not see any difficulty, and she did not care a bit what people thought.\r\nOld Jolyon wriggled. H’m! then people would think! He had thought that after all these years perhaps they wouldn’t! Well, he couldn’t help it! Nevertheless, he could not approve of his granddaughter’s way of putting it — she ought to mind what people thought!\r\nYet he said nothing. His feelings were too mixed, too inconsistent for expression.\r\nNo — went on June he did not care; what business was it of theirs? There was only one thing — and with her cheek pressing against his knee, old Jolyon knew at once that this something was no trifle: As he was going to buy a house in the country, would he not — to please her — buy that splendid house of Soames’ at Robin Hill? It was finished, it was perfectly beautiful, and no one would live in it now. They would all be so happy there.\r\nOld Jolyon was on the alert at once. Wasn’t the ‘man of property’ going to live in his new house, then? He never alluded to Soames now but under this title.\r\n“No”— June said —“he was not; she knew that he was not!”\r\nHow did she know?\r\nShe could not tell him, but she knew. She knew nearly for certain! It was most unlikely; circumstances had changed! Irene’s words still rang in her head: “I have left Soames. Where should I go?”\r\nBut she kept silence about that.\r\nIf her grandfather would only buy it and settle that wretched claim that ought never to have been made on Phil! It would be the very best thing for everybody, and everything — everything might come straight.\r\nAnd June put her lips to his forehead, and pressed them close.\r\nBut old Jolyon freed himself from her caress, his face wore the judicial look which came upon it when he dealt with affairs. He asked: What did she mean? There was something behind all this — had she been seeing Bosinney?\r\nJune answered: “No; but I have been to his rooms.”\r\n“Been to his rooms? Who took you there?”\r\nJune faced him steadily. “I went alone. He has lost that case. I don’t care whether it was right or wrong. I want to help him; and I will!”\r\nOld Jolyon asked again: “Have you seen him?” His glance seemed to pierce right through the girl’s eyes into her soul.\r\nAgain June answered: “No; he was not there. I waited, but he did not come.”\r\nOld Jolyon made a movement of relief. She had risen and looked down at him; so slight, and light, and young, but so fixed, and so determined; and disturbed, vexed, as he was, he could not frown away that fixed look. The feeling of being beaten, of the reins having slipped, of being old and tired, mastered him.\r\n“Ah!” he said at last, “you’ll get yourself into a mess one of these days, I can see. You want your own way in everything.”\r\nVisited by one of his strange bursts of philosophy, he added: “Like that you were born; and like that you’ll stay until you die!”\r\nAnd he, who in his dealings with men of business, with Boards, with Forsytes of all descriptions, with such as were not Forsytes, had always had his own way, looked at his indomitable grandchild sadly — for he felt in her that quality which above all others he unconsciously admired.\r\n“Do you know what they say is going on?” he said slowly.\r\nJune crimsoned.\r\n“Yes — no! I know — and I don’t know — I don’t care!” and she stamped her foot.\r\n“I believe,” said old Jolyon, dropping his eyes, “that you’d have him if he were dead!”\r\nThere was a long silence before he spoke again.\r\n“But as to buying this house — you don’t know what you’re talking about!”\r\nJune said that she did. She knew that he could get it if he wanted. He would only have to give what it cost.\r\n“What it cost! You know nothing about it. I won’t go to Soames — I’ll have nothing more to do with that young man.”\r\n“But you needn’t; you can go to Uncle James. If you can’t buy the house, will you pay his lawsuit claim? I know he is terribly hard up — I’ve seen it. You can stop it out of my money!”\r\nA twinkle came into old Jolyon’s eyes.\r\n“Stop it out of your money! A pretty way. And what will you do, pray, without your money?”\r\nBut secretly, the idea of wresting the house from James and his son had begun to take hold of him. He had heard on Forsyte ‘Change much comment, much rather doubtful praise of this house. It was ‘too artistic,’ but a fine place. To take from the ‘man of property’ that on which he had set his heart, would be a crowning triumph over James, practical proof that he was going to make a man of property of Jo, to put him back in his proper position, and there to keep him secure. Justice once for all on those who had chosen to regard his son as a poor, penniless outcast.\r\nHe would see, he would see! It might be out of the question; he was not going to pay a fancy price, but if it could be done, why, perhaps he would do it!\r\nAnd still more secretly he knew that he could not refuse her.\r\nBut he did not commit himself. He would think it over — he said to June.\r\nChapter 31  Bosinney’s Departure\r\nOld Jolyon was not given to hasty decisions; it is probable that he would have continued to think over the purchase of the house at Robin Hill, had not June’s face told him that he would have no peace until he acted.\r\nAt breakfast next morning she asked him what time she should order the carriage.\r\n“Carriage!” he said, with some appearance of innocence; “what for? I’m not going out!”\r\nShe answered: “If you don’t go early, you won’t catch Uncle James before he goes into the City.”\r\n“James! what about your Uncle James?”\r\n“The house,” she replied, in such a voice that he no longer pretended ignorance.\r\n“I’ve not made up my mind,” he said.\r\n“You must! You must! Oh! Gran — think of me!”\r\nOld Jolyon grumbled out: “Think of you — I’m always thinking of you, but you don’t think of yourself; you don’t think what you’re letting yourself in for. Well, order the carriage at ten!”\r\nAt a quarter past he was placing his umbrella in the stand at Park Lane — he did not choose to relinquish his hat and coat; telling Warmson that he wanted to see his master, he went, without being announced, into the study, and sat down.\r\nJames was still in the dining-room talking to Soames, who had come round again before breakfast. On hearing who his visitor was, he muttered nervously: “Now, what’s he want, I wonder?”\r\nHe then got up.\r\n“Well,” he said to Soames, “don’t you go doing anything in a hurry. The first thing is to find out where she is — I should go to Stainer’s about it; they’re the best men, if they can’t find her, nobody can.” And suddenly moved to strange softness, he muttered to himself, “Poor little thing, I can’t tell what she was thinking about!” and went out blowing his nose.\r\nOld Jolyon did not rise on seeing his brother, but held out his hand, and exchanged with him the clasp of a Forsyte.\r\nJames took another chair by the table, and leaned his head on his hand.\r\n“Well,” he said, “how are you? We don’t see much of you nowadays!”\r\nOld Jolyon paid no attention to the remark.\r\n“How’s Emily?” he asked; and waiting for no reply, went on “I’ve come to see you about this affair of young Bosinney’s. I’m told that new house of his is a white elephant.”\r\n“I don’t know anything about a white elephant,” said James, “I know he’s lost his case, and I should say he’ll go bankrupt.”\r\nOld Jolyon was not slow to seize the opportunity this gave him.\r\n“I shouldn’t wonder a bit!” he agreed; “and if he goes bankrupt, the ‘man of property’— that is, Soames’ll be out of pocket. Now, what I was thinking was this: If he’s not going to live there. . . . ”\r\nSeeing both surprise and suspicion in James’ eye, he quickly went on: “I don’t want to know anything; I suppose Irene’s put her foot down — it’s not material to me. But I’m thinking of a house in the country myself, not too far from London, and if it suited me I don’t say that I mightn’t look at it, at a price.”\r\nJames listened to this statement with a strange mixture of doubt, suspicion, and relief, merging into a dread of something behind, and tinged with the remains of his old undoubted reliance upon his elder brother’s good faith and judgment. There was anxiety, too, as to what old Jolyon could have heard and how he had heard it; and a sort of hopefulness arising from the thought that if June’s connection with Bosinney were completely at an end, her grandfather would hardly seem anxious to help the young fellow. Altogether he was puzzled; as he did not like either to show this, or to commit himself in any way, he said:\r\n“They tell me you’re altering your Will in favour of your son.”\r\nHe had not been told this; he had merely added the fact of having seen old Jolyon with his son and grandchildren to the fact that he had taken his Will away from Forsyte, Bustard and Forsyte. The shot went home.\r\n“Who told you that?” asked old Jolyon.\r\n“I’m sure I don’t know,” said James; “I can’t remember names — I know somebody told me Soames spent a lot of money on this house; he’s not likely to part with it except at a good price.”\r\n“Well,” said old Jolyon, “if, he thinks I’m going to pay a fancy price, he’s mistaken. I’ve not got the money to throw away that he seems to have. Let him try and sell it at a forced sale, and see what he’ll get. It’s not every man’s house, I hear!”\r\nJames, who was secretly also of this opinion, answered: “It’s a gentleman’s house. Soames is here now if you’d like to see him.”\r\n“No,” said old Jolyon, “I haven’t got as far as that; and I’m not likely to, I can see that very well if I’m met in this manner!”\r\nJames was a little cowed; when it came to the actual figures of a commercial transaction he was sure of himself, for then he was dealing with facts, not with men; but preliminary negotiations such as these made him nervous — he never knew quite how far he could go.\r\n“Well,” he said, “I know nothing about it. Soames, he tells me nothing; I should think he’d entertain it — it’s a question of price.”\r\n“Oh!” said old Jolyon, “don’t let him make a favour of it!” He placed his hat on his head in dudgeon.\r\nThe door was opened and Soames came in.\r\n“There’s a policeman out here,” he said with his half smile, “for Uncle Jolyon.”\r\nOld Jolyon looked at him angrily, and James said: “A policeman? I don’t know anything about a policeman. But I suppose you know something about him,” he added to old Jolyon with a look of suspicion: “I suppose you’d better see him!”\r\nIn the hall an Inspector of Police stood stolidly regarding with heavy-lidded pale-blue eyes the fine old English furniture picked up by James at the famous Mavrojano sale in Portman Square. “You’ll find my brother in there,” said James.\r\nThe Inspector raised his fingers respectfully to his peaked cap, and entered the study.\r\nJames saw him go in with a strange sensation.\r\n“Well,” he said to Soames, “I suppose we must wait and see what he wants. Your uncle’s been here about the house!”\r\nHe returned with Soames into the dining-room, but could not rest.\r\n“Now what does he want?” he murmured again.\r\n“Who?” replied Soames: “the Inspector? They sent him round from Stanhope Gate, that’s all I know. That ‘nonconformist’ of Uncle Jolyon’s has been pilfering, I shouldn’t wonder!”\r\nBut in spite of his calmness, he too was ill at ease.\r\nAt the end of ten minutes old Jolyon came in. He walked up to the table, and stood there perfectly silent pulling at his long white moustaches. James gazed up at him with opening mouth; he had never seen his brother look like this.\r\nOld Jolyon raised his hand, and said slowly:\r\n“Young Bosinney has been run over in the fog and killed.”\r\nThen standing above his brother and his nephew, and looking down at him with his deep eyes:\r\n“There’s — some — talk — of — suicide,” he said.\r\nJames’ jaw dropped. “Suicide! What should he do that for?”\r\nOld Jolyon answered sternly: “God knows, if you and your son don’t!”\r\nBut James did not reply.\r\nFor all men of great age, even for all Forsytes, life has had bitter experiences. The passer-by, who sees them wrapped in cloaks of custom, wealth, and comfort, would never suspect that such black shadows had fallen on their roads. To every man of great age — to Sir Walter Bentham himself — the idea of suicide has once at least been present in the ante-room of his soul; on the threshold, waiting to enter, held out from the inmost chamber by some chance reality, some vague fear, some painful hope. To Forsytes that final renunciation of property is hard. Oh! it is hard! Seldom — perhaps never — can they achieve, it; and yet, how near have they not sometimes been!\r\nSo even with James! Then in the medley of his thoughts, he broke out: “Why I saw it in the paper yesterday: ‘Run over in the fog!’ They didn’t know his name!” He turned from one face to the other in his confusion of soul; but instinctively all the time he was rejecting that rumour of suicide. He dared not entertain this thought, so against his interest, against the interest of his son, of every Forsyte. He strove against it; and as his nature ever unconsciously rejected that which it could not with safety accept, so gradually he overcame this fear. It was an accident! It must have been!\r\nOld Jolyon broke in on his reverie.\r\n“Death was instantaneous. He lay all day yesterday at the hospital. There was nothing to tell them who he was. I am going there now; you and your son had better come too.”\r\nNo one opposing this command he led the way from the room.\r\nThe day was still and clear and bright, and driving over to Park Lane from Stanhope Gate, old Jolyon had had the carriage open. Sitting back on the padded cushions, finishing his cigar, he had noticed with pleasure the keen crispness of the air, the bustle of the cabs and people; the strange, almost Parisian, alacrity that the first fine day will bring into London streets after a spell of fog or rain. And he had felt so happy; he had not felt like it for months. His confession to June was off his mind; he had the prospect of his son’s, above all, of his grandchildren’s company in the future —(he had appointed to meet young Jolyon at the Hotch Potch that very manning to — discuss it again); and there was the pleasurable excitement of a coming encounter, a coming victory, over James and the ‘man of property’ in the matter of the house.\r\nHe had the carriage closed now; he had no heart to look on gaiety; nor was it right that Forsytes should be seen driving with an Inspector of Police.\r\nIn that carriage the Inspector spoke again of the death:\r\n“It was not so very thick — Just there. The driver says the gentleman must have had time to see what he was about, he seemed to walk right into it. It appears that he was very hard up, we found several pawn tickets at his rooms, his account at the bank is overdrawn, and there’s this case in to-day’s papers;” his cold blue eyes travelled from one to another of the three Forsytes in the carriage.\r\nOld Jolyon watching from his corner saw his brother’s face change, and the brooding, worried, look deepen on it. At the Inspector’s words, indeed, all James’ doubts and fears revived. Hard-up — pawn-tickets — an overdrawn account! These words that had all his life been a far-off nightmare to him, seemed to make uncannily real that suspicion of suicide which must on no account be entertained. He sought his son’s eye; but lynx-eyed, taciturn, immovable, Soames gave no answering look. And to old Jolyon watching, divining the league of mutual defence between them, there came an overmastering desire to have his own son at his side, as though this visit to the dead man’s body was a battle in which otherwise he must single-handed meet those two. And the thought of how to keep June’s name out of the business kept whirring in his brain. James had his son to support him! Why should he not send for Jo?\r\nTaking out his card-case, he pencilled the following message:\r\n‘Come round at once. I’ve sent the carriage for you.’\r\nOn getting out he gave this card to his coachman, telling him to drive — as fast as possible to the Hotch Potch Club, and if Mr. Jolyon Forsyte were there to give him the card and bring him at once. If not there yet, he was to wait till he came.\r\nHe followed the others slowly up the steps, leaning on his umbrella, and stood a moment to get his breath. The Inspector said: “This is the mortuary, sir. But take your time.”\r\nIn the bare, white-walled room, empty of all but a streak of sunshine smeared along the dustless floor, lay a form covered by a sheet. With a huge steady hand the Inspector took the hem and turned it back. A sightless face gazed up at them, and on either side of that sightless defiant face the three Forsytes gazed down; in each one of them the secret emotions, fears, and pity of his own nature rose and fell like the rising, falling waves of life, whose wish those white walls barred out now for ever from Bosinney. And in each one of them the trend of his nature, the odd essential spring, which moved him in fashions minutely, unalterably different from those of every other human being, forced him to a different attitude of thought. Far from the others, yet inscrutably close, each stood thus, alone with death, silent, his eyes lowered.\r\nThe Inspector asked softly:\r\n“You identify the gentleman, sir?”\r\nOld Jolyon raised his head and nodded. He looked at his brother opposite, at that long lean figure brooding over the dead man, with face dusky red, and strained grey eyes; and at the figure of Soames white and still by his father’s side. And all that he had felt against those two was gone like smoke in the long white presence of Death. Whence comes it, how comes it — Death? Sudden reverse of all that goes before; blind setting forth on a path that leads to where? Dark quenching of the fire! The heavy, brutal crushing — out that all men must go through, keeping their eyes clear and brave unto the end! Small and of no import, insects though they are! And across old Jolyon’s face there flitted a gleam, for Soames, murmuring to the Inspector, crept noiselessly away.\r\nThen suddenly James raised his eyes. There was a queer appeal in that suspicious troubled look: “I know I’m no match for you,” it seemed to say. And, hunting for handkerchief he wiped his brow; then, bending sorrowful and lank over the dead man, he too turned and hurried out.\r\nOld Jolyon stood, still as death, his eyes fixed on the body. Who shall tell of what he was thinking? Of himself, when his hair was brown like the hair of that young fellow dead before him? Of himself, with his battle just beginning, the long, long battle he had loved; the battle that was over for this young man almost before it had begun? Of his grand-daughter, with her broken hopes? Of that other woman? Of the strangeness, and the pity of it? And the irony, inscrutable, and bitter of that end? Justice! There was no justice for men, for they were ever in the dark!\r\nOr perhaps in his philosophy he thought: Better to be out of, it all! Better to have done with it, like this poor youth. . . .\r\nSome one touched him on the arm.\r\nA tear started up and wetted his eyelash. “Well,” he said, “I’m no good here. I’d better be going. You’ll come to me as soon as you can, Jo,” and with his head bowed he went away.\r\nIt was young Jolyon’s turn to take his stand beside the dead man, round whose fallen body he seemed to see all the Forsytes breathless, and prostrated. The stroke had fallen too swiftly.\r\nThe forces underlying every tragedy — forces that take no denial, working through cross currents to their ironical end, had met and fused with a thunder-clap, flung out the victim, and flattened to the ground all those that stood around.\r\nOr so at all events young Jolyon seemed to see them, lying around Bosinney’s body.\r\nHe asked the Inspector to tell him what had happened, and the latter, like a man who does not every day get such a chance, again detailed such facts as were known.\r\n“There’s more here, sir, however,” he said, “than meets the eye. I don’t believe in suicide, nor in pure accident, myself. It’s more likely I think that he was suffering under great stress of mind, and took no notice of things about him. Perhaps you can throw some light on these.”\r\nHe took from his pocket a little packet and laid it on the table. Carefully undoing it, he revealed a lady’s handkerchief, pinned through the folds with a pin of discoloured Venetian gold, the stone of which had fallen from the socket. A scent of dried violets rose to young Jolyon’s nostrils.\r\n“Found in his breast pocket,” said the Inspector; “the name has been cut away!”\r\nYoung Jolyon with difficulty answered: “I’m afraid I cannot help you!” But vividly there rose before him the face he had seen light up, so tremulous and glad, at Bosinney’s coming! Of her he thought more than of his own daughter, more than of them all — of her with the dark, soft glance, the delicate passive face, waiting for the dead man, waiting even at that moment, perhaps, still and patient in the sunlight.\r\nHe walked sorrowfully away from the hospital towards his father’s house, reflecting that this death would break up the Forsyte family. The stroke had indeed slipped past their defences into the very wood of their tree. They might flourish to all appearance as before, preserving a brave show before the eyes of London, but the trunk was dead, withered by the same flash that had stricken down Bosinney. And now the saplings would take its place, each one a new custodian of the sense of property.\r\nGood forest of Forsytes! thought young Jolyon — soundest timber of our land!\r\nConcerning the cause of this death — his family would doubtless reject with vigour the suspicion of suicide, which was so compromising! They would take it as an accident, a stroke of fate. In their hearts they would even feel it an intervention of Providence, a retribution — had not Bosinney endangered their two most priceless possessions, the pocket and the hearth? And they would talk of ‘that unfortunate accident of young Bosinney’s,’ but perhaps they would not talk — silence might be better!\r\nAs for himself, he regarded the bus-driver’s account of the accident as of very little value. For no one so madly in love committed suicide for want of money; nor was Bosinney the sort of fellow to set much store by a financial crisis. And so he too rejected this theory of suicide, the dead man’s face rose too clearly before him. Gone in the heyday of his summer — and to believe thus that an accident had cut Bosinney off in the full sweep of his passion was more than ever pitiful to young Jolyon.\r\nThen came a vision of Soames’ home as it now was, and must be hereafter. The streak of lightning had flashed its clear uncanny gleam on bare bones with grinning spaces between, the disguising flesh was gone. . . .\r\nIn the dining-room at Stanhope Gate old Jolyon was sitting alone when his son came in. He looked very wan in his great armchair. And his eyes travelling round the walls with their pictures of still life, and the masterpiece ‘Dutch fishing-boats at Sunset’ seemed as though passing their gaze over his life with its hopes, its gains, its achievements.\r\n“Ah! Jo!” he said, “is that you? I’ve told poor little June. But that’s not all of it. Are you going to Soames’? She’s brought it on herself, I suppose; but somehow I can’t bear to think of her, shut up there — and all alone.” And holding up his thin, veined hand, he clenched it.\r\nChapter 32  Irene’s Return\r\nAfter leaving James and old Jolyon in the mortuary of the hospital, Soames hurried aimlessly along the streets.\r\nThe tragic event of Bosinney’s death altered the complexion of everything. There was no longer the same feeling that to lose a minute would be fatal, nor would he now risk communicating the fact of his wife’s flight to anyone till the inquest was over.\r\nThat morning he had risen early, before the postman came, had taken the first-post letters from the box himself, and, though there had been none from Irene, he had made an opportunity of telling Bilson that her mistress was at the sea; he would probably, he said, be going down himself from Saturday to Monday. This had given him time to breathe, time to leave no stone unturned to find her.\r\nBut now, cut off from taking steps by Bosinney’s death — that strange death, to think of which was like putting a hot iron to his heart, like lifting a great weight from it — he did not know how to pass his day; and he wandered here and there through the streets, looking at every face he met, devoured by a hundred anxieties.\r\nAnd as he wandered, he thought of him who had finished his wandering, his prowling, and would never haunt his house again.\r\nAlready in the afternoon he passed posters announcing the identity of the dead man, and bought the papers to see what they said. He would stop their mouths if he could, and he went into the City, and was closeted with Boulter for a long time.\r\nOn his way home, passing the steps of Jobson’s about half past four, he met George Forsyte, who held out an evening paper to Soames, saying:\r\n“Here! Have you seen this about the poor Buccaneer?”\r\nSoames answered stonily: “Yes.”\r\nGeorge stared at him. He had never liked Soames; he now held him responsible for Bosinney’s death. Soames had done for him — done for him by that act of property that had sent the Buccaneer to run amok that fatal afternoon.\r\n‘The poor fellow,’ he was thinking, ‘was so cracked with jealousy, so cracked for his vengeance, that he heard nothing of the omnibus in that infernal fog.’\r\nSoames had done for him! And this judgment was in George’s eyes.\r\n“They talk of suicide here,” he said at last. “That cat won’t jump.”\r\nSoames shook his head. “An accident,” he muttered.\r\nClenching his fist on the paper, George crammed it into his pocket. He could not resist a parting shot.\r\n“H’mm! All flourishing at home? Any little Soameses yet?”\r\nWith a face as white as the steps of Jobson’s, and a lip raised as if snarling, Soames brushed past him and was gone. . . .\r\nOn reaching home, and entering the little lighted hall with his latchkey, the first thing that caught his eye was his wife’s gold-mounted umbrella lying on the rug chest. Flinging off his fur coat, he hurried to the drawing-room.\r\nThe curtains were drawn for the night, a bright fire of cedar-logs burned in the grate, and by its light he saw Irene sitting in her usual corner on the sofa. He shut the door softly, and went towards her. She did not move, and did not seem to see him.\r\n“So you’ve come back?” he said. “Why are you sitting here in the dark?”\r\nThen he caught sight of her face, so white and motionless that it seemed as though the blood must have stopped flowing in her veins; and her eyes, that looked enormous, like the great, wide, startled brown eyes of an owl.\r\nHuddled in her grey fur against the sofa cushions, she had a strange resemblance to a captive owl, bunched fir its soft feathers against the wires of a cage. The supple erectness of her figure was gone, as though she had been broken by cruel exercise; as though there were no longer any reason for being beautiful, and supple, and erect.\r\n“So you’ve come back,” he repeated.\r\nShe never looked up, and never spoke, the firelight playing over her motionless figure.\r\nSuddenly she tried to rise, but he prevented her; it was then that he understood.\r\nShe had come back like an animal wounded to death, not knowing where to turn, not knowing what she was doing. The sight of her figure, huddled in the fur, was enough.\r\nHe knew then for certain that Bosinney had been her lover; knew that she had seen the report of his death — perhaps, like himself, had bought a paper at the draughty corner of a street, and read it.\r\nShe had come back then of her own accord, to the cage she had pined to be free of — and taking in all the tremendous significance of this, he longed to cry: “Take your hated body, that I love, out of my house! Take away that pitiful white face, so cruel and soft — before I crush it. Get out of my sight; never let me see you again!”\r\nAnd, at those unspoken words, he seemed to see her rise and move away, like a woman in a terrible dream, from which she was fighting to awake — rise and go out into the dark and cold, without a thought of him, without so much as the knowledge of his presence.\r\nThen he cried, contradicting what he had not yet spoken, “No; stay there!” And turning away from her, he sat down in his accustomed chair on the other side of the hearth.\r\nThey sat in silence.\r\nAnd Soames thought: ‘Why is all this? Why should I suffer so? What have I done? It is not my fault!’\r\nAgain he looked at her, huddled like a bird that is shot and dying, whose poor breast you see panting as the air is taken from it, whose poor eyes look at you who have shot it, with a slow, soft, unseeing look, taking farewell of all that is good — of the sun, and the air, and its mate.\r\nSo they sat, by the firelight, in the silence, one on each side of the hearth.\r\nAnd the fume of the burning cedar logs, that he loved so well, seemed to grip Soames by the throat till he could bear it no longer. And going out into the hall he flung the door wide, to gulp down the cold air that came in; then without hat or overcoat went out into the Square.\r\nAlong the garden rails a half-starved cat came rubbing her way towards him, and Soames thought: ‘Suffering! when will it cease, my suffering?’\r\nAt a front door across the way was a man of his acquaintance named Rutter, scraping his boots, with an air of ‘I am master here.’ And Soames walked on.\r\nFrom far in the clear air the bells of the church where he and Irene had been married were pealing in ‘practice’ for the advent of Christ, the chimes ringing out above the sound of traffic. He felt a craving for strong drink, to lull him to indifference, or rouse him to fury. If only he could burst out of himself, out of this web that for the first time in his life he felt around him. If only he could surrender to the thought: ‘Divorce her — turn her out! She has forgotten you. Forget her!’\r\nIf only he could surrender to the thought: ‘Let her go — she has suffered enough!’\r\nIf only he could surrender to the desire: ‘Make a slave of her — she is in your power!’\r\nIf only even he could surrender to the sudden vision: ‘What does it all matter?’ Forget himself for a minute, forget that it mattered what he did, forget that whatever he did he must sacrifice something.\r\nIf only he could act on an impulse!\r\nHe could forget nothing; surrender to no thought, vision, or desire; it was all too serious; too close around him, an unbreakable cage.\r\nOn the far side of the Square newspaper boys were calling their evening wares, and the ghoulish cries mingled and jangled with the sound of those church bells.\r\nSoames covered his ears. The thought flashed across him that but for a chance, he himself, and not Bosinney, might be lying dead, and she, instead of crouching there like a shot bird with those dying eyes. . . .\r\nSomething soft touched his legs, the cat was rubbing herself against them. And a sob that shook him from head to foot burst from Soames’ chest. Then all was still again in the dark, where the houses seemed to stare at him, each with a master and mistress of its own, and a secret story of happiness or sorrow.\r\nAnd suddenly he saw that his own door was open, and black against the light from the hall a man standing with his back turned. Something slid too in his breast, and he stole up close behind.\r\nHe could see his own fur coat flung across the carved oak chair; the Persian rugs; the silver bowls, the rows of porcelain plates arranged along the walls, and this unknown man who was standing there.\r\nAnd sharply he asked: “What is it you want, sir?”\r\nThe visitor turned. It was young Jolyon.\r\n“The door was open,” he said. “Might I see your wife for a minute, I have a message for her?”\r\nSoames gave him a strange, sidelong stare.\r\n“My wife can see no one,” he muttered doggedly.\r\nYoung Jolyon answered gently: “I shouldn’t keep her a minute.”\r\nSoames brushed by him and barred the way.\r\n“She can see no one,” he said again.\r\nYoung Jolyon’s glance shot past him into the hall, and Soames turned. There in the drawing-room doorway stood Irene, her eyes were wild and eager, her lips were parted, her hands outstretched. In the sight of both men that light vanished from her face; her hands dropped to her sides; she stood like stone.\r\nSoames spun round, and met his visitor’s eyes, and at the look he saw in them, a sound like a snarl escaped him. He drew his lips back in the ghost of a smile.\r\n“This is my house,” he said; “I manage my own affairs. I’ve told you once — I tell you again; we are not at home.”\r\nAnd in young Jolyon’s face he slammed the door.\r\n\r\nThe End\r\n"
  },
  {
    "path": "mapreduce_hive/map_new.py",
    "content": "import sys\n\n#\nfor line in sys.stdin:\n\tss = line.strip().split(' ')\n\tfor word in ss:\n\t\tprint('\\t'.join([word.strip(), '1']))\n#\n# import sys\n# for line in sys.stdin:\n# \tss=line.strip().split(' ')\n# \tfor word in ss:\n# \t\tprint ('\\t'.join(word.strip(),'1'))\n"
  },
  {
    "path": "mapreduce_hive/mrresult.local",
    "content": "﻿.,\t1\n.!\t1\n.?”\t1\n.?\t2\n.”\t1\n.\t292\n‘.\t1\n’—\t1\n’\t2\n“.\t1\n”\t34\n—”\t4\n——\t2\n—\t931\n10\t1\n10.45.\t1\n1.\t1\n1\t2\n11\t1\n12\t1\n13\t1\n14\t1\n15,\t1\n15.\t1\n15\t2\n16\t1\n17,\t2\n17\t1\n18:\t1\n18.\t1\n18\t1\n1881\t1\n1886,\t2\n1886\t1\n1887.\t2\n19,\t1\n19\t2\n1913\t1\n1920,\t1\n1922.\t1\n1st.\t1\n1st\t2\n20.\t1\n20\t3\n2\t1\n21\t1\n22\t1\n23\t1\n24\t1\n25\t1\n26\t1\n27\t1\n27TH\t1\n28\t1\n29\t1\n30.\t1\n30\t2\n‘309D,\t1\n309D,\t1\n3,\t1\n3\t2\n31\t1\n32\t1\n4\t1\n4.30\t2\n5,\t1\n5\t2\n6\t1\n‘62,\t1\n62,\t3\n62\t1\n7\t1\n7.45.\t1\n8,\t1\n8\t1\n9\t1\n‘92001,\t1\n‘a\t8\n“a\t7\n(a\t5\n—“a\t1\na\t2543\n‘A\t6\n“A\t11\nA\t120\naback.\t2\nabandon\t2\n‘Abandon\t1\nabandoned,\t1\nabandoned\t3\nabandoning\t2\nabhorred\t1\nabide\t1\nability.\t1\nability\t3\nable\t20\nAble,\t1\nAble\t1\nabode\t1\nabout,”\t2\nabout,\t12\nabout;\t2\nabout!”\t5\nabout!\t2\nabout?”\t1\nabout?\t2\nabout.”\t1\nabout.\t6\nabout\t210\nAbout\t3\nabove,\t1\nabove.\t2\nabove\t27\nAbove\t1\nABOVE\t1\nabreast.\t1\nabroad,\t1\nabroad;\t1\nabroad.\t1\nabroad\t2\nabrupt\t1\nabruptly;\t1\nabsence\t5\nabsent\t2\nabsolutely\t4\nabsolved\t1\nabsorbed\t5\nabsorption,\t1\nabsorption\t2\nabstractedly:\t1\nabstractedly\t1\nabsurdly\t1\nabused\t1\nacacia’s\t1\nacademic.\t1\nAcademicians\t1\naccent;\t1\naccept,\t1\naccepted,\t1\naccepted\t2\naccepting\t1\naccessible.\t1\naccessories\t1\naccident,”\t1\naccident,\t3\naccident!\t1\naccident.”\t1\naccident.\t1\naccident\t4\naccidents\t1\naccompanied\t1\naccompaniment\t1\naccord,\t2\naccord.\t1\naccordance\t8\naccorded\t1\naccording\t4\naccosting\t1\naccount,\t1\naccount!\t1\naccount.\t1\naccount\t9\naccountant\t2\naccounts,\t1\naccounts.\t4\naccounts\t5\naccuracy\t1\naccurately\t1\naccustomed\t8\nAccustomed\t1\nache,\t1\nache\t2\nachieve,\t1\nachievement\t1\nachievements.\t1\nachieves\t1\nAchilles\t1\naching;\t1\naching\t1\nacid\t1\nacknowledged\t3\nacquaintance,\t2\nacquaintance\t3\nacquaintances,\t3\nacquiesce\t1\nacquiescence\t1\nacquire;\t1\nacquire),\t1\nacquired,\t2\nacquired\t2\nacrid\t1\nacross,\t1\nacross\t34\nAcross\t2\nact,\t1\nact.\t2\nact\t10\nAct,\t1\nacted,\t2\nacted.\t1\nacted\t4\nacting\t1\naction,\t4\naction.\t2\naction\t10\nactions,\t2\nactions\t2\nactive\t3\nactor:\t1\nactress,\t1\nactress\t1\nactress’—‘Grave\t1\nactual\t2\nactually\t5\nacute\t1\nacuteness,\t1\nadamant\t1\nadaptability\t1\nadd:\t2\nadd.\t1\nadd\t1\nadded,\t2\nadded;\t2\nadded:\t12\nadded\t10\nadding\t1\naddition\t3\nadditional\t1\naddress\t3\naddressed\t7\nadds\t1\nadieux,\t1\nadjournment,\t1\nadjusted;\t1\nadjustment\t1\nadministering\t1\nadministration\t1\nadmirable!”\t1\nadmirable.\t1\nadmirable\t2\nadmirably,\t1\nadmirably\t3\nadmiral\t1\nadmiration,\t1\nadmiration.\t2\nadmiration\t5\nadmire!\t1\nadmired.\t1\nadmired\t2\nadmirers\t1\nadmiring\t1\nadmission\t1\nadmit,\t1\nadmit\t5\nadmitted,\t2\nadmitted\t4\nadmitting\t1\nAdmitting\t1\n“Adolf,\t1\n“Adolf!”\t3\nAdolf,\t1\nAdolf\t4\nadopt\t2\nadopted!”\t1\nadopted.’\t1\nadopted\t4\nadorable,\t1\nadoring,\t1\nadorned\t2\nadrift\t1\nadroitly\t1\nadvance\t2\nadvanced.\t1\nadvancement,\t1\nadvancing\t2\nadvantage?\t1\nadvantage.\t1\nadvantage\t3\nadvantages\t2\nadvent\t2\nadventure\t1\nadventurous\t1\nadvertise,\t1\nadvice,\t1\nadvice;\t2\nadvice:\t1\nadvice!\t1\nadvice.\t1\nadvice\t5\nadvise\t1\nadvised\t1\nadvocate,\t1\naegis\t1\nafar;\t1\nafar\t1\naffability.\t1\naffair,\t2\naffair.\t2\naffair\t5\n‘affairs,’\t1\naffairs,\t4\naffairs;\t2\naffairs.\t3\naffairs\t13\naffect.\t1\naffected.\t2\naffected\t3\naffection;\t1\naffection?”\t1\naffection.\t2\naffection\t2\naffectionate\t4\naffections\t1\naffidavits\t1\naffiliated,\t1\naffirming\t1\nafflicted\t1\nafford\t5\nafforded\t6\naffording\t1\naforesaid\t1\nafraid,\t2\nafraid;\t1\nafraid.\t2\nafraid\t15\nafresh,\t1\nafter,\t4\nafter;\t3\nafter.\t1\nafter\t122\n‘After\t1\nAfter\t23\nafternoon,\t6\nafternoon;\t2\nafternoon?”\t1\nafternoon.\t4\nafternoon)\t1\nafternoon\t16\nAfternoon\t1\nafternoons,\t1\nafternoons\t2\nafterthought\t1\nafterward\t1\nafterwards,\t4\nafterwards\t11\nagain,\t19\nagain;\t5\nagain:\t5\nagain!”\t4\nagain!\t5\nagain.”\t1\nagain.\t25\nagain);\t1\nagain\t75\n“Again,”\t1\nAgain,\t1\nAgain\t9\nagainst\t93\nage,\t3\nage;\t1\nage!”\t1\nage.\t2\nage\t9\nAge\t1\naged\t4\nAGED\t1\nagency,\t1\nagency.\t1\nagent,\t1\nagent\t4\nagent’s,\t1\nagent’s.\t1\nagent’s\t3\nagents\t1\nages.\t1\nages\t1\nAges\t1\naggravated\t1\naggravation\t1\naggrieved\t1\nagitated.\t1\nagitation,\t1\nagitation.\t1\naglow.\t1\nago,\t3\nago;\t2\nago:\t1\nago!\t1\nago?\t1\nago.\t2\nago),\t1\nago\t7\nagony\t3\nagree\t3\nagreeable\t1\nagreed,\t2\nagreed;\t1\nagreeing\t2\nagreement\t1\nah,\t1\nah!\t6\n‘Ah!\t2\n“Ah!”\t10\n“Ah!\t6\nAh,\t2\nAh!\t7\nahead.\t1\nailments.\t1\nailments\t2\naim\t1\naimlessly\t1\nair,”\t2\nair,\t9\nair;\t1\nair!”\t3\nair!\t1\nair.”\t1\nair.\t10\nair\t29\nairily\t1\nairing,\t1\nairing\t1\nairy\t1\naisles\t1\nakimbo\t1\nalacrity,\t1\nalacrity\t1\nalarm,\t2\nalarm.\t1\nalarmed,\t3\nalarmed;\t1\nalarmed:\t1\nalarmed.\t4\nalarmed\t5\nalarming.\t1\nalarming\t1\nalarms,\t1\nalas!\t1\nAlbert\t1\nalert,\t1\nalert\t1\n‘alf-tame\t1\nAlhambra\t1\nalight,\t1\nalight.\t1\nalike,\t1\nalike:\t1\nalike.\t1\nalike\t1\nalive;\t1\nalive.\t1\nalive\t7\n‘all\t1\n“all\t1\nall,’\t3\nall,\t29\nall;\t3\nall!”\t1\nall!\t3\nall?\t4\nall.”\t3\nall.\t17\nall\t423\n“All\t2\nAll\t16\nalleged\t1\nalliance,\t1\nallow\t2\nallowance\t4\nallowed,\t1\nallowed\t8\nallowing\t2\nall-seeing\t1\nall-too-black\t1\nall-too-sad\t1\nallude\t5\nalluded\t7\nalluding\t1\nalluring\t1\nallusion\t1\nallusions\t1\nally\t1\nAlmighty;\t1\nAlmighty.\t1\nalmond-blossom\t1\nalmost\t41\n“Almost\t1\nAlmost\t2\nalone,\t11\nalone;\t2\nalone?”\t1\nalone?\t1\nalone.”\t2\nalone.\t8\nalone\t26\nalong,\t5\nalong\t26\nAlong\t4\nalongside,\t1\nalongside.\t1\nalongside\t2\naloud:\t1\nalready.’\t1\nalready.”\t1\nalready\t20\n“Already?”\t1\nAlready\t1\n(also\t1\nalso,\t1\nalso\t16\naltar\t1\nalter.”\t1\nalterations?”\t1\naltered,\t1\naltered\t3\naltering\t3\n(although\t1\nAlthough\t1\naltogether,’\t1\naltogether,\t2\naltogether.”\t1\naltogether.\t1\naltogether\t7\nAltogether\t1\naluminium\t1\n‘always\t1\n“always\t1\nalways,\t2\nalways\t113\n‘Always\t1\nAlways\t2\nam,\t3\nam.”\t1\nam\t22\n‘Am\t1\n‘amateur’\t1\namazed,\t1\namazed\t1\namber-coloured\t1\nambitious\t1\namended\t1\namendment,\t1\namendment.\t1\nAmerican\t3\namiability,\t1\namiability\t1\namiable\t3\namidst\t2\namiss;\t1\namok\t1\n(among\t1\namong\t19\nAmong\t4\namongst\t21\nAmongst\t5\namorous\t1\namorphism,\t1\namount,\t1\namount\t8\namounted\t1\namounting\t1\namours,\t1\namphibious\t1\nample\t1\namplitude\t1\namuse\t2\namused,\t1\namused\t3\namusement,\t1\namusement\t1\namusing.\t1\n“an\t1\n(an\t1\n—“an\t1\nan\t344\n“An\t3\nAn\t15\nanalysis\t1\nancestors,\t1\nancestors\t1\nancestry.\t1\nancient\t3\n“and\t12\n(and\t1\nand,\t100\nand\t2573\n‘And\t1\n“And\t24\nAnd,\t25\nAnd\t253\nAND\t3\nanent\t1\nangel.”\t1\nangel.\t1\nanger,\t4\nanger;\t2\nanger.\t4\nanger\t5\nangered,\t1\nAnglo-Saxon\t2\nangrily,\t1\nangrily;\t1\nangry,\t1\nangry;\t1\nangry.\t5\nangry\t9\nangry-eyed,\t1\nanguish,\t1\nangular,\t1\nangular\t1\nanimal,\t3\nanimal.\t3\nanimal\t3\nanimals),\t1\nanimals\t4\nanimate\t1\nanimates\t1\nanimation.\t1\nanimation\t1\nanimus\t1\n“Ann\t2\nAnn,\t14\nAnn!\t1\nAnn?”\t1\nAnn.\t5\nAnn\t25\nANN\t2\nannounced,\t2\nannounced.\t2\nannounced\t2\nannouncement\t2\nannouncing\t2\nannoyance,\t1\nannoyance\t1\nannoyed\t2\nannoying!\t1\n“Ann’s\t1\nAnn’s,\t1\nAnn’s\t4\nannual\t1\nannuity\t1\nanomalous\t1\nanomaly.\t1\nanother,\t4\nanother;\t1\nanother.\t5\nanother\t31\n‘Another\t1\nanswer,\t11\nanswer;\t1\nanswer:\t3\nanswer.\t12\nanswer\t23\nanswered;\t2\nanswered:\t23\nanswered.\t4\nanswered\t25\nanswering,\t1\nanswering\t4\nantagonism\t3\nante-room\t1\nanteroom,\t1\nanthem:\t1\nAnthony\t2\nanticipation,\t1\nanticipation\t4\nantlered\t1\nanxieties.\t1\nanxiety,\t4\nanxiety\t3\nanxious,\t1\nanxious\t13\nanxiously;\t1\nanxiously\t3\nany\t112\n“Any\t3\nAny\t3\nanybody;\t2\nanybody!\t1\nanybody.”\t1\nanybody\t9\n“Anybody\t2\nAnybody\t1\nanyone,\t1\nanyone;\t1\nanyone!\t1\nanyone.\t2\nanyone\t16\nAnyone\t1\n‘anything\t1\nanything,\t9\nanything;\t4\nanything:\t1\nanything!”\t3\nanything.”\t3\nanything.\t8\nanything\t57\nanyway!”\t1\nAnyway,\t1\nanywhere,\t1\nanywhere;\t2\nanywhere!\t1\nanywhere\t3\napart,\t3\napart;\t1\napart\t2\nApart\t1\napartment,\t1\napartments,\t1\napartments\t1\naped\t1\napologies\t2\napologizing\t1\napology,\t1\nappalled.\t1\nappalled\t1\napparel\t1\napparently\t2\nappeal\t3\nAppeal\t1\nappealed\t4\nappealing\t1\nappear\t2\nappearance,\t4\nappearance;\t1\nappearance.’\t1\nappearance.\t2\nappearance\t13\nappearances\t3\nappeared,\t2\nappeared\t18\nappearing\t2\nappears\t2\nappeased\t1\nappendages\t1\nappetite,\t1\nappetite).\t1\nappetite\t2\nappetites.\t1\nappetites\t1\napplause:\t1\napple\t1\napple-pie\t1\nappliances,\t1\napply.’\t1\napply\t3\nappoint\t1\nappointed\t3\nappointment\t3\nappointments\t1\nappraisement,\t1\nappreciate;\t1\nappreciate\t2\nappreciating\t1\nappreciation\t2\napproach.\t2\napproach\t2\napproached\t2\napproaching\t1\nappropriate!”\t1\nappropriate\t1\nappropriately\t1\napproval,\t1\napproval.\t2\napprove\t1\napproved\t2\nApril.\t1\nApril\t1\naprons;\t1\naptitude,\t1\naptitude.\t1\naquiline\t1\narch\t1\nArch,\t2\nArchibald,\t1\nArchie\t1\narchitect,\t6\narchitect;\t1\narchitect:\t1\narchitect.)\t1\narchitect.\t4\narchitect\t20\n‘Architect,\t1\nArchitect,’\t1\narchitect’s\t4\narchitects,\t2\narchitects.\t1\narchitects\t1\narchitecture,”\t1\narchitecture;\t1\narchitecture\t1\nArchitecture\t1\n“are\t2\n—“are\t1\nare,”\t1\nare,\t3\nare!”\t1\nare!\t1\nare\t101\n“Are\t5\nAre\t3\naren’t\t2\nAren’t\t1\nargued,\t1\nargued\t3\narguing;\t1\narguing.\t1\nargument\t1\narise!’\t1\narisen!\t1\narisen\t2\narising\t3\naristocracy\t1\naristocratic\t3\narm,\t6\narm;\t1\narm.\t5\narm\t8\narmchair,\t1\narmchair.\t1\narmholes\t1\narmour,\t1\narmour.\t2\narmoured\t1\narms,\t3\narms;\t1\narms.\t1\narms\t14\narmy\t2\naroma,\t1\narose,\t1\narose:\t1\narose.\t1\narose\t5\naround,\t3\naround.\t1\naround\t16\narousing\t1\narrange\t2\narranged\t5\narrangement,\t3\narrangement;\t1\narrangement\t1\narrangements,\t2\narrangements\t1\narranging\t2\narrayed\t1\narrested\t1\narrival\t3\narrivals,\t2\narrive,\t1\narrive\t1\narrived.\t2\narrived\t13\narriving,\t1\narriving\t2\narrogance\t1\narsons,\t1\nart.”\t1\nart.\t1\nart’\t1\nart\t3\nArt,\t3\nArt\t4\narteries\t1\narticle\t2\narticles\t1\nartificial\t2\nartist,\t1\nartist\t4\n‘artistic’\t1\nartistic,’\t1\nartistic,\t1\nartistic!\t1\nartistic.”\t1\nartistic\t6\nartists,\t1\nartists;\t1\nartists\t1\narts,\t1\nArts.\t1\n‘as\t1\n“as\t2\n(as\t3\n—“as\t2\nas,\t3\nas:\t2\nas\t655\n“As\t2\nAs\t32\nascertain\t3\nascertained.\t1\nascertained\t2\nascertaining\t1\nash\t1\naside,\t2\naside.\t2\naside\t4\n“ask\t1\nask:\t1\nask?”\t1\nask\t32\naskance,\t1\naskance.\t1\naskance\t1\n“asked\t1\nasked,\t5\nasked;\t2\nasked:\t12\nasked.\t13\nasked\t46\naskew.\t1\naskew\t1\nasking;\t1\nasking\t11\naslant,\t1\naslant\t2\nasleep,\t2\nasleep;\t1\nasleep!\t1\nasleep.\t4\nasleep\t3\nasparagus\t1\naspirating\t1\naspirations,\t1\nass!”\t1\nass\t1\nassagaied,\t1\nassembled\t3\nassembly,\t1\nassembly\t1\nassented\t2\nassenting,\t1\nassert\t1\nasserted\t1\nasserting\t1\nassiduity\t1\nassign\t1\nassignation\t1\nassignations\t1\nassigns\t1\nassisted\t1\nassisting\t1\nassociated\t2\nassociates\t1\nassuaged,\t1\nassume\t2\nassumed\t4\nassumption,\t1\nassurance,\t1\nassure\t1\nassured,\t1\nassured\t1\nassuredly,\t1\nassuring\t1\nastonish\t1\nastonished\t1\nastray\t1\nastuteness,\t1\nasunder\t2\n‘at\t3\nat,\t1\nat;\t1\nat?”\t1\nat.\t1\nat\t815\n‘At\t3\nAt\t43\nate\t9\nAtkins,\t1\natmosphere\t2\natom\t1\natoms;\t1\natoms\t1\nattached\t3\nattachment\t1\nattachments\t1\nattack\t1\nattacked\t3\nattained\t1\nattaining\t1\nattempt,\t1\nattempt\t6\nattempted\t1\nattempts\t1\nattend\t3\nattendance\t1\nattended\t3\nattending,\t1\nattention,\t2\nattention;\t2\nattention.\t1\nattention\t14\nattentively\t1\nattired\t3\nattitude,\t1\nattitude\t14\nattracted\t5\nattracting\t1\nattraction,\t1\nattraction\t6\nattractions\t1\nattractive.\t1\nattractive\t3\nauburn\t2\nauctioneer.\t1\nauctioneer\t1\nauctioneering\t1\nauctioneers\t1\naudacity!”\t1\nauditor,\t1\naugured\t1\nAugust.\t1\nAugust\t2\nAugustus\t1\n‘AUGUSTUS\t1\naunt,\t1\naunt.\t2\naunt\t2\nAunt\t95\nauntie;\t1\nauntie.”\t1\nAuntie?\t1\naunt’s\t1\naunts,\t1\naunts?\t1\naunts.\t1\naunts\t1\nAunts\t8\nauthor\t1\nauthoritative,\t1\nauthorities\t1\nauthority\t3\nauthorize,\t2\nautumn,\t1\nautumn\t7\navenue\t1\nAvenue,\t1\nAvenue.\t2\nAvenue\t2\naverage,\t1\naverse;\t1\naverse\t4\naversion\t1\naverted.\t1\navocations\t1\navoid\t4\navoidance\t1\navoiding\t3\nawait\t2\nawaited,\t1\nawaited\t3\nawaiting\t1\nawake,\t2\nawake.\t1\nawake\t1\nawakened\t4\naware\t1\naway,\t20\naway;\t2\naway:\t1\naway!”\t2\naway?\t1\naway.”\t1\naway.\t30\naway\t63\nawe\t1\nawed\t2\nawful\t1\nawfully\t2\n‘Awfully\t1\nawkward.\t1\nawkward\t2\nawkwardly\t1\nawkwardness\t2\nawoke;\t1\nawoke\t1\naxiom\t1\nazalea,\t1\nazalea\t1\nazaleas.\t1\nazaleas\t2\nbabe\t1\nbabes\t1\nbaboons\t1\nbaby\t2\nbaby’s,\t1\nbachelor\t1\nbachelor’s\t1\nback,”\t1\nback,\t19\nback;\t1\nback!”\t2\nback?”\t3\nback.”\t1\nback.\t14\nback\t121\nBack\t1\nbackground,\t2\nbackground\t1\nbacks,\t1\nbacks\t3\nback-street\t1\nbackwater\t2\nbad,”\t2\nbad,\t2\nbad;\t1\nbad!\t1\nbad.\t2\nbad\t25\n“Bad!”\t1\nBaden-Baden\t1\nbadly,\t2\nbadly;\t1\nbadly\t1\n‘badness’\t1\nBaedeker\t1\nbaffled,\t1\nbaffled\t1\nBaffled\t1\nbag,’\t1\nbag,\t1\nbag;\t1\nbag.\t1\nbag\t2\nbags\t1\nbaited\t2\nbaize\t2\nbalance,\t1\nbalance.\t2\nbalance\t2\nbalanced,\t1\nbalanced\t2\nbalcony,\t3\nbalcony\t1\nbald,\t1\nbales.\t1\nball\t1\nball-dress\t1\nball-room.\t1\nballroom,\t1\nballroom.\t1\nballrooms,\t1\nbalm\t1\nbalmy,\t1\nbalmy\t1\nBalthasar,\t6\nBalthasar.\t1\nBalthasar\t2\nBalthasar’s\t2\nbalustrade\t1\nband,\t1\nband;\t1\nband.\t1\nband-box\t1\nbanded\t1\nbandied\t1\nbanding\t2\nbanged\t1\nbanish\t1\nbank;\t1\nbank\t2\nbankrupt,”\t1\nbankrupt,\t2\nbankrupt.”\t1\nbankrupt\t4\nBankruptcy\t1\nbannister.\t1\nbannisters,\t1\nBaple\t2\nBar!\t1\nBar.\t1\nbarbarity.\t1\nbarbarity\t1\nbarbarous\t1\nBarbizon\t1\nbare,\t1\nbare.\t1\nbare\t7\nBareham\t1\nbarely\t4\nbargain,\t1\nbargain;\t1\nbargain.\t3\nbargain\t1\nbargained\t1\nbargains,\t1\nbark\t1\nBarlow’s\t1\nBarnes\t1\nbaronial\t1\nbarouche,\t3\nbarouche\t1\nbarrack?”\t1\nbarred\t5\nbarrel\t1\nbarricaded\t1\nbarriers\t1\nbarristers\t2\nbars.\t1\nbars\t2\nBart.,\t1\nbartered,\t1\nbase\t3\nbased\t2\nbasement\t2\nbasin\t1\nbasis;\t1\nbasis\t1\nbasked\t1\nbat,\t1\nbath\t1\n“Bath!”\t1\nBath.”\t1\nbathed\t1\nbathing\t2\nbaths;\t1\nbattle?\t1\nbattle.\t1\nbattle\t9\nbattle-field,\t1\nbattle-field\t1\nbattlefield\t2\nbattles\t1\nbaulked\t1\nbay.\t1\nbay\t2\n(Baynes\t1\nBaynes,\t8\nBaynes;\t1\nBaynes.\t2\nBaynes’\t1\nBaynes\t14\nBAYNES\t2\nBaynes’s\t2\nbays,\t1\nBayswater,\t1\nBayswater\t10\nbay-window\t1\nbazaars\t1\nbe,”\t1\nbe,\t5\nbe;\t2\nbe!”\t1\nbe!\t1\nbe?\t2\nbe.”\t1\nbe.\t5\nbe\t452\nbeach;\t1\nbeam,\t1\nbeaming\t1\nbear.\t1\nbear\t14\nbeard,\t3\nbearded\t1\nbearing;\t1\nbearing\t3\nbear-pit\t1\nbears,\t1\nbears\t1\nbeast,\t2\nbeast\t1\n‘Beastly\t1\nbeast’s\t1\nbeasts\t2\nbeat\t3\nbeaten,\t1\nbeaten.\t1\nbeaten\t2\nbeating,”\t1\nbeating\t5\nbeautiful,\t3\nbeautiful!”\t1\nbeautiful\t9\nbeautifully\t2\nbeauty;\t1\nbeauty:\t1\nbeauty.\t1\nbeauty’\t1\nbeauty\t7\nBeauty\t4\nbecame\t8\nbecause,\t1\nbecause\t18\nbeckoned.\t1\nbeckoning,\t1\nbecome:\t1\nbecome\t19\nbecomes\t2\nbecoming\t2\nbed,”\t3\nbed,\t9\nbed;\t1\nbed!”\t1\nbed!\t1\nbed.\t1\nbed\t8\nBedfordshire\t1\n‘bed-rock’\t1\nbedroom,\t2\nbedroom;\t3\nbedroom.\t2\nbedroom\t4\nbedside;\t1\nbedside\t1\nbed-time\t1\nBeech’s\t1\n—“been\t1\nbeen,\t6\nbeen;\t2\nbeen!\t2\nbeen?”\t2\nbeen\t337\n“Been\t1\nbeer.”\t1\nbeer’\t1\nbees\t1\nbefore,\t13\nbefore;\t5\nbefore.\t7\nbefore\t107\n“Before\t1\nBefore\t3\nbefore-a\t1\nbeforehand.\t1\nbeforehand\t1\nbegan,\t2\nbegan;\t1\nbegan:\t5\nbegan.\t2\nbegan\t43\nbeggar,\t2\nbeggar!’\t1\nbeggar!”\t1\nbeggar!\t3\nbeggar\t1\nbeggarly\t1\nbeggars.\t1\nbegin?”\t1\nbegin.\t2\nbegin\t3\nbeginning,\t1\nbeginning\t7\nbeginnings\t1\nbegun,\t1\nbegun?\t1\nbegun\t4\nbehalf.\t1\nbehalf\t1\n“behave\t1\nbehave;\t1\nbehaved\t2\nbehaving\t1\nbehaviour\t4\nbehind,\t8\nbehind;\t2\nbehind.\t5\nbehind\t40\nBehind\t2\nbehind-hand\t1\nbeholder\t1\nbeing,\t2\nbeing\t92\nbeings,\t1\nbelief\t1\nbeliefs,\t1\nbeliefs\t1\nbelieve,”\t1\nbelieve,\t1\nbelieve;\t1\nbelieve.\t2\nbelieve\t33\nbelieved,\t1\nbelieved.\t1\nbelieved’—\t1\nbelieved\t15\nbelieves\t2\nbelieving\t1\nbell.\t3\nbell\t3\nBellis.\t4\nbells.\t3\nbells\t1\nbell-shaped\t1\nbelong\t6\nbelonged,\t1\nbelonged.\t1\nbelonged\t6\nbelonging\t2\nbelongings,\t1\nbeloved\t1\nbelow,\t4\nbelow.\t2\nbelow\t7\nBelow,\t1\nbench,\t1\nbench.\t1\nbench\t4\nBench\t1\nbenches,\t1\nbending\t3\nbeneath,\t2\nbeneath\t13\nBeneath\t1\nBenedict)\t1\nbeneficial\t2\nbenefit\t7\nbenefited\t1\nbenefits\t1\nbenevolent\t1\nbent,\t2\nbent\t16\nBentham,\t3\nBentham.\t2\nBentham\t4\nbequest\t1\nbereft\t2\nBERT\t1\nbeside\t9\nbesides\t1\nbesieged\t1\nbest!”\t1\nbest.\t2\nbest\t35\nbestow\t1\nbestowal\t2\nbestowed\t2\nbet;\t1\nbet\t2\nbethought\t2\nbetokened\t1\nbetook\t1\nbetray\t1\nbetrayal\t1\nbetrayed\t5\nbetter,\t1\nbetter;\t1\nbetter!”\t1\nbetter!\t2\nbetter.\t1\nbetter\t48\nBetter\t2\nbetter-looking\t1\nbetting.\t1\nbetting\t1\nbetween,\t4\nbetween\t55\nBetween\t4\nbevelled\t1\nbewildered,\t1\nBewildered\t2\nbeyond,\t1\nbeyond.\t1\nbeyond\t23\nBeyond\t1\nbiassed\t1\nbicycle,\t1\nbicycle\t2\nbid\t1\nbig.\t1\nbig\t12\nbigger\t1\nBildeboy,\t2\nbilious\t1\nbill,\t2\nbill\t1\nbilliard\t3\nbilliard-room!”\t1\nbilliard-room\t1\nbilliards;\t1\nbilliards\t2\nbills.”\t1\nBilson,”\t1\nBilson,\t2\nBilson.”\t2\nBilson.\t1\nBilson\t7\nbind\t2\nbirch-tree\t1\nbird,\t2\nbird!.\t1\nbird!’\t1\nbird.\t1\nbird\t4\nbird-like\t2\nbird’s\t1\nbirds’\t1\nbirds\t4\nbird’s-nest\t1\nbirth,\t1\nbirth\t2\nbirths.\t1\nbiscuit\t1\nbit!”\t1\nbit.”\t2\nbit.\t1\nbit\t23\nbite\t2\nbiting\t4\nBiting\t1\nbits;\t1\nbits\t1\nbitter,\t1\nbitter.\t1\nbitter\t7\nbitterest\t1\nbitterly\t2\nbitterness.\t1\nbitterness\t3\nbitters\t1\nblack,\t2\nblack.\t1\nblack\t20\n‘Black\t1\nBlack\t1\nblackbird?”\t1\nblackbirds\t1\nblackened\t1\nblacker\t1\nblack-gloved\t1\nblackness,\t2\nblackness.\t1\nblackness\t6\nblack-stained\t1\nblame,\t1\nblame\t3\nblamed\t1\nblaming,\t1\nbland,\t2\nblandly;\t1\nblank,\t1\nBlank\t2\nblanket\t1\nBlasted\t3\nblaze\t1\nblazed\t1\nblazing\t1\nBleeder,\t1\nBleedham,\t1\nbleeding\t1\nblend\t1\nbless\t2\nblessing\t1\nblessings\t1\nblew\t2\nblight\t1\nblighted,\t1\nBlight’s,\t1\nblind,\t2\nblind.\t1\nblind\t3\nblindfold;\t1\nblinds\t2\nblink.\t1\nblinking\t1\nbliss\t1\nblissful\t1\nblock\t1\nblocked\t1\nblocking\t1\nblood,\t4\nblood!\t2\nblood.\t4\nblood\t7\nblood-thirstiness\t1\nbloom,\t1\nbloom\t2\nbloomers.\t1\nblooms\t2\nblossom,\t1\nblossom.\t1\nblossoms,\t1\nblossoms:\t1\nblossoms.\t1\nblotted\t2\nblouse,”\t1\nblouse\t3\nblow,\t2\nblow;\t1\nblow.\t1\nblow\t3\nblowing\t2\nblown\t1\nblue,\t1\nblue;\t1\nblue\t9\nbluebells\t2\nbluffness,”\t1\nbluffness,\t1\nblur,\t1\nblurred\t2\nblush\t1\nblushed,\t1\nblushing,\t1\nbluster.\t1\nboa\t1\nboard\t1\nBoard,\t1\nBoard;\t2\nBoard.\t1\nBoard’\t1\nBoard\t8\nBoard-room\t1\nboards;\t1\nBoards,\t1\nBoards\t1\nboat,\t2\nboats\t1\nBobbing\t1\nbobby,\t1\nbobby\t1\n‘Bobby,\t1\nBobson!”\t1\nbodice,\t1\nbodice.\t1\nbodies\t3\nbody,\t6\nbody.\t7\nbody\t11\n‘Boileau\t2\n“Boileau\t1\nboiled\t1\nBois\t1\nbold,\t1\nbold\t1\nbolder\t2\n‘Bolivia\t1\nbolt\t1\nbolting\t3\nbombazine,\t1\nBoms,\t1\nBoms.\t1\nBoms\t1\nbond\t1\nbone\t1\nboned,\t1\nbones\t2\nbony\t1\nbook.\t1\nbook\t2\nbooked\t1\nBooker,\t2\nBooker\t1\nbook-rest\t1\nbooks,\t1\nbooks;\t1\nbooks\t4\nboot,\t2\nboots,\t1\nboots\t3\nborder\t1\nbore,\t1\nbore\t3\nbored,\t1\nbored.\t2\nborn,\t1\nborn;\t1\nborn\t7\nBorn\t1\nborne\t5\nborough\t1\nBorough\t1\nborrow\t2\nborrowed\t1\n“Bosinney,\t1\n“Bosinney.\t1\nBosinney,’\t1\nBosinney,”\t2\nBosinney,\t39\nBosinney;\t10\nBosinney:\t3\nBosinney!’\t1\nBosinney!”\t2\nBosinney?”\t3\nBosinney?\t4\nBosinney.”\t2\nBosinney.\t37\nBosinney”\t1\nBosinney\t168\nBOSINNEY,\t3\nBOSINNEY.’\t3\nBosinney’d\t1\nBosinney’ll\t1\n“Bosinney’s\t1\nBosinney’s,’\t1\nBosinney’s,\t3\nBosinney’s?”\t1\nBosinney’s.\t2\nBosinney’s\t52\nbosom,\t2\nbosom.\t2\nbosom\t7\nbosoms\t1\nBoswainey!\t1\nBotanical),\t1\nBotanical\t5\nboth\t31\nBoth\t2\nbother\t1\nbothered.\t1\nbothering\t1\nbottle!\t1\nbottle.”\t2\nbottle.\t1\nbottle\t8\nbottled\t1\nbottles\t3\nbottom,\t1\nbottom!\t1\nbottom\t14\nBoucher,\t1\nBoucher\t1\nbough\t1\nboughs,\t1\nboughs\t2\nbought\t10\nBoulogne,\t1\nBoulter,\t2\nBoulter.\t1\nBoulter\t3\nbound.\t1\nbound\t3\nbounded,\t1\nbounding\t1\nbounds!\t1\nBournemouth,\t1\nBournemouth\t1\nbow.\t1\nbow\t3\nbowed;\t1\nbowed\t1\nBower,”\t1\nBower,\t1\nBower.’\t1\nbowing\t1\nbowl.\t1\nbowl\t3\nBowling\t1\nbowls,\t1\nbox,\t4\nbox.\t3\nbox\t6\nboxes.\t3\nboxes\t1\nboy,”\t1\nboy,\t6\nboy;\t1\nboy!”\t2\nboy!\t1\nboy?”\t2\nboy.”\t1\nboy.\t2\nboy\t15\nBoyne’s,\t1\nboy’s\t1\nboys,\t1\nboys\t2\nbracelets\t2\nbracing,\t1\nbracken\t7\nbrain;\t1\nbrain.\t2\nbrain\t1\nbrains\t1\nbranch,\t1\nbranch\t4\nBRANCH\t1\nbranches,\t2\nbranches.\t1\nbranches\t6\nbranching\t1\nbrand,\t1\nbrand\t1\nbrand-new\t1\nbrandy.”\t1\nbrandy.\t1\nbrandy\t1\nBrandy\t1\nBranksome,\t1\nbrass\t1\nbravado,\t1\nbravado\t1\nbrave\t2\nbravery\t1\nbrazen\t1\nbreach\t5\nbread,\t1\nbread\t1\nBread\t1\nbread-crumbs.\t1\nbreak\t10\nbreakdown\t1\nbreakfast.\t2\nbreakfast\t2\nbreakfasted\t2\nbreaking\t9\nbreaks\t1\nBreaks\t1\nbreast,\t4\nbreast;\t1\nbreast.\t4\nbreast\t6\nbreath,\t1\nbreath;\t1\nbreath.\t3\nbreath\t5\nbreathe,\t1\nbreathe.\t1\nbreathe\t2\nbreathed,\t2\nbreathed\t3\nbreathes\t1\nbreathing.\t1\nbreathing\t5\n‘Breathing\t1\nbreathless,\t1\nbreathless\t1\nbred\t1\nbreeches,\t2\nbreed,\t4\nbreed\t1\nbreeding,\t1\nbreeze,\t2\nbreeze.\t1\nbreeze\t3\nbreezes\t1\nbrevity\t1\nbrick!\t1\nbricks\t2\nbrickwork\t1\nbride.\t1\nbridegroom.\t1\nbridge\t1\nBridger’s.\t1\nbridges\t1\nbridging\t1\nbrief.\t1\nbrief\t2\nbriefly\t1\nbrigade,\t1\nbright,\t4\nbright\t8\nbrighten\t1\nbrightened.\t2\nbrightened\t1\nbrighter\t1\nbrightly\t1\nbrightness\t1\n‘Bright’s\t1\nbrilliant,\t1\nbrilliant\t2\nbrilliantly\t1\nbrim\t3\n“bring\t1\nbring.\t1\nbring\t18\n“Bring\t2\nbringing\t7\nbrings\t2\nbrisk\t1\nbristling\t1\nBritish\t4\nBriton\t1\nbroad,\t4\nbroad\t2\nbroader\t1\nBroadstairs,\t2\n‘BROADSTAIRS,\t1\nbrocaded\t1\nbroke\t19\nbroken\t19\nbroken-hearted\t1\nbrokenly:\t1\nbrokers,\t1\nBrompton\t1\nbronze\t1\nbronze-coloured\t1\nbrooch,\t1\nbrooded\t5\nbrooding,\t2\nbrooding\t10\nBrooding\t1\nbrooms.\t1\nbrother,\t7\nbrother.’\t1\nbrother\t13\nbrother-in-law,\t1\nbrother-in-law.\t1\nbrother-in-law)\t1\nbrother-in-law\t4\nbrotherliness,\t1\nbrother’s\t5\nbrothers,\t4\nbrothers\t12\nbrougham,\t3\nbrougham;\t1\nbrougham.\t1\nbrought,\t1\nbrought.\t2\nbrought\t35\nBrought\t1\nbrow,\t3\nbrow;\t2\nbrow.\t2\nbrow\t2\nbrown,\t2\nbrown\t11\nbrowned\t1\nbrown-paper\t1\nbrows,\t5\nbrows.\t1\nbrows\t1\nbrowsed.\t1\nbruises\t1\nbrush\t1\nbrushed\t9\nbrushes\t3\nbrushing\t2\nbrutal\t2\nbrutality\t2\nBrutality\t1\nbrute,\t1\nbrute\t1\nBryanston\t1\nbubbling\t1\nbuccaneer,\t1\nbuccaneer.\t1\nbuccaneer\t1\n‘Buccaneer,’\t1\nBuccaneer,’\t2\nBuccaneer,”\t1\nBuccaneer,\t5\nBuccaneer!”’\t1\nBuccaneer!”\t2\nBuccaneer?’\t1\nBuccaneer?”\t1\nBuccaneer.”\t1\nBuccaneer.\t1\nBuccaneer’;\t1\nBuccaneer’?”\t2\nBuccaneer’—\t2\nBuccaneer’\t3\nBuccaneer\t11\nbuckles\t2\nbuds,\t1\nbuds\t1\nbuff\t2\nbuffer,\t1\nbuffoon\t1\nbuild,\t3\nbuild!\t1\nbuild?”\t1\nbuild.”\t1\nbuild.\t2\nbuild\t9\nbuilder,\t1\nbuilder\t1\nbuilding,\t1\nbuilding.\t2\nbuilding\t12\nbuildings,\t1\nbuildings;\t1\nbuildings\t1\nbuilds\t1\nbuilt,\t2\nbuilt\t7\nbulbs.\t1\nbulge\t1\nbulged\t2\nbulk,\t1\nbulk\t2\nbulky\t5\nbull.\t1\nbulldog.\t1\nbull-like\t1\nbullying.\t1\nBumley\t2\nbumps\t1\nbumpy\t4\nbunch\t3\nbunched\t1\nbunches\t1\nbunching\t1\nBuncombe,\t1\nbundle\t1\nbundles\t1\nbuns\t1\nbuoy\t1\nbuoyantly,\t1\nburden\t1\nburied\t7\nBurkitt,\t1\nBurkitt’s\t1\nburly\t1\nburn\t1\nburned\t5\nburning\t10\nburnish\t1\nburnt\t2\nburrows.\t1\nburst\t10\nbursting,\t1\nbursting\t1\nbursts\t2\nbury\t1\n‘bus,\t2\nbus-driver’s\t1\nbushes\t1\nBushey,\t2\nbusied\t1\nbusiness,’\t1\nbusiness,\t11\nbusiness;\t3\nbusiness!\t3\nbusiness.”\t1\nbusiness.\t2\nbusiness’\t1\nbusiness\t42\nbusiness-like\t1\nBustard,\t4\nBustard\t5\nBUSTARD\t1\nbustle\t1\nbustling\t1\nbusy,\t1\nbusy;\t1\nbusy.’\t1\nbusy\t6\nbusying\t1\n“but\t8\n—‘but\t1\nbut,\t13\nbut\t411\n‘But\t1\n“But,\t1\n“But\t10\nBut,\t5\nBut\t151\nbutcher’s\t1\nbutler,\t1\nbutler:\t1\nbutler?\t1\nbutler\t12\nbutter,\t1\nbutter\t1\nbuttered;\t1\nbutterflies,\t1\nbutton\t1\nbuttoned\t5\nbutton-hole,\t1\nbuttonhole\t1\nbuttonholed\t1\nbuttoning\t1\nbuttons,\t2\nbuttons\t3\nbuttressed\t1\nbuy,\t1\nbuy.\t2\nbuy\t6\nbuying,\t1\nbuying\t4\n“Buying\t1\nbuzz\t1\nbuzzing\t1\nby,”\t1\nby,\t5\nby;\t2\nby!\t1\nby.\t3\nby\t391\n“By\t3\nBy\t6\nbygones.\t1\nbygones\t1\nByronic\t1\nByronism.\t1\nBy-the-bye,\t1\nby-ways\t1\ncab,\t13\ncab;\t1\ncab?”\t1\ncab.\t4\ncab\t24\ncabal\t1\ncabinet,\t1\ncabinet\t1\ncabinets,\t1\ncabman,\t1\ncabman\t3\ncabs\t6\ncackling\t1\ncad.\t1\ncage.\t2\ncage\t3\ncaged,\t1\ncages,\t1\ncages!\t1\ncages\t2\ncaging\t1\ncake.\t1\ncalculate;\t1\ncalculated\t2\ncalculation\t2\ncalculations\t2\ncall\t24\ncalled;\t1\ncalled:\t3\ncalled\t41\ncalling\t6\ncallings.\t1\ncallow\t1\ncalls.\t1\ncalls\t2\nCalls\t1\ncalm,\t1\ncalm.\t1\ncalm’,\t1\ncalm\t6\ncalmer.\t1\ncalming\t1\nCalming\t1\ncalmly.\t2\ncalmly\t1\ncalmness,\t1\ncalmness\t1\nCambridge,\t1\nCambridge\t1\n‘came\t1\ncame,\t8\ncame.\t2\ncame\t141\n“Came\t1\ncamp\t2\ncampaign\t1\nCampden\t2\ncan,\t1\ncan!”\t1\ncan.”\t2\ncan\t69\n“Can\t1\nCan\t1\ncanaries,\t1\ncancelled\t1\ncandle,\t1\ncandle\t3\ncandles,\t1\ncandles\t2\ncandour,\t1\ncane,\t3\ncane\t2\nCannon\t1\ncannot,\t1\ncannot.\t1\ncannot\t8\ncanopy\t1\ncan’t,\t1\ncan’t\t56\n“Can’t\t2\n‘Cantankerous\t1\ncantankerous-looking\t1\ncantered\t1\ncanvas,\t1\ncanvas\t1\ncanvases,\t1\ncap,\t2\ncap\t1\ncapability\t1\ncapable\t8\ncapacities\t1\ncapacity,\t1\ncapacity\t2\ncape\t1\ncapital,\t1\ncapital!”\t1\ncapital.\t1\ncapital\t10\n“Capital\t1\ncapitalized\t1\ncapitally\t1\ncapriciousness\t1\ncaptain\t1\ncaptive\t1\ncaptivity\t1\ncar,\t1\ncard,\t2\ncard.\t1\ncard\t3\ncard-case,\t1\ncard-room,\t1\ncards\t1\ncard-tables,\t1\n“care\t1\ncare,\t3\ncare;\t1\ncare!”\t1\ncare!)—\t1\ncare?\t1\ncare.\t4\ncare’\t1\ncare\t26\ncared\t5\ncareer;\t1\ncareer\t1\ncareful,\t1\ncareful;\t1\ncareful!”\t1\ncareful.\t1\ncareful\t14\ncarefully\t12\nCarefully\t1\ncareless\t2\ncares?”\t1\ncaress,\t1\ncaress\t2\ncaressed,\t1\ncaretaker\t1\ncaring\t1\nCarlo;\t1\nCarlo!”\t1\ncarol\t1\ncarolled\t1\ncarpet\t3\ncarriage,\t6\ncarriage;\t1\ncarriage.\t6\ncarriage\t32\n“Carriage!”\t1\ncarriage-class\t1\ncarriages,\t2\ncarriages.\t2\ncarriages\t6\nCarriages\t1\ncarried\t18\nCarried.\t1\ncarrots,\t1\ncarry\t6\ncarrying\t6\ncart\t1\ncart-track\t1\ncarved\t3\ncarven\t2\ncascade\t1\ncase,”\t1\ncase,\t7\ncase;\t1\ncase.\t6\ncase\t22\ncased\t1\ncases.\t1\ncases\t1\ncasings;\t1\ncast\t4\ncaste,\t2\ncaste\t1\ncasting\t2\nCastle\t1\ncasual\t3\ncat,\t4\ncat;\t1\ncat!”\t2\ncat!\t1\ncat.’\t2\ncat.\t2\ncat\t13\ncatalogue.\t1\ncatch.”\t1\ncatch.\t1\ncatch\t10\ncatching\t1\ncatch-word\t1\ncat-like\t1\ncat’s.\t1\ncat’s\t1\ncats.\t1\ncats\t1\ncattle\t1\ncaught,\t1\ncaught\t16\ncause,\t1\ncause!\t1\ncause\t5\nCause\t1\ncaused,\t1\ncaused\t16\ncausing\t1\ncaution,\t1\ncaution.\t2\ncaution\t1\ncaviare,\t1\ncease,\t1\ncease.\t1\ncease\t1\nceased,\t1\nceased;\t3\nceased.\t1\nceased\t7\nceaselessly\t1\ncedar\t1\ncedar-logs\t1\nceiling.\t1\nceiling\t1\ncelebrate\t3\ncelebrated\t6\ncellar!”\t1\nCelt\t1\nCeltic\t1\ncement.”\t1\nCement\t3\ncemetery\t1\nCemetery,\t1\ncensure.\t1\ncent.\t8\ncentered\t1\ncentral\t4\ncentre,\t4\ncentre\t8\ncentred\t1\ncenturies\t1\ncentury.\t1\nceremonious\t1\nceremony\t3\ncertain,\t3\ncertain;\t1\ncertain!\t1\ncertain\t27\ncertainly!’\t1\ncertainly\t21\n“Certainly,”\t1\nCertainly\t1\ncertainty,\t1\ncertainty.\t1\ncertainty\t2\nCeylon.\t1\nChablis;\t1\nChafing\t1\nchagrin\t1\nchains\t1\nchair,\t18\nchair;\t1\nchair?”\t1\nchair.\t3\nchair\t19\nchairman,\t1\nchairman;\t1\nchairman.\t1\nChairman,\t1\nChairman\t2\nchairman’s\t2\nchairs,\t4\nchairs\t3\nchalked\t1\nchalky\t1\nchallenge,\t1\nchallenge\t2\nchamber\t1\nchambers,\t1\nchambers\t1\nchamois\t1\nchampagne,\t3\nchampagne.\t3\nchampagne),\t1\nchampagne\t8\nChampagne\t1\nchampioning\t2\nchance,\t9\nchance.\t1\nchance\t13\nchanced\t3\nchances,\t2\nchances.’\t1\nchances\t1\nchancing\t2\nchandelier,\t1\nchandelier\t1\nchandeliers,\t1\n‘change’;\t1\n‘change\t1\nchange,\t4\nchange;\t1\nchange.\t2\nchange\t10\n‘Change.\t1\n‘Change\t3\nchanged,\t1\nchanged!\t1\nchanged.\t2\nchanged\t7\nchanging\t2\nChankery,\t3\nChankery\t1\nchannel\t1\nchaotic\t1\nchap,\t3\nchap!\t2\nchap?\t1\nchap.\t3\nchap\t8\nchapel,\t1\nchapel.\t1\nchapel\t2\nchaperon,\t1\nchaperonage\t1\nchaperone-less,\t1\nchaperones\t1\nchaperoning,\t1\nchaps,\t1\nchaps;\t1\nchaps.\t1\nchaps\t3\nChapter\t32\ncharacter,\t3\ncharacter.\t3\ncharacter\t4\ncharacteristic\t3\nCharacteristically,\t1\ncharacterize\t3\ncharacterized\t1\ncharacters,\t1\ncharge\t2\ncharged\t1\ncharges\t1\nCharing\t1\nchariot,\t2\nchariot\t1\nchariots,\t1\ncharitable.\t1\ncharitable\t1\ncharities,\t1\ncharities\t1\ncharity,\t1\ncharity\t5\nCharles\t2\ncharlotte\t2\ncharlottes\t1\n‘charm’\t1\ncharm!”\t1\ncharm.”\t1\ncharm\t4\ncharming,\t1\ncharming!\t1\ncharming).\t1\ncharming\t10\ncharmingly\t1\ncharring\t1\nchase.\t1\nchase\t2\nchasms\t1\nchaste\t1\nchat,\t1\nchat\t2\nchatter\t1\nchattering\t1\ncheap;\t1\ncheap.\t1\ncheap\t2\n‘Cheap\t1\ncheapen\t1\ncheaper,\t1\ncheapest\t1\nCheapside,\t1\nCheapside.\t1\ncheated\t1\ncheck\t3\nchecked\t2\nchecks.\t1\ncheek,\t3\ncheek.\t2\ncheek\t5\ncheek-bones,\t1\ncheek-bones\t1\ncheekbones,\t4\ncheekbones\t1\ncheeks,\t9\ncheeks;\t2\ncheeks.\t3\ncheeks\t14\n‘cheer\t1\ncheer\t2\ncheerful\t1\ncheering\t1\ncheese,\t1\nchef\t3\ncheque;\t1\ncheque\t3\ncherished,\t1\ncherished\t3\ncherries.\t1\nChessman,\t2\nChessman!\t1\nchest,\t5\nchest.\t2\nchest\t4\nchestnut\t3\nchestnuts\t1\nchestnut-trees\t1\nchic.\t1\nchic)\t1\nchic\t2\nchicken\t1\nchicken-legs,\t1\nchief\t2\nchiefly\t1\nchild!\t1\nchild?”\t1\nchild.\t2\nchild\t7\n‘Childe\t1\nchild-figures\t1\nchildishness,\t1\nchildren,”\t2\nchildren,\t12\nchildren;\t2\nchildren!\t2\nchildren.”\t1\nchildren.\t7\nchildren”—\t1\nchildren\t11\nchildren’s\t1\nchild’s.\t1\nChild’s\t1\nchill\t5\nchilly\t4\nchimed\t3\nchimes\t1\nchiming\t1\nchimney!\t1\nchimney-piece;\t1\nchimneys\t1\nchimney-sweep\t1\nchin,\t10\nchin.\t2\nchin\t12\nchina:\t1\nchina.\t3\nchina\t2\nchina-blue\t1\nchinchilla\t1\nChinese\t1\nchink\t2\nchintz,\t1\nchintz-covered\t1\nchintzes\t1\nchiselled\t1\nchivalrous\t1\nchivalry.\t1\nchivalry\t1\nchocolate,\t1\nchocolate;\t1\nchoke\t1\nchoked;\t1\nchoose\t2\nchoosing,\t1\nchoosing\t3\nchop,\t1\nchorus\t1\nChorus,\t1\nchose\t2\nchosen\t6\nchosen-soup,\t1\nChrist,\t1\nChrist.\t1\nChristian\t3\nChristianity\t1\nChristmas.\t1\nchronic\t2\nchronicled,\t1\nchronicles\t2\nchubby\t1\nchuckling\t1\nchum,”\t1\nchum\t2\nchump,\t1\nchurch,\t1\nchurch\t5\nChurch,\t1\nChurch.\t1\nChurch\t3\nChurch-dances,\t1\nchurches,\t1\nchurches\t1\nchurchwoman\t1\nCicely,\t1\nCicely\t2\ncigar,\t5\ncigar!\t1\ncigar.\t1\ncigar\t7\ncigar-case\t4\ncigarette.\t2\ncigarette\t3\ncigarettes\t1\ncigars,\t2\ncigars\t6\nCigars,\t1\nCigars!\t1\nCinema.\t1\ncircle,\t1\ncircle\t2\ncircles,\t4\ncircles)\t1\ncircles\t4\ncircling\t1\ncircular\t3\ncirculating\t1\ncircumference.\t1\ncircumspect,\t1\ncircumstance,\t2\ncircumstance\t1\ncircumstances,\t2\ncircumstances\t11\ncitizen\t1\ncitizens,\t1\ncity!’\t1\ncity.\t1\ncity\t2\nCity,\t8\nCity.”\t1\nCity.\t3\nCity\t7\nCivil!\t1\ncivilians\t1\ncivilization.\t1\ncivilization\t2\nclad\t1\nClad\t1\nclaim?\t1\nclaim\t7\nclaimed\t3\nclaims\t1\nclambered\t1\nclan\t1\nclanked\t1\nclap\t1\nclaret\t1\nclasp\t2\nclasped,\t1\nclasped\t5\nclasps\t1\nclass,\t6\nclass.\t4\nclass\t22\nclassed\t1\nclasses,\t2\nclasses\t2\n‘classical’;\t1\nclatter\t1\nclauses\t1\nclawed\t1\ncleaned\t1\ncleaning;\t1\nclean-shaven,\t2\nclean-shaven\t8\ncleansing\t1\nclear,\t2\nclear;\t1\nclear.”\t1\nclear.\t1\nclear\t16\ncleared\t1\nclearly\t9\nclemency\t1\nclenched\t2\nclenching\t1\nClenching\t1\nclergyman,\t1\nclergyman\t1\nclerk,\t1\nclerk.\t1\nclerks\t1\nclever,\t3\nclever.\t1\nclever\t11\n“Clever?”\t1\nclick,\t1\nClicquots\t1\nclient,\t5\nclient\t8\nclients),\t1\nclients\t2\nclimb,\t1\nclimbed\t2\nclimbing\t1\nClimbing\t1\nclinging\t3\ncloak,\t2\ncloak\t2\ncloaks\t2\nclock,\t2\nclock\t5\nclocks.\t1\nclogs\t1\nclose,\t5\nclose.\t2\nclose\t27\n“Close\t1\nClose\t1\nclosed,\t4\nclosed;\t1\nclosed.\t2\nclosed\t7\nclose-lipped\t1\nclosely,\t1\nclosely.\t2\nclosely\t1\n‘closeness’\t1\ncloseness\t1\ncloser\t1\ncloseted\t2\nclosing\t4\ncloth.\t1\ncloth).\t1\ncloth\t1\nclothed,\t1\nclothed\t3\nclothes,\t3\nclothes\t5\nclothing.\t1\ncloud,\t1\ncloud\t4\ncloudless\t1\nclouds,\t1\nclouds;\t1\nclouds\t1\nclown,\t1\nclub,\t2\nclub;\t1\nclub.\t1\nclub\t2\nClub,\t7\nClub.”\t1\nClub.\t2\nClub\t11\nclubmen\t1\nClubmen.\t1\nclubs\t1\nClubs;\t1\nClubs.\t1\nclucked\t1\nclump\t4\nclumsy\t1\nclung\t7\nclustered\t1\nclustering\t1\nclutched,\t1\nclutched\t1\nclutches,\t1\nCo.,\t3\ncoachman,\t3\ncoachman.\t1\ncoachman\t2\ncoachman’s\t1\ncoachmen\t1\ncoarse\t2\ncoat,\t12\ncoat;\t2\ncoat.\t3\ncoat\t12\ncoat-closet\t1\ncoats,\t3\ncoat-tails\t1\ncock\t1\ncockaded\t1\ncocking\t1\ncocksure\t1\ncocoa.”\t1\ncocoa\t2\ncocoons\t1\ncoddles\t1\ncoffee,\t1\ncoffee\t2\ncoffin\t2\ncognisant\t1\ncoif\t2\nCoil,’\t1\nCoil’\t1\ncoils\t1\ncoin\t1\ncoincidence\t1\ncoincidences\t1\ncold,\t8\ncold;\t1\ncold!”\t1\ncold?\t1\ncold.”\t1\ncold.\t5\ncold\t15\ncold-blooded\t2\ncolder\t1\ncold-hearted!\t1\ncoldly:\t1\ncoldly\t1\ncoldness,\t1\ncoldness.\t1\ncollapsing,\t1\ncollar,\t5\ncollar.\t1\ncollar\t6\ncollars,\t1\n“Collect\t1\ncollected,\t1\ncollected\t4\ncollection.\t1\ncollection\t2\ncollectively\t1\ncollector\t2\nCollege,\t1\ncolliery’—\t1\nColliery\t6\nCologne.\t1\ncolour,\t6\ncolour;\t2\ncolour\t23\ncolour-box\t1\ncoloured\t4\ncolouring,\t1\ncolouring\t1\ncolumns,\t1\ncolumns?”\t1\ncolumns\t8\ncombination,\t1\ncombination\t3\ncombined\t3\ncome,’\t1\ncome,\t6\ncome;\t1\ncome!”\t1\ncome!\t5\ncome?”\t2\ncome?\t1\ncome.”\t2\ncome.\t3\ncome\t132\n‘Come\t1\n“Come,\t5\n“Come\t3\nCome,\t1\nCome’;\t1\nCome\t2\ncomely\t1\ncomes!”\t1\ncomes\t12\ncomfort,\t3\ncomfort.\t3\ncomfort\t6\ncomfortable,\t1\ncomfortable\t1\ncomfortably\t2\ncomforted,\t2\ncomforted\t1\ncomforting.\t1\ncomic,\t1\ncoming,\t1\ncoming!\t1\ncoming.”\t2\ncoming.\t3\ncoming\t49\n“Coming\t1\nComing\t2\ncommand:\t1\ncommand\t5\ncommence\t1\ncommenced,\t1\ncommenced\t1\ncommencement\t1\ncommencements\t1\ncomment,\t2\ncomment.\t1\ncomment\t1\ncommercial\t7\nCommercial\t2\ncommercially\t1\ncommercials,\t1\n‘Commissioners\t1\ncommissions\t1\n“Commissions!”\t1\ncommit\t6\ncommits\t1\ncommitted\t7\ncommittees\t1\ncommodious,\t1\ncommodious;\t1\ncommodious\t2\ncommon\t19\nCommon\t1\ncommonly\t1\nCommons\t1\ncommon-sense,\t1\ncommon-sense\t1\ncommonsense\t1\ncommunicating\t1\ncommunication\t2\ncommunity.\t1\ncommunity\t1\ncompanies,\t1\ncompanies\t1\nCompanies\t1\ncompanion,\t1\ncompanion\t1\ncompanionable.\t1\ncompanions;\t1\ncompany,\t2\ncompany.\t3\ncompany\t9\nCompany,\t5\nCompany.\t1\nCompany’\t1\nCompany\t3\nCompany’s\t1\ncomparable\t1\ncomparative\t3\ncomparatively.\t1\ncomparatively\t1\ncompared\t3\ncompartment,\t1\ncompartment!\t1\ncompartment\t1\ncompartments,\t1\ncompartments.\t1\ncompartments\t2\ncompass\t1\ncompassion,\t1\ncompassion:\t1\ncompassion\t1\ncompassionate\t2\ncompatible\t1\ncompelled\t2\ncompete\t1\ncompetition.\t1\ncompetitive,\t1\ncompetitive\t2\ncomplacently\t2\ncomplain,\t1\ncomplained\t2\ncomplainingly,\t1\n“Complains\t1\ncomplaint\t1\ncomplete,\t1\ncomplete.\t1\ncomplete\t6\ncompleted,\t1\ncompleted\t3\ncompletely\t5\ncompleteness\t1\ncompleting,\t1\ncompleting\t3\ncomplexion\t1\ncomplicated.\t1\ncomplicated\t1\ncompliment.\t1\ncompliment\t2\ncomposed;\t1\ncomposed.\t1\ncomposed\t7\nComposed\t1\ncomposure;\t1\ncomposure.\t3\ncomposure\t2\ncompound.\t1\ncompressed,\t1\ncompressed\t3\ncompromise;\t1\ncompromise.\t1\ncompromise\t1\ncompromised\t1\ncompromising!\t1\ncompunctious;\t1\ncompunctious.\t1\ncon\t1\nconcave\t1\nconceal\t2\nconcealed.\t1\nconcealed\t3\nconcealing\t3\nConcealing\t1\nconcealment\t1\nconceit,\t1\nconceited\t1\nconceive;\t1\nconceive\t3\nconceived\t3\nconcentrate\t1\nconcentration,\t1\nconception\t1\nconcern.\t1\nconcern\t3\nconcerned,\t1\nconcerned\t3\nconcernedly\t1\nconcerning\t1\nConcerning\t1\nconcerns;\t2\nconcerns!\t1\nconcertina.’\t1\nConcertina\t2\nconcession\t2\nConcessions’\t1\nConcessions\t1\nconclave\t2\nconcluded\t1\nconclusion.\t1\nconcrete\t1\nconcretion\t1\nconcurred;\t1\ncondition\t3\nconditions\t2\ncondolence\t1\nconduct.\t1\nconduct\t10\nconducted\t2\nconducting\t1\nconductor,\t1\nconference\t1\nconferring\t1\nconfess,\t1\nconfess.\t2\nconfess\t2\nconfessed\t1\nconfession,\t1\nconfession?\t1\nconfession\t2\nconfide\t2\nconfided,\t1\nconfided\t2\nconfidence\t3\nconfidences\t1\nconfident,\t1\nconfident\t1\nconfidential.\t1\nconfidently\t1\nconfine\t2\nconfinement\t1\nconfining\t1\nconfirmation,\t1\nconfirmatory\t1\nconfirmed.\t1\nconfirmed\t2\nconflict.\t1\nconflict\t1\nconfronted\t2\nconfuse\t1\nconfused\t1\nconfusedly\t1\nconfusion\t2\ncongealed\t1\ncongratulate\t2\ncongratulated\t1\ncongratulation.”\t1\nconjugal\t2\nconjunction\t1\nconjured\t2\nconnected,\t1\nconnected\t9\nconnection\t5\nconnoisseur,\t1\nconnoisseur;\t1\nconnoisseur\t1\nconnotes\t1\nconquered\t3\nconquest\t1\nconscience,\t1\nconscience\t2\nConscience\t1\nconscious,\t1\nconscious\t8\nconsciousness.\t1\nconsciousness\t4\nconsented.\t1\nconsequence,\t1\nconsequence\t1\nconsequences\t2\nconservation\t1\nconservatory,\t1\nconservatory;\t1\nconservatory\t1\nconsider\t1\nconsiderable\t4\nconsiderably\t1\nconsideration.”\t1\nconsideration\t2\nconsidered,\t1\nconsidered;\t1\nconsidered\t14\n(considering\t1\nconsidering\t2\nconsisted\t1\nconsistency\t1\nconsistently\t1\nconsolation,\t1\nconsolation.\t2\nconsolation\t1\nconsole\t1\nconsols,\t1\nconsols.\t1\nconspicuous\t4\nconspicuously\t1\nconstellations.\t1\nconsternation\t1\nconstituted\t2\nconstitution;\t1\nconstitution.\t2\nconstitution),\t1\nconstitution\t1\nconstitutional,\t2\nconstitutionally\t2\nconstruction,\t1\nconstruction\t2\nconsulting\t1\nconsummation.\t1\nconsumption.\t1\nconsumption\t1\ncontact,\t1\ncontact\t4\ncontained\t2\ncontaining\t2\ncontemplate\t2\ncontemplated,\t1\ncontemplated.\t2\ncontemplated\t3\ncontemplating\t2\ncontemplation\t2\ncontempt,\t3\ncontempt;\t1\ncontempt:\t2\ncontempt.\t1\ncontempt\t8\ncontemptuous:\t1\ncontent.\t1\ncontent\t3\ncontented\t3\ncontention\t1\ncontentment;\t1\ncontents.\t1\ncontingency,\t1\ncontingency.\t1\ncontingency\t1\ncontinual\t2\ncontinually.\t2\ncontinually\t2\ncontinuance.\t1\ncontinue\t2\ncontinued,\t1\ncontinued\t11\ncontract?\t1\ncontracted\t1\ncontractor,\t1\ncontracts,\t1\ncontradicting\t1\ncontradiction\t1\ncontrary.\t1\ncontrary\t4\nContrary\t1\ncontrast\t2\ncontribute\t1\ncontributed,\t1\ncontributed\t1\ncontrol!\t1\ncontrol\t3\ncontrolled\t1\ncontrols\t1\ncontroversy\t1\nconundrum\t1\nconvenient;\t1\nconvention;\t1\nconventional\t1\nconversation,\t3\nconversation;\t2\nconversation.\t4\nconversation\t9\nconverse\t1\nconvert\t1\nconvey\t1\nconveyed\t1\nconviction\t4\nconvictions\t1\nconvince.\t1\nconvinced\t3\nconvincing\t2\ncooing,\t1\ncook,\t1\ncook\t2\ncool,\t2\ncool\t10\ncooler,\t1\ncooler\t2\ncooling\t1\ncoolly:\t2\ncoolly.\t1\ncopper\t3\ncoppers.\t1\ncopse,\t1\ncopse\t5\ncopy\t3\ncoquette,\t1\ncoquette\t1\ncordage\t1\ncordial,\t1\ncordiality,\t1\ncordially,\t1\ncordially:\t1\ncorduroy\t1\ncore\t2\ncork\t1\ncorkscrewing\t1\ncorn,\t3\ncorner,\t7\ncorner.\t3\ncorner\t16\nCorner,\t1\nCorner\t1\ncorners,\t1\ncorners.\t1\ncorners\t3\ncornerstones\t1\ncornet,\t2\nCornish\t1\nCorot,\t1\ncorporeal\t1\ncorpse,”\t1\ncorpse\t1\n“Corpse!”\t1\ncorpses\t2\nCorrespond\t1\ncorrespondence,”\t1\ncorrespondence,\t2\ncorrespondence;\t1\ncorrespondence.’\t2\ncorrespondence.\t2\ncorrespondence’\t1\ncorrespondence\t9\ncorrespondingly\t1\ncorridor,\t2\ncorridors\t1\ncorroded\t1\ncorrupted\t2\ncortege\t1\ncosiness.\t1\ncost,\t2\ncost!\t2\ncost?”\t2\ncost.\t1\ncost\t19\ncoster,\t1\ncostermonger,\t1\ncosting\t2\ncosts.”\t1\ncosts.\t1\ncosts\t1\ncostume,\t2\ncostumes,\t1\ncosy\t1\ncottage,”\t1\ncottage,\t1\ncottage.\t1\ncottage\t2\ncouch,\t1\ncouched\t1\ncoughed,\t1\ncoughing!\t1\n“could\t1\ncould,\t2\ncould;\t1\ncould!\t1\ncould.\t3\ncould\t314\nCould\t3\ncouldn’t\t17\nCouncil\t1\ncounsel,\t2\nCounsel\t1\ncounsel’s\t1\ncount,\t1\ncount;\t1\ncounted\t3\ncountenance.\t2\ncountenance\t1\ncounter\t1\ncountermand\t1\ncounter-pane\t1\ncounterpane.\t1\ncounting\t1\ncountless\t7\ncountry,\t7\ncountry;\t1\ncountry!\t2\ncountry?”\t2\ncountry.”\t1\ncountry.\t2\ncountry\t11\ncountry-house!”\t1\ncountry-houses?\t1\ncountry-houses.\t1\ncountry’s\t1\ncounts.\t1\ncounty,\t1\ncounty.\t1\ncouple,\t2\ncouple!\t1\ncouple\t6\nCouple\t1\ncouples\t1\ncourage,\t2\ncourage;\t1\ncourage.\t2\ncourage\t3\ncourageous,\t1\ncourageous\t2\ncourse,\t17\ncourse!\t2\ncourse?\t1\ncourse.\t4\ncourse\t24\ncourses\t1\ncourt,\t5\ncourt;\t1\ncourt.”\t1\ncourt.\t7\ncourt\t11\nCourt,\t3\nCourt;\t1\nCourt.\t3\nCourt\t6\ncourtesy,\t1\ncourtesy.\t1\ncourtier’s;\t1\ncourtship;\t1\ncourtship.\t2\ncourt-yard.\t1\ncousin,\t2\ncousin.\t1\ncousin\t1\ncousin’s\t3\ncover\t3\ncovered\t9\ncovered-in\t1\ncovering\t2\ncovertly\t1\ncoverture\t1\ncow.\t1\ncowed;\t1\n‘crack.’\t1\ncrack.\t1\ncracked\t3\ncrackle;\t1\ncrackle\t2\ncradle.\t1\ncrammed\t1\ncramming\t1\ncrankiness\t1\ncranks\t1\n‘cranky,’\t1\ncranky\t2\ncrash\t2\ncravat;\t1\ncravat\t1\ncraving\t5\ncreak\t1\ncreaked,\t1\ncreaked\t1\ncreaking\t1\ncream,\t1\ncream\t6\ncreamy\t2\ncreases\t1\ncreate.\t1\ncreated\t2\ncreation,\t1\ncreation\t1\ncreator.\t1\ncreature\t5\ncreatures,\t1\ncreatures\t7\ncredit!\t1\ncredit.\t2\ncredit\t2\ncredited\t1\ncreed,\t3\ncreepered\t1\ncreeping\t1\ncreepy\t1\ncrept\t4\ncrest;\t1\ncrest.\t1\ncrest\t2\ncrewel\t1\ncrick\t1\ncricket\t1\ncried,\t3\ncried;\t1\ncried:\t4\ncried.\t1\ncried\t10\ncries\t1\ncrimes,\t1\ncriminal.\t1\ncrimson.\t1\ncrimson\t2\ncrimsoned.\t1\ncrimsoning.\t1\ncrisis,\t2\ncrisis.\t1\ncrisis\t3\ncrispness\t1\nCristo!”\t1\ncriterion,\t1\ncritic,\t1\ncritic\t2\ncriticism\t1\ncronies,\t1\ncrook\t1\ncropped\t1\ncross,\t1\ncross\t4\nCross,\t1\ncrossed,\t4\ncrossed;\t1\ncrossed.\t1\ncrossed\t13\ncross-examination,\t1\ncross-examination\t1\ncross-examiner.\t1\ncrossing\t4\ncrossing-sweeper.\t1\ncross-legged\t1\ncrouching\t2\ncrowd,\t1\ncrowd\t2\ncrowded\t5\ncrowding\t1\ncrown.\t1\ncrown\t5\nCrown\t5\ncrowned\t3\ncrowning\t5\ncrowns\t1\ncrucial\t1\ncruel,\t1\ncruel\t2\ncruelties\t1\nCrum\t1\ncrumbs\t1\ncrush\t1\ncrushed\t1\ncrushing\t1\ncrutch\t1\ncry,\t2\ncry:\t3\ncry.\t1\ncry\t5\ncrying\t3\nCrystal\t1\ncub,\t1\ncub\t1\ncubicles,\t1\ncuckoo\t1\n‘Cuckoo-cuckoo!’\t1\ncuckoo’s\t1\ncue.\t1\ncuffs,\t1\ncuffs.\t1\nCulcher.\t1\nculled\t1\ncultivated\t3\nculture\t1\ncup,\t2\ncup.\t1\ncup\t9\nCup.\t2\ncupboard,\t1\ncupboard\t1\ncupboards.\t1\ncups.\t1\ncure.\t1\ncures\t1\ncuriosity,\t3\ncuriosity.\t2\ncuriosity\t4\ncurious!\t1\ncurious\t6\ncuriously\t2\nCuriously\t1\ncurl.\t1\ncurl\t2\ncurled\t3\ncurled-up\t1\ncurls,\t1\ncurls\t2\ncurly\t2\ncurrency,\t1\ncurrent,\t1\ncurrent\t3\ncurrents\t1\ncursed\t3\ncursh.\t1\ncurt\t2\ncurtain.\t3\ncurtain\t1\ncurtains,\t2\ncurtains;\t1\ncurtains\t4\ncurtly.\t1\ncurve\t1\ncurved\t1\ncurves\t2\ncurving\t1\ncushion\t1\ncushions,\t3\ncustodian\t1\ncustodians,\t1\ncustom,\t2\ncustom.\t1\ncustom\t6\ncustomary\t2\ncustoms,\t1\ncustoms\t1\ncut,\t1\ncut\t12\ncut-away\t1\ncut-glass\t2\ncutlet,\t1\ncutlets,\t1\nCutlets\t1\ncutting,\t1\ncutting\t1\ncycle\t2\ncyclic\t1\ncynical,\t1\ncynical\t4\ncynicism),\t1\n—-d\t3\nd\t7\n‘dab’\t1\ndabbed\t1\ndactyl\t1\nDad!\t1\nDad?”\t1\nDad?\t1\nDad.”\t1\nDad’s\t1\ndaily;\t1\ndaily\t7\ndaintily\t1\ndaintiness\t2\ndainty,\t1\ndainty\t2\ndam\t1\ndamage\t1\ndamages.\t1\ndamask,\t1\ndame.\t1\ndamme,\t1\ndamme\t1\nDamme!\t2\ndamn,\t1\ndamp\t1\nDanae\t2\ndance,\t5\ndance?”\t1\ndance\t5\nDance\t1\ndanced,\t1\ndanced\t8\ndancers,\t1\ndancers\t1\ndances,\t2\ndances\t1\ndancing,\t2\ndancing\t5\ndandified\t3\ndanger,\t1\ndanger.\t3\ndanger\t8\nDanger\t1\ndangerous,\t1\ndangerous!”\t1\ndangerous!\t1\ndangerous.\t3\ndangerous\t6\nDangerous\t1\ndangers\t1\ndangling\t1\ndapper,\t1\ndare\t9\ndared\t6\ndaresay\t1\ndaring\t1\ndark,\t13\ndark!\t1\ndark?”\t1\ndark.”\t1\ndark.\t5\ndark\t38\nDark\t2\ndarkened\t4\ndarkening\t1\ndarker\t1\ndarkest\t2\ndark-eyed\t1\ndark-haired,\t1\ndark-haired\t1\ndarkness,\t1\ndarkness?\t1\ndarkness.\t2\ndarkness\t2\ndark-rimmed\t1\ndark-skinned,\t1\ndarling,”\t3\ndarling,\t1\ndarling!”\t1\ndarling?”\t1\ndarted\t1\n(Dartie\t1\nDartie,\t12\nDartie;\t2\nDartie.”\t1\nDartie.\t4\nDartie\t28\nDARTIE,\t1\nDARTIE.\t1\n(Dartie’s\t1\nDartie’s,\t1\nDartie’s\t5\nDarties\t5\nDartmoor,\t1\ndashed\t2\ndashing\t4\ndated\t1\ndates,\t1\ndaubed\t1\ndaughter,\t6\ndaughter),\t1\ndaughter\t6\nDAUGHTER\t1\ndaughter-in-law;\t1\ndaughter-in-law.\t3\ndaughter-in-law\t1\ndaughter’s\t1\ndaughters,\t1\ndaughters.\t1\ndaughters’\t1\ndaughters\t3\ndaunted\t1\n‘daverdy’;\t1\ndaverdy,\t1\ndawdled\t1\ndawgs!\t1\ndawn\t1\ndawned\t1\nday,\t10\nday;\t6\nday:\t1\nday!’\t1\nday!”\t1\nday!\t2\nday?”\t1\nday?\t1\nday.”\t3\nday.\t7\nday\t53\nDay,\t1\nDay\t3\nDAY\t1\nday-grinding\t1\ndaylight,\t1\nday’s\t1\ndays,\t7\ndays;\t1\ndays!\t1\ndays.”\t1\ndays.\t7\ndays’\t1\ndays\t19\nDAYS\t1\nd-damned\t1\nd-d-die!’\t1\nde\t3\ndead,\t7\ndead!”\t1\ndead.\t1\ndead”\t1\ndead\t19\ndeaf,\t1\ndeaf.\t1\ndeaf\t2\ndeafness,\t1\ndeal,\t3\ndeal;\t1\ndeal.\t1\ndeal\t18\ndealer’s\t1\ndealing\t1\ndealings\t3\ndealt\t1\n‘dear\t1\ndear,”\t4\ndear,\t6\ndear;\t2\ndear!”\t2\ndear!\t2\ndear?”\t1\ndear.\t2\ndear\t38\nDear\t2\n‘DEAR\t7\nDEAR\t2\ndearer\t1\ndearest\t1\nDEAREST\t1\ndeath,\t6\ndeath;\t1\ndeath:\t1\ndeath!”\t1\ndeath.\t4\ndeath\t15\n“Death\t1\nDeath,\t1\nDeath?\t1\nDeath.\t1\nDeath\t1\ndeathly\t1\ndeaths\t1\ndebating,\t1\ndebating\t1\ndebris\t1\ndebt,\t1\ndebt!”\t1\ndebt?”\t1\ndebut;\t1\ndecades,\t1\ndecanters,\t1\ndecay\t1\ndecease.\t1\ndecease\t2\ndeceased,’\t1\ndeceased\t3\ndeceive\t1\ndeceived.\t1\ndeceiving\t1\ndecencies\t1\ndecency,\t1\ndecent\t1\ndecently\t1\ndecide,\t1\ndecide\t2\ndecided,\t1\ndecided;\t2\ndecided\t13\ndecidedly\t2\ndeciding\t1\ndecision.\t1\ndecision\t6\ndecisions;\t1\ndecisions\t1\ndecisive\t1\ndecking\t1\ndeclare,\t1\ndecline,\t1\ndecline\t1\ndeclined,\t1\ndeclining\t1\ndecorate,\t1\ndecorate\t3\ndecorated,\t2\ndecorated\t2\ndecoration,\t3\ndecoration\t9\ndecorations,\t3\ndecorations.’\t1\ndecorations\t3\ndecorously\t1\ndeductions,\t1\ndeeds.\t1\ndeep,\t2\ndeep.\t1\ndeep\t13\ndeepen\t3\ndeepened;\t1\ndeepened\t4\ndeepening,\t1\ndeepening\t1\ndeeper\t3\ndeeply,\t1\ndeeply.\t1\ndeeply\t5\ndeep-seated\t1\ndeep-set\t1\ndeer\t2\ndefault\t2\ndefeat.\t1\ndefeat\t3\ndefection.\t2\ndefence,\t1\ndefence.\t4\ndefence\t4\ndefences\t2\ndefend\t2\ndefendant,\t2\ndefendant.\t1\ndefendant\t9\ndefendant’s\t1\ndefended\t2\ndefensive\t1\ndeference,\t1\ndeference.\t1\ndeference\t1\ndeferentially,\t1\ndefiance.\t1\ndefiance\t3\ndefiant\t1\ndefiantly.\t1\ndeficiencies.\t1\ndefine\t3\ndefinite;\t1\ndefinite\t2\ndefinitely\t1\ndefrauding\t1\ndefrayed\t1\ndegenerate\t1\ndegree,\t1\ndegree.\t1\ndegree\t4\ndegrees!\t1\ndeigning\t1\ndejection.\t1\ndelay\t1\ndelectable\t1\ndeliberately\t1\ndelicacy,\t1\ndelicacy\t2\ndelicate\t7\ndelicately;\t1\ndelicious\t3\ndelight,\t2\ndelight;\t1\ndelighted\t1\ndelightful\t2\ndelights,\t1\ndelights\t2\ndelirium\t1\ndelivered\t4\ndelivery,\t1\ndeluging\t1\ndemanded:\t1\ndemanded\t2\ndemanding\t1\ndemonstrated\t2\ndemonstrating\t1\ndemonstration.\t1\nden\t1\ndenial,\t1\ndenied\t1\ndenies,\t1\ndenser\t1\ndentist,\t1\ndentist’s\t1\ndeny\t1\ndeparted,\t1\nDEPARTED\t1\ndeparting\t1\ndepartment,\t1\ndepartment\t1\ndeparture,\t2\ndeparture.\t3\ndeparture\t3\nDeparture\t1\ndepend\t3\ndependable\t1\ndepended\t1\ndependent\t3\ndepending\t1\ndepends.”\t1\ndepends\t1\ndeplorable,\t1\ndeplorable.\t1\ndeplorable\t2\ndeplorably\t1\ndeportment\t2\ndeposit\t1\ndeposited\t2\ndepositing\t1\ndeprecate\t1\ndeprecated.\t1\ndeprecated\t1\ndeprecating\t1\ndepression,\t1\ndeprive\t1\ndeprived\t1\ndepths,\t1\ndepths.\t1\ndepths\t2\nDerby\t1\ndereliction\t1\nderisive\t1\nderived\t6\ndescanted\t1\ndescend,\t1\ndescend.\t1\ndescendants\t1\ndescended\t2\ndescending\t1\ndescent\t1\ndescribe\t1\ndescribed\t6\ndescribing\t1\ndescription\t2\ndescriptions,\t1\ndescriptions\t1\ndesert\t2\ndeserted\t4\ndeserting\t1\ndeserts,\t1\ndeserved.\t2\ndeserved\t2\ndesign,\t1\ndesign\t1\ndesignated\t1\ndesigned).\t1\ndesigned\t1\ndesigning\t1\ndesigns.”\t1\ndesigns.\t1\ndesirable\t3\ndesire,\t1\ndesire;\t1\ndesire:\t1\ndesire.\t1\ndesire\t13\ndesired,\t1\ndesired\t7\ndesires\t1\ndesirous\t1\ndesk,\t1\ndesk\t1\ndesolately\t1\ndesolation\t1\ndespatch\t2\ndespatched\t1\ndesperate,\t1\ndesperate\t4\ndesperation:\t1\ndesperation\t1\ndespise\t1\ndespised,\t1\ndespised.\t1\ndespised\t5\ndespising,\t1\ndespising\t1\ndestined\t3\ndestroy\t1\ndestroying\t2\ndestruction\t1\ndetail,\t1\ndetail\t2\ndetailed\t1\ndetails\t3\ndetain\t1\ndetected\t1\ndetermination.\t1\ndetermination\t1\ndetermine\t1\ndetermined,\t1\ndetermined;\t1\ndetermined\t5\nDetermining\t1\ndeterred\t2\ndetested\t4\ndethroned\t1\ndeuce\t3\ndeuced\t1\ndevelop\t1\ndeveloped\t1\ndeveloping\t1\ndevelopments;\t1\ndeviated\t1\ndeviating\t1\ndevil,\t2\ndevil!”\t2\ndevil!\t1\ndevil\t3\n‘devil’s\t1\ndevils\t1\ndevised\t4\ndevising\t2\ndevoid\t1\ndevote\t1\ndevoted\t5\ndevotion\t2\ndevoured\t1\ndevoutly\t1\ndew;\t1\ndews.\t1\ndewy\t1\ndexter\t2\ndey-vil!”\t1\ndey-vil\t1\nDiagnosis\t1\ndiamond\t3\ndiamonds.\t1\ndiamonds\t1\ndictatorial\t1\ndictum\t2\n“did\t1\ndid,\t5\ndid;\t1\ndid?\t3\ndid.\t5\ndid\t209\n“Did\t3\nDid\t3\ndidn’t\t42\n“Didn’t\t1\ndie,’\t1\ndie,\t1\ndie;\t4\ndie!”\t1\ndie.”\t1\ndie.\t1\ndie\t7\ndied,\t3\ndied;\t1\ndied.\t4\ndied\t12\ndifference,\t1\ndifference.\t1\ndifference\t4\ndifferences,\t1\ndifferent,\t1\ndifferent.\t1\ndifferent\t15\ndifferently\t1\ndifficult\t12\nDifficult\t1\ndifficulties.\t1\ndifficulties\t2\ndifficulty,\t2\ndifficulty.\t1\ndifficulty\t7\ndiffused\t1\ndig.;\t1\ndigest.\t1\ndigested\t1\ndigestion,\t1\ndignified\t3\ndignity,\t3\ndignity;\t2\ndignity:\t2\ndignity.\t1\ndignity\t2\ndiluted\t1\ndim,\t1\ndim\t6\ndimensions\t1\ndiminish\t1\ndimly,\t1\ndimmed\t1\ndimple\t1\ndim-shaped\t1\ndine,\t2\ndine\t11\ndined,\t2\ndined\t5\ndining\t3\ndining-room,\t4\ndining-room;\t1\ndining-room.\t2\ndining-room\t13\ndining-rooms,\t1\ndining-table.\t1\ndining-table\t1\n‘dinner\t1\n“dinner\t1\ndinner,”\t1\ndinner,\t9\ndinner!”\t1\ndinner?”\t1\ndinner.’\t1\ndinner.\t10\ndinner\t29\n“Dinner,\t1\n“Dinner\t1\nDinner\t1\ndinner-party,\t1\ndinner-party\t1\ndinners,\t1\ndinners\t1\ndinner-time\t1\ndip\t1\ndiphtheria\t1\ndiplomatic\t1\ndipping\t1\ndirect,\t2\ndirect\t2\ndirected,\t1\ndirected\t2\ndirecting\t1\ndirection,\t1\ndirection;\t1\ndirection\t4\ndirections\t2\ndirectly.\t2\ndirectly\t1\ndirectness\t1\ndirector,\t2\ndirector),\t1\ndirector\t2\nDirector\t1\ndirectors,\t1\ndirectors’\t1\ndirectors\t1\nDirectors’\t1\ndirt!\t1\ndirt\t2\ndisadvantage\t1\ndisaffection\t1\ndisagreeable\t1\ndisappearance\t2\ndisappeared.\t1\ndisappeared\t1\ndisappearing\t1\ndisappointing\t1\ndisappointingly\t1\ndisappointment\t1\ndisapprobation\t1\ndisapproval,\t2\ndisapproval;\t1\ndisapproval\t6\ndisapproved\t3\ndisarranged\t1\ndisaster.\t1\ndisbelief,\t1\ndisbelieved\t1\ndischarge\t1\ndischarged\t1\ndisclosed\t2\ndisclosure\t1\ndiscoloured\t2\ndiscomfiture,\t1\ndiscomfiture\t1\ndisconcerted\t4\ndisconcertingly\t1\ndiscounted\t1\nDiscounting\t1\ndiscouraged;\t1\ndiscover\t3\ndiscovered.\t1\ndiscovered\t3\ndiscovery.\t1\ndiscovery\t1\ndiscrepancy.\t1\ndiscretion,\t2\ndiscretion!”\t1\ndiscretion.\t1\ndiscretion\t1\ndiscuss\t7\ndiscussed\t1\ndiscussing\t1\ndiscussion.\t1\ndiscussion\t1\ndisfavour\t1\ndisgraceful\t3\ndisgracefully,\t1\ndisguised\t2\ndisguising\t1\ndisgust,\t1\ndisgust:\t1\ndisgust\t2\ndish,\t1\ndisheartened,\t1\ndisillusion!\t1\ndisillusioned\t1\ndisinclined\t1\ndisintegrating\t1\ndisinter\t1\ndisinterested-looking\t1\ndisjointed\t1\ndislike.\t1\ndislike\t6\ndisliked\t5\ndislikes\t1\ndismal\t1\ndismay;\t1\ndismay\t2\ndismissed\t1\ndispassion\t1\ndispassionate\t1\ndispel\t1\ndispensing\t1\ndisplay,\t1\ndisplay\t1\ndisplayed\t2\ndisplaying\t3\ndispose\t1\ndisposed\t2\ndisposition,\t1\ndisposition\t4\ndispute,\t1\ndispute.\t1\ndispute\t1\ndisquiet\t1\ndisquietly\t1\ndisregard\t1\ndisregarded\t2\ndisreputable\t1\ndissatisfied\t1\ndissimilar\t1\ndissolution\t1\ndissolving\t1\ndistance,\t1\ndistance\t3\ndistant\t2\ndistaste\t1\ndistemper\t1\ndistempered\t2\ndistinct,\t1\ndistinct\t3\ndistinction\t2\ndistinctions,\t1\ndistinctly\t1\ndistinguish\t1\ndistinguished.”\t1\ndistinguished.\t1\ndistinguished\t8\ndistinguished-looking,”\t1\ndistinguished-looking\t1\ndistinguishing\t3\ndistorted\t1\ndistract\t3\ndistress,\t1\ndistress\t1\ndistressing,\t1\ndistressing\t2\ndistrict\t2\ndistrust,\t2\ndistrust\t3\ndistrusted\t1\ndistrustful.\t1\ndisturb\t2\ndisturbance\t1\ndisturbed,\t2\ndisturbed;\t1\ndisturbed.\t1\ndisturbed\t5\ndisturbing\t4\n‘Disunion,’\t1\n‘Disunion’\t2\nditties,\t1\nditty,\t1\ndiversity\t1\ndiverted\t1\ndivest\t1\ndivested\t3\ndivided\t3\nDivided,\t1\ndividend\t1\ndividends\t1\ndivine.”\t1\ndivining\t1\ndivision\t1\ndivorce!\t3\ndivorce\t2\n‘Divorce\t1\nDivorce\t2\ndivulge\t1\ndizzy.\t1\n“do\t1\ndo,”\t2\ndo,\t8\ndo;”\t1\ndo;\t1\ndo!”\t2\ndo?”\t1\ndo?\t5\ndo.”\t2\ndo.\t6\ndo\t125\n‘Do\t1\n“Do!”\t1\n“Do!\t1\n“Do\t9\nDo\t1\ndoctor,\t3\ndoctor;\t1\ndoctor!”\t1\ndoctor\t2\ndoctor’s\t1\ndoctors,\t2\ndoctors\t1\n“Doctors!”\t1\ndoctrines\t1\ndodging\t2\ndoes,\t1\ndoes!”\t2\ndoes.”\t1\ndoes.\t1\ndoes\t11\n“Does\t2\ndoesn’t\t19\nd’oeuvre.\t1\nd’oeuvre\t2\ndog,\t2\ndog.\t1\ndog\t19\ndogged,\t2\ndogged\t5\ndoggedly.\t1\ndoggedly\t2\ndogmatism\t1\ndog’s\t1\ndogs,\t1\ndogs;\t1\ndogs?\t1\ndogs\t1\ndog-skin\t1\ndog-tired,\t1\ndoing,\t4\ndoing;\t2\ndoing!”\t1\ndoing?\t1\ndoing.\t1\ndoing\t28\nDoing\t1\ndoings\t1\ndome,\t1\ndome\t2\ndome-like\t2\ndomestic\t3\ndomestics.\t1\ndominant\t1\ndomination\t2\ndomineering\t1\ndomineeringness\t1\ndonations\t1\ndone,\t3\ndone;\t2\ndone!”\t1\ndone!\t1\ndone?”\t2\ndone?\t4\ndone.”\t1\ndone.\t3\ndone\t36\n“Done?\t1\ndonkey\t1\ndonkey-cart\t1\nDonna\t1\n‘don’t\t1\n“don’t\t4\ndon’t,”\t2\ndon’t!”\t1\ndon’t\t115\n“Don’t!\t1\n“Don’t\t15\nDon’t\t6\ndoor,\t20\ndoor;\t3\ndoor!”\t1\ndoor.’\t1\ndoor.\t13\ndoor\t45\ndoor-mat.\t1\ndoors,\t3\ndoors.\t2\ndoors\t3\ndoorway,\t1\ndoorway.\t4\ndoorway\t3\ndoorways,\t1\nDorsetshire,\t1\nDorsetshire\t1\nDosset\t1\ndotted\t1\ndouble,\t1\ndouble\t6\ndouble-faced\t1\ndoubt,\t9\ndoubt!\t1\ndoubt.”\t1\ndoubt.\t3\ndoubt),\t1\ndoubt\t14\ndoubted\t1\ndoubtful,”\t1\ndoubtful\t7\ndoubtfully.\t1\ndoubting\t2\ndoubtless\t3\ndoubts,\t1\ndoubts\t7\ndouce\t1\nDover.\t1\ndown,”\t2\ndown,\t15\ndown;\t7\ndown!’\t1\ndown!\t1\ndown?\t1\ndown.\t15\ndown\t160\nDown\t3\n‘Down-by-the-starn’\t2\n(Down-by-the-starn),\t1\n(Down-by-the-starn)\t2\ndown-drooping\t1\ndownright\t2\ndowns.\t1\ndownstairs,\t4\ndownstairs.\t5\ndownstairs\t2\ndownwards\t1\ndowny\t1\ndozen.\t1\ndozen\t8\ndraft\t1\ndrag\t5\ndragged\t2\ndraggled\t1\ndragooning\t1\ndrainage\t1\ndraining\t1\ndrains,\t1\ndrama.\t1\ndrank;\t1\ndrank!\t1\ndrank.\t1\ndrank\t5\ndraught.\t2\ndraughts\t1\ndraughty\t1\ndraw\t8\ndrawer,\t2\ndrawer;\t1\ndrawer.\t2\ndrawer\t2\ndrawing\t12\ndrawing-room,\t9\ndrawing-room;\t2\ndrawing-room.\t5\ndrawing-room\t16\ndrawings\t4\ndrawled\t1\ndrawling\t1\ndrawn;\t1\ndrawn\t13\ndread\t7\ndreaded,\t1\ndreaded\t2\ndreadful\t6\n“Dreadful\t1\ndreadfully\t2\ndreading,\t1\ndreading\t1\ndream,\t2\ndream.\t1\ndream\t1\ndreamed\t1\ndreaming\t2\ndreams!\t1\ndreary,\t1\ndregs.\t1\ndregs\t1\ndrenched\t1\nDresden\t1\ndress,\t6\ndress!”\t1\ndress.\t4\ndress\t12\ndressed,\t2\ndressed.”\t1\ndressed.\t1\ndressed\t4\n“Dressed\t1\ndresses;\t1\ndressing,\t1\ndressing.\t1\ndressing\t1\nDressing\t1\ndressing-glass,\t1\ndressing-room,\t3\ndressing-room.\t1\ndressing-room\t3\ndrew\t15\ndried\t3\ndrift,”\t1\ndrifted\t4\ndrifting\t1\ndrily.\t1\ndrink,\t4\ndrink;\t1\ndrink!\t1\ndrink\t11\ndrinking\t4\ndrinks\t1\n‘drive’—\t1\ndrive,\t3\ndrive.\t2\ndrive\t31\n“Drive\t1\nDrive\t1\ndriven\t8\ndriver,\t2\ndriver\t7\ndrives.”\t1\ndrivin’\t2\ndriving\t13\ndroll!\t3\nDromios.\t1\ndrone\t1\ndroop\t1\ndrooped\t1\ndrooping\t4\ndrop,\t1\ndrop.\t1\ndrop\t2\ndropped,\t1\ndropped;\t1\ndropped.\t3\ndropped\t10\ndropping\t6\nDropping\t1\ndrops\t1\ndrove\t14\ndrown\t1\ndrowned\t1\ndrowning\t1\ndrowns\t1\ndrowsy,\t1\ndrowsy\t2\nDrugs\t1\ndrum;\t1\ndrunk,\t2\ndrunk\t3\ndrunken\t1\nDrury\t1\ndry.”\t1\ndry\t5\n“Dry\t1\ndubious.\t1\ndubious\t1\nduck,’\t1\nducks!”\t1\nducks’\t2\ndudgeon.\t1\ndue\t12\nDuke\t1\ndull,\t2\ndull’;\t1\ndull\t3\nduller\t1\nduly\t1\nduly-credited\t1\ndumb\t3\ndumbfounded;\t1\ndumbness\t1\nDundreary\t2\ndunno\t1\nduplication\t1\nduring\t9\nDuring\t4\ndusk,\t1\ndusk.\t1\ndusk\t1\ndusky\t3\ndust,\t1\ndust.\t1\ndust\t3\ndust-coloured\t1\ndusted\t1\ndustily,\t1\ndustless\t1\ndusty\t2\n‘Dutch\t1\nDutch\t1\nDutchman!”\t1\nduties,\t1\nduties\t2\nduty,\t4\nduty.\t1\nduty\t7\ndwelt\t6\ndyed\t2\ndying,\t2\ndying\t3\nd’you\t7\nD’you\t1\nDyson;\t1\ndyspepsia,\t1\ne,\t1\neach\t79\nEach\t6\neager,\t4\neager\t3\neagerly.\t1\neagerness.\t1\near,\t2\near:\t2\near.\t1\near\t2\nearache\t1\nearlier\t2\nearliest\t1\nearly,\t3\nearly.\t1\nearly\t4\nEarly\t1\nearn\t1\nearned\t1\nearnestly,\t1\nearnestly\t1\nears,\t4\nears:\t1\nears.\t2\nears\t6\nearth,\t3\nearth!\t1\nearth\t14\nearthly\t1\nease.\t2\nease\t2\nEase\t1\neasel,\t1\neasel.\t1\neasel\t1\neasier\t1\neasily\t3\neast\t1\neastward\t1\neastwards,\t1\neasy\t7\neat;\t1\neat.\t2\neat\t5\neatable.’\t1\neaten\t2\neater,\t1\neating,\t1\neating.\t1\neating\t5\neating-house,\t1\neating-places\t1\nEau-de\t1\nebony\t1\nE.C.,\t1\neccentric,\t1\neccentric\t1\neccentricities\t1\necclesiastical\t1\necho\t1\nechoed\t2\neclipse\t1\neconomy\t1\neconomy’s\t1\necstasy.\t1\neddy\t2\nEddy’s\t1\nedge,\t1\nedge\t5\nedges\t1\nedging\t1\nEdgware\t1\nedifice.\t1\nedifice\t2\neditor\t1\nEditor\t1\neducation,\t2\neducational\t2\nEDWARD\t1\ne-ere\t1\neffect,\t1\neffect;\t1\neffect:\t1\neffect.\t3\neffect\t10\neffected\t2\neffects\t3\neffete\t1\nefficiency,\t1\neffigies\t1\neffigy\t1\nefflorescence.\t1\nefflorescence\t1\neffort,\t2\neffort\t8\nefforts,\t2\nefforts\t2\neffusion\t1\neffusively,\t1\negg\t1\neggs.\t1\negotists\t1\nEgyptian\t1\nEgyptians\t1\neh?”\t1\neh?\t1\n“Eh?”\t2\neight!”\t1\neight!\t1\neight.”\t1\neight.\t1\neight\t9\n“Eight\t1\neighteen\t1\neighties\t1\nEighty\t1\nEighty-one!\t1\nEIGHTY-SEVEN\t1\neighty-six,\t1\nEighty-six\t1\neither,\t1\neither.\t1\neither\t12\nEither\t1\nejaculated,\t1\nelaborate\t2\nelapsed\t1\nelastic-sided\t1\nelbow,\t1\nelbow.\t1\nelbow\t3\nelbowed\t1\nelder\t4\nelders,\t1\neldest\t4\nelectric\t4\nelegance\t2\nelegant.’\t1\nelegant’—\t1\nelement,\t1\nelement\t1\nelements\t1\nelephant,”\t1\nelephant,\t1\nelephant.”\t1\nelevate\t1\neleven;\t1\neleven.”\t1\neleven\t5\neligible\t1\nell.\t1\nElla\t1\nelse,\t3\nelse!”\t1\nelse!\t1\nelse”).\t1\nelse\t11\nelse’s:\t1\neludes\t1\neluding\t1\nElysium\t1\n’em,\t1\n’em\t2\nemanation\t1\nembalmed\t1\nembalming\t1\nembarrassing\t1\nembarrassment\t1\nembedded\t2\nemblem\t4\nembodied,\t1\nembodied\t1\nembodies\t1\nembodiment\t1\nembody\t1\nembonpoint,\t1\nembonpoint\t1\nembowered\t1\nembrace\t2\nembrasure,\t1\nembrasure\t1\nembroidered\t1\nemerged\t1\nemerging\t1\n‘Emily\t1\nEmily,\t4\nEmily!\t1\nEmily?”\t1\nEmily\t10\nEmily’s:\t1\nEmily’s\t4\neminence\t1\nEmmanuel\t1\nemotion,\t1\nemotion;\t1\nemotion.\t5\nemotion\t4\nemotions,\t2\nemotions\t2\nemphasis,\t1\nemphasis\t1\nemphasize\t1\nemphatic\t2\nemphatically\t1\nEmpire.\t1\nEmpire\t2\nemploy\t2\nemployees,\t1\nemployment\t3\nemporium\t3\nemptiness\t2\nempty;\t1\nempty.\t2\nempty\t13\nemptying\t1\nenable\t1\nenabled\t5\nenabling\t1\nenamelled\t1\nencased\t1\nencircled\t2\nenclosed\t2\nenclosing\t2\nencounter,\t1\nencounter\t1\nencountered\t2\nEncountering\t2\nencourage\t1\nencouraged\t3\nencouragement,”\t1\nencouraging:\t1\nencroaching\t1\nencroachments\t1\nencumbering\t1\nend,\t12\nend!\t1\nend?\t1\nend.”\t1\nend.\t8\nend\t38\nEnd.\t1\nEnd\t1\nendangered\t1\nendearingly\t1\nendeavoured\t1\nendeavouring,\t1\nendeavouring\t1\nended,\t1\nended;\t1\nended.\t2\nended\t6\nending,\t1\nending.\t1\nending\t5\nendless\t2\nendorsed\t1\nendowed\t2\nends,\t1\nends.\t1\nends\t3\nenemy,\t1\nenemy.\t1\nenergy,\t3\nenforce\t1\nenforced\t1\nengaged,\t1\nengaged\t8\nEngaged\t2\nengagement,”\t1\nengagement,\t4\nengagement?”\t1\nengagement.”\t1\nengagement.\t3\nengagement\t8\nengagements,\t1\nengagements\t1\nEngland,\t2\nEngland.”\t1\nEngland\t2\nEnglish?”\t1\nEnglish\t6\nEnglishman,\t1\nEnglishman\t1\nenigma\t2\nenjoy\t4\nenjoyed\t3\nenjoying\t1\nenjoyment,\t2\nenjoyment\t4\nenjoys\t1\nenlaced,\t1\nenlaced\t1\nenlarge\t1\nenlarged\t1\nenlightened\t1\nenlist\t1\nenormous,\t1\nenormous;\t1\nenormous\t2\nenough,’\t1\nenough,”\t1\nenough,\t7\nenough!’\t1\nenough!”\t2\nenough.”\t1\nenough.\t4\nenough’\t1\nenough\t27\nenquiries,\t1\nenraged\t1\nenraptured\t1\nenshrined\t1\nensuing\t1\nenter,\t1\nenter.\t1\nenter\t7\nentered,\t1\nentered:\t1\nentered.\t2\nentered\t20\nentering\t1\nEntering\t2\nenterprise,\t1\nenterprise\t4\nenterprises\t1\nentertain\t4\nentertained.\t1\nentertained\t1\nentertainment,\t1\nenthusiasms.\t1\nenthusiastic,\t1\nenthusiastic\t1\nenticing.\t2\nentire\t2\nentirely\t6\nentitled:\t1\nentitled\t4\nentrance,\t5\nentrance.\t1\nentrance\t3\nentreating,\t2\nentreating;\t1\nentree,\t1\nentrusting\t1\nenvelope,\t1\nenvelope\t1\nenveloped\t1\nenvied\t1\nenvy,\t1\nenvy.\t2\nenvy\t1\nepic\t1\nepisode\t2\nepitaph.\t1\nepitaph\t1\nepitaphs\t1\nequal\t2\nequipage,\t1\nequipage\t1\ner\t7\n“Er\t1\nera,\t2\nere\t3\nerect.\t1\nerect\t3\nerection,\t1\nerectness\t1\nErotic\t2\nerrand.\t1\nerratic\t1\n(erroneously\t1\nerror,\t1\nerror.”\t1\nerror.\t1\nerror);\t1\nescapade\t1\nescape,\t1\nescape\t4\nescaped\t1\nescaping\t1\nescorted\t1\nespecial\t1\nespecially\t14\nessences\t1\nessential\t5\nessentials;\t1\nestablished\t2\nestate,\t1\nestate\t1\nesteemed\t1\nestimate,\t1\nestimate\t1\nestimates.\t1\nestimates\t2\nestimation,\t1\nestimations.\t1\nestranged\t1\nestuary.\t1\netc.\t1\netc\t1\neternal,\t1\neternal\t4\nether.\t1\nether\t1\nEton\t2\nEuphemia,\t6\nEuphemia.\t1\nEuphemia\t9\nEuphemia’s\t2\nEustace,\t3\nEustace\t2\nEustace’s\t1\nevade\t1\nevaded\t1\nevaporated,\t1\nevaporated.\t1\neven,\t2\neven\t71\nEven\t7\nevening,\t7\nevening.\t6\nevening\t30\nEvening\t1\nevenings\t2\nevent,\t1\nevent;\t1\nevent.\t1\nevent\t3\neventful\t1\nevents,\t5\nevents\t7\never,’\t1\never,\t3\never;\t1\never.\t4\never\t55\nevery\t66\nEvery\t4\neverybody,\t1\neverybody;\t1\neverybody\t3\n‘everybody’s\t1\nevery-day\t1\neveryday\t1\neveryone\t7\nEveryone,\t1\nEveryone\t1\neverything,\t2\neverything;\t1\neverything!”\t1\neverything!\t1\neverything.”\t1\neverything.\t3\neverything\t24\nEverything\t4\neverywhere,\t1\neverywhere\t1\nevidence,\t2\nevidence;\t1\nevidence.\t3\nevidence\t11\nEvidence\t1\nevidences\t1\nevident\t2\nevidently\t7\nEvidently,\t1\nevil,\t1\nevoked\t1\nevolve,\t1\nexact,\t2\nexact.\t1\nexact\t9\nexactly.\t2\nexactly\t9\nexaggerated\t1\nexaggeration\t2\nexamination.\t1\nexamined\t3\nexamining\t4\nexample;\t1\nexample\t1\nexasperated\t1\nexasperation,\t1\nexasperation\t1\nexceed\t5\nexceeded\t3\nexceedingly\t1\nexcellent,\t1\nexcellent\t7\nexcept,\t3\nexcept\t9\nexception,\t1\nexception.\t1\nexception\t2\nexceptional.\t1\nexceptionally\t2\nexcess\t1\nexcesses.\t1\nexcessively\t1\nexchange\t2\nExchange,\t1\nExchange;\t1\nExchange\t2\nexchanged\t3\nexcited,\t1\nexcited\t5\nexcitement,\t1\nexcitement.\t1\nexcitement\t4\nexciting,\t1\nexciting\t2\nexclaimed;\t1\nexclaimed.\t1\nexclaimed\t3\nexclaiming\t1\nexclamation\t3\nexclude\t1\nexcluded\t1\nexclusion\t1\nexcrescence\t1\nexcuse,\t2\nexcuse\t2\nexcused\t1\nexcuses,\t1\nexcuses\t1\nexecuted\t2\nexecutor,\t2\nexempt,\t1\nexercise,”\t1\nexercise,\t3\nexercise;\t2\nexercise.”\t1\nexercise.\t1\nexercise\t4\n“Exercise!”\t1\nexercised\t4\nexercising\t1\nexert\t1\nexertion\t1\nexertions,\t1\nexhaled\t1\nexhaling\t1\nexhausted,\t1\nexhausted\t3\nexhibited\t1\nexhilarating\t1\nexhortations,\t1\nexigencies\t1\nexisted\t2\nexistence,\t1\nexistence.\t2\nexistence\t4\nexisting,\t1\nexit.\t1\nexpanse\t1\nexpansion\t1\nexpect,\t1\nexpect?\t2\nexpect.”\t1\nexpect\t15\nexpectant,\t1\nexpectation,\t1\nexpectation\t1\nexpected,\t1\nexpected;\t1\nexpected.\t2\nexpected\t21\nexpecting;\t1\nexpecting\t3\nexpedition\t2\nexpend.\t1\nexpended\t1\nexpenditure,\t2\nexpenditure\t3\nexpense,\t1\nexpense;\t1\nexpense\t2\nexpenses\t1\nexpensive\t1\nexperience,\t3\nexperience!”\t1\nexperience\t6\nexperienced\t3\nexperiences.\t1\nexperiment,\t1\nexpert,\t1\nexpired\t1\nexplain\t1\nexplained,\t1\nexplained\t1\nexplanation\t1\nexploded\t1\nexploits.\t1\nexplosion\t1\nexposed\t1\nexposure\t1\nexpress\t2\nexpressed\t12\nexpressing\t1\nexpression,\t8\nexpression.\t2\nexpression\t22\nexpressions\t2\nexquisite\t2\nextended\t3\nextending\t1\nextent\t6\nextinct\t1\nextinguished\t1\nextra,\t1\nextra.\t1\nextra\t3\nextract\t1\nextraction,\t1\nextraordinary,\t1\nextraordinary!”\t1\nextraordinary\t6\nExtraordinary\t1\n‘extras’\t1\nextras.\t1\nextravagance.\t1\nextravagance\t2\nextravagant,\t2\nextravagant\t3\nextreme,\t2\nextreme;\t1\nextreme.’\t1\nextreme\t9\nextremely\t17\nextremes.\t1\nexuberance\t1\neye,\t3\neye;\t2\neye!\t1\neye.\t6\neye\t25\nEye.’\t1\neyebrows,\t1\neyebrows\t2\neyed\t1\neye-glasses\t1\neyelash.\t1\neyelids,\t1\neyelids\t1\neyes,\t45\neyes;\t6\neyes:\t4\neyes?”\t1\neyes?\t1\neyes.\t27\neyes\t144\nfabric\t1\nface,\t58\nface;\t10\nface:\t1\nface?\t1\nface.\t22\nface);\t1\nface\t129\nfaced,\t1\nfaced.\t1\nfaced\t5\nfaces,\t5\nfaces.\t3\nfaces\t15\nfacing.\t1\nfacing\t7\nfact,\t16\nfact;\t1\nfact.\t1\nfact\t20\nfactor\t1\nfactories,\t1\nfactors\t2\nfacts,\t8\nfacts;\t2\nfacts.\t2\nfacts\t6\nfaded,\t1\nfaded\t2\nfagged.\t1\nfail\t1\nfailed;\t1\nfailed\t5\nfailing\t4\nfaint,\t2\nfaint\t5\nfaintest\t3\nfainting\t1\nfaintly\t6\nfair,\t1\nfair\t9\nfairly\t2\nfairy-tale\t1\nfaith,\t1\nfaith\t2\nfaithful\t1\nfaithfully,\t1\nfaithfully\t1\nFaithfully\t1\nfall,\t3\nfall!’\t1\nfall.\t1\nfall\t9\nfallen\t15\nfalling,\t1\nfalling\t4\n‘fall-of’\t1\nfalse\t2\nfamiliar\t1\nfamilies,\t1\nfamilies\t4\n“family”\t1\nfamily,\t20\nfamily;\t2\nfamily:\t1\nfamily!\t2\nfamily?\t1\nfamily.\t2\nfamily”’\t1\nfamily”\t1\nfamily\t74\nFamily\t1\nfamily’s!”\t1\nfamous,\t1\nfamous\t5\nfan;\t1\nfan\t1\nfancied\t1\nfancies;\t1\nfancies\t2\nfancy,\t2\nfancy:\t1\nfancy.\t1\nfancy\t5\nFancy\t1\nfanning\t1\nFanny?”\t1\nFanny\t2\nfans\t1\nfar,”\t1\nfar,\t2\nfar?\t1\nfar.’\t1\nfar.\t2\nfar)\t1\nfar\t48\nFar\t3\nfarce,\t1\nfare,\t2\nfarewell\t2\nfarm\t1\nfarming\t1\nfarms,\t1\nfar-off\t1\nfarther\t2\nfarthing\t2\nfascination.\t2\nfascination\t1\nfascinations,\t1\nfashion,\t3\nfashion.\t1\nfashion\t4\nfashionable,\t2\nfashionable\t11\nfashionably\t2\nfashioned.\t1\nfashions\t1\nfast,\t2\nfast;\t1\nfast\t7\nfastened\t6\nfaster\t1\nfastidious\t2\nfastidiousness\t1\nfat,\t1\nfat!”\t1\nfat\t2\nFat\t1\nfatal,\t1\nfatal\t2\nfatality,\t2\nfatality\t4\nfatally\t1\nfate,\t1\nfate?\t1\nfate.\t1\nfate\t3\nfateful,\t1\nfateful\t1\nfather,”\t2\nfather,\t13\nfather?”\t1\nfather?\t2\nfather.\t3\nfather\t38\nFather-,”\t1\nFather,\t1\nFATHER,\t1\nfather-in-law\t1\nfather’s,\t1\nfather’s.\t1\nfather’s\t13\n—‘fatiguing\t1\nfattish,\t1\nfattish\t2\nfault,\t1\nfault;\t1\nfault!’\t1\nfault\t3\nfauns\t1\nfavour;\t1\nfavour\t5\nfavourably.\t1\nfavoured\t2\n‘favoured-nation,’\t1\nfavourite,\t1\nfavourite\t4\nfear,\t4\nfear.\t1\nfear\t9\nfeared\t1\nfearful\t2\nfearless\t1\nfearlessness\t1\nfears,\t1\nfears.\t1\nfears\t2\nfeast\t2\nfeasts\t1\nfeather.\t1\nfeather\t1\nfeathers,\t1\nfeathers\t3\nfeathery\t2\nfeature)\t1\nfeature\t1\nfeatures,\t1\nfeatures\t2\n‘fed\t1\nfed\t1\nfee,\t2\nfee\t3\nfeeble,\t1\nfeebly,\t1\nfeeding,\t1\nfeel\t24\nfeeling,\t4\nfeeling;\t2\nfeeling.\t2\nfeeling\t43\nFeeling\t1\nfeelings,\t1\nfeelings;\t2\nfeelings.\t1\nfeelings\t8\nfeels\t4\nfeet,\t3\nfeet;\t1\nfeet.\t2\nfeet\t11\nfeigning\t1\nFelice,\t1\nfell.\t2\nfell\t16\nfeller\t1\nfellow,’\t3\nfellow,”\t1\nfellow,\t10\nfellow;\t2\nfellow!’\t1\nfellow!”\t1\nfellow!\t2\nfellow.\t2\nfellow\t44\nfellow’s’\t1\nfellow’s\t3\nfellows,\t1\nfellows;\t1\nfellows\t2\nFellows\t1\nfelt,\t2\nfelt.\t1\nfelt\t116\nfemale,\t2\nfemale\t3\nfemales;\t1\nfenced\t1\nfender\t1\nfending\t1\nfern,\t1\nfern\t1\nferry,\t1\nferule\t1\nfervour.\t1\nfervour\t1\nfestival\t1\nfestivity,\t1\nfetch,\t1\nfetch\t4\nfete\t1\nfettered,\t1\nfeverishly,\t1\nfeverishly\t1\nfew,\t1\nfew;\t1\nfew\t16\nfiance\t1\nfiancee.\t2\nfibre.\t1\nfibre\t4\nfibrous,\t1\nfiddle;\t1\nfiddlesticks!\t1\n‘Fidelio.’\t1\nfidelity\t1\nfidgeted\t1\nfield,\t2\nfield?\t1\nfield\t1\nfield-glasses\t1\nfields,\t1\nfields.\t1\nfields\t3\nFields.\t1\nfierce,\t1\nfierce\t3\nfiercely;\t1\nfierceness.\t1\nfiercer\t1\nfiery\t1\nfifteen\t12\nfifth\t2\nfifties\t1\nfifty\t18\n“Fifty\t1\nfifty-four\t1\nfifty-one\t1\nfig\t1\nfight\t2\nfighting,\t1\nfighting\t1\nfigurative,\t1\nfigurative\t1\nfigure,\t22\nfigure;\t1\nfigure.\t7\nfigure\t25\nfigurehead\t1\nfigures,\t6\nfigures\t14\nfilching\t1\nfiled\t2\nfill\t3\nfilled\t12\nfilling\t3\nfillips\t1\nfilm\t1\nfinal\t5\nfinally\t1\nfinances\t1\nfinancial\t5\nfinancier,\t1\nfind\t36\nfinding\t7\nfine,’\t1\nfine,\t2\nfine\t19\nFine\t1\nfine-looking,\t1\nfinesse;\t1\nfinest\t2\nfinger,\t3\nfinger.\t1\nfinger\t7\nfingering\t1\nfingers,\t1\nfingers.\t1\nfingers\t10\nfinger-tips,\t1\nfinickin’\t1\nfinish\t1\nfinished,\t4\nfinished?”\t1\nfinished\t14\nfinishing\t3\nfir\t1\nfire,\t5\nfire;\t1\nfire!\t1\nfire.\t2\nfire\t5\nfirelight,\t1\nfirelight.\t1\nfirelight\t1\nfireplace,\t1\nfireplace:\t1\nfireplace.\t1\nfires\t1\nfirm,\t4\nfirm\t7\nfirmly,\t1\nfirmly.\t1\nfirmly\t1\nFirmly\t1\nfirst,”\t1\nfirst,\t3\nfirst.\t5\nfirst\t63\nFirst\t1\nfirst-class\t4\nfirst-hand\t1\nfirst-post\t1\nfirst-rate!”\t1\nfirst-rate\t3\nfish,\t1\nfish.\t1\nfish\t2\nfishing\t1\nfishing-boats\t1\nFiske,\t1\nFiske\t1\nfist\t2\nFiste’s\t2\n“fit\t1\nfit,\t2\nfit.\t1\nfit\t9\nfitness\t1\nfitted\t1\nFitted\t1\nfitting\t1\nfive,\t2\nfive.\t1\nfive\t25\nFive\t1\nfive-pointed\t1\nfive-pound\t1\nfix\t2\nfixed,\t2\nfixed;\t1\nfixed\t34\nfixing\t2\nfixity\t1\nfizz\t1\nFlageoletti,\t1\nFlageoletti\t1\nflagged\t1\nflame,\t1\nflame\t5\nflame-like\t1\nflames\t1\nflaming\t2\nflaming-out\t1\nflank.\t1\nflap\t1\nflapping\t1\nflared\t2\nflaring\t1\nflash.\t1\nflash\t1\nflashed\t3\nflashing\t2\nflat,\t3\nflat.\t1\nflat\t4\nflat-brimmed\t1\nflat-cheeked,\t1\nflats\t1\nflat-shouldered,\t1\nflattened\t3\nflattered\t1\nflat-waisted,\t1\nflavour,\t2\nflavour\t1\nflea\t1\nfleas,”\t1\nfled,\t1\nfled\t2\nfleeting\t1\nflesh,\t1\nflesh\t9\nfleshpots\t1\nfleshy\t2\nFleur\t3\nflexibly\t1\nflibbertigibbet,”\t1\nflicked\t1\nflicker\t1\n‘flies,’\t1\nflies.\t1\nflies\t1\nflight,\t1\nflight.\t2\nflight\t3\nFlight!\t1\nflights\t1\nflinched.\t1\nflinching.\t1\nfling;\t1\nfling\t1\nFlinging\t2\nflings\t1\nFlippard,\t1\nFlippard.\t1\nFlippard\t3\nFLIPPARD.’\t1\nflirt,\t1\nflirt\t2\nflirtation,\t1\nflirtation\t2\nflirted\t1\nflitted\t1\nfloated,\t1\nfloated\t2\nfloating\t3\nflocks\t1\nflogged\t1\nflood;\t1\nfloor,\t8\nfloor:\t1\nfloor!\t1\nfloor.\t2\nfloor\t2\nfloors\t1\nflopping\t1\nFlorian\t1\nFlorian’s\t1\nflourish\t3\nflourishing\t3\nfloury-potato,\t1\nflowed\t2\nflower,\t2\nflower;\t2\nflower.\t2\nflower\t4\nflower-beds,\t1\nflower-beds\t1\nflowering\t2\nflowers,\t1\nflowers.\t1\nflowers\t7\nflower-scented\t1\nflowing\t3\nflown.\t1\nflown\t1\nfluffy\t1\nflung\t6\nflurried\t1\nflush\t4\nflushed,\t3\nflushed;\t1\nflushed.\t1\nflushed\t3\nflushes\t1\nflushing\t1\nfluster:\t1\nfluster.\t1\nflustered\t2\nflutter\t1\nfluttered,\t1\nfluttered\t1\nfluttering\t1\nfly?\t1\nfly\t3\nfly-blown\t1\nflying\t4\nflying-machine;\t1\nfocus\t1\nfocussed\t1\nfog,\t6\nfog;\t2\nfog!’\t1\nfog!\t1\nfog.’\t1\nfog.\t4\nfog\t10\nfog-engulfed\t1\nfoggy\t1\nfogs.\t1\nFogs\t1\nfolded\t3\nfolding\t3\nFolding\t1\nfolds,\t1\nfolds\t3\nfoliage,\t2\nfoliage;\t1\nfoliage.\t1\nfoliage\t1\nfolios\t1\nfolk,”\t1\nfolk\t4\nfollow,\t1\nfollow.\t1\nfollow\t7\nfollowed,\t2\nfollowed.\t6\nfollowed\t18\nfollowers.\t1\nfollowers\t1\nfollow-her\t1\nfollowing:\t1\nfollowing\t27\n“follows\t1\nfollows:\t7\nfolly!\t1\nfolly.\t2\nfolly\t1\nfond\t12\nfood,\t2\nfool,\t1\nfool;\t1\nfool!\t1\nfool.\t1\nfool\t3\nfoolhardy,\t1\nfoolish\t1\nFoolish\t1\nfoot,\t1\nfoot;\t1\nfoot.\t1\nfoot\t10\nfootman\t2\nfoot’s\t1\nfoot’s-pace,\t1\nfootsteps.\t1\nfootsteps\t4\nfoppishly\t1\n“for\t2\n(for\t5\nfor,”\t1\nfor,\t12\nfor;\t1\nfor?”\t2\nfor?\t3\nfor.\t7\nfor\t765\n‘For\t1\n“For\t5\nFor\t30\nforbid\t2\nforce,\t2\nforce;\t1\nforce.\t1\nforce\t5\nforced,\t1\nforced\t12\nforces.\t1\nforces\t6\nForces\t1\nforcibly\t1\nforcing\t1\nForcing\t1\nforeclosure\t1\nforefinger,\t1\nforefinger.\t1\nforefinger\t2\nforeground,\t1\nforehead,\t12\nforehead.\t3\nforehead\t4\nforeheads\t1\nforeign!\t1\nforeign.\t1\nforeign\t7\nforeigners,’\t1\nforeigners\t2\nforeman’s\t1\nforenoon.\t1\nforerunners\t1\nforesee\t1\nforeseen\t1\nforest\t2\nforever\t1\nforfeited\t2\nforget,”\t2\nforget!\t1\nforget.\t1\nforget\t6\nForget\t2\nforgetfulness\t1\nforgetting\t1\nforgiven\t1\nforgot,\t2\nforgot\t3\nforgotten.\t2\nforgotten\t20\nForgotten!\t1\nForgotten\t1\nfork;\t1\nfork.\t1\n‘form’\t1\nform,\t5\nform\t11\nformation\t1\nformed\t4\nformer\t1\nformidable,\t1\nformidable\t1\nforms\t2\nformula\t1\nformulas\t1\nforsake\t2\nForsite,’\t1\nForsites\t1\nforsooth,\t1\nForsy\t1\n‘Forsyte’\t1\nForsyte,’\t1\nForsyte,”\t3\nForsyte,\t42\nForsyte;\t4\nForsyte:\t1\nForsyte!’\t1\nForsyte!”\t2\nForsyte!\t5\nForsyte?\t2\nForsyte.’\t2\nForsyte.”\t1\nForsyte.\t21\nForsyte)\t1\nForsyte\t119\n‘FORSYTE,\t1\nFORSYTE,\t6\nFORSYTE.’\t4\nForsytean,\t1\nForsytean\t1\nForsytedom.\t1\nForsyteism,\t2\nForsyteism.\t1\n“Forsyte’s\t1\nForsyte’s\t3\nForsytes,\t22\nForsytes;\t3\nForsytes:\t1\nForsytes!\t2\nForsytes.\t8\nForsytes),\t1\nForsytes\t58\nforth;\t1\nforth.\t2\nforth\t5\nforthwith\t1\nfortnight,\t1\nfortnight.\t1\nfortress\t1\nfortuitous\t1\nfortunate\t1\nfortunately,\t2\nfortunately\t2\nFortunately\t1\nfortune,\t3\nfortune\t2\nFortune,\t1\nFortune\t1\nfortunes.\t2\nforty;\t1\nforty\t3\nforty-eight\t1\nforward,\t5\nforward.\t3\nforward\t8\nfostered\t1\nfound,\t3\nfound\t55\n“Found\t1\nfoundation\t1\nfour,\t2\nfour.\t2\nfour\t30\n“Four\t2\nFour,\t1\nFour\t1\nFOUR\t1\nfour-and-twenty\t1\n“Four-hundred-pounds,\t1\nfour-in-hand,\t1\n‘Four-in-hand\t1\nFour-in-hand\t2\nfourteen\t3\nfourth.\t1\nfourth\t1\nfourth-rate\t1\nfox-terrier\t2\nfragile\t1\nfragrance\t4\nframe\t2\nframed\t2\nframing\t2\nFrance,\t1\nFrances,\t1\nFrances\t2\nFrancie,’\t1\nFrancie,\t3\nFrancie;\t1\nFrancie\t15\nFrancie’s,\t1\nFrancie’s\t2\nfrank\t1\nfrankness\t1\nfray\t1\nfreak,\t1\nFreak\t2\nFred,\t1\nFred\t1\n‘free\t1\n“free\t3\nfree\t18\nfreed\t2\nfreedom!\t1\nfreedom\t1\nFreedom\t1\nfreehold?”\t1\nfreely,\t2\nfreely;\t1\nfreely\t4\nfreezing\t1\nfreighted\t1\nFrench\t4\nFrenchified.\t1\nFrenchmen\t1\nFrench’s,\t1\nfrequent,\t1\nfrequently,\t2\nfrequently\t5\nfresh,\t2\nfresh!”\t1\nfresh.”\t1\nfresh.\t1\nfresh\t12\n“Fresh\t1\nFresh\t1\nfresh-coloured\t1\nfresh-comers\t1\nfreshest\t1\nfresh-fitted\t1\nfreshness\t2\nfresh-turned\t1\nFriday\t1\nfried,\t1\nfriend,”\t1\nfriend,\t2\nfriend.\t1\nfriend\t11\nfriendly\t4\nfriend’s.”\t1\nfriend’s\t3\nfriends,\t2\nfriends!”\t1\nfriends!\t2\nfriends.”\t1\nfriends.\t1\nfriends\t7\nfriendship\t1\nfriendships,\t1\nfrieze,\t1\nfrieze\t1\nfrightened,\t1\nfrightened\t6\nfrightful!\t1\nfrightful\t1\nfritter\t1\nfrivolity!”\t1\nfro.\t1\nfro\t2\nfrock,\t5\nfrock;\t1\nfrock\t9\nfrock-coat,\t2\nfrock-coat\t3\nfrock-coated\t1\nfrocks,\t1\nfrocks\t1\nfrogs\t1\n(from\t1\nfrom,”\t1\nfrom.\t2\nfrom\t388\nFrom\t18\nfront,\t2\nfront;\t1\nfront!”\t1\nfront.\t3\nfront\t28\nfrontage\t1\nfrosty\t1\nfrown,\t1\nfrown;\t1\nfrown\t2\nfrowned,\t1\nfrowned.\t3\nfrowning\t1\nfruit.\t2\nfruit\t2\nfruition\t1\nfruits.\t1\nfry,\t1\n‘Fryer\t1\nFryer\t1\nfrying-pan\t1\nft\t1\nfuchsias,\t1\nfulfilled\t1\nfulfilment\t1\n‘full\t2\nfull,\t1\nfull.\t1\nfull\t36\nfull-bosomed\t1\nfullest\t1\nfullness\t1\nfully\t2\nfulness\t1\nfume\t1\nfumes\t1\nfun!”\t2\nfun\t1\nfunction,\t1\nfunction\t1\nfunctions,\t2\nfunctions.\t1\nfunctions\t1\nfund\t1\nfundamental\t2\nfundamentally\t1\nfunds\t1\nfuneral,\t1\nfuneral;\t1\nfuneral.\t1\nfuneral\t2\nfunny\t3\nfur,\t5\nfur;\t1\nfur\t14\nfurbelows,\t1\nfurious\t1\nfurled,\t1\nfurnished.\t1\nfurnishing;\t1\nfurniture;\t1\nfurniture\t5\nfurrow\t1\nfurrowed\t1\nfurrows\t1\nfurry\t3\nfurs,\t1\nfurther,\t1\nfurther\t12\nfurthering\t1\nfurtive,\t1\nfurtive\t1\nfurtively\t3\nfury.\t1\nfused\t1\nfuss;\t1\nfuss!”\t1\nfuss\t3\nfussy\t1\nfuture,\t2\nfuture;\t1\nfuture.\t1\nfuture\t7\ngadding\t2\ngaiety,\t2\ngaiety;\t1\ngaiety\t1\ngaily\t1\ngain.\t1\ngain\t4\ngained\t1\ngaining\t2\ngains,\t1\ngait,\t2\ngall\t1\ngalleries,\t2\nGalleries.\t1\ngallery.\t2\ngallery\t4\nGallery,\t1\nGalles,\t1\ngalley\t1\ngallop\t1\ngamble,\t1\ngambler,\t1\ngambler\t1\ngame\t3\ngames,\t1\ngames!”\t1\ngap\t1\ngaping\t1\ngarden,\t6\ngarden;\t2\ngarden?\t1\ngarden.\t2\ngarden\t7\ngarden-beds\t1\ngardener\t1\ngardeners’\t1\ngardeners\t1\ngardenias\t2\ngardens,\t2\ngardens;\t1\ngardens\t3\nGardens,\t5\nGardens.\t2\nGardens\t4\ngarment,\t1\ngarment\t2\ngarments.\t1\nGARNETT\t1\ngarrets,\t1\nGarter.\t1\ngas,\t1\ngas\t4\ngashed\t1\ngaslight,\t1\ngasped\t3\ngate,\t2\ngate\t1\nGate,\t7\nGate;\t1\nGate.\t5\nGate\t6\ngates\t1\ngather\t2\nGathercole,\t1\nGathercole.\t1\nGathercole\t1\ngathered\t6\ngathering\t2\ngauge,\t1\ngauge\t1\ngaunt,\t1\ngaunt\t1\ngave\t58\ngay,\t1\ngay\t1\ngaze,\t1\ngaze.\t1\ngaze\t5\ngazed\t10\ngazing\t8\ngeneral.\t1\ngeneral\t6\nGeneral,\t1\nGeneral\t5\ngeneralities\t1\ngeneralizing\t1\ngenerally\t7\ngeneration,\t5\ngeneration.\t1\ngeneration\t5\ngenerations.\t1\ngenerations\t5\ngenerosity,\t1\ngenerous\t2\nGenteel\t1\ngentle\t1\ngentleman,\t4\ngentleman;\t1\ngentleman!”\t1\ngentleman.\t4\ngentleman\t5\ngentleman-farmer\t1\ngentleman’s\t1\ngentlemen,\t1\ngentlemen;\t1\ngentlemen.\t1\ngentlemen\t1\ngentleness\t1\ngently:\t1\ngenuine\t5\ngenuineness.\t1\ngeographical\t1\nGeorge,\t10\nGeorge.\t3\nGeorge\t38\nGeorge’s\t6\nGerman;\t1\nGerman\t3\nGermans,’\t1\ngesture\t2\nget,\t1\nget;\t1\nget.\t2\nget\t107\n“Get\t1\nGet\t3\ngetting!”\t1\ngetting\t32\nghost,\t2\nghost\t4\nghoulish\t1\ngiant\t1\ngiants.\t1\ngift;\t1\ngift\t3\ngifts\t1\ngigantic\t1\ngilded\t1\nGilead\t1\nGiles\t2\ngills?\t1\ngilt\t5\ngilt-edged\t2\ngilt-framed\t1\ngimcrack\t1\ngimcracks,\t1\ngiraffe,\t1\ngirl,\t9\ngirl;\t1\ngirl.\t3\ngirl\t27\ngirlhood,\t1\ngirl’s\t4\ngirls\t7\ngive,\t1\ngive;\t1\ngive?\t1\ngive\t47\n“Give\t2\ngiven.”\t1\ngiven.\t1\ngiven\t49\ngives\t2\ngivin’?\t1\ngivin’\t1\ngiving\t20\nGiving\t1\nglad,\t1\nglad.\t1\nglad\t10\nglance,\t2\nglance:\t1\nglance.\t2\nglance\t18\nglanced\t4\nglances,\t2\nglancing\t4\nglare,\t1\nglared\t2\nglass,\t5\nglass;\t1\nglass.\t1\nglass\t16\nglasses\t5\nglassiness\t1\nglassy\t1\ngleam,\t1\ngleam\t7\ngleaming\t1\ngleams\t1\nglean\t1\ngleaned\t1\ngleefully;\t1\nglimpse\t2\nglistening,\t1\nglittered\t1\nglobe\t1\n‘Globular\t1\nGlobular\t1\ngloom,\t2\ngloom.\t2\ngloom\t3\ngloomily\t4\ngloomy,\t1\ngloomy\t6\nglories,\t1\nglories\t1\nglorious\t1\ngloriously\t2\nglory\t2\ngloss\t3\nglove:\t1\nglove.\t1\ngloved,\t1\ngloved\t3\ngloves,\t4\ngloves;\t1\ngloves.\t1\ngloves\t5\nglow,\t2\nglow;\t1\nglow\t5\nglue\t1\nglum\t2\ngnawing\t4\n‘go’\t1\ngo,\t2\ngo;\t2\ngo!’\t1\ngo!”\t2\ngo?”\t6\ngo?\t5\ngo.”\t1\ngo.\t4\ngo\t151\n“Go,”\t1\n“Go\t2\nGo\t1\n‘God\t1\n“God\t1\nGod!”\t1\nGod!\t1\nGod\t10\ngoddess,\t1\ngoddess.\t1\ngod-father\t1\ngodfather,\t1\ngodfather.\t1\nGod-knows-what\t1\ngods\t1\nGod’s\t2\ngoes\t10\nGoes\t2\n‘going\t1\ngoing,”\t1\ngoing;\t1\ngoing?\t1\ngoing.\t2\ngoing\t115\nGoing\t2\n‘goings\t1\ngoings\t1\ngold,\t1\ngold\t10\nGold\t2\ngold-coloured\t2\ngolden,\t1\ngolden\t6\ngolden-light\t1\ngolden-pink\t1\ngold-haired,\t1\ngold-lacquered\t1\ngold-mines\t1\ngold-mounted\t2\nGolgothas,\t1\ngone,”\t1\ngone,\t6\ngone;\t1\ngone!”\t1\ngone!\t1\ngone?\t3\ngone.”\t1\ngone.\t8\ngone\t37\nGone!\t1\nGone\t2\ngong\t1\n‘good\t1\ngood,\t12\ngood;\t1\ngood!’\t1\ngood!”\t4\ngood.”\t2\ngood.\t9\ngood\t113\n‘Good,’\t1\n“Good,”\t1\n“Good\t2\nGood,\t1\nGood\t1\ngood-bye,\t3\ngood-bye;\t1\ngood-bye!”\t1\ngood-bye.\t1\ngood-bye\t2\n“Good-bye,\t2\nGood-bye,\t1\nGood-bye!”\t2\nGood-bye!\t1\nGood-bye?”\t1\ngood-humoured\t1\ngood-lookin’\t1\n‘good-looking\t1\ngood-looking,\t1\ngood-looking?”\t1\ngood-looking\t2\ngood-morning,\t1\n“Good-morning,\t1\ngood-natured\t1\n‘goodness’\t1\ngoodness.\t1\ngoodness\t2\ngood-night.\t1\ngood-night\t2\n“Good-night,\t2\ngossip,\t6\ngossip;\t1\ngossip.\t1\ngossip\t1\ngossips\t1\ngot,\t1\ngot!”\t1\ngot.”\t1\ngot.\t1\ngot\t89\nGoupenor\t1\ngout,\t1\ngout.\t1\ngoverness!\t1\ngoverness.\t1\ngoverness\t1\ngown\t4\ngracefully\t1\ngracious\t1\ngradual\t1\ngradually\t4\ngraduated\t1\nGran;\t1\nGran!”\t1\nGran\t1\ngrand\t2\ngrandchild\t1\ngrandchildren,\t2\ngrandchildren.\t2\ngrandchildren\t3\ngrandchildren’s\t1\ngrand-daughter,\t1\ngrand-daughter?”\t1\ngrand-daughter\t5\ngranddaughter,\t1\ngranddaughter.\t1\ngranddaughter\t2\ngranddaughter’s\t1\ngrandfather,\t1\ngrandfather?”\t1\ngrandfather?\t1\ngrandfather.\t1\ngrandfather\t7\ngrandfather’s\t1\ngrandmother,\t1\ngrandson’s\t1\n‘Gran’ma’s\t1\ngrant\t1\nGranted\t1\ngrapes.\t1\ngrapes\t3\ngrasp,\t1\ngrasp\t2\ngrasped\t4\ngrasping\t1\ngrass,\t6\ngrass;\t1\ngrass.\t3\ngrass\t3\ngrasses.\t2\ngrass-plot,\t1\ngrate,\t3\ngrate.\t1\ngrated,\t1\ngrated\t1\ngratefully\t1\nGratitude\t1\ngrave,\t2\ngrave.\t1\ngrave\t9\ngravel\t3\n“Gravel\t1\ngravely\t1\ngraves,\t1\ngraves.\t1\ngravest\t1\ngrease\t1\ngreat,\t5\ngreat.\t1\ngreat\t106\ngreater\t5\ngreatest,\t2\ngreatest\t9\ngreatly\t3\nGreatly\t1\ngreat-uncles,\t1\ngreed;\t1\ngreed\t1\ngreedily,\t1\nGreek\t1\ngreen,\t1\ngreen\t14\nGreen\t4\ngreengrocer,\t1\ngreenish\t3\ngreen-painted\t1\ngreeted\t4\ngreeting,\t2\ngreeting\t1\ngreetings\t1\ngrew\t15\ngrey,\t6\ngrey\t30\nGrey\t1\ngrey-blue\t1\ngrey-bluedowns.\t1\ngreyer\t1\ngreyish\t3\ngreyness\t1\ngreys\t3\ngrey-white\t1\ngrief,\t1\ngrievance,\t1\ngrievance.\t2\ngrievances,\t1\ngrim\t3\ngrimly,\t1\ngrimly\t2\nGrin\t1\ngrinding\t2\ngrinned.\t1\ngrinned\t1\ngrinning\t2\nGrinning,\t1\ngrip!\t1\ngrip\t3\ngripped\t2\ngrizzled\t1\nGroceries?”\t1\nGroceries.”\t1\nGroceries\t1\nGrogan\t1\ngroom,\t1\ngroom\t2\ngroomed\t1\ngrope\t1\ngroped\t1\ngroping\t2\nground,\t5\nground.\t3\nground\t13\nground-plans\t1\ngroup,\t1\ngroup;\t1\ngroup.\t1\ngroup\t5\n‘Group\t1\ngrouped\t1\ngroups,\t1\ngroups\t3\ngrove,\t2\ngrove\t2\nGrove,\t2\nGrove\t1\ngrow\t5\ngrowing,\t1\ngrowing\t6\ngrowled\t1\ngrown,\t2\ngrown.\t1\ngrown\t4\ngrown-up\t2\ngrowth\t2\ngrudging\t1\ngrumble.\t1\ngrumbled:\t1\ngrumbled\t2\ngrumbling.\t1\ngrumbling\t2\ngrumblingly\t1\nguarantee\t2\nguaranteed\t3\nguard;\t2\nguard.\t2\nguard\t4\nguardian.\t1\nguardian\t1\nguardians\t1\nguardianship\t1\nGuarding\t1\nguess\t1\nguessed\t1\nguest,\t1\nguest\t2\nguests,\t3\nguests\t2\nGuide’\t1\nguided\t1\nguiding\t1\nguiltily.\t1\nguilty,\t1\nGuilty\t1\nguinea.\t1\nguinea-fowl,\t1\nguineas\t1\ngules,’\t1\ngules.’\t1\ngulf.\t1\ngulf\t2\ngulp,\t1\ngulp\t1\nGummidge,\t1\ngumption!\t1\nguyed.\t1\n‘h’\t1\nha’\t1\nha-at!\t1\nha-at?”\t1\nhabit,\t2\nhabit.\t2\nhabit\t17\nhabitat,\t1\nhabitat\t2\nhabitats,\t1\nhabitats.\t1\nhabitats\t1\nhabited\t1\nhabits\t2\nhabitual\t3\nhabitually\t3\nhacks,\t1\nhad,\t5\nhad.”\t1\nhad.\t2\nhad\t1526\nHad\t7\nhadn’t\t4\nHadn’t\t2\nhaggard,\t2\nhaggard\t1\nhags\t1\nHah!\t1\nhailing\t1\nHailing\t2\nhair,\t18\nhair;\t3\nhair.”\t1\nhair.\t6\nhair\t21\nhairs\t1\nhairy\t1\n“half\t1\nhalf,\t3\nhalf;\t1\nhalf.”\t1\nhalf\t25\nHalf\t2\nhalf-a-crown\t1\nhalf-choked,\t1\nhalf-closed.\t1\nhalf-closed\t1\nhalf-cracked!’\t1\nhalf-cracked\t1\nhalf-darkened\t1\nhalf-dozen\t1\nhalf-empty\t1\nhalf-foreign\t1\nhalf-hearted\t1\nhalf-hour\t1\nhalf-made\t1\nhalf-measures\t1\nhalf-past\t9\nhalf-public\t1\nhalf-seen\t1\nhalf-simple\t1\nhalf-smile\t1\nhalf-starved,\t1\nhalf-starved\t1\n‘half-tame\t1\nhalf-tints,\t1\nhall,\t10\nhall.\t3\nhall\t11\nhall-mark.”\t1\nhall-mark\t1\n“Hallo,\t1\n“Hallo!”\t1\n“Hallo!\t1\nhalo,\t1\nhaloed\t1\nhalt.\t1\nhalt\t1\nhalted,\t1\nhalted\t1\nHalting\t1\nham.”\t1\nham.\t1\nham\t3\nHamilton\t1\nhammering\t1\nHampstead,\t1\nHampstead\t1\nHampton\t1\nhand,’”\t1\nhand,”\t1\nhand,\t29\nhand;\t1\nhand!\t1\nhand.’\t1\nhand.\t12\nhand’\t1\nhand”;\t1\nhand”?\t1\nhand”\t1\nhand\t58\nhanded,\t2\nhanded;\t1\nhanded.\t1\nhanded\t7\nHandicap.\t1\nhandicapped\t1\nhandicaps\t1\nhanding\t1\nhandkerchief,\t2\nhandkerchief.”\t1\nhandkerchief\t5\nhandkerchiefs\t2\nhandle,\t1\nhandle.\t1\nhandle\t6\nhandling\t1\nhands,\t14\nhands;\t2\nhands.\t9\nhands\t54\nhandshake,\t1\nhandshake\t1\nhandsome!\t1\nhandsome\t1\nhandwriting:\t1\nhandwriting\t1\nhang.\t1\nhang\t4\n“Hang\t1\nhangdog\t1\nhanging\t5\nhankered\t1\nhansom,\t6\nhansom.\t1\nhansom\t5\nhansoms\t2\nHanson\t1\nhappen?\t1\nhappened,\t2\nhappened?\t1\nhappened\t7\nhappening\t2\nhappier\t1\nhappily\t1\nhappiness,\t1\nhappiness?\t1\nhappiness.\t2\nhappiness\t3\nhappy,\t1\nhappy;\t1\nhappy?\t1\nhappy.’\t1\nhappy\t6\nharbour,\t1\nharbour\t1\nhard,\t9\nhard!\t1\nhard.\t1\nhard\t12\nhardened\t3\nhardly\t17\nhardness,\t1\nhardness\t1\nHard-up\t1\nhardy\t1\nhare\t1\nharm\t2\nharmless\t1\nharmony\t1\nharness,\t1\nHarold’;\t1\nharping\t1\nHarrogate.\t1\nHarrow,\t1\nHarrow\t1\nHarry?\t1\nharum-scarum\t1\nharumscarum,\t1\n“has\t2\nhas,\t1\nhas\t64\nhasn’t\t2\nhasten\t1\nhastened,\t1\nhastened\t5\nhastening\t2\nhastily,\t3\nhastily;\t1\nhastily:\t1\nhastily\t2\nhasty\t1\nhat,\t17\nhat;\t2\nhat?”\t1\nhat.\t11\nhat\t26\nhate,\t1\nhate\t4\nhated!\t1\nhated\t15\nhateful,\t1\nhatred\t1\nhats,\t1\nhats\t2\nHatty\t2\nhaughtily,\t1\nhaughty!”\t1\nhaughty\t1\nhaunt\t2\nhaunted\t11\nhaunting\t3\nhaunts\t1\nhave,\t4\nhave?\t1\nhave.\t1\nhave\t350\n“Have\t5\nHave\t1\nhaven’t\t19\nHaven’t\t2\nHaversnake.\t1\nHaversnake\t1\nhav’in’\t1\nhaving,\t1\nhaving.”\t1\nhaving\t67\nHaving\t4\nHaw!\t1\nhay,\t1\nHayman;\t1\nHayman\t5\nHaymans\t2\nhazard\t2\nhaze\t2\n‘he\t1\n“he\t6\n(he\t10\n—“he\t1\n—(he\t1\nhe,\t13\nhe!\t1\nhe?’\t1\nhe?”\t3\nhe?\t4\nhe.\t3\nhe\t2139\n‘He\t1\n“He\t5\n(He\t1\nHe,\t3\nHe\t695\nHE\t1\nhead,\t13\nhead;\t1\nhead:\t2\nhead!”\t1\nhead!\t2\nhead.\t19\nhead\t43\nheadache.”\t1\nheadache.\t1\nheading\t1\nheads,\t2\nheads.\t1\nheads\t6\nhealth,\t2\nhealth.\t1\nhealth’;\t1\nhealth\t8\nhealths\t1\nhealthy\t1\nheaps,\t1\nheaps\t2\n(hear,\t1\nhear;\t2\nhear!”\t3\nhear!\t1\nhear?\t2\nhear)—\t1\nhear\t23\n“Hear,\t1\nheard,\t7\nheard;\t1\nheard:\t1\nheard.\t2\nheard\t45\nhearers\t1\nhearing.\t1\nhearing\t9\nhears\t1\nhearse\t1\nheart,\t11\nheart;\t1\nheart!\t1\nheart?\t1\nheart.’\t1\nheart.\t14\nheart\t38\nhearth,\t5\nhearth?\t1\nhearth.\t2\nhearth\t1\nheartily,\t1\nhearts,\t3\nhearts.\t3\nhearts\t7\nheart-sickness\t1\nheat,\t1\nheat!”\t1\nheat.\t1\nheat\t5\nheated\t1\nHeath,\t1\nHeath\t1\nheathen\t1\nheaved\t2\nheaven,\t1\nheaven.\t1\nheaven\t2\nHeaven,\t1\nHeaven;\t1\nHeaven\t2\n‘Heavenly\t1\nheavens.\t1\nheavily\t2\nheavily-carved\t1\nheavy,\t1\nheavy\t11\nheavy-lidded\t2\nheckle\t1\nhe’d\t4\nhedge\t2\nhedges,\t1\nhedges\t3\nheel,\t2\nheels,\t1\nheels\t1\nHeidsieck!”\t1\nHeidsieck\t1\nheight,\t3\nheight),\t1\nheight\t5\nheightened\t1\nheights.\t1\nheiress,\t1\nheld,\t1\nheld.\t1\nheld\t37\n“he’ll\t1\nhe’ll\t10\nhell\t1\n“He’ll\t1\nHe’ll\t1\nhelm.\t1\nhelmet,\t1\n(he-looked\t1\nhelp,\t1\nhelp\t25\nhelped\t2\nhelping\t2\nhelpless\t3\nhelpmate?\t1\nhem\t1\nHemmings,\t2\nHemmings;\t1\nHemmings!\t1\nHemmings\t6\nHenley\t2\nhen-like\t1\n‘her\t1\n(her\t1\nher,’\t1\nher,”\t2\nher,\t66\nher;\t21\nher:\t4\nher!’\t1\nher!”\t3\nher!\t5\nher?”\t5\nher?\t9\nher..”\t1\nher.”\t4\nher.\t55\nher)\t1\nher\t1020\nHer\t51\nHeralds’\t1\nherb\t1\nhere,’\t1\nhere,”\t10\nhere,\t8\nhere;”\t1\nhere;\t1\nhere!’\t1\nhere!”\t7\nhere?”\t1\nhere.’\t1\nhere.”\t1\nhere.\t4\nhere\t35\n“Here,\t2\n“Here!\t1\nHere,\t5\nHere\t6\nhere-after,\t1\nhereafter.\t1\nhereditaments\t1\nHereditarily\t1\nhereditary\t1\nHere’s\t2\nheretofore.\t1\nHermione\t1\nhero\t1\nheroes\t1\nheroic\t3\nheroine\t1\nheroism\t1\n“Heron\t1\nHeron,\t4\nHeron.\t1\nHerring,\t4\nHerring\t3\nherrings\t1\nhers,\t1\nhers.\t1\nhers\t2\nherself,\t12\nherself;\t2\nherself!\t2\nherself?\t2\nherself.’\t1\nherself.\t5\nherself\t31\n“he’s\t3\nhe’s\t49\n‘He’s\t2\n“He’s\t10\nHe’s\t9\nhesitate,\t1\nhesitate\t1\nhesitated,\t1\nhesitation;\t1\n“Hester,”\t1\n“Hester!”\t2\nHester,\t20\nHester;\t2\nHester?”\t1\nHester.\t1\nHester\t27\nheyday\t1\n“Hi,\t1\nhid\t6\nhidden,\t1\nhidden\t10\nhide;\t1\nhide\t1\nhide-and-seek\t1\nhiding\t4\nhigh,\t4\nhigh.”\t1\nhigh\t31\n‘High\t1\nhigh-backed\t1\nhighest\t3\nHighgate,\t1\nHighgate.\t1\nHighgate\t1\nhighly.\t1\nhighly\t8\nhigh-necked\t1\nhighwater\t1\nhighway\t1\nhill,\t3\nhill\t2\nHill,”\t1\nHill,\t13\nHill;\t2\nHill?\t2\nHill.\t1\nHill\t4\nhills.\t1\nhilt\t1\nhim,”\t3\nhim,\t109\nhim;\t24\nhim:\t10\nhim!’\t2\nhim!”\t12\nhim!\t16\nhim?’\t1\nhim?”\t5\nhim?\t7\nhim.’\t1\nhim.”\t4\nhim.\t104\nhim’\t1\nhim\t470\nHim\t1\nhimself,\t42\nhimself;\t5\nhimself:\t7\nhimself!\t4\nhimself?\t2\nhimself.\t34\nhimself\t126\nHimself\t1\nhint,\t1\nhints!\t1\nhints\t1\nhips,\t1\nhired\t1\n‘his\t1\nhis,\t12\nhis!”\t1\nhis?”\t1\nhis.’\t1\nhis.\t1\nhis\t1912\n“His\t1\nHis\t83\nhissed\t3\nhistorical\t1\nhistories\t1\nhistory,\t2\nhistory.\t1\nhistory\t1\nhit\t4\nhitched\t2\nhitherto\t2\nHitherto\t1\nhits!\t1\n“H’m!\t1\nH’m!\t2\n“H’mm!\t1\n“H’mph!”\t1\nH’mph!\t1\nHmph!\t1\nho,\t1\nhoarsely:\t1\nhold\t17\nholding\t15\nholds\t2\nhole\t2\nholes,\t1\nholidays.\t1\nholidays\t1\nholland\t1\nhollow,\t1\nhollow\t5\nhollows\t2\nHolly,\t4\nHolly.\t1\nHolly\t7\nHolly’s\t1\n‘home’\t1\nhome,’\t1\nhome,”\t1\nhome,\t18\nhome;\t2\nhome!”\t2\nhome!\t1\nhome?”\t2\nhome?\t1\nhome.’\t1\nhome.”\t1\nhome.\t14\nhome’—\t1\nhome’\t1\nhome\t29\nHome!’\t1\nHome’\t2\nhomes\t2\nhomewards\t1\nhonesty,\t1\nhonesty\t1\nhoney\t2\nhoney-coloured.\t1\nhoneymoon.\t1\nhonour,\t1\nhonour.\t2\nhonour\t1\nhonourable\t1\nhood\t1\nhoofs.\t1\nhook:\t1\nhook\t1\nhooking\t2\nhooks\t1\nhope,\t3\nhope.\t1\nhope\t18\nhoped.\t2\nhoped\t5\nhopefulness\t1\nhopeless.\t1\nhopeless\t2\nhopelessly\t2\nhopes,\t2\nhopes?\t1\nhopes.\t1\nhopes\t2\nhoping,\t1\nhoping\t3\n‘hops’—\t1\nhordes,\t1\nhorizon,\t1\nhorizon\t1\nhorns,\t1\nhorrible\t2\nhorrid!”\t1\nhorrid\t3\nhorrified.\t1\nhorrified\t1\nhorror.\t1\nhorror\t4\nhors\t2\nhorse!”\t1\nhorse!\t1\nhorse.\t1\nhorse\t1\nhorse-chestnuts\t1\nhorsehair\t1\nhorse’s\t2\nhorses,\t5\nhorses!\t1\nhorses.”\t1\nhorses.\t1\nhorses’\t3\nhorses\t8\nHorses,\t1\nhorsey\t1\nhorticulture,\t1\nhospital,\t1\nhospital.\t1\nhospital\t1\nhost,\t1\nhost\t1\nhostel,\t1\nhostess,\t1\nhostility\t2\nhot,\t3\nhot\t16\n‘Hotch\t4\nHotch\t2\nhotel,\t1\nhotel\t1\nHotel,\t1\nhotels,\t2\nhotels.\t3\nhotels\t2\nhot-house\t1\nhotter\t1\nhot-water\t1\nhounds,\t1\nhour,\t4\nhour.\t4\nhour\t21\nhours,\t4\nhours.\t2\nhours\t16\nhouse,”\t5\nhouse,\t35\nhouse;\t7\nhouse!”\t6\nhouse!\t4\nhouse?”\t3\nhouse?\t2\nhouse.”\t1\nhouse.\t18\nhouse\t108\nHouse;\t1\nHouse\t5\nHOUSE,\t1\nhouse-decoration\t1\nhousehold\t1\nhouses,\t9\nhouses?\t1\nhouses\t14\nhousewife,\t1\nhovered,\t1\nhovered\t2\nhovers\t1\n“how\t4\nhow,\t2\nhow\t92\n‘How\t1\n“How\t27\nHow,\t1\nHow\t21\nhowever,”\t1\nhowever,\t38\nhowever.\t1\nhowever\t3\nHowever,\t1\nhow’s\t1\n“How’s\t2\nHow’s\t1\n“Hssst!”\t1\nhuddled\t2\nHuddled\t1\nhue,\t1\nhue\t2\nhues,\t1\nhuge\t7\nhugged\t1\nhugging\t2\nhum,\t1\nhum!\t1\nhum\t5\nhuman\t15\nHuman\t1\nhumanely,\t1\nhumaneness\t1\nhumanitarianism.\t1\nhumanizing\t1\nhumbly\t1\nhumbug,\t2\nhumbug!\t1\nhumbug?\t1\nhumbug.”\t1\nhumbug.\t1\nhumbug\t1\n‘Humbug!’\t1\nhumiliating.\t1\nhummed\t1\nhumming,\t1\nhumorous\t1\nhumour\t3\n“Humph!”\t1\nhunched\t1\nhundred,\t4\nhundred!\t1\nhundred?”\t1\nhundred.”\t1\nhundred\t39\nhundreds,\t1\nhundreds\t5\nHundreds\t1\nhundredth\t1\nhung\t11\nhunger\t3\nhungrier\t1\nhungrily,\t1\nhungry,\t1\nhungry.\t1\nhungry\t5\nhungry-looking\t3\nhunt\t1\nhunted\t2\nhunting\t3\nhunting-song.\t1\nHurlingham.\t1\nHurlingham\t1\nhurried\t16\nhurriedly,\t1\nhurriedly\t6\nHurriedly\t1\nhurry,\t1\nhurry;\t1\nhurry?”\t1\nhurry.\t1\nhurry\t4\nhurrying\t2\nhurt\t5\nhusband,\t1\nhusband;\t2\nhusband!”\t2\nhusband!\t1\nhusband?”\t1\nhusband.\t2\nhusband\t14\nhusbanding\t1\nhusbands,\t1\nhusbands\t1\nhush\t1\nHyde\t5\nhydrangeas\t1\nhydropathic\t1\nhydropathics,\t1\nhymn,\t1\nhypercriticism,\t1\n‘i,’\t1\n‘I\t24\n“I\t175\n(I\t1\n—“I\t1\nI!\t1\nI.\t1\nI).\t1\nI—”\t1\nI—\t4\nI\t454\nice,\t1\nice.\t1\nice\t1\nice-pails.\t1\n“I’d\t2\nI’d\t4\nidea,\t2\nidea.\t1\nidea\t24\nideal\t1\nideals,\t1\nideas\t1\nidentified\t1\nidentify\t1\nidentity\t1\nidle\t5\nidleness.\t1\nidleness\t1\nidly\t2\nidols\t1\n“if,\t1\n“if\t4\n(if\t2\n—“if\t1\nif,\t1\nif\t221\n‘If\t3\n“If,”\t1\n“If\t14\nIf\t61\nignorance.\t1\nignorance\t5\nignorant\t5\nignored\t1\nII\t1\nIII\t1\nill,\t1\nill.”\t1\nill\t4\n“I’ll\t7\nI’ll\t11\nill-advisedly)\t1\nill-advisedly\t1\nill-arranged\t1\nill-health,\t1\nill-natured,\t1\nill-natured.\t1\nillness,\t1\nillnesses,\t1\nill-treatment\t1\nillumination\t1\nillusions\t1\nillusive\t1\nillustrate\t2\nillustration\t1\nillustrative\t1\n’im.\t1\n‘I’m\t2\n“I’m\t14\nI’m\t35\nimage,\t1\nimage.\t1\nimage\t3\nimaginary\t1\nimagination,\t2\nimagination;\t1\nimagination.\t1\nimagination\t4\nimagine\t4\nimagined,\t1\nimagined\t2\nimbibed\t2\nimbued\t1\nimitation\t1\nimmaculateness\t1\nimmediate\t3\nimmediately,\t1\nimmediately.\t1\nimmediately\t5\nimmense\t4\nimmersed\t1\nimmobility,\t1\nimmobility.\t1\nimmobility\t1\nimmoral,\t1\nimmoral.\t1\nimmovable,\t1\nimmovable.\t1\nimmovable\t3\nimmovably,\t1\nimmune\t1\nimmunity\t1\nImogen,\t1\nImogen\t1\nimparted\t3\nimpartiality,\t1\nimpasse,\t1\nimpassively\t1\nimpatience.\t1\nimpatience\t3\nimpatient\t1\nimpatiently:\t1\nimpatiently\t1\nimpecunious\t1\nimpending,\t1\nimpending\t2\nimpenetrability\t1\nimperatively\t2\nimperceptibly,\t1\nImperceptibly\t1\nimperfect\t2\nimperial\t1\nImperial\t1\nImperialistic\t1\nimperious\t2\nimperiously:\t1\nimperiously.\t1\nimpersonal\t6\nimpertinence\t1\nimperturbable,\t2\nimpingement\t1\nimpinging\t1\nimpiously\t1\nimplanted\t1\nimplicit\t1\nimplies\t1\nimport,\t1\nimportance,\t3\nimportance;\t1\nimportance\t5\nimportant,\t2\nimportant\t8\n‘importation\t1\nimportation\t1\nimpossibility,\t1\nimpossibility\t1\n‘impossible’—\t1\nimpossible,\t1\nimpossible;\t1\nimpossible.\t1\nimpossible\t12\nimprecations.\t1\nimpressed\t3\nimpression\t15\nimpressionable\t1\nimpressive\t2\nimprisonment\t1\nimprobable\t2\nimproper,\t1\nimproved\t1\nimprovidently\t1\nimproving\t2\nimprudence\t1\nimpulse,\t1\nimpulse!\t1\nimpulse\t3\n‘in\t1\nin,”\t1\nin,\t24\nin;\t4\nin:\t2\nin!”\t1\nin!\t1\nin?’\t1\nin?\t1\nin.”\t1\nin.\t22\nin\t1694\n‘In\t2\n“In\t8\nIn\t110\ninaccessible\t1\ninadequate\t1\ninarticulate\t1\ninattention\t1\ninattentive\t1\ninaudible\t1\nincalculable\t1\nincapable\t1\nincarnation\t2\nincentive\t2\ninch\t2\ninches\t1\nincident,\t1\nincident.\t1\nincident\t4\nincline,\t1\ninclined\t1\nincluding,\t1\nincluding\t3\ninclusive\t2\nincome,\t4\nincome\t6\nincomprehensible.\t1\ninconceivable;\t1\ninconceivable\t1\ninconsiderable\t1\ninconsiderately,\t1\ninconsistent\t1\ninconvenience\t1\nincorrigible\t1\nincorruptible\t1\nincrease,\t1\nincrease\t3\nincreased.\t1\nincreased\t5\nincreasing\t3\nincredible.\t1\nincredible\t2\nincurred\t1\nincurring\t1\nindecency\t1\nindecision.\t1\nindeed,\t25\nindeed!\t1\nindeed\t19\nIndeed,\t7\nIndeed!”\t1\nIndeed\t1\nindefinable\t2\nindefinite,\t1\nindefinitely,\t1\nindefinitely\t1\nIndia\t2\nIndian\t2\nIndia-rubber\t1\nindictment\t1\nindifference,\t1\nindifferent,\t1\nindignation\t1\nindirect\t1\nindispensable\t2\nindisposition\t1\nindissolubly\t1\nindividual,\t2\nindividual\t3\nIndividual\t1\nindividualism,\t1\nindividualism.\t1\nindividualistic\t1\nindividuality\t1\nindividually,\t1\nindividuals,\t1\nindomitable\t1\nindoors.\t1\nindubitable\t1\ninduce\t1\ninduced\t4\nindulged\t2\nIndulgent\t1\nindulging\t2\nineffable\t1\nineradicable\t1\ninevitable\t1\ninevitably\t1\ninexcusable,\t1\ninexorable\t3\ninexplicable,\t1\ninexplicable\t3\ninexpressible\t2\ninexpressibly\t1\ninfallible\t1\ninfallibly\t1\ninference\t1\ninfernal\t1\nInferno\t1\ninfinite\t2\ninflexibility;\t1\ninflexible\t1\ninfluence,\t2\ninfluence\t3\ninform\t1\ninformation,’\t2\ninformation?\t1\ninformation.\t1\ninformation\t5\ninformed\t1\nInformed\t1\ninforming\t1\ninfra\t1\ninfrequently\t1\ningenuity\t1\ningrained\t1\ningratiating\t1\ninhabitants\t1\ninhabited\t1\ninhaling\t1\ninherent\t1\ninheritance,\t2\ninherited\t4\ninimitably\t1\ninjure\t1\ninjured\t2\ninjury,\t1\ninjury.\t1\ninjury\t1\ninjustice!\t1\ninkling\t1\nink-pot,\t1\ninmost\t1\nInn,\t1\nInn\t1\ninnate\t3\ninner\t8\ninnocence;\t1\ninnumerable,\t1\ninnumerable\t9\ninopportunely\t1\ninquest\t1\ninquired.\t1\ninquired\t4\ninquiries.”\t1\ninquiries\t1\ninquiring,\t1\ninquiring\t1\ninquiringly.\t1\ninquisitive\t1\ninquisitively,\t1\ninquisitor.\t1\ninroads\t1\ninscribed\t1\ninscription.\t1\ninscription\t1\ninscrutable,\t1\ninscrutable\t4\ninscrutably\t2\ninsects\t1\ninsensible\t1\ninseparable\t2\ninsight.\t1\ninsight\t3\ninsignia\t2\ninsist\t2\ninsisted,\t1\ninsistent\t1\ninsolence,\t1\ninspect\t3\ninspection\t2\nInspector,\t1\nInspector;\t1\nInspector?\t1\nInspector\t8\nInspector’s\t1\ninspiration\t3\nInspired\t1\ninspiring\t2\ninstalled,\t1\ninstance,\t7\ninstance;\t1\ninstance?”\t1\ninstance\t1\ninstantaneous.\t1\ninstantly:\t1\ninstantly\t4\ninstead,\t1\ninstead\t7\nInstead\t1\ninstinct,\t3\ninstinct;\t1\ninstinct\t19\ninstinctive.\t1\ninstinctive\t3\ninstinctively\t3\ninstincts,\t2\ninstincts.\t2\ninstincts\t4\ninstitution\t1\nInstitution\t1\ninstitutions,\t1\ninstitutions\t2\ninstructed\t1\ninstruction,\t1\ninstruction\t1\ninstructions:\t1\ninstructions\t4\ninstructive\t1\ninsulation,\t1\ninsulation\t1\ninsurance.\t1\nInsurance\t1\nintangible\t1\nintelligent\t1\nintend\t1\nintended:\t1\nintended.\t1\nintended\t7\nintending\t2\nintends\t1\nintense\t1\nintent,\t1\nintent\t3\nintention\t9\nintentions,\t2\nintentions’\t1\nintentions\t2\nintently,\t3\nintently.\t1\nintently\t1\nintents\t2\ninterchanged,\t1\ninterchanged\t1\nintercourse,\t1\ninterest,\t3\ninterest;\t2\ninterest.\t4\ninterest\t12\ninterested,”\t1\ninterested\t5\nInterested\t1\ninteresting!\t1\ninteresting\t4\ninterests,\t1\ninterests\t5\ninterfered\t1\ninterference,\t1\ninterference.\t1\ninterference\t1\ninterlaced,\t1\ninterminable\t1\nintermittent\t1\ninterposed\t1\ninterpret\t1\ninterpretation\t1\ninterregnum\t1\ninterrogatories,\t1\ninterrupted\t4\nintersecting\t1\ninterspersed\t1\ninterval,\t1\ninterval.\t1\ninterval\t1\nintervals,\t1\nintervals\t8\nintervention\t2\ninterventions\t1\ninterview,\t1\ninterview.\t2\nintimacy\t1\nintimate\t5\nintimates,\t1\ninto;\t1\ninto.\t1\ninto\t262\nInto\t3\nintolerable,\t1\nintolerable\t2\nintolerably\t1\nintoxication\t1\nintricate,\t1\nintrigue\t1\nintriguee’—\t1\nintriguee\t1\nintroduce\t3\n“Introduce\t1\nintrospective\t1\nintrude\t2\nintruded\t1\nintuition\t2\nintuitive\t1\ninvaded\t1\ninvader\t1\ninvariable\t1\ninvariably\t2\ninvent\t1\ninvented\t2\ninvention\t1\ninventions;\t1\ninventions\t1\nInventor.\t1\ninventory\t1\ninvest;\t1\ninvest\t3\ninvested\t2\ninvesting\t1\ninvestment,\t1\ninvestment;\t1\ninvestment.\t1\ninvestments,\t1\ninvestments\t2\ninvisible,\t2\ninvisible.\t1\ninvisible\t4\ninvitation,\t1\ninvitation.\t1\ninvitation\t2\ninvitations\t1\ninvited\t1\ninvoluntarily),\t1\ninward\t1\ninwardly\t1\ninwards\t1\n“Irene!\t1\n“Irene\t2\nIrene,\t31\nIrene;\t1\nIrene:\t3\nIrene!”\t1\nIrene!\t3\nIrene?”\t3\nIrene?\t2\nIrene.\t9\nIrene\t136\nIRENE,\t1\n‘Irene’d\t1\nIrene’d\t1\nIrene’s,\t2\nIrene’s\t39\niris\t2\niris-coloured,\t1\nIrish\t1\nIrishman?”\t1\niron\t5\niron-grey\t1\nironic\t1\nironical.\t2\nironical\t3\nironies,\t1\nironist,\t1\nIronmonger\t1\nirony,\t2\nirony;\t1\nirony\t2\nirreproachable\t1\nirresistible\t3\nirresponsible,\t1\nirretrievable\t1\nirreverend\t1\nirritated\t1\nirritating\t1\nirritatingly\t2\nirritation.\t3\nirritation\t4\n‘is\t1\n“is\t6\nis,”\t3\nis,\t11\nis;\t1\nis!\t2\nis?”\t1\nis.”\t2\nis.\t2\nis\t232\nIs\t1\nIseeum:\t1\nIseeum.’\t1\nisland;\t1\nisland\t1\nisn’t\t8\nisolated\t1\nisolation\t3\nissue\t3\n‘it\t1\n“it\t4\n(it\t2\n—“it\t1\nit,’\t1\nit,”\t11\nit,\t61\nit;\t18\nit:\t2\nit!’\t1\nit!”\t13\nit!\t12\nit?’\t1\nit?”\t3\nit?\t11\nit.”\t12\nit.)\t1\nit.\t80\nit’,”\t1\nit’;\t2\nit)\t1\nit\t689\n“It\t11\nIt\t242\nItalian!”\t1\nItalian\t3\nit’d\t1\n“It’d\t1\nIt’d\t1\nitem\t1\n“it’ll\t1\nit’ll\t6\n“It’ll\t3\nIt’ll\t4\n‘it’s\t1\n“it’s\t10\nit’s,\t1\nit’s\t28\nits\t134\n‘It’s\t2\n“It’s\t21\nIt’s\t18\nIts\t3\nitself,\t2\nitself;\t1\nitself!\t1\nitself.\t3\nitself\t7\n‘I’ve\t1\n“I’ve\t19\nI’ve’\t1\nI’ve\t22\nivory\t3\nivory-coloured\t1\nJack\t7\njackanapes!\t1\njackanapes\t1\njacket\t1\njade-green\t1\n“James!\t1\n(James)\t1\nJames,”\t1\nJames,\t53\nJames;\t9\nJames:\t2\nJames!\t2\nJames?”\t1\nJames.\t18\nJames’,\t1\nJames’\t13\nJames)\t1\nJames\t160\nJameses\t3\nJames’s,\t1\nJames’s\t9\njangled\t1\nJanuary\t1\nJapanese\t6\njauntily\t1\njauntiness\t1\njaunts\t1\njaw,\t3\njaw\t2\njealous\t4\njealousy,\t4\njealousy!\t1\njealousy\t4\n‘Jenny.’\t1\nJeremiad,\t1\njerked\t3\nJermyn\t1\nJesse,\t1\nJesse\t1\njest!\t1\njests.\t1\njettisoning\t1\njeu,’\t1\njeu;\t1\nJew\t1\njewel\t1\njewels;\t2\njilt\t2\n‘Jo.’\t1\n“Jo,”\t1\nJo,”\t3\nJo,\t5\nJo;\t1\nJo!”\t1\nJo?\t1\nJo.”\t1\nJo.\t1\nJo\t10\nJO,’\t1\nJO,\t1\njob.’\t1\njob.\t2\njob\t2\nJobling\t3\nJobson’s,\t3\nJobson’s.”\t2\nJobson’s\t3\njocular\t1\njog\t1\nJohn\t2\nJohnnies!\t1\nJohnny.\t1\nJohnny\t1\nJohn’s\t2\njoin\t2\njoined.\t1\njoined\t4\njoining\t1\njoint\t2\njoke!”\t1\njoke!\t1\njoke.\t1\njoke\t1\njoker\t1\n“Joking?”\t1\njollity\t1\njolly\t2\nJolly,\t4\nJolly),\t1\nJolly\t7\nJolly’s:\t1\nJolly’s\t1\n“Jolyon,\t1\nJolyon,’\t1\nJolyon,”\t2\nJolyon,\t48\nJolyon;\t11\nJolyon:\t2\nJolyon!\t2\nJolyon?”\t1\nJolyon?\t1\nJolyon.”\t1\nJolyon.\t18\nJolyon’.\t1\nJolyon\t251\n‘JOLYON\t2\nJOLYON\t1\nJolyon’s,\t1\nJolyon’s\t55\nJon,\t2\nJon.\t1\n‘Jonah-isms,’\t1\nJo’s\t2\njournal\t1\njournals,\t1\njourney?\t1\njourney\t2\nJove-like\t1\njowl,\t1\njowl\t1\njoy,\t1\njoy.\t1\njoy\t2\nJoy\t3\njubilee\t1\njudge\t3\nJudge,\t2\nJudge.\t1\nJudge\t2\njudged\t1\nJudges\t1\njudgment.\t3\njudgment\t11\nJudgment.\t1\njudicial,\t1\njudicial\t1\njudiciously\t1\njuice:\t1\n‘Juley.’\t1\nJuley,\t12\nJuley;\t2\nJuley!”\t1\nJuley!\t3\nJuley.”\t1\nJuley\t21\nJuley’s\t3\nJulia,\t1\nJulia;\t1\nJulia!”\t1\nJulia),\t1\n‘July\t1\nJuly\t1\njump.”\t1\njumped\t1\njunction\t1\n‘June\t1\n“June.”\t2\nJune,\t25\nJune;\t5\nJune:\t1\nJune!”\t2\nJune!\t4\nJune?”\t1\nJune.”\t1\nJune.\t15\nJune’—\t1\nJune’\t1\nJune\t145\n“June’s\t2\nJune’s.\t1\nJune’s\t32\njungle\t1\njunior\t1\nJunior\t1\njury\t2\njust?\t1\njust.\t1\njust\t57\nJust\t4\njustice,\t3\njustice\t4\nJustice!\t1\nJustice.\t1\nJustice\t6\njustified\t1\njustify\t1\njustly\t3\njut\t1\njutted\t1\nkeen.\t1\nkeen\t4\nkeen-eyed.\t1\nkeep\t19\nkeeping.\t1\nkeeping\t15\nkeeping)—“how\t1\nkennel.\t1\n‘Kensington\t2\nKensington,\t1\nKensington;\t1\nKensington.\t1\nKensington\t5\n(kept\t1\nkept\t46\nkernel\t1\nkettle.\t2\nKew,\t1\nkey,\t1\nkey\t4\nkeys,\t1\nkeys.\t1\nkick\t1\nkicked\t2\n“Kicked\t1\nKicked\t1\nkicking\t1\nkid\t2\nkill\t1\nkilled.”\t1\nkilled\t3\nkind;\t1\nkind.\t4\nkind\t20\nkindheartedness,\t1\nkindly\t3\nkindness.\t1\nkindness\t1\nkinds\t1\nking!\t1\nkingdom\t1\nKingdom\t1\nkinship,\t1\nkinship\t1\nkiss,\t1\nkiss;\t1\nkiss\t7\n‘Kiss\t2\nKiss,\t1\nKiss\t2\nkissed\t5\nkisses.\t1\nkisses\t2\nkissing\t1\nKissing\t1\nkitchen\t1\nkitten\t1\nknapsack,\t1\nknee,\t2\nknee;\t3\nknee.\t1\nknee\t1\nknees,\t3\nknees;\t1\nknees\t7\nknell\t1\nknew,\t6\nknew!\t2\nknew.\t1\nknew\t90\nknicknacks,\t1\nknighted\t1\nKnightsbridge;\t1\nKnightsbridge\t1\nknitting,\t1\nknitting.\t1\nknob\t1\nknobby\t1\nknock,\t1\nknock!’\t1\nknock!”’\t1\nknock\t1\nknocked\t2\nknocker\t1\nknocking\t1\nknockings,\t1\nknock’—‘taken\t1\nknout;\t1\nknow,’\t2\nknow,”\t6\nknow,\t10\nknow;\t3\nknow!\t1\nknow?”\t5\nknow?\t2\nknow.\t10\nknow\t121\nknowing!”\t1\nknowing.\t1\nknowing\t15\n“Knowing,\t1\nKnowing\t2\nknowledge,\t1\nknowledge.\t1\nknowledge\t11\nknown,\t3\nknown;\t1\nknown!”\t1\nknown.\t1\nknown\t26\nknows,\t4\nknows\t13\nknuckles,’\t1\nknuckles,\t1\nL12,000.\t1\nL5000\t1\n(L500)\t1\nL500.\t1\nla\t1\n‘La\t1\nlabour,\t2\nlabour.\t1\nlabours,\t1\nlabours\t2\nlabyrinth\t1\nlace,\t1\nlace.\t1\nlace\t5\nlack\t4\nlacking\t2\nlacquer;\t1\nlacquer.”\t1\nLadbroke\t3\nladies,\t1\nladies’\t1\nladies\t10\n‘Ladies’\t1\nLadies\t1\nlady,\t2\nlady!”\t2\nlady!\t1\nlady.\t1\nlady\t10\nLady\t3\nlady-bird\t1\nlady’s\t5\nlaid\t13\nlain\t2\nlakes\t1\nlamb.\t1\nlambs,\t1\n‘lame\t4\nlame\t1\nlamentable\t1\nlamp;\t1\nlamp.\t2\nlamp\t2\nlamp-light,\t2\nlamp-light;\t1\nlamp-light\t2\nlamps,\t1\nlamps;\t2\nlamps\t5\nLancashire\t2\nland,\t3\nland;\t1\nland!”\t1\nland!\t1\nland\t11\n“Land\t1\nlandau,\t1\nlanding,\t1\nlanding\t1\nlandings,\t1\nlands\t1\nlandscape.\t2\nlandscapes\t1\nLane,\t5\nLane;\t1\nLane!”\t1\nLane.\t1\nLane\t4\nLANE,\t1\nlanguid\t1\nlanguidly\t3\nlanguor\t1\nlank\t2\nlanky\t1\nlap,\t1\nlap.\t1\nlap\t2\nlaps\t1\nlapse\t1\nlapsed\t2\nlarge,\t8\nlarge.’\t1\nlarge\t26\nLarge\t2\nlarger,\t1\nlarger\t5\nlarks.\t1\nlarks\t2\nlash\t1\nlast,\t13\nlast;\t2\nlast:\t1\nlast?\t1\nlast.\t10\nlast\t68\nlasted\t2\nlasting\t2\nlast-mentioned\t1\nlatch-key,\t1\nlatch-key.\t1\nlatchkey,\t1\nlate,”\t1\nlate,\t1\nlate;\t2\nlate!”\t1\nlate!\t1\nlate?\t1\nlate.\t2\nlate\t19\nlately,\t1\nlately.\t2\nlately\t5\nlater,\t3\nlater\t5\nLater\t1\nlatest\t4\nlath!”—“What\t1\nlatitude\t1\nlatter,\t4\nlatter\t10\nlatter’s\t1\nlaugh,\t9\nlaugh;\t1\nlaugh:\t1\nlaugh\t5\nlaughed:\t1\nlaughed.\t2\nlaughed\t2\nlaughing.\t1\nlaughing\t1\nlaughingstock.\t1\nlaughter,\t4\nlaughter.\t1\nlaughter\t1\nlaurel,\t2\nlaurels,\t1\nlavatory?”\t1\nlavatory\t1\nlavender\t4\nlavender-coloured\t1\nlavish\t1\nlaw;\t1\nlaw)\t1\nlaw\t7\nLaw\t1\nlawful\t1\nlawn,\t1\nlawn.\t2\nlawn\t3\nlaws,\t1\nlaws\t4\nlawsuit,\t1\nlawsuit\t1\nlawyer\t1\nlawyers\t2\nlay,\t1\nlay\t25\nlaying\t2\nlazy\t1\nlead\t2\nleading\t6\nleads\t1\nleaf,\t1\nleaf!\t2\nleaf\t1\nleague\t1\nlean,\t3\nlean\t8\nleaned\t6\nleaning\t9\nLeaning\t2\nleap\t2\nleaped\t1\nleaping\t2\nleaps\t1\nlearn,\t1\nlearn\t2\nlearned\t1\nlearnt\t2\nlease\t1\nleast,\t6\nleast\t14\nleather,\t2\nleather.\t1\nleather\t6\nleave?”\t1\nleave.\t1\nleave\t22\nleaves,\t3\nleaves;\t1\nleaves\t10\nleaving\t9\nlecture\t1\nled\t8\nlee,\t1\nlee\t1\nleer\t1\nleft,\t6\nleft;\t2\nleft.\t4\nleft\t74\n“Left\t1\nleft-hand\t1\nleg\t2\nlegacies\t1\nlegal.\t2\nlegal\t5\nlegality\t1\nlegend,\t1\nlegitimate\t3\nlegitimately,\t1\nlegs,\t5\nlegs;\t1\nlegs.\t3\nlegs\t10\nleisure\t2\nleisurely;\t1\nlend\t3\nlength,\t1\nlength\t4\nlengthened\t1\nlengthy\t1\nlent\t2\nleopard,’\t1\nleopard.”\t1\nless,”\t1\nless.\t1\nless\t17\nlesser\t2\nlest,\t2\nlest\t4\n“let\t2\nlet\t51\n‘Let\t1\n“Let\t4\nLet\t3\nlet’s\t2\n“Let’s\t2\nLet’s\t2\nletter,\t4\nletter:\t1\nletter?\t1\nletter\t18\nletters,\t3\nletters\t5\nLetters.\t1\nletting\t7\nlevel\t5\nlevelled\t2\nliabilities\t1\nliability,\t1\nliability.’\t1\nliability\t2\nLiability\t1\nliable.\t1\nliable\t3\nliaison\t1\nlibation\t1\nlibel,\t1\nliberal\t3\nLiberal,\t1\nliberties\t1\nliberty,\t1\nliberty.\t1\nlicensed\t1\nlicked\t1\nlicking\t1\nlids.\t1\nlie\t5\nlies,\t1\nlies\t2\nlife,”\t1\nlife,\t26\nlife;\t4\nlife!”\t1\nlife?\t1\nlife.”\t1\nlife.\t16\nlife\t48\nLife\t1\nLIFE\t1\nlife-blood,\t1\nlife-long\t1\nlife’s\t2\nlife-time\t1\nlift.”\t1\nlift\t4\nlifted\t8\nlifting\t4\nLifting\t1\nlight,”\t1\nlight,\t11\nlight;\t1\nlight.\t5\nlight\t47\nlight-blue\t1\nlighted\t6\nlighter\t2\nlightly.\t1\nlightly\t3\nlightning\t1\nlightningy\t1\nlights\t2\n‘like\t1\n(like\t1\nlike,”\t1\nlike,\t2\nlike:\t2\nlike\t301\n“Like\t1\nLike\t16\nliked,\t3\nliked;\t1\nliked.\t3\nliked\t14\nlikely\t15\nlikeness\t1\nlikes\t5\nliking\t1\nlilac\t1\nlimbs,\t1\nlimbs\t1\nlime,\t1\nlime\t1\nLime\t1\nlime-flowers\t1\nlimes,\t1\nlimes.\t1\nlime-trees,\t1\nlimit;\t1\nlimit\t5\nlimited,\t1\nLimited,’\t1\nLimited.’\t1\nLimited\t1\nlimping\t1\nLincoln’s\t1\nLincolnshire\t1\nline;\t1\nline\t12\nlinen\t2\nlines,\t1\nlines:\t1\nlines.\t1\nlines\t6\nlinger\t1\nlingered\t2\nlingering\t3\nlink.\t1\nlinked\t1\nlinseed\t1\nlion\t2\nlion-house.\t2\nLion-house\t1\nlions\t1\nlip,\t2\nlip\t7\nlips,\t21\nlips;\t5\nlips:\t1\nlips.\t8\nlips\t27\nliqueur,\t1\nliquor,\t1\nlist,\t1\nlist\t2\nList.\t1\nList\t1\nlisten\t4\nlistened,\t1\nlistened\t6\nlistener,\t1\nlistener;\t1\nlistening.\t2\nlistening\t6\nListening\t1\nliterally\t2\nliterature,\t2\nliterature\t1\n‘little,’\t1\n‘little\t3\nlittle,\t7\nlittle.\t3\nlittle\t235\n‘Little\t1\nLittle\t4\nLittlemaster,\t1\nLittlemaster\t1\nLittlemaster’s\t2\nlittler\t1\nlittle-room\t1\nlive;\t1\nlive!”\t1\nlive.\t1\nlive\t25\nlived\t14\nlively\t1\nliver,\t3\nliver;\t1\nliver.\t2\nliver\t4\nliveries,\t1\nliver’s\t1\nLiversedge,\t2\nlives,\t3\nlives\t6\nliving,\t1\nliving\t10\nLiving,’\t1\nLiving\t1\nLloyd’s;\t1\nLloyd’s\t1\nload\t1\nloathed\t2\nlobster\t1\nlocality\t2\nlock,\t1\nlock\t2\nlocked,\t1\nlocked.\t1\nlocked\t7\nlocks\t1\nlodging-houses,\t1\nlodging-houses.\t1\nlofty\t2\nlog,\t1\nlog\t1\nlogs,\t1\nloitered;\t1\nloitering\t1\n‘London\t1\n“London\t1\nLondon,\t14\nLondon;”\t1\nLondon;\t1\nLondon!”\t1\nLondon?”\t1\nLondon.’\t1\nLondon.”\t2\nLondon.\t4\nLondon\t20\nLondoners;\t1\nloneliness,\t1\nloneliness.\t1\nloneliness\t1\nlonely,\t2\nlonely!”\t1\nlonely!\t1\nlonely.\t1\nlonely\t8\nlong,\t14\nlong.\t2\nlong\t137\nLong\t2\nlonged\t6\nlonger,\t1\nlonger;\t2\nlonger.\t3\nlonger\t21\nlong-headed\t1\nlong-inflicted\t1\nlonging.\t1\nlonging\t6\nlongings,\t1\nlong-standing\t1\nlong-suppressed\t1\nlook,\t14\nlook;\t2\nlook:\t3\nlook!\t1\nlook.”\t1\nlook.\t7\nlook\t127\n‘Look\t1\n“Look\t4\nLook\t7\n‘looked\t1\nlooked,\t2\nlooked;\t1\nlooked.\t2\nlooked\t131\nLooked\t1\nlooking,\t3\nlooking!”\t1\nlooking?\t1\nlooking\t80\nLooking\t5\nlooking-glass\t1\nlooking-glasses\t1\nlook-out\t1\nlooks,\t1\nlooks.\t2\nlooks\t4\n“Looks\t1\nLooks\t1\nloom.\t1\nloomed\t2\nlooming\t1\nlooped\t1\nloose\t3\nloose-jointed,\t1\nloosely\t1\nLord’s\t1\nlordship\t2\nLordship\t3\nlose\t5\nlosing\t3\nloss,\t1\nloss;\t1\nloss.\t2\nloss\t4\nlost\t27\nLost,’\t1\nlot,\t4\nlot!”\t1\nlot.’\t1\nlot.”’\t1\nlot.”\t1\nlot’—\t1\nlot\t28\nlotion\t1\nloud,\t1\nloud\t1\nloudly\t1\n(Louisa\t1\nlovable\t1\nlove,”\t1\nlove,\t8\nlove;\t1\nlove!\t1\nlove.”\t1\nlove.\t3\nlove\t22\nLove,’\t1\nLove!\t1\nLove\t2\nlove-affair\t1\nloved;\t1\nloved.\t1\nloved\t14\nlove-lady!”\t1\nlove-lady\t1\nlovely;\t1\nlovely\t1\nlover,\t3\nlover;\t3\nlover!\t1\nlover.\t3\nlover\t13\nlover’s\t4\nlovers,\t3\nlovers\t11\nloves.\t1\nloves\t2\nloving,\t1\nloving\t2\nlow,\t5\nlow;\t1\nlow:\t1\nlow\t9\nlow-crowned\t1\nlower\t4\nlowered.\t1\nlowly\t1\nlow-muttered,\t1\nLowndes\t3\nlow-percented.\t1\nLoyal\t1\nLtd.,’\t1\nLtd.,”\t1\nLtd.,\t1\nLuc,\t1\nluck!”\t1\nluck\t1\nLuckily,\t1\nlucky,\t1\nlucky\t4\nLudgate\t1\nlugubrious\t1\nlugubriously\t1\nlull\t1\nlump\t1\n‘lunar,’\t1\nlunch,\t3\nlunch;\t1\nlunch!\t1\nlunch.\t4\nlunch\t7\nlunched\t3\nluncheon\t1\nluncheon-bar,\t1\nlunching\t3\nlurch,\t1\nlurch\t1\nlurked\t4\nlurking\t1\nlustre.\t2\nluxurious\t2\nluxury\t2\nlying\t11\nlynx-eyed,\t1\nM.\t1\nMacAnder,\t5\nMacAnder!’\t1\nMacAnder\t9\nMacander’s\t1\nMacAnder’s\t3\nmachine\t1\nmachine-like,\t1\nMackintosh\t1\nmad.\t1\nmad\t2\nmaddening\t1\nmade,\t4\nmade\t180\n“Made\t2\nMadeira;\t1\nMadeira.\t1\nMadeira\t2\n‘Madeleine,’\t1\nMademoiselle\t1\nmadly\t1\nmadness\t1\nmagic,\t1\nmagic\t1\nmagnetic\t2\nmagnificent\t2\nmagnificently\t1\nmahogany\t1\nmahogany-and-leather\t1\nmaid.\t1\nmaid\t12\nmaiden\t1\nmaid’s\t1\nmaids),\t1\nmaids)\t1\nmain\t2\nmainly\t2\nmaintain\t1\nmaintained\t3\nmaintaining\t2\nmaize-coloured\t1\nmajestic\t3\nMajestic\t1\nmajesty\t2\nMajor\t2\nmajority!”\t1\nmajority\t4\n—‘make\t1\nmake.\t2\nmake\t74\n‘Make\t1\nMake\t1\nmakes\t9\nmake-shifts,\t1\nmakeshifts;\t1\nmaking\t33\nMalacca\t1\nmalaise,\t1\nmale\t2\nmalice,\t3\nmalicious\t3\nmaligned.\t1\nMall,\t1\nMall.\t1\nmalleable,\t1\n‘Mam’zelle’\t1\n‘man\t6\nman,’\t1\nman,”\t1\nman,\t32\nman;\t2\nman!”\t4\nman!\t2\nman?”\t2\nman.”\t1\nman.\t18\nman’\t2\nman\t143\nMan\t1\nman-about-town\t1\nmanage\t5\nmandoline,\t1\nmaniac,\t1\nmanifest\t1\nmanifested\t2\nmanifestly\t1\nmanner,\t1\nmanner!”\t1\nmanner.\t2\nmanner\t16\nmanners,\t2\nManners\t1\nmanning\t1\nmanoeuvring\t1\nman-of-the-world\t1\nmanouevre\t1\nman’s\t17\nmansion,\t2\nmansion;\t1\nmansion\t3\nmansions\t1\nMansions,\t1\nMansions\t1\nmanslaughters,\t1\nmantelpiece,\t3\nmanufacturers.”\t1\nmanufacturers.\t1\nmany\t47\nMany\t2\nmap\t1\nmarble,\t1\nmarble),\t1\nmarble\t5\nMarble\t2\nmarch\t1\nmarched\t4\nmare\t1\nmares\t1\nmargin,\t1\nmarital\t1\nmark;\t1\nmark!”\t1\nmark\t5\nmarked\t5\nmarking\t3\nmarks.\t1\nmarks\t5\nMarlborough\t1\nmarred\t1\nmarriage,\t5\nmarriage;\t3\nmarriage!\t1\nmarriage.\t3\nmarriage\t10\nmarriages,\t2\nmarriages\t1\nmarried,\t4\nmarried?”\t1\nmarried.\t3\nmarried\t30\nMarried\t1\nmarried-sister,\t1\nmarry\t8\nmarrying,\t1\nmarrying\t1\nmartyr\t1\nmarvellous\t1\nmask,\t1\nmask.\t1\nmask\t3\nmass\t2\nmasses\t2\nmassive\t1\nmaster,\t2\nmaster!\t1\nmaster.\t3\nmaster\t11\nMaster,\t1\nMaster\t3\nmaster-builder.\t1\nmastered\t2\nmasterful\t3\nmaster’ll\t1\nmasterly\t1\nmasterpiece\t1\nmaster’s\t1\nmastery,\t1\nmastication.\t1\nmatch\t3\nmatches\t1\nmate.\t1\nmaterial\t3\nmaterials\t1\nmatrimonial\t1\nmatter,\t1\nmatter;\t1\nmatter!\t1\nmatter?’\t1\nmatter?”\t1\nmatter?\t4\nmatter.”\t1\nmatter.\t3\nmatter\t30\nmattered\t1\nmatter-of-fact\t3\nmatter-of-factness,\t1\nmatters,\t2\nmatters;\t1\nmatters.\t3\nmatters\t7\nMaud,\t1\nmauve\t2\nMavrojano\t1\nmaxims,\t1\nmaximum\t1\n‘may\t1\nmay\t26\n‘May\t4\n“May\t1\nMay.\t1\nMay\t9\nmaybe,\t1\nMayfair,\t1\nMayfair\t1\nmaze\t1\nmazes\t1\nme,”\t8\nme,\t19\nme:\t1\nme!’\t1\nme!”\t6\nme!\t3\nme?’\t1\nme?”\t3\nme?\t1\nme.’\t1\nme.”\t1\nme.\t10\nme\t85\nmeagre,\t1\nmeal;\t1\nmeal.\t1\nmeal\t2\nmean,\t1\nmean?”\t2\nmean?\t3\nmean.\t2\nmean\t16\nmeandered\t1\nmeaner\t1\nmeaning\t13\nmeaningful\t1\nmeaningless.\t1\nmeaningly\t1\nmeanings,\t1\nmeans,\t1\nmeans?”\t1\nmeans.\t1\nmeans\t8\nmeant,\t3\nmeant.\t2\nmeant\t13\nmeantime\t2\nmeasles,\t2\nmeasure.\t1\nmeasure\t2\nmeasured\t1\nmeasuring\t1\nmechanical\t1\nmechanically:\t1\nmeditation\t1\nmedium\t5\nmedley\t1\nmeek\t1\nmeet,\t1\nmeet\t16\nmeeting,\t1\nmeeting;\t1\nmeeting\t8\nMeeting;\t1\nMeeting\t6\nmeetings\t1\nmeets\t1\nme-kiss\t1\nmelancholy\t3\nmellowed\t1\nmellowing\t1\nmelody\t1\nmelted\t1\nmember;\t1\nmember\t13\nmembers\t10\nmembership.\t1\nmemorable\t1\nmemories\t1\nmemory,\t2\nmemory\t7\nMEMORY\t1\nmen,\t17\nmen;\t1\nmen!\t1\nmen.\t6\nmen\t46\nMen\t4\nmenace.\t1\nMenage\t1\nmen’s\t3\nmental\t1\nmentally\t1\nmention\t9\n(mentioned\t1\nmentioned.\t1\nmentioned\t2\nmentioning\t2\nmenus\t1\nmerchant\t1\nMerchant\t1\nmerciful\t1\nmercifully\t2\nMercifully\t1\nmere\t2\nmerely\t15\nmerest\t2\nmerged\t1\nmerging\t1\nmerit\t1\nmerits\t2\nmerry;\t1\nmesmeric\t1\nmesmerized\t2\nmess.\t1\nmess\t4\nmessage,\t3\nmessage;\t1\nmessage:\t1\nmessage\t5\nmessing\t1\nMessrs.\t3\nmet,\t4\nmet\t20\nmetal,\t1\nmetal;\t1\nmetal.\t1\nmetal\t1\nmethod;\t1\nmethod.\t1\nmethod\t2\nmethodical,\t1\nmethodically\t2\nMetropolis.\t1\nMichael\t1\nmid-afternoon,\t1\nmiddle.\t1\nmiddle\t8\nmiddle-age,\t1\nmiddle-class,\t1\nmiddle-class;\t1\nmiddle-class\t5\nmiddlemen,\t1\n“Middling,”\t1\nmid-June\t1\nmidnight,\t1\nmidst\t5\nmight,\t4\nmight.\t1\nmight\t86\n“Might\t1\nmightn’t\t3\nmild,\t1\nmild\t2\nmildly\t1\nmile\t1\nmiles\t4\nmilitary\t3\nmilk,”\t1\nmilk\t2\nmill\t2\nMilo’\t1\nmincing\t2\nmind,”\t2\nmind,\t14\nmind;\t8\nmind?\t1\nmind.\t11\nmind\t40\n“Mind,”\t1\n“Mind,\t1\nminded\t1\nmind’s\t1\nminds.\t1\nminds\t4\nmine,\t2\nmine\t1\nmines,\t2\nMines,\t1\nmingled\t4\nmingling\t3\nminiature.\t1\nminiature\t1\nmining\t1\nmint\t2\nminute,\t5\nminute.”\t1\nminute.\t2\nminute\t11\nminutely,\t1\nminuteness,\t1\nminutes,\t2\nminutes;\t1\nminutes’\t1\nminutes\t12\nmiracle\t1\nmirror,\t1\nmirror.\t1\nmirror\t6\nmirrors,\t1\nmirthless\t1\nmischief.\t1\nmisconstructions\t1\nmiserable.\t1\nmiserable\t4\nmisery\t2\nmisfortune.\t2\nmisfortune\t1\nmisgave\t1\nmisgiving\t2\nmisgivings,\t1\nmishearing.\t1\n‘miss\t1\nmiss\t3\n“Miss\t2\nMiss\t13\nmissed\t8\nmissing,\t1\nmissing\t1\nmission\t1\nMissis\t1\nmist\t3\nmistake,\t2\nmistake.\t2\nmistake\t5\nmistaken.’\t1\nmistaken.\t2\nmistaken\t2\nmistakes.\t1\nmistaking\t1\nmistress,\t3\nmistress?”\t1\nmistress\t8\nmistresses,\t1\nmistress’s\t1\nmistrust\t2\nmistrusted\t1\nmisty.\t1\nmisused\t1\nmittened\t1\nmix\t2\nmixed,\t1\nmixed\t2\nmixture\t4\nmob\t1\nmobile’\t1\nmock\t1\nmocked\t2\nmockery,\t1\nmockery.\t1\nmocking\t2\nmockturtle,\t1\nmode\t2\nmodel\t2\nmoderation,\t3\nmoderation!\t1\nmodern\t6\nmodes\t1\nmodified\t1\nmoist\t2\nmole,\t1\nMoliere.\t1\nmolten\t1\nmoment,\t8\nmoment;\t1\nmoment:\t1\nmoment.\t2\nmoment\t29\nmomentary\t1\nmoment’s\t3\nmoments,\t1\nmoments\t9\nMonday.\t1\nmonetary\t1\nmoney,”\t3\nmoney,\t16\nmoney;\t3\nmoney!”\t7\nmoney!\t1\nmoney?”\t1\nmoney?\t1\nmoney.”\t1\nmoney.\t10\nmoney\t54\nMoney\t1\nmoney-box.\t1\nmoney-lenders\t1\nmoney’s\t1\nmoneys\t1\nmongrel;\t1\nmongrel\t1\nmonkey.\t1\nmonkey-puzzler\t1\nmonotony,\t1\nmonotony\t1\nmonster\t1\nmonstrous\t1\nMont,\t1\n‘Montague\t1\nMontague\t1\nMonte\t3\nmonth,\t1\nmonth!”\t1\nmonth?\t1\nmonth.\t1\nmonth\t1\nmonth’s\t1\nmonths,\t1\nmonths!\t1\nmonths.\t2\nmonths\t5\nMontpellier\t13\nMONTPELLIER\t1\nMonty!”\t2\nmonument,\t1\nmonument\t1\nmonuments.\t1\nmood\t2\nmoodily\t3\nmoods,\t2\nmoods;\t1\nmoods\t2\nmoon,\t1\nmoon.\t1\nmoon\t5\nmooney\t1\nmoonlight,\t1\nmoonlight\t1\nmoonlit\t1\nmoon-shaped\t1\nMoorage\t1\nmorality.\t1\nmorbid\t1\n‘more\t1\nmore,\t6\nmore;\t2\nmore?”\t1\nmore?\t1\nmore.\t8\nmore\t164\n‘More\t1\nMore\t1\nMoreover,\t1\nmorning,\t5\nmorning.\t1\nmorning\t28\nmornings?”—“What’s\t1\nmorocco\t1\nmorose,\t1\nMorris.\t1\nmorrow,\t2\nmorrow!\t1\nmorsel.\t1\nmortal\t1\nmortals,\t1\nmortals\t2\nmortar,\t1\nmortar.\t1\nmortgage\t2\nmortgages,\t1\nmortgages;\t1\nmortgages\t1\nmortification,\t1\nmortification\t1\nmortuary,\t1\nmortuary\t1\nMoses;\t1\nmost,\t1\nmost.\t1\nmost\t47\nMost\t2\nmot,\t1\nmoth,\t1\nmother,”\t1\nmother,\t6\nmother;\t1\nmother!”\t1\nmother.”\t1\nmother.\t2\nmother\t14\nMother,\t4\nmother-bird\t1\nmother-in-law’s\t1\nmother’ll\t1\nmother’s,\t2\nmother’s:\t1\nmother’s\t7\nmothers,\t1\nMothers,\t1\nmoths\t1\nmotion,\t2\nmotion\t3\nmotionless,\t5\nmotionless.\t2\nmotionless\t5\nmotions\t1\nmotive\t1\nmotley\t1\nmotor-car,\t1\nmottled\t2\nmotto;\t1\nmotto\t3\nmould,\t1\nmountain\t1\nmountains,\t1\nmountains;\t1\nmountains.\t1\nmounted\t4\nmounting\t1\nmourners\t2\nmournful,\t1\nmournful\t3\nmournfully,\t1\nmourning,\t1\nmourning\t3\nmouse\t1\nmouse-like\t1\nmousing,\t1\nmousing\t4\nmoustache,\t4\nmoustache.\t2\nmoustache\t4\nmoustaches,\t6\nmoustaches.\t1\nmoustaches\t2\nmouth,\t8\nmouth;\t1\nmouth!”\t1\nmouth!\t1\nmouth.\t4\nmouth\t10\nmouthful\t1\nmouths,\t1\nmouths;\t1\nmouths\t1\n“move\t1\nmove,\t3\nmove!”\t1\nmove.\t4\nmove\t7\nmoved,\t4\nmoved;\t2\nmoved\t29\nmovement,\t1\nmovement;\t1\nmovement.\t1\nmovement\t11\nmovements.\t1\nmovements\t1\nmoving,\t1\nmoving.\t2\nmoving\t10\nmoving-sky,\t1\n“Mr.\t4\nMr.\t76\n“Mrs.\t4\n(Mrs.\t1\nMrs.\t133\nmuch,”\t2\nmuch,\t7\nmuch!”\t2\nmuch?”\t1\nmuch.”\t1\nmuch.\t5\nmuch\t92\nmucker.\t1\nmud\t1\nmuddy\t1\nmuffins,\t1\nmuffins\t1\nmuffled\t2\nmule,\t2\nmule!\t1\nmullet.\t1\nmultitude\t1\nmultitudes\t1\nmumbled\t2\nmummies\t1\nMunicipal\t1\nmurders,\t1\nmurky\t1\nmurmur,\t2\nmurmur\t3\nmurmured,\t1\nmurmured:\t2\nmurmured\t8\nmurmuring\t2\nmurmurs\t1\nmuscle\t1\nmused;\t1\nmused.\t1\nmuseum\t1\nMuseum\t1\nmushroom-and-silver\t1\nmushrooms?”\t1\nmusic,\t2\nmusic;\t1\nmusic.\t1\nmusic\t5\nmusical\t4\nmusician,\t1\nmusicians\t2\nmusic-stand.\t1\nmusing,\t1\nmuslin\t2\nmust,\t1\nmust;\t1\nmust!\t2\nmust\t105\n“Must\t1\nMust\t2\nmustn’t\t4\nmutinous\t1\nmutter\t1\nmuttered,\t1\nmuttered;\t1\nmuttered:\t1\nmuttered.\t3\nmuttered\t10\nMuttered,\t1\nmuttering\t1\nmutterings\t1\nmutton.’\t1\nmutton.”\t1\nmutton.\t1\nmutton\t4\nmutual\t1\nmy\t121\n‘My\t1\n“My\t12\nMy\t5\n‘MY\t3\nmyopia,\t1\nmyriad\t1\nmyself,”\t3\nmyself,\t6\nmyself!”\t1\nmyself?”\t1\nmyself.”\t1\nmyself.\t3\nmyself\t5\nmysterious,\t1\nmysterious\t5\nmysteriously\t1\nmystery,\t1\nmystery\t2\nmyth\t1\nnail\t1\nnaive\t1\nnaively,\t1\nnaivete”\t1\nnaked,\t1\nnaked\t1\nname,\t5\nname!”\t1\nname!\t1\nname?”\t2\nname.\t6\nname),\t1\nname\t34\nnamed\t7\nnameless\t1\nnames\t4\nnapkin\t2\nnarcotic\t1\nnarrow;\t1\nnarrow\t4\nnarrower\t1\nnasty,’\t1\nnasty,\t1\nnasty-looking\t1\nNathans,\t1\nnation,\t1\nnation.\t1\nnational\t1\nnations.\t1\nnations\t1\nnative\t2\nnatural.\t1\nnatural\t12\nnaturally,\t1\nnaturally\t6\nnature,\t2\nnature.\t1\nnature\t16\nNature,\t3\nNature;\t1\nNature!\t1\nNature.\t4\nNature\t5\nNature’s\t2\nnavy.\t1\nnavy\t1\nnay,\t1\nnear,\t2\nnear.\t1\nnear\t15\nnearer,\t1\nnearer\t2\nnearest\t1\nnearly\t16\nneat,\t1\nneat\t6\nneatly\t2\nnecessaries\t2\nnecessary,’\t1\nnecessary,\t1\nnecessary;\t1\nnecessary\t9\nnecessity\t8\nneck,\t1\nneck;\t1\nneck!\t1\nneck.\t4\nneck),\t1\nneck\t9\nnecks\t1\nneed\t5\nneeded\t1\nneedful\t1\nneedles.\t1\nneedn’t;\t1\nneedn’t\t3\nneeds\t2\nneglect\t2\nneglected\t3\nneglecting\t1\nnegotiations\t2\nneighbour,\t1\nneighbour\t1\nneighbourhood,”\t1\nneighbourhood.\t2\nneighbourhood\t2\nneighbours,\t1\nneighbours\t1\nneither\t15\nNeither\t3\nnephew,\t1\nnephew\t4\nnephew’s\t1\nnephews\t3\nnerve,\t1\nnerve\t1\nnerves.\t1\nnerves\t4\nnervous,\t1\nnervous;\t1\nnervous.\t3\nnervous\t12\nNervous\t1\nnervously;\t1\nnervously:\t1\nnervously\t4\nnervousness,\t1\nnervousness!”\t1\nnervousness\t2\nnest,\t2\nnest\t2\nnestling\t1\nnests,\t1\nneurasthenic\t1\nneurotic\t1\nneutral\t1\n(never\t1\nnever,\t3\nnever\t213\n“Never!\t1\n“Never\t1\nNever\t4\nnevertheless,\t1\nNevertheless,\t1\nnew.\t1\nnew\t31\n‘New\t1\nNew\t7\nnew-fangled\t3\nnewfangled!”\t1\nNew-lighted\t1\nnewly-married\t1\nnews!\t1\nnews.\t5\nnews\t9\nNews\t1\nnewspaper,\t1\nnewspaper\t1\nnewspapers,\t1\nnext,\t1\nnext\t19\nNext,\t1\nNext\t2\nnib\t1\n‘nice’\t1\n‘nice\t3\nnice!\t1\nnice\t24\nnicely\t2\nniceness\t1\nniceties\t1\nNicholas,\t12\nNicholas;\t3\nNicholas.\t4\nNicholas’\t1\nNicholas\t23\nNicholases,\t3\nNicholases\t2\nNicholas’s\t2\nNicholl\t2\nNicholl’s.’\t1\nNick,”\t1\nNick!’\t1\nNick!\t2\nnickname.\t1\nnickname\t1\nnicknamed\t1\n‘Nick’s\t1\nniece\t2\nnieces,\t1\nnigger,\t1\nnight,\t7\nnight;\t1\nnight!”\t2\nnight!\t2\nnight?\t1\nnight.\t11\nnight\t32\nNight,’\t1\nNight,\t1\nNight\t1\nnight-cap,\t1\nnightmare\t2\nnightmare-like\t1\nnights.\t1\nnights\t3\nnightshirt,\t1\nnight-socks\t1\nnight-wanderer.\t1\nnight-women\t1\nnine;\t1\nnine\t1\nnineteen,\t1\nnineteen\t1\n‘no\t1\n“no\t1\n(no\t2\nno,”\t1\nno,\t2\nno;\t3\nno!”\t4\nno!\t3\nno.\t2\nno\t338\n‘No,\t1\n“No,”\t6\n“No,\t6\n“No;\t4\n“No!”\t1\n“No!\t3\n“No?”\t2\n“No.”\t3\n“No.\t1\n“No”—\t1\n“No\t2\nNo,\t4\nNo!\t3\nNo.\t4\nNo\t30\nNo.62\t1\nnob\t1\n“nobody\t1\nnobody.\t1\nnobody\t15\n“Nobody,”\t1\n“Nobody\t2\nNobody\t5\nnod\t1\nnodded,\t1\nnodded.\t7\nnodded\t2\nnodding\t2\nnoise\t2\nnoiseless\t3\nnoiselessly\t1\nnoises,\t1\nnoisy\t1\nnominal\t1\nnonchalance.\t1\nnon-committal\t1\n‘nonconformist’\t1\nNonconformist’;\t1\nnone,\t1\nnone.\t2\nnone\t17\nNone\t4\nnonplussed;\t1\nnonplussed.\t1\nnonsense,\t3\nnonsense;\t1\nnonsense!”\t2\nnonsense!\t1\nnonsense.\t1\nnonsense\t1\n“Nonsense,\t1\n“Nonsense!”\t1\n“Nonsense!\t1\nnooks\t1\nnoon,\t1\nnoon\t1\nnor,\t1\nnor\t37\nNor\t2\nnormally\t1\nNorse\t1\nnorth\t1\nnorthwards\t1\nnose,\t5\nnose;\t1\nnose.\t3\nnose\t10\nnose-nippers,\t1\nnoses.\t1\nnoses\t4\nnosing\t1\nnostrils.\t1\n‘not\t2\n“not\t2\nnot,”\t2\nnot,\t19\nnot;\t5\nnot!”\t4\nnot!\t2\nnot?\t2\nnot.”\t1\nnot.\t10\nnot\t723\n“Not\t5\nNot\t13\nnotably\t1\nnote,\t1\nnote;\t1\nnote.\t1\nnote\t6\nnoted,\t1\nnoted\t6\nnotes,\t1\nnotes;\t1\nnotes.\t1\nnotes\t1\n‘nothing\t1\n“nothing\t1\nnothing,\t14\nnothing;\t5\nnothing!”\t1\nnothing!\t1\nnothing?”\t1\nnothing.’\t1\nnothing.”\t1\nnothing.\t9\nnothing\t72\n‘Nothing\t1\n“Nothing,\t1\n“Nothing.”\t1\nNothing\t7\nnotice,\t1\nnotice;\t1\nnotice.\t3\nnotice\t9\nnoticeable\t1\nnoticed\t16\n‘noticing’\t1\nnoticing\t2\nnot-inconsiderable\t1\nnotion\t8\nnotorious.\t1\nnotorious\t2\nnotoriously\t2\nNotting\t1\nnotwithstanding\t2\nnourishing\t1\nnourishment\t2\nnovel,\t1\nnovel\t7\nnovelist,\t1\nnovelists,\t1\nnovelists\t1\nnovels,\t1\nnovels\t1\nnovelty.\t1\nNovember\t1\n“now\t1\n(now\t2\nnow,\t28\nnow;\t4\nnow!”\t1\nnow!\t3\nnow?”\t2\nnow?\t1\nnow.”\t2\nnow.\t13\nnow\t121\n‘Now,\t2\n“Now,\t9\n“Now\t2\nNow,\t10\nNow\t8\nnowadays,”\t1\nnowadays,\t3\nnowadays!”\t1\nnowadays!\t1\nnowadays.\t4\nnowadays\t1\nnowhere\t1\nnude,\t2\nnullified\t1\nnumb\t1\nnumber.\t1\nnumber\t5\nnumbered\t1\nnumberless\t1\nnumbers\t2\nnumerous\t2\nnun’s\t1\nnursery\t2\nnursing\t1\nnutshell:\t1\nnymph,\t1\nnymph\t1\no)\t1\no\t1\noak\t10\noaken\t2\noak-tree.\t1\noar\t1\noath,\t1\noath.\t1\nOaths,\t1\nO’Bally,\t1\nobject\t10\nobjected\t3\nobjection\t1\nobligations\t1\nobliged,\t2\nobliged\t13\noblivious;\t1\noblong:\t1\nobscure\t2\nobscured\t1\nObscurely,\t1\nobscuring\t1\nobservant\t1\nobservation.\t1\nobserve\t1\nobserved,\t2\nobserved),\t1\nobserved\t3\nobserver\t4\nobservers\t1\nobserving\t1\n(‘obstinacy,’\t1\nobstinacy,\t2\nobstinacy\t1\nobstinate\t3\nObstinate\t1\nobtained,\t1\nobtained\t3\nobvious\t1\nobviously\t5\noccasion,\t1\noccasion.\t1\noccasion\t11\noccasional\t2\noccasionally\t4\noccasions,\t3\noccasions),\t1\noccasions\t3\noccupants,\t1\noccupation.\t1\noccupied,\t1\noccupied\t4\noccupy\t2\noccur\t2\noccurred\t8\noccurrence,\t1\noccurs\t1\no’clock,\t4\no’clock.\t2\no’clock\t10\nOct.\t1\nOctober,\t3\nOctober\t2\nodd,”\t1\nodd,\t3\nodd\t10\nOdd!\t2\nOdd\t1\nodds\t1\nodour\t5\nodours,\t1\n‘of\t2\n“‘of\t1\n(of\t1\nof,\t3\nof;\t1\nof!\t2\nof?”\t3\nof?\t1\nof.\t3\nof”\t1\nof\t3407\n“Of\t4\nOf\t17\nOF\t3\noff,”\t1\noff,\t11\noff;\t1\noff!”\t3\noff?\t2\noff.\t3\noff\t64\noffences.\t1\noffend\t2\noffended\t1\noffending\t1\noffensiveness\t1\noffer\t3\noffered\t2\noffering\t1\noff-hand,”\t1\noffice,\t7\noffice;\t1\noffice.\t1\noffice\t7\nOffice,\t1\nofficer’—‘Fire\t1\noffices.\t1\noffices\t3\nOffices\t1\nofficial\t2\nofficials,\t1\noffspring\t1\noften,\t1\noften?”\t1\noften.\t1\noften\t21\nOften,\t1\noh,\t1\noh!\t2\n“Oh,”\t1\n“Oh,\t15\n“Oh!”\t3\n“Oh!\t9\n“Oh?”\t1\n“Oh”\t1\n“Oh\t1\nOh,\t4\nOh!\t4\noil,\t1\noil\t1\nOil\t1\noilcloth\t1\n‘old\t2\nold,\t7\nold!\t2\nold.\t5\nold\t277\n“Old\t2\nOld\t91\nolder,\t1\nolder!”\t1\nolder.\t1\nolder\t2\noldest\t1\nold-fashioned\t2\nolive\t1\nOliver,\t1\nOliver\t1\nolives\t1\nOlives\t1\n‘ome\t1\nominous,\t1\nominous\t2\nomitted\t2\nomitting\t1\nomnibus\t3\nomnibuses,\t1\n—“on\t1\non,\t19\non;\t2\non:\t3\non!”\t4\non!\t3\non?”\t2\non?\t4\non.”\t3\non.\t13\non’;\t1\non”\t1\non\t668\nOn\t48\n“once\t1\nonce,”\t1\nonce,\t12\nonce;\t3\nonce!”\t1\nonce.\t16\nonce\t73\nOnce,\t1\nOnce\t7\n(one\t1\none,’\t1\none,”\t2\none,\t11\none;\t3\none!”\t2\none!\t2\none?’\t1\none.’\t1\none.”\t1\none.\t4\none)\t1\none\t218\n‘One\t1\n“One\t1\nOne\t10\none-eighth\t1\noneself;\t1\nonions\t1\nonlookers\t1\nonly,”\t1\nonly,\t1\nonly.\t1\nonly”—\t1\nonly\t125\n“Only\t2\nOnly\t5\nonto\t1\nonyx\t1\nopen,”\t1\nopen,\t7\nopen;\t3\nopen.\t4\nopen\t31\nopened,\t1\nopened\t12\nopening.\t1\nopening\t7\nOpening\t1\nopenly\t1\nopera.\t2\nopera\t5\nOpera\t1\nopera-goer\t1\nopera-house\t1\noperation\t1\noperations\t1\nopinion,”\t2\nopinion,\t4\nopinion;\t1\nopinion.”\t2\nopinion.\t2\nopinion\t17\nopinion’s\t1\nopinions\t2\nopium\t1\nopoponax\t1\nOpportunists\t1\nopportunities.\t1\nopportunities\t2\nopportunity,\t1\nopportunity.\t2\nopportunity\t11\nopposed\t2\nopposing\t1\nopposite,\t5\nopposite\t8\nopposition.\t1\nopposition\t2\noppressive\t1\noptimist\t1\n—“or\t1\nor,\t8\nor\t253\nOr\t4\norange\t4\norder,\t8\norder.\t3\norder\t7\nordered,\t1\nordered.\t1\nordered\t5\nordering\t2\norders\t1\nordinarily\t1\nordinary\t7\norgan,\t1\norgan\t3\norgan-grinder\t1\norganization,\t2\norganization!\t1\norganization\t2\nOrganization\t2\norganize\t1\norganized.\t1\norganized\t1\norganizing\t1\nOrientals.\t1\norigin,\t1\norigin\t1\n‘original’\t2\noriginal,\t1\noriginal.”\t1\noriginal.\t1\noriginal\t1\noriginality,\t1\noriginality.”\t1\noriginality\t1\noriginally\t3\nOriginally,\t1\noriginals\t1\normolu,\t1\nornament\t1\nornate\t1\noscillating\t1\noscillation\t1\noscillatory\t1\nostentation,\t1\nostentatious\t1\nostracize\t1\nother,”\t1\nother,\t12\nother;\t5\nother:\t2\nother.\t11\nother\t94\nOther\t1\nother’s\t6\nothers,\t9\nothers!\t1\nothers.\t4\nothers\t9\notherwise,\t2\notherwise\t5\n“ought\t1\nought,\t1\nought”\t1\nought\t41\noughtn’t\t4\nounce\t1\nour\t30\n“Our\t2\nours\t1\nourselves\t1\nout,”\t1\nout,\t22\nout;\t5\nout:\t5\nout!”\t2\nout!\t1\nout?\t1\nout.”\t5\nout.\t21\nout\t255\nOut\t4\noutburst\t2\noutcast;\t1\noutcast.\t1\nouter\t2\noutheld.\t1\noutlandish\t2\noutlet\t2\noutline\t1\noutlined\t1\noutlines\t1\noutlived\t1\nout-living\t1\noutlook,\t1\noutput\t1\noutrageous,\t1\noutrageous.\t1\noutrageously\t1\noutside.\t1\noutside\t13\nOutside\t2\noutsider\t1\noutsiders.\t1\noutsiders\t1\noutstretched.\t1\noutward\t3\noutwards,\t1\noutweighed\t1\noval\t1\nover,”\t1\nover,\t8\nover;\t2\nover:\t1\nover!”\t3\nover.\t11\nover”\t1\nover\t188\nOver\t6\noverborne\t1\novercame\t1\novercoat,\t2\novercoat;\t1\novercoat\t3\novercoats,\t1\novercome\t1\noverdrawn,\t1\noverdrawn\t1\noverhanging\t1\noverheard\t1\noverlook\t1\noverlooking\t4\novermastering\t3\novertaken\t1\noverture,\t1\noverturned.\t1\noverturned\t1\noverwhelmed\t1\noverwhelming\t2\nowing\t3\nOwing\t1\nowl,\t1\nowl.\t1\nown,\t11\nown;\t3\nown:\t1\nown.”\t1\nown.\t7\nown\t115\nowned\t6\nowner\t3\nownerless.\t1\nownership.\t1\nOxford\t1\noxtail;\t1\noysters;\t1\nozone\t1\npace,\t2\npace;\t2\npace\t4\npaces\t2\npacing\t2\npacket\t1\npadded\t1\nPaddington,\t1\nPADLAND,\t1\npagan\t1\npage\t1\npageant\t1\npages,\t1\npages.\t1\npaid,\t2\npaid.\t1\npaid)\t1\npaid\t23\npain,\t1\npain\t7\npainful\t6\npainfully,\t1\npainfully.\t2\npainfully\t2\npainfulness,\t1\npains\t1\npaint.\t1\npaint\t1\npainted.”\t1\npainted\t2\npainter\t1\npainters,\t3\npainting.\t2\npainting\t2\npair\t7\npairs\t1\npalace.”\t1\nPalace\t1\npalate.\t2\npalate\t4\npale,\t13\npale.\t1\npale\t21\npale-blue\t1\npaling\t1\npall\t1\nPall\t2\npallid\t1\npallor\t1\npalm\t2\npalms,\t1\npalms\t2\npalmy\t1\npalpable,\t1\npampas\t2\npanel;\t1\nPangbourne.”\t1\npangs\t2\npanthers,\t1\npanting\t1\npantomimes\t1\npants:\t1\npaper,\t6\npaper;\t1\npaper.\t4\npaper\t8\npapers,\t4\npapers;”\t1\npapers\t7\nparadise\t1\n‘Paradise\t1\nparagon\t1\nparagraph\t1\nparallel\t2\nparallels\t1\nparalysis.\t1\nparalyzed\t1\nparalyzing,\t1\nParamor\t1\nparasols,\t1\nparasols;\t1\nparasols\t1\nparcel\t5\nparcels\t1\nparching\t1\nparchment\t1\nparchment-coloured\t1\npardonably\t1\npardoned\t1\nParegoric’,\t1\nParegoric’\t2\nparent\t1\nparents.\t1\nParfitt,”\t1\npariah.\t1\nParis.\t1\nParis\t2\nParisian,\t1\npark,\t2\nPark,\t15\nPark?”\t1\nPark?\t1\nPark.”\t2\nPark.\t3\nPark\t24\nParkes,\t1\nParkes;\t1\nParkes’\t1\nParkes\t1\nparks,\t1\nparks.\t1\nPark-side,\t1\nParliament,\t1\nParliament.\t1\nparole\t1\nParole\t1\nparquet\t1\nparrot\t1\nparrot-grey.\t1\npart,\t1\npart\t16\nPart\t3\npartake.\t1\npartaken\t1\npartaking\t1\nparted,\t2\nparted.\t1\nparted\t7\npartiality\t1\nparticular\t4\nparticularly.”\t1\nparticularly\t2\nparticulars\t1\nparties,\t1\nparting,\t2\nparting\t2\npartitions\t1\npartly\t4\npartner,\t2\npartner\t2\npartners\t1\npartnership\t1\npartridge,\t1\nparts?”\t1\nparts\t1\nparty\t3\npass;\t1\npass!’\t1\npass\t11\npassage\t3\npassed,\t6\npassed;\t3\npassed.\t5\npassed\t37\npasser-by,\t1\npasses\t2\npassing,\t2\npassing\t11\nPassing\t4\npassion,\t3\npassion.\t2\npassion\t6\n‘Passion\t3\nPassion,\t1\nPassion!\t1\npassionate,\t2\npassionate\t5\npassionately:\t1\npassionately.\t1\npassionately\t6\npassions,\t1\npassions\t1\npassive,\t3\npassive\t3\npassivity,\t3\npast,\t7\npast.\t4\npast\t17\nPast\t3\npasture\t1\npastures\t1\npat\t1\npatch\t1\npatches\t1\npatchily,\t1\npatent\t4\npatent-leather\t2\npaternal\t2\npath,\t1\npath.\t2\npath\t6\n‘pathetic\t1\npathetic,\t1\npathetic.\t4\npathetic\t4\npathetically\t2\npathos;\t1\npathos:\t1\npathos\t1\npaths,\t1\npaths\t3\npathway\t1\npatience,\t1\npatience\t3\npatient,\t3\npatient\t4\npatiently\t2\npatriarchal\t2\npatrolling\t1\npatroness.\t1\npatronized\t1\npats,\t1\npattern\t2\nPaul’s,\t1\nPaul’s.\t1\npause,\t3\npause.\t1\npaused.\t1\npaused\t4\npauses.\t1\npausing\t1\nPausing,\t1\npavement,\t3\npavement;\t1\npavement\t3\npavements,\t1\npawn\t1\npawn-tickets\t1\npay,\t2\npay!”\t1\npay.\t1\npay\t18\npaying\t4\nPaying\t1\npayment.\t1\npayment\t5\npays\t1\nPays\t1\nPeabody,\t1\npeace,\t1\npeace\t5\npeacock-blue\t1\npeacock’s\t1\npeacocks,\t1\npeak,\t1\npeaked\t1\npealing\t1\npearls,\t1\npear-tree,\t3\npear-tree.\t1\npear-tree\t1\nPeccadillo\t1\npeculiar,\t2\npeculiar\t25\npeculiarities,\t1\npeculiarities.\t1\npeculiarities\t1\npeculiarly\t5\npecuniary\t1\npedantic\t1\npeeped\t1\npeeping.\t1\npeeping\t2\npeep-show\t1\npeered\t4\npeering\t3\npeers,\t1\npelican\t1\nPellew),\t1\npen\t1\npencil\t3\npencilled\t1\npenetrated\t3\npenetrating\t2\npenned-in\t1\npennies\t1\npenniless\t1\npenny,\t1\npenny.\t1\npenny\t8\npeople,”\t2\npeople,\t7\npeople;\t2\npeople!”\t1\npeople!\t1\npeople?”\t1\npeople?\t1\npeople.\t5\npeople\t65\n‘People\t1\n“People\t1\nPeople,’\t1\nPeople\t3\npeople’s\t1\nper\t8\nperambulating\t1\nperceive\t1\nperceived\t8\nperceiving\t2\npercent\t1\nperception\t3\nperceptive\t1\nperchance\t1\nperched\t1\nPerched\t1\nperennial\t1\nperfect\t13\nperfection\t3\nPerfection\t1\nperfectly\t12\nperformed\t1\nperfume,\t3\nperfume\t11\nperfumed\t1\n(perhaps\t1\nperhaps,\t19\nperhaps!\t1\nperhaps\t47\n“Perhaps,”\t2\n“Perhaps\t3\nPerhaps\t8\nperil.\t1\nperilous\t1\nperiod,\t1\nperiod;\t1\nperiod.\t1\nperiod\t1\nperiodically,\t1\nperiods\t1\npermanent\t4\npermanently\t1\npermeates\t1\npermit\t2\npermitted\t2\npermitting\t1\nperpendicular,\t1\nperpendicular;\t1\nperpetual\t3\nperpetuation\t1\nperplexed,\t1\nPersian\t1\npersist\t1\npersistence\t1\npersistency,\t1\npersistent\t1\nperson,\t4\nperson;\t1\nperson.\t2\nperson\t9\npersonable\t1\npersonage,\t1\npersonal\t11\npersonality\t2\npersonally,\t1\npersonalty,\t1\npersonifying\t1\npersons,\t2\npersons\t10\nperspicacity.\t1\nperspiration,\t1\nperspiration.\t1\nperspiration\t1\nPerspiration\t1\npersuaded\t1\npersuasion\t3\npersuasive\t1\npertinacity\t1\nperusal\t1\npervading\t1\nperverse\t2\nperversion\t1\nperversity,\t1\npessimistic\t1\npet,\t1\npet\t5\npetals\t1\npetted,\t1\npetting\t1\npettishly\t1\npetty\t2\npews,\t1\n‘PH.\t1\nphaeton,\t1\nphaeton\t3\nphase\t2\n‘pheasant\t2\npheasant\t1\nphenomena,\t1\nphenomena;\t1\n“Phil,\t2\nPhil,”\t1\nPhil:\t1\nPhil!\t2\nPhil.”\t1\nPhil\t7\n‘Philip\t1\nPhilip,”\t1\nPhilip\t5\n‘PHILIP\t3\nphilosopher.\t1\nphilosophic\t1\nphilosophical.\t1\nphilosophy,\t4\nphilosophy:\t1\nphilosophy.\t1\nphilosophy\t4\nPhil’s\t1\nphotograph\t3\nphrase\t3\nphraseology,\t2\nphraseology.\t1\nphysical\t2\nphysically\t2\nphysiological\t1\npiano,\t3\npiano;\t1\npiano.\t1\npiano\t3\nPiccadilly,\t2\nPiccadilly.\t2\npick\t3\npicked\t4\npickled\t1\n‘pick-me-up.’\t1\n‘picture’—\t1\n‘picture’\t1\npicture,\t3\npicture\t8\npictured\t1\npicture-gallery,\t2\npicture-gallery.\t1\npicture-room,\t1\npictures,\t11\npictures!\t1\npictures.\t2\npictures\t10\npiebald,\t1\npiebald\t1\npiece,\t1\npiece\t25\nPiece\t1\npieces,\t1\npieces\t2\npier\t1\npierce\t2\npiercing\t1\npigeon-hole,\t1\npigeon-holes,\t1\npigeon’s\t1\npigeons\t2\npig-headed\t1\npigs\t1\npikestaff;\t1\npilfering,\t1\npilgrimage\t1\npiling\t1\npillar\t1\npillars\t1\npillows,\t1\npillows\t2\npimple\t1\npin,\t1\npin.\t1\npin\t4\npinched\t4\npined\t1\npine-woods\t1\n‘ping,’\t1\npink\t6\nPink,\t1\nPink;\t1\nPink\t1\npink-frilled\t1\npin-money\t1\npinned\t1\npins\t1\npint\t2\npint-bottle\t1\npioneer-leader\t1\npipe,\t2\npipes,\t1\npipes\t1\nPippin,\t2\n‘pished.’\t1\npit,\t1\npitch\t1\npitched\t2\npiteous;\t1\npitiable.\t1\npitied.\t1\npitied\t1\npities\t2\npitiful\t2\npittance!\t1\npity,\t4\npity\t5\npitying\t2\nplace,”\t1\nplace,\t10\nplace;\t3\nplace!\t1\nplace.\t4\nplace\t18\nPlace;\t1\nplaced,\t2\nplaced\t23\nplaces\t2\nplacing\t3\nPlacing\t1\nplaid\t1\nplain\t8\nplainer\t1\nplainly:\t1\nplainly\t1\nplainness\t1\nplaintiff,\t2\nplaintiff.\t1\nplaintiff\t8\nplaintiff’s\t2\nplan,\t1\nplan:\t1\nplan.\t2\nplan\t5\nplane-leaves,\t1\nplane-trees,\t1\nplanned\t1\nplans,”\t1\nplans,\t5\nplans.\t3\nplans\t3\nPlans\t1\nplant,\t2\nplant\t3\nplantations,\t1\nplanted\t3\nplanting\t1\nplants,\t2\nplants?\t1\nplants\t3\nplate,\t2\nplate.\t2\nplate\t1\nplate-glass\t1\nplates.\t1\nplates\t1\nplatform\t1\nplatitudes\t1\nplay,\t1\nplay;\t2\nplay.\t1\nplay\t16\nplayed\t8\nplayful\t1\nPlayful\t1\nplaying\t6\nplays\t1\nPlays\t1\nplaything\t1\nplaywright\t1\nplea\t1\nplead\t1\npleaded\t1\npleading,\t1\npleading:\t1\npleading.\t1\npleading\t3\npleadings\t1\npleasant:\t1\npleasant.\t1\npleasant\t12\npleasantly\t4\nplease,”\t1\nplease,\t4\nplease.”\t1\nplease\t7\n‘Please\t1\n“Please\t2\npleased;\t1\npleased.\t4\npleased\t5\npleasing\t1\npleasurable\t2\npleasure,\t4\npleasure;\t1\npleasure.\t1\npleasure\t15\npleasures,\t1\nplentiful.\t1\nplenty:\t1\nplenty\t1\nplied\t1\nplot,\t1\nplots\t1\npluck!\t2\npluck\t4\nplumage.\t1\nplumage\t1\nplume\t1\nplumes,\t1\nplums.\t1\nplunged\t1\npocket,”\t1\npocket,\t5\npocket:\t1\npocket.\t3\npocket\t3\npocket-handkerchief.\t1\npocket-money\t1\npockets,\t1\npockets\t1\npoem\t1\npoems.\t2\npoems\t1\npoetic\t1\npoetical\t1\npoetry;\t1\npoetry\t1\npoignancy,\t1\npoignancy.\t1\npoignant,\t2\npoignant\t4\npoignantly\t2\npoint,’\t2\npoint,”\t1\npoint,\t3\npoint;\t2\npoint.’\t1\npoint.\t4\npoint’\t1\npoint\t22\npoint-blank,\t1\npointed,\t1\npointed\t3\npointer.\t1\npointing\t5\npoints\t3\npoised\t2\npoison.\t1\npoison\t1\npoke\t1\npoked\t3\npokey;\t1\npokey\t1\nPol\t1\npoles\t1\nPolice.\t1\nPolice\t1\npoliceman,\t1\npoliceman?\t1\npoliceman.\t1\npoliceman\t2\npoliceman’s\t1\npolicemen,\t2\npolicemen’s\t1\npolicy,\t2\npolicy\t1\npolished\t2\npoliteness,\t1\npolitical\t2\n‘Polyglot’?\t1\npomatum,\t1\npomp,\t1\npomp\t1\npompously\t1\npond,\t1\npond\t1\nPond,\t1\nponder.\t1\npondered\t3\npondering\t1\npony,\t1\npony\t1\npoodle,\t1\npoodle\t1\n‘poor,\t1\n“poor,\t1\npoor,\t6\npoor.\t1\npoor\t52\n‘Poor\t1\n“Poor\t4\nPoor\t2\npoorish\t1\npoorly,\t1\npoorly\t1\npooty\t1\npoplars\t1\npopular\t1\npopularity\t1\npopularly\t1\npopulation\t2\nporcelain\t2\nporch.\t1\npore\t1\nPorgie,’\t1\nporing\t1\nport,”\t1\nport,\t2\nport.’\t1\nport\t1\nportent.\t1\nportentously\t1\nporter\t2\nportion\t1\nPortland\t1\nPortman\t1\nportrayed\t1\nports,\t1\npose\t2\nposed\t1\nposition,”\t1\nposition,\t8\nposition;\t1\nposition?\t1\nposition.’\t2\nposition.\t4\nposition\t23\npossess\t2\npossessed\t4\npossession,\t2\npossession\t7\npossessions,\t3\npossessive\t3\npossessiveness\t1\npossessor.\t1\npossessor\t1\npossibilities\t2\npossibility\t3\npossible,\t2\npossible;\t2\npossible.\t1\npossible)\t1\npossible\t10\npossibly,\t1\npossibly\t6\nPossibly\t1\npost.\t1\npost\t1\nposters\t1\npostman\t1\npot.\t1\npot\t2\nPotch,’\t2\nPotch’;\t1\nPotch’\t1\nPotch\t2\npotent\t1\npottery\t2\nPottle,’\t2\nPottle,\t1\nPottle\t1\nPoultry.\t2\nPoultry\t1\nPOULTRY,\t1\npound,\t2\npound\t2\npounds,\t8\npounds!”\t2\npounds!\t1\npounds?”\t1\npounds?\t1\npounds.’\t1\npounds.”\t1\npounds.\t7\npounds\t13\npoured\t4\npout.\t1\npout\t1\npouted;\t1\npouter\t1\npouting,\t1\npouting.\t1\npouting\t4\nPouting\t1\npouts,\t1\npouts.\t1\npowder.\t1\npowder-puff\t1\npower!’\t1\npower.\t1\npower\t16\npowerful\t2\npowerless\t1\npractical\t14\npractically\t4\n‘practice’\t1\npractice,\t2\npractice;\t1\npractice\t3\npractised\t1\nPraed\t1\nprairie,\t1\npraise,\t1\npraise.\t1\npraise\t4\npraised,\t1\npraised\t1\npraises.\t1\npraising,\t1\nprattling\t1\npray,\t1\npraying.\t1\npraying\t1\npreached\t1\npreacher,\t1\nprecautions\t2\npreceded\t1\nprecedence,\t1\nprecedence\t1\nprecedents,\t1\nprecedes\t1\nprecincts\t1\nprecious;\t1\nprecious\t8\nprecipices,\t1\nprecise\t1\nprecisely\t2\nprecision,\t1\nprecision\t1\nprecluded\t1\npreening\t1\nPreface\t1\nprefer\t1\npreference\t1\npreferring\t1\nprehistoric\t2\nprejudice.\t1\nprejudices\t2\npreliminary\t1\nprelude\t1\nprematurely\t1\npremises.\t1\npremises\t1\npremium\t1\npremonition\t1\npreoccupation,\t1\npreparation\t1\npreparations\t1\nprepared,\t1\nprepared\t11\nprepossessions\t1\npreposterous\t1\npresaging\t1\nprescribed\t1\nprescription\t1\nprescriptive\t1\npresence,\t1\npresence;\t1\npresence.\t2\npresence\t7\npresent,\t9\npresent;\t2\npresent.\t3\npresent)\t1\npresent\t8\npresentable\t1\npresented\t4\npresentiment\t1\npresently,\t4\npresently.\t2\npresently\t8\nPresently,\t2\nPresently\t5\npresents,\t1\npresents\t1\npreservation,\t1\npreserve,\t2\npreserve\t2\npreserved\t1\npreserving\t3\npress.\t1\npress\t3\nPress,\t1\nPress;\t1\nPress.\t1\npressed.\t1\npressed\t10\npressing\t6\npressure,\t1\npressure\t1\npretended\t1\npretending\t1\npretensions\t3\npreternaturally\t2\nprettier\t2\nprettiest\t1\npretty,\t1\npretty?”\t1\npretty\t26\n“Pretty\t1\nprevailed.\t2\nprevent\t5\nprevented\t5\nprevious\t2\nprey\t2\nprice,\t6\nprice;\t1\nprice.”\t3\nprice.\t2\nprice\t10\npriced.\t1\npriceless\t1\nprices,\t1\nprices\t1\npride,\t5\npride.\t1\npride\t3\n‘Pride\t1\nprided\t2\npried\t1\npriestesses\t1\nprimal\t1\nprime,\t1\nprime\t5\nprimeval\t8\nprimitive\t4\nprimrose-coloured\t1\nPrince’s\t3\nPrinces’\t1\nPrincesse\t1\nprincipal\t3\n‘principle,’\t1\nprinciple,\t4\nprinciple.\t2\nprinciple\t8\nprinciples,\t4\nprinciples)\t1\nprinciples\t8\nprint.\t1\nprint\t1\nprints\t1\nPrisoners’\t1\nprivacy\t1\nprivate\t9\nprivately\t1\nprivilege,\t1\nprivilege\t1\nprivileged\t2\nprized\t3\nprobable\t1\nprobably,\t2\nprobably\t7\nprobing\t1\nproblem,\t1\nproblem.\t2\nproblem\t1\nproblems\t1\nproceeded,\t1\nproceeded\t4\nproceedings,\t1\nproceedings.\t1\nproceedings\t1\nproceeds\t2\nprocess.’\t1\nprocess\t4\nprocesses\t2\nprocession\t1\nproclaimed:\t1\nproclaiming\t1\nproclivities,\t1\nprocure\t1\nprodigal\t1\nproduce\t2\nproduced,\t1\nproduced\t2\nproducing\t2\nproduction\t3\nproductions\t1\nprofess\t1\nprofession,\t2\nprofession:\t1\nprofession.”\t1\nprofession.\t1\nprofession\t4\nprofessional\t6\nprofessions,\t1\nprofessor\t1\nProfessor,\t1\nProfessor\t1\nprofile,\t1\nprofit.\t2\nprofit\t2\nprofitable\t2\nprofited\t1\nprofound,\t1\nprofound\t3\nprofoundly;\t1\nprofoundly\t1\nprogramme.\t1\nprogrammes,\t1\nprogress,\t3\nprogress\t3\n“Progress.”\t1\nProgress\t1\nprojected\t1\nprojecting\t1\nProjection\t1\nprolonged\t2\npromenade.\t1\npromenade\t1\nprominent\t3\npromise,\t1\npromise)\t1\npromise\t7\npromised\t6\npromising\t4\npromontories\t1\npromoter;\t1\nprompting\t1\npromptitude\t2\npromptly\t2\nprone\t1\npronounced\t3\npronouncement\t1\nproof?\t1\nproof\t7\nproofs\t1\nproper,’\t2\nproper,\t2\nproper.\t1\nproper\t9\n‘properly’\t1\nproperly!”\t1\nproperly\t2\n“Properties\t1\nproperty,’\t2\nproperty,\t15\nproperty;\t2\nproperty!\t2\nproperty?”\t1\nproperty.’\t1\nproperty.”\t1\nproperty.\t13\nproperty’.”\t1\nproperty’—\t1\nproperty’\t4\nproperty\t29\nProperty,\t2\nProperty.\t1\nProperty”;\t1\nProperty\t2\nprophetically\t1\nproportion\t1\nproportioned,\t1\nproposal\t1\nproposals\t2\npropose,\t1\npropose\t2\nproposed,\t1\nproposed\t5\nproposer,\t1\nproposing\t1\nproposition,\t1\nproposition.\t1\nproposition\t1\npropound\t1\nProprietor.\t1\nproprietorship,\t1\npropriety\t1\nprosecuted\t1\nprospect.\t2\nprospect\t6\nprosperity,\t1\nprosperity\t1\nprosperous-looking,\t1\nprostrate\t1\nprostrated.\t1\nprostrated\t1\nprotectingly.\t1\nprotection.\t1\nprotection\t1\nprotector\t1\nprotectorship,\t1\nprotested\t1\nprotruded\t2\nprotruding\t2\nproud,\t1\nproud\t3\nproudly;\t1\nproudly\t1\nprove\t1\nproved\t2\nproverb\t1\nprovide\t2\nprovided;\t1\nprovided\t4\nProvided\t1\nProvidence,\t1\nProvidence.\t2\nProvidence\t3\nproviding\t1\nprovocation.\t1\nprovocation\t1\nprovocative\t1\nprovoked\t1\nprowling,\t1\nprowling\t2\nproximity;\t1\nproximity\t1\nprudence\t1\nprudent\t1\nprune\t2\nprunella\t2\npry\t1\npsychological\t2\npsychologically\t1\npsychology\t1\npublic.\t1\npublic\t11\nPublic\t2\npublished\t1\npublisher\t2\nPublius,\t1\nPublius.\t1\nPublius\t6\nPublius’s\t1\npudding.\t1\npudding\t1\npudgy-faced,\t1\npuff\t2\npuffed,\t1\npuffed\t1\npuffing\t2\nPuffing\t1\npuffy,\t1\npuffy\t3\npull\t1\nPullbred’s;\t1\nPullbred’s.\t1\npulled;\t1\npulled\t3\npulling\t3\npulse\t1\npunch\t2\npunctiliousness\t1\npunctual\t1\nPunctually\t1\npunish\t1\npunishment,\t1\npunishment.\t1\npunishment\t1\npuppet\t1\npups\t1\npurchase.\t1\npurchase\t2\npurchases\t1\npure\t4\npurely\t2\npurged\t1\npurity,\t1\npurlieus\t1\npurple\t5\npurpose;\t1\npurpose\t5\npurposely\t1\npurposes\t3\npurr\t1\npurring\t2\npurse,\t2\npurse\t1\npursue\t1\npursued;\t1\npursued\t4\npursuer\t1\npursuing\t1\npursuit\t1\npush\t3\npushed\t3\npushing\t1\nPuss!\t1\nput,\t1\nput\t106\n“Put\t1\nputs\t1\nputting\t20\nPutting\t3\npuzzled,\t1\npuzzled;\t1\npuzzled\t3\npuzzling,\t1\nQ.C.,\t9\nQ.C.\t1\nQ.C.‘s\t2\nquack!”—“Winifred?\t1\nquadrangle\t1\nquaff,\t1\nquailed\t1\nquaint\t3\nqualities\t3\nquality.\t2\nquality\t6\nqualms,\t1\nquantities\t2\nquantity\t1\nquarrel\t1\nquarrelled\t1\nquarry\t2\nquarter\t9\nquartering\t1\nquarters.\t1\nquaver\t1\nquavered.\t1\nQueen,’\t1\nQueen\t1\nqueer,\t3\nqueer!\t1\nqueer.\t2\nqueer\t10\nqueerest\t1\nqueer-looking\t1\nquenching\t1\nqueried\t1\nquerulously,\t1\nquestion,\t6\nquestion;\t3\nquestion:\t1\nquestion.”\t1\nquestion.\t3\nquestion\t21\nQuestion,\t1\nquestioned\t1\nquestioning,\t1\nquestion’s\t1\nquestions,\t2\nquestions!\t2\nquestions\t1\nquick;\t1\nquick.\t1\nquick\t4\nquicker\t1\nquickly;\t1\nquickly:\t1\nquickly.\t1\nquickly\t10\nQuickly,\t1\nquickness.\t1\nquiet,\t2\nquiet\t7\nQuiet\t1\nquietly,\t3\nquietly:\t3\nquietly.\t3\nquill\t1\nQuilpish\t3\nquilt,\t1\nquilted\t1\nquit\t1\n—‘quite\t1\nquite.\t1\nquite\t64\n“Quite\t2\nQuite\t1\nquivered;\t2\nquivered\t2\nquivering\t2\nquo.\t1\nrabbit\t1\nrabbits\t2\nrace,’\t1\nrace.\t1\nrace\t1\nRachel,\t2\nRachel\t4\nracial\t1\nrack,\t1\nracketting\t1\nracketty\t1\nrackety;\t1\nradiance,\t1\nradiated\t2\nradiating\t1\nradiation\t1\nRadical\t1\nrage,”\t1\nrage\t6\nragged\t2\nraging\t1\nraiders,\t1\nrail,\t1\nrail\t1\nrailing,\t1\nrailings,\t1\nrails,\t1\nrails\t3\nrailway\t2\nraiment,\t1\nrain,\t2\nrain.\t1\nrain\t4\nrainy\t1\nraise\t2\nraised\t23\nraising\t3\nRaising\t1\nRam,\t1\nrambling\t1\nramparts\t1\nramshackle\t2\nran\t17\nrancour\t2\nrandom\t1\nrang\t4\nrange\t1\nrankled\t1\nranks;\t1\nranks.\t1\n‘rap\t1\nrap\t1\nrapes\t1\nrapid,\t1\nrapid\t4\nrapidity\t2\nrapidly,\t2\nrapidly\t3\nrapped\t1\nrapt\t1\nraptures\t3\nrare\t3\nrarely\t3\nrarity;\t1\nrascal!\t1\nrascal\t3\nrascally\t1\n(rather\t1\nrather,\t2\nrather\t49\n“Rather\t1\nrations\t1\nrattle!”\t1\nrattle\t2\nrattled\t2\nrattling\t2\nravening,\t1\nravenous\t1\nrazor-case\t1\n‘re\t1\nreach\t2\nreached,\t1\nreached\t26\nreaching\t4\nreacted\t1\nread,\t1\nread\t20\nreader),\t1\nreader\t1\nreaders,\t1\nreaders\t2\nreadiness\t1\nreading,\t1\nreading\t5\nready,”\t1\nready,\t2\nready\t7\nreal!”\t1\nreal\t25\nrealise\t1\nrealism,\t1\nrealism);\t1\nrealistic\t1\nrealities\t2\nreality,\t1\nreality\t1\nrealization.\t1\nrealize\t1\nrealized\t2\nrealizes\t1\nreally!”\t1\nreally\t54\nReally\t1\nrealty\t1\nreason,\t5\nreason.\t2\nreason\t19\nreasonable,\t1\nreasonable\t1\nreasons.\t1\nreasons\t2\nreassure\t2\nreassuring.\t1\nrebellious,\t1\nrebels\t1\nrebound\t1\nrebuff,\t1\nrecalled\t1\nreceded,\t1\nreceive;\t1\nreceive\t2\nreceived,\t1\nreceived.\t2\nreceived\t14\nreceiving\t2\nrecent\t2\nrecently\t3\nreception\t1\nreceptive\t1\nrecess,\t1\nrecess;\t1\nrecess\t4\nrecesses\t1\nrecharging\t3\nrecipe\t1\nrecital,\t1\nrecital\t1\nrecite\t1\nreciting\t1\nreckless,\t1\nreckon\t1\nreckoned\t2\nreclined\t1\nrecognise\t2\nrecognised,\t2\nrecognised\t7\nrecognises\t1\nrecognising\t2\nrecognition\t2\nrecognized\t1\nrecoil;\t1\nrecoil:\t1\nrecoiled;\t1\nrecoiled\t1\nrecollect\t4\nrecollected\t4\nrecollecting\t4\nrecollection\t3\nRecollections\t1\n“recommend\t1\nrecommended\t1\nrecommending,\t1\nrecommends\t1\nrecompense\t1\nreconciled\t1\nreconciliation\t1\nrecondite,\t1\nreconsider\t2\nrecord\t3\nrecorded\t3\nRecorder\t1\nrecounted\t3\nrecover\t3\nrecovered\t4\nrecovering\t1\nrecreation\t1\nrectangular\t3\nrectangularly,\t1\nred,\t4\nred;\t1\nred.\t1\nred\t8\n‘Red\t2\nRed\t2\nred-brick\t1\nredden\t1\nreddened,\t1\nreddened\t2\nreddening\t1\nred-gold\t3\nredness\t1\nredoubled\t1\nreduced\t2\nreducing\t1\nreek\t3\nreeking\t1\nre-election\t1\nreference\t1\nrefined\t2\nrefinement\t1\nreflected,\t1\nreflected\t10\nreflecting\t1\nreflection.\t1\nreflection\t4\nreflex\t1\nrefraction\t1\nrefrain\t2\nrefreshed,\t1\nrefuge,\t1\nrefuge\t2\nrefund\t1\nrefusal\t3\nrefuse,\t3\nrefuse!\t1\nrefuse?\t1\nrefuse\t5\nrefused,\t3\nrefused.\t1\nrefused\t12\nrefuses\t1\nregain\t2\nregained\t1\nregard\t6\nregarded\t10\nregarding\t2\nregardless\t1\nRegent’s\t1\nregister\t1\nregret;\t1\nregret\t4\nregretful\t1\nregretfully.\t1\nregrets\t1\nregretted\t2\nregretting\t1\n‘regular\t1\n“regular\t1\nregular\t6\nregularity.\t2\nregularity\t3\nregulated\t1\nreign\t1\nreincarnated\t1\nreins.\t1\nreins\t2\nreiterated:\t1\nreject\t1\nrejected\t2\nrejecting\t1\nrejoinder\t1\nrelapsed\t3\nrelate,\t1\nrelate\t1\nrelated\t3\nrelating,\t1\nrelating\t1\nrelation\t1\nrelations.\t1\nrelations\t6\nrelaxed\t1\nRelentless\t1\nre-letting\t1\nreliable\t1\nreliance\t1\nrelied,\t2\nrelief,\t2\nrelief.\t3\nrelief\t4\nrelieve\t1\nrelieved\t1\nreligion,\t3\nreligion;\t1\nreligious\t1\nreligiously\t1\nrelinquish\t1\nrelish,\t1\nrelish\t1\nrelished\t1\nrely\t1\nremain\t4\nremained,\t1\nremained\t12\nremaining\t4\nremains\t2\nremar.\t1\nremark,\t2\nremark.\t3\nremark\t4\nremarka.\t1\nremarkable,\t1\nremarkable\t11\n“Remarkable\t1\nremarkably\t5\nremarked,\t1\nremarked;\t1\nremarked:\t4\nremarked.\t1\nremarked\t4\nremarking,\t1\nremarks.\t1\nremarks\t3\nRemarks\t1\nRembrandtesque\t1\nremedy\t2\nremember\t7\nremembered,\t3\nremembered\t12\nremembering\t1\nremembers\t1\nreminded\t5\nreminiscent\t1\nremonstrated\t1\nremorse.\t1\nremorse\t1\nremorseless\t2\nremorselessness\t1\nremote\t2\nremoval\t1\nremove\t1\nremoved,\t3\nremoved.\t3\nremoved\t5\nremoving\t3\nrender\t3\nrendered\t4\nrenders\t1\nrenew\t1\nrenewed\t2\nrent,\t1\nrent\t3\nrent’s\t1\nrents\t1\nrenunciation\t1\nrepast\t1\nrepaying’)—\t1\nrepeat\t3\nrepeated,\t1\nrepeated.\t2\nrepeated\t13\nrepeating\t2\nreplaced\t1\nreplica\t1\nreplied,\t2\nreplied:\t9\nreplied.\t1\nreplied\t19\nreplies,\t1\nreply,\t5\nreply;\t2\nreply:\t1\nreply.\t8\nreply\t3\nreport,\t1\nreport\t10\nreported\t1\nreports,\t1\nreposeful\t1\nreposing\t1\nrepresent\t1\nrepresentation\t1\nrepresentative\t1\nrepresentatives.\t1\nrepresented\t3\nreproach.\t1\nreproached\t1\nreproducing\t1\nreproduction\t2\nreproved\t1\nrepudiate\t1\nrepudiated\t1\nrepudiating\t1\nrepugnant\t1\nrepulsion\t1\nrepulsive\t1\nreputation.\t1\nreputation\t7\nrequest,\t2\nrequest.\t2\nrequest\t2\nrequested\t2\nrequesting\t1\nrequire\t1\nrequired,\t1\nrequired\t1\nrequirements,\t1\nresearches\t1\nresemblance.\t1\nresemblance\t3\nresembled\t2\nresembling\t2\nresent\t1\nresentful\t2\nresentfully,\t1\nresentment\t4\nresentments,\t1\nreserve\t2\nreserved\t1\nreside\t1\nresidence\t2\nresidences,\t1\nresidue\t1\nresign.\t1\nresignation;\t1\nresist\t1\nresistance;\t1\nresistance.\t1\nresistance\t1\nresolute\t5\nresolution,\t1\nresolution;\t1\nresolution.\t2\nresolution\t7\nresolve,\t1\nresolve\t1\nresolved;\t1\nresolved\t3\nresort\t1\nresources\t1\nrespect\t5\nrespectability,\t1\nrespectable,\t1\nrespectable\t2\nrespected.\t2\nrespected\t1\nrespectfully\t1\nrespective\t2\nrespects,\t1\nrespects\t1\nresponse\t2\nresponses,\t1\nresponsibility!”\t1\nresponsibility.”\t1\nresponsibility.\t1\nresponsible;\t1\nresponsible\t1\nresponsive\t1\nrest;\t1\nrest.\t5\nrest\t10\nrestaurant,\t1\nrestaurant.\t1\nrested.\t1\nrested\t7\nresting\t4\nrestitution\t2\nrestless\t2\nrestlessly\t1\nrestore\t2\nrestrain\t1\nrestrained\t1\nrestraint\t2\nrests,\t1\nresult,\t2\nresult\t3\nresults.\t1\nresults\t1\nresumed,\t1\nresumed\t3\nretain\t2\nretained\t6\nreticence.\t1\nreticence\t1\nreticule:\t1\nreticules\t1\nretire\t1\nretirement\t1\nretiring\t2\nretrace\t1\nretraced\t1\nretribution\t1\nretributive\t1\nreturn,\t2\nreturn\t7\nReturn\t1\nreturned,\t1\nreturned\t15\nreturning\t2\nreturns.\t1\nRev.\t5\nreveal\t1\nrevealed\t4\nreveals\t1\nrevel,\t1\nrevel\t3\nrevelation\t1\nrevenge!\t1\nrevenge.\t1\nrevenge-revenge\t1\nreverend\t1\nreverie,\t1\nreverie:\t1\nreverie.\t2\nreverie\t3\nreverse\t1\nreviews\t1\nrevived.\t2\nrevolt\t4\nrevolting\t1\nrevolution.\t1\nrevolutions,\t1\nrevolving,\t1\nreward\t1\nrewarded\t1\nRhine\t1\nRhone\t1\nrhyme\t1\nrhythm\t2\nrhythmic\t1\nrhythmically.\t1\nribbon\t1\nrich,\t1\nrich\t9\nricher\t2\nrichly\t1\nRichmond,\t2\nRichmond.\t2\nRichmond\t11\nrid\t4\nridden\t1\nriddle\t1\nride;\t1\nride\t1\nridges\t2\nridicule.\t1\nridicule\t1\nridiculous.\t1\nridiculous\t4\nright,”\t2\nright,\t5\nright;\t1\nright.\t5\nright\t35\nright-angles\t1\nrightful\t2\nrights.\t1\nrights),\t1\nrights\t6\nright-thinking\t1\nrigid\t3\nrigidity\t1\nrime?\t1\nring,\t2\nring\t4\nringing,\t2\nringing\t1\nrings,\t1\nriot,\t1\nriot\t1\nripe\t1\nripeness,\t1\nripening\t1\nripple\t1\nrise,\t2\nrise.\t2\nrise\t15\nrisen,\t3\nrisen\t4\nrising,\t1\nrising\t3\nRising\t1\nrisk;\t1\nrisk.\t2\nrisk\t9\nrisks\t1\nrisky.\t1\nrite.\t1\nrivalries\t1\nriver,\t2\nriver.\t4\nriver\t4\nriveted\t2\nrivulets,\t1\nroad,\t2\nroad!”\t1\nroad.\t2\nroad\t5\nRoad,\t6\nRoad;\t1\nRoad.\t2\nRoad”\t1\nRoad\t2\nroads.\t1\nroads\t1\nroar\t1\nrobbed\t1\nRobertson’s\t1\nrobes\t1\nRobin\t18\nRobinson,\t1\nrobust\t2\nrock,\t1\nrocked\t1\n(Roger\t1\nRoger,\t13\nRoger;\t1\nRoger.\t1\nRoger)\t1\nRoger\t21\n(Roger’s\t1\nRoger’s,\t2\nRoger’s\t11\nRogers,\t1\nRogers\t1\nroll\t3\nrolled,\t1\nrolled.\t1\nrolled\t6\nroller\t1\nrolling\t4\nrolls,\t1\nrolls\t1\nromantic\t2\nroof,\t3\nroof\t1\nroofed\t1\nroofing\t1\nroofs\t1\nroom,\t27\nroom;\t6\nroom!”\t1\nroom?”\t2\nroom?\t1\nroom.\t21\nroom\t41\nRoom\t2\nrooms,\t3\nrooms?\t1\nrooms.”\t2\nrooms.\t2\nrooms\t8\nroot\t1\nroots\t2\nrose,\t9\nrose:\t2\nrose.\t3\nrose\t35\nrose-coloured\t1\nrose-point,\t1\nroses,\t3\nroses\t2\nrose-shaded\t1\nrosewood\t1\nrosy\t1\nrough,\t1\nrough\t2\nroughly\t1\nround,\t12\nround;\t1\nround:\t1\nround!\t1\nround.\t4\nround’\t1\nround),\t1\nround\t78\nRound\t2\nroundabout\t1\nrounded,\t1\nrounded\t3\nrounding\t1\nrounds\t1\nrouse\t3\nroused\t10\nRousing\t1\n‘rout’\t1\nrout\t1\nroute\t1\nroved\t1\nrow,\t2\nrow.\t1\nrow\t6\nRow\t1\nrowed\t1\nrows,\t1\nrows\t4\nRoyal\t1\n‘R.S.V.P.’\t1\nrub,\t1\nrub\t2\nrubbed\t1\nrubbing\t3\nrubbish,\t1\nrubbish\t3\n“Rubbish\t1\nRubies’\t1\nruby\t4\nruby-coloured\t1\nruddy\t1\nrude,\t1\nrude!”\t1\nrude\t2\nruffian.\t1\nruffian\t1\nruffian’s\t1\nruffle,\t1\nrug!”\t1\nrug\t3\nrugged,\t2\nrugs;\t1\nruin\t4\nruined\t4\nruinous.\t1\nrule,\t1\nrule:\t1\nrule\t2\nrules\t1\nruling\t2\nrumble,\t1\nrumble\t1\nrumbling\t2\nruminating\t1\nrumour,\t2\nrumour\t10\nRumours\t1\nrumpled\t1\nrumty-too\t1\nrun?”\t1\nrun\t19\n‘Run\t1\n‘running\t1\nrunning,\t3\nrunning\t11\nrupture\t2\nrush;\t1\nrush\t2\nrushed\t3\nrushing\t2\nrusset\t1\nRussia\t1\nRussian\t2\nRussians\t1\nrustic\t1\nrustle\t3\nrustled\t2\nrustling,\t2\nrusty\t2\nrusty-coated\t1\nRutland\t1\nrutted\t1\nRutter,\t1\n‘s,’\t1\ns\t1\n‘S.’\t2\nsable\t2\nsacred)\t1\nsacred\t9\nSACRED\t1\nsacrifice.\t1\nsacrifice\t2\nsad\t3\nsaddened\t1\nsaddest\t1\nsaddle\t5\nsaddle-of-mutton\t2\nsadly.\t1\nsadly\t2\nsadness\t1\nSadness\t1\nsafe,\t1\nsafe.\t1\nsafe\t7\nsafer.\t1\nsafety\t2\nSaga,”\t1\nSaga,\t2\nSaga”\t1\nSaga\t2\nsagacity,\t1\nSagas\t1\nsage\t1\nsaid,\t110\nsaid;\t25\nsaid:\t61\nsaid?”\t1\nsaid.\t54\nsaid’!\t1\nsaid\t236\nSaid\t1\nsailing-boat,\t1\nsailors\t1\nsake,\t3\nsake;\t1\nsake\t3\nsalad\t1\n“Salad,\t1\nsale,\t1\nsale\t3\nsallow,\t1\nsallow\t1\nsallow-brown\t1\nsalmon\t1\nsalt\t1\nSaltown\t1\nsalutary.\t1\nsalutary\t1\nsame,\t2\nsame\t38\nsanctioned\t1\nsanctity\t7\nsandwich\t2\nsaner\t2\nsang,\t1\nsanitary\t1\nsanity,\t1\nsanity\t1\nsank\t5\n‘Sankey.’\t1\n‘Sankey’\t2\nsap\t3\nsaplings\t1\nsapped\t1\nsapphires,\t1\nsappy,\t1\nsappy\t1\nsarcasm.\t1\nsarcastic,\t1\nsarcastically.\t1\nsardonic,\t2\nsardonic\t3\nsardonically\t1\n“Sare!”\t1\nsat,\t5\nsat\t63\nsatiety\t1\nsatin\t5\nsatisfaction,\t1\nsatisfaction.\t2\nsatisfaction\t9\nsatisfactory\t2\nsatisfied,\t2\nsatisfied.\t2\nsatisfied\t3\nsatisfy\t1\nsaturated\t1\nSaturday,\t1\nSaturday\t3\nsatyr.\t1\nsauce,\t1\nsavage\t2\nsave\t3\nSave\t1\nsaved,\t1\nsaved.\t1\nsaved\t3\nsaving;\t1\nsaving?\t1\nsaving\t1\nsavour,\t1\nsavour\t1\nsavoured\t1\nsavoury,\t1\nsaw,\t2\nsaw.\t1\nsaw\t87\nsawdust\t1\nsawing\t1\nSaxon\t1\nsay,”\t2\nsay,\t16\nsay;\t3\nsay:\t9\nsay!”\t2\nsay!\t1\nsay?”\t2\nsay?\t2\nsay.’\t1\nsay.”\t1\nsay.\t4\nsay\t99\nSay\t1\nsaying,”\t1\nsaying,\t3\nsaying;\t1\nsaying:\t8\nsaying.\t5\nsaying\t24\nsays;\t1\nsays:\t1\nsays!”\t1\nsays\t5\nsc\t1\nscale\t1\nscamp;\t1\n‘scandal.’\t1\n‘scandal’\t1\nscandal,\t6\nscandal;\t1\nscandal!\t2\nscandal.\t1\nscandal\t1\nscandalous,\t1\nscanning\t1\nscarce,\t1\nscarcely\t1\nscarce-wrinkled\t1\nscarecrow\t1\nscarlet\t1\nscattered;\t1\nscattered\t1\nscene,\t1\nscene!\t1\nscene.\t2\nscene\t3\nscenes\t1\nscent!”\t2\nscent?\t1\nscent.”\t1\nscent\t19\nscented;\t1\nscented\t2\nscent’s\t1\nscents\t1\nSceptre,\t1\nSceptre.\t1\nSceptre\t3\nscheme,\t1\nscheme.\t1\nscheme\t4\nschemes\t1\nschool,\t2\nschool.”\t1\nschool.\t2\nschool\t1\nschoolboy,\t1\nschoolboy\t1\nschool-fellow\t1\nschool’s\t1\nschools,\t1\nschools\t1\nsciatica\t1\nscience,\t1\nscience\t1\nscientific\t2\nScole,\t1\nScoles,\t1\nScoles’\t1\nScoles\t2\nscope\t1\nscored\t1\nscorn:\t1\nscorn.\t1\nscorn\t3\nscornful\t1\nscornfully,\t1\nscornfully:\t1\nscornfully.\t1\nScorrier,\t1\nscotch;\t1\nscrambled\t1\nscraping\t3\nscratched\t1\nscratching.\t1\nscratching\t2\nscreen\t1\nscreened\t2\nscreening\t2\nscrew\t1\nscrewed\t2\nScrotton,\t1\nScrubsole,\t1\nScrubsole.\t1\nScrubsole’s\t1\nscrupled\t1\nscrutinize\t2\nscrutinized\t2\nscrutinizing\t2\nscrutiny,\t2\nscrutiny\t2\nscuffle,\t1\nsea,\t1\nsea;\t1\nsea!\t1\nsea.”\t1\nsea.\t4\nsea\t4\n‘Sea\t1\nsea-air.\t1\nsea-nymph\t1\nsearch,\t1\nsearch\t1\nsearched\t3\nsearching,\t1\nsearching\t3\nseaside\t4\nseason,\t1\nseason.\t2\nseason\t3\nseasons\t2\nseat,\t7\nseat;\t1\nseat.\t1\nseat\t12\nseated,\t1\nseated.\t2\nseated\t17\nSeated\t5\nseats,\t2\nseats.\t2\nseats\t4\nseclusion\t1\nsecond,\t2\nsecond.”\t1\nsecond\t22\nsecond-class!\t1\nsecond-rate\t1\nseconds,\t1\nseconds\t1\nsecrecy,\t2\nsecret,\t1\nsecret.\t2\nsecret\t32\nSecretary,\t1\nSecretary\t1\nsecreted\t1\nsecretly,\t1\nsecretly\t12\nSecretly\t2\nsecrets,\t1\nsecrets.\t1\nsecrets\t3\nsect,\t1\nsection,\t1\nsecure,\t2\nsecure.\t1\nsecure\t3\nsecured\t4\nsecurely\t1\nsecuring\t1\nsecurities.\t1\nsecurities\t1\nsecurity,\t1\nsecurity!\t1\nsecurity\t5\nsecurity-on\t1\nseductive\t2\nseductiveness\t1\nsee,\t7\nsee;\t1\nsee!\t1\nsee.”\t3\nsee.\t3\nsee\t164\nSee\t1\nseed,\t1\nseedy-lookin’\t1\nseeing,\t1\nseeing\t29\nSeeing\t1\nseeking,\t1\nseeking\t7\nseem,\t1\nseem\t17\nseemed,\t1\nseemed\t120\nseeming\t2\nseems\t5\nseen,\t6\nseen;\t1\nseen.\t2\nseen\t73\nsees\t2\nsegment\t1\nseize\t1\nseized\t2\nseizing\t2\nSeizing\t1\nseldom,\t1\nseldom\t8\nSeldom\t1\nselect,\t1\nselecting\t1\nselection\t1\nself,\t1\nself-contained\t1\nself-forgetfulness,\t2\nself-importance,\t1\nselfish.\t1\nselfish\t1\nselfishnesses.\t1\nself-justification\t1\nselfless\t1\nself-possession\t1\nself-preservation,\t1\nself-preserving\t1\nself-respect?\t1\nself-respect\t4\nself-respecting\t2\nself-willed\t1\nsell.\t2\nsell\t5\nselling\t1\nsells\t1\nsemblance\t1\nsemi-circular\t1\nsend\t8\nsending\t4\nsensation.\t2\nsensation\t3\nsensations.\t1\nsensations\t1\n‘sense\t4\nsense,\t1\nsense\t33\nSense\t1\nsenses,”\t1\nsenses,\t1\nsenses\t5\nsensibility,\t1\nsensible,\t1\nsensible\t2\nsensitive;\t1\nsensitive\t1\nsensuous\t2\nsent\t14\nsentence:\t1\nsentence\t2\nsentiment,\t1\nsentiment.\t1\nsentiment\t4\nsentimental?\t1\nsentimental.\t1\nsentimental\t3\nsentimentality\t1\nsentimentally\t1\nsentiments.\t1\nsentinel\t1\nsentinels,\t1\nseparate\t4\nseparated,\t2\nseparated\t1\nseparately.\t1\nseparating\t1\nseparation,\t1\nseparations,\t1\nSeptember,\t2\nSeptember\t2\nSEPTEMBER,\t1\nSeptimus,\t4\nSeptimus\t17\nsequins\t1\nserene.\t1\nserene\t2\nserenity,\t1\nserenity\t1\nseries,\t1\nseries\t1\nserious;\t1\nserious\t5\nseriously,\t1\nseriously\t4\nsermon,\t1\nsermons,\t1\nSerpentine,\t1\nservant.\t2\nservants,\t3\nservants;\t1\nservants.\t1\nservants’\t1\nservants\t5\nserve\t2\n“Serve\t1\nServe\t3\nserved;\t1\nserved\t5\nservice,\t3\nservice\t3\nservices,\t1\nservices\t5\nSessions;\t1\n‘set\t1\nset\t33\nsets\t2\nsetting\t4\nsettle\t2\nsettled\t4\nsettlement,\t1\nsettlement\t1\nsettling\t3\nseven,\t3\nseven.’\t1\nseven)\t1\nseven\t12\nseven-eighths\t1\nseventy,\t1\nseventy\t3\nseventy-five,\t2\nseventy-five\t1\nseventy-three\t1\nseventy-two,\t1\nseveral\t5\n“Several,”\t1\nseverally,\t1\nsevere\t1\nseverely\t4\nSewage\t1\nsex\t1\nsexes\t1\nsexual\t2\nshabbiness,\t1\nshabby\t2\nshade,\t1\nshade\t2\nshadow\t11\nshadowed\t1\nshadowing.\t1\nshadows,\t1\nshadows\t2\nshadowy\t6\nshady\t4\nshaft\t3\nshake\t1\nshaken;\t1\nshaken.\t1\nshaken\t1\nshaking\t5\nshaky;\t1\nshaky.\t1\nshaky\t1\n“shall\t1\nshall!”\t1\nshall\t32\nshallopy\t1\nshame\t4\nshan’t\t11\nshape\t4\nshaped\t2\nshapeless\t2\nshapes\t2\nshaping\t1\nshare,\t1\nshare\t6\nshareholder,\t2\nshareholder.\t2\nshareholder\t5\nshareholders,\t3\nshareholders\t1\nShareholders,\t1\nShareholders.\t1\nShareholders\t1\nshares,\t2\nshares.\t1\nshares\t4\nShares,\t1\nsharp,\t1\nsharp!”\t1\nsharp!\t1\nsharp.\t1\nsharp\t7\nsharpened,\t1\nsharpened\t3\nsharper\t3\nsharply,\t1\nsharply;\t1\nsharply.\t2\nsharply\t5\nshave\t1\nshaven,\t1\nshaven\t3\nshaver,\t1\nshaving,\t3\nshaving.\t1\nshawl.\t1\n“she\t2\n(she\t3\nshe,\t5\nshe!\t2\nshe?”\t3\nshe?\t2\nshe\t711\n“She\t6\nShe\t243\nshe’d\t5\nshed\t1\n“She’d\t1\nShe’d\t1\nsheen\t1\nSheen\t1\nsheep,\t2\nsheer\t2\nsheet,\t1\nsheet.\t2\nsheet\t4\nsheets\t2\n‘SHELDRAKE\t1\nshe’ll\t1\nshell.\t1\nshell\t1\n“She’ll\t1\nShe’ll\t2\nshells,\t1\nshelter\t3\nsheltered,\t1\nsherry,\t1\nsherry!’\t1\nsherry.\t1\nsherry\t4\nsherry-coloured\t1\n“she’s\t1\nshe’s\t19\n“She’s\t3\nShe’s\t16\nshield\t1\nshielded\t1\nshield-like\t1\nshields\t1\nshift\t1\nshifted\t1\nshifting\t3\nshillin’\t1\nshilling.\t1\nshilling\t2\nshillings\t3\nshine,\t1\nshining,\t1\nshining.\t1\nshining\t8\nshiny\t1\nship,\t1\nships,\t1\nships\t1\nshirts\t1\nshirt-sleeved\t1\nshirt-sleeves,\t1\nshirt-sleeves\t1\nshivering,\t1\nshivering\t2\nshock,\t1\nshock.\t1\nshock\t2\nshocked\t2\nshoe\t2\nshoes\t1\nshone,\t1\nshone\t7\n‘shoo’\t1\n‘shoo’d’\t1\nshook\t14\n‘shop,’\t1\nshop,\t1\nshop\t2\nshop-girl\t1\nshopping\t1\nshops,\t1\nshop-window,\t1\nshore;\t1\n(short\t1\nshort,\t2\nshort.\t1\nshort\t11\nShort\t2\nshorten\t1\nshortly:\t1\nshort-sighted),\t1\nshot.\t2\nshot\t11\nshould,\t3\nshould;\t1\nshould?\t1\nshould.\t1\nshould\t145\nShould\t2\nshoulder,\t5\nshoulder;\t1\nshoulder.\t4\nshoulder\t3\nshoulders,\t6\nshoulders\t8\nshoulder-straps\t1\nshouldn’t,”\t1\nshouldn’t\t22\n‘Shouldn’t\t1\nShouldn’t\t1\nshouted,\t1\nshouted\t1\nshow\t21\nshowed\t6\nshower\t1\nshowered\t1\nshowing\t2\nshown\t3\n‘shows’\t1\nshrank\t1\nshrewd,\t3\nshrewd\t3\nshrewdly\t1\nshrewdness\t1\nshrill,\t1\nshroud\t1\nshrouded\t2\nshrubs,\t1\nshrugged\t1\nshudder\t2\nshuddered\t1\nshuddering.\t1\nshuddering\t1\nshut\t10\nshutting\t1\nshy,\t1\nshy\t1\nsick\t4\nsickening\t1\nsickness\t1\nside,\t16\nside;\t1\nside.\t4\nside\t37\nsideboard.\t1\nsideboard\t3\nsidelong\t3\nside-pockets\t1\nsides,\t1\nsides;\t1\nsides\t2\nside-tables,\t1\nsideway\t1\nsideways,\t3\nsideways\t1\nsidle\t1\nsidling\t1\nsigh,\t1\nsigh\t1\nsighed,\t2\nsighed.\t4\nsighed\t1\nSighing\t1\nSighs,’\t1\n‘sight\t1\nsight,\t5\nsight;\t1\nsight!”\t1\nsight.\t6\nsight\t22\nsightless\t2\nsightlessness\t1\nsign,\t1\nsign.\t3\nsign\t7\nsignal,\t1\nsignature;\t1\nsigned\t4\nsignificance.\t1\nsignificance\t4\nsignificant,\t1\nsignificant\t3\nsignify\t1\nsigns\t1\nsilence,\t13\nsilence;\t5\nsilence:\t1\nsilence!\t1\nsilence.\t8\nsilence\t28\nsilent,\t18\nsilent;\t3\nsilent.\t4\nsilent\t17\nSilent,\t2\nSilent\t1\nsilently,\t1\nsilently.\t1\nsilently\t4\nsilk,\t2\nsilk.\t1\nsilk\t13\nsilly\t1\nsilting\t1\nsilver,\t2\nsilver\t15\nsilver-mounted\t2\nsimilar\t3\nsimilarity.\t1\nsimile\t1\nsimmer,\t1\nsimple,\t1\nsimple.\t1\nsimple\t7\nsimplicity,\t1\nsimplicity\t1\nsimply,\t1\nsimply:\t1\nsimply\t8\nsimultaneously,\t1\nsin,\t1\nsin\t1\nsince\t31\nSince\t7\nsincere\t1\nsing\t2\nsinger.\t1\nsingers!\t1\nsingers?\t1\nsinges\t1\nsinging,\t2\nsinging\t3\nsingle\t11\nsingle-handed\t1\nsingular\t2\nsingular-looking\t1\nsingularly\t1\nsinister,\t1\nsinister\t1\nsinking\t1\nsip.\t1\nsip\t1\nsir,”\t1\nsir,\t7\nsir;\t2\nsir!”\t1\nsir!\t2\nsir?”\t5\nsir?\t1\nsir.”\t3\nsir.\t2\nsir\t1\nSir,\t1\nSir.\t1\nSir\t5\nsister,\t5\nsister\t5\nsister-in-law,\t1\nsister-in-law:\t1\nsisterly\t1\nsisters,\t1\nsisters;\t1\nsisters.\t1\nsisters\t2\nsit,\t1\nsit\t16\n“Sit\t1\nsite,\t1\nsite;\t1\nsite.”\t1\nsite.\t4\nsite\t6\nSites\t1\nsits\t1\nSits\t1\nsitting,\t1\nsitting\t26\nSitting\t1\nsitting-room,\t1\nsitting-room\t2\nsituation,\t2\nsituation;\t1\nsituation.\t4\nsituation\t4\nsix,\t1\nsix!\t1\nsix.\t1\nsix\t13\nsixpence.’\t1\nsixth\t1\nsixty.\t2\nsixty\t2\nsize,\t1\nsize\t2\nskeleton.\t1\nsketches;\t1\nsketching.\t1\nskidded,\t1\nskim\t1\nskimmed\t1\nskin\t5\nSkin-like\t1\nskin-tight\t1\nskipping\t1\nskirt.\t1\nskirts\t4\nsky,\t5\nsky.\t2\nsky\t7\nskylight,\t1\nskylight\t2\nsky’s\t1\nslabs\t1\nslack,\t1\nslack;\t1\nslack\t1\nslackened\t1\nslam\t1\nslammed\t1\nslanting\t1\nslap-dash\t1\nslate.\t1\nslave\t2\nslaves\t2\nsleek,\t1\nsleek\t2\nsleep,\t3\nsleep;\t1\nsleep.\t5\nsleep\t6\nsleepily\t1\nsleeping\t2\nsleeping-suit\t1\nsleeps\t1\nsleepy;\t1\nsleeve,\t1\nsleeve\t1\nsleeves,\t1\nslender\t3\nslept.\t1\nslid\t4\nslide\t1\nsliding\t1\nslight,\t1\nslight\t4\nslighted\t1\nslightest\t2\nslightly;\t1\nslightly\t5\nslights,\t1\nslim,\t3\nslim\t1\n—‘slinking\t1\nslinking\t1\nslip\t8\nslipped,\t2\nslipped\t5\nslippers.\t1\nslippers\t2\nslipping\t5\nslips\t2\nslipshod\t1\nslit\t1\nSloane\t9\nSLOANE\t2\nslobber\t1\nslope.\t1\nslope\t1\nsloped\t1\nslouch\t2\nslow,\t6\nslow!”—\t1\nslow!\t1\nslow\t9\nslow-gathering\t1\nslowly,\t10\nslowly;\t1\nslowly:\t1\nslowly.\t2\nslowly\t25\nSlowly,\t1\nSlowly\t1\nslowness\t1\nslug!\t1\nSlumber\t1\nslumbering,\t1\nslyly\t1\nsmacked\t1\nsmall,\t4\nsmall)\t1\nsmall\t26\nSmall,\t15\nSmall!”\t1\nSmall.\t4\nSmall\t24\nsmaller,\t1\nsmaller\t7\nsmallest\t1\nSmall’s\t3\n‘smart,’\t1\nsmart,\t1\nsmart;\t1\nsmart\t2\nsmartly\t1\nsmartness\t1\nsmear\t1\nsmeared\t1\nSmeech,\t1\nSmeech.”\t1\nsmell\t1\nsmelled\t1\nsmelling\t2\nsmelling-salts.\t1\nsmelt\t2\nsmile,\t15\nsmile;\t1\nsmile:\t1\nsmile.\t11\nsmile\t32\nsmiled,\t2\nsmiled;\t4\nsmiled:\t1\nsmiled.\t8\nsmiled’\t1\nsmiled\t7\nsmiles,\t1\nsmiles\t2\nSmileybob’s\t1\nsmiling,\t3\nsmiling.\t3\nsmiling\t12\nsmilingly\t2\nsmirch\t1\n“Smither\t1\nSmither,\t4\nSmither\t6\nSmither’s\t1\nsmoke.\t2\nsmoke\t4\nsmoked\t2\nsmokes\t1\nsmoking\t3\nsmoking-room!’\t1\nsmooth,\t1\nsmooth\t5\nsmoothed\t2\nsmoothly,\t1\nsmothered\t5\nsmouldering\t1\nsmut-covered\t1\nsmut-stained\t1\nsnapped\t3\nsnapping\t2\nsnarl\t1\nsnarling,\t1\nsnatched\t3\nsnatches\t1\nSnatching\t1\nsneak\t1\nsneer,\t1\nsneering\t2\nsneers,\t1\n‘sniff,’\t1\nsniff.\t1\nsniff\t2\nsniffed\t2\nsniffing\t1\nsnore.\t1\nsnow\t1\nsnowy,\t1\nsnowy\t2\nsnub\t1\nsnuggled\t1\n“so\t1\nso,”\t2\nso,\t8\nso;\t2\nso!”\t3\nso!\t1\nso?”\t1\nso?\t2\nso.’\t1\nso.”\t3\nso.\t7\nso),\t1\nso\t343\n‘So\t1\n“So,\t1\n“So\t4\nSo,\t2\nSo\t16\nSoa.\t1\n‘Soames\t1\n“Soames,”\t1\n“Soames.”\t1\n“Soames\t6\n(Soames)\t1\n(Soames\t1\nSoames,”\t1\nSoames,\t64\nSoames;\t6\nSoames:\t3\nSoames!’\t1\nSoames!”\t2\nSoames!\t4\nSoames?\t4\nSoames.”\t2\nSoames.\t19\nSoames’?\t1\nSoames’.\t1\nSoames’\t22\nSoames\t303\n‘SOAMES\t2\nSoameses\t1\nSoames’ll\t1\n“Soames’s\t1\nSoames’s,\t2\nSoames’s;\t1\nSoames’s?\t1\nSoames’s.”\t1\nSoames’s.\t1\nSoames’s\t11\nSoamses\t1\nsoap,\t1\nsoared\t1\nsoaring\t1\nsob?\t1\nsob.\t1\nsob\t1\nsobbed.\t1\nsobbing,\t2\nsobbing.\t2\nsobbing\t4\nsobs,\t2\nsobs.\t1\nso-called\t2\nsociable,\t1\nsocial\t5\nSocieties\t1\nsociety,\t5\nsociety\t6\n‘Society.’\t1\nSociety,\t5\nSociety;\t2\nSociety.\t1\nSociety\t4\nSociety’s\t1\nsocket.\t1\nsocks\t1\nsofa,\t4\nsofa;\t2\nsofa.\t1\nsofa\t2\nsofas\t1\nsoft,\t12\nsoft.\t2\nsoft\t33\nSoft\t1\nsoftened\t1\nsoftening,\t1\nsofthearted.\t1\nsoftly,\t4\nsoftly;\t1\nsoftly:\t3\nsoftly.\t3\nsoftly\t4\nsoftness,\t2\nsoftness\t4\nsoft-petalled\t1\nSoho\t1\nsoil,”\t1\nsoil\t2\nsoiled\t1\nsoiree,\t1\nsold,\t1\nsold\t4\nsoldier\t1\nsoldiers\t1\nsole\t4\nsolemn\t6\nsolemnity\t2\nsolemnizing\t1\nsolemnly,\t1\nsolemnly\t1\nsolicited,\t1\nsolicitor,\t1\nsolicitor.\t1\nsolicitor\t3\nsolicitors,\t4\nsolicitors\t1\nsolicitous\t1\nsolid\t8\nsolidity\t1\nsolitarily\t1\nsolitary\t3\nSolomon\t1\nsombrely\t1\nsome,\t2\nsome\t168\nSome\t10\n“somebody\t1\nsomebody?”\t1\nsomebody\t4\nSomebody\t1\nsomehow,\t3\nsomehow.”\t1\nsomehow.\t1\nsomehow\t1\nsomeone\t10\nSomerset\t1\nsomething,\t4\nsomething;\t3\nsomething!”\t2\nsomething.\t6\nsomething\t82\n“Something\t1\nSomething\t10\nsometimes\t11\nSometimes\t4\nsomewhat\t12\nSomewhat\t1\nsomewhere.”\t1\nsomewhere.\t3\nsomewhere\t3\nson,\t10\nson;\t2\nson!\t1\nson.”\t1\nson.\t11\nson\t48\nsonata.\t1\nsonata\t1\nsong,\t1\nsong\t6\nSong,\t1\nsongbook\t1\nsongs;\t1\nsongs),\t1\nsongs\t2\n‘Songs\t1\nson-in-law\t2\nson’s,\t1\nson’s\t9\nsons,\t2\nsons.\t1\nsons\t5\nSons\t1\nsoon,\t1\nsoon;\t1\nsoon.\t1\nsoon\t13\nSoon\t1\nsooner,\t2\nsooner.\t1\nsooner\t3\nsoot\t1\nsoothe\t2\nsoothing\t1\nsorceress,\t1\nsordid,\t1\nsordid\t1\nsore,\t1\nsore\t3\nsorrow,\t1\nsorrow.\t2\nSORROW,\t1\nsorrowful\t1\nsorrowfully\t1\nsorry,\t2\nsorry.\t2\nsorry\t6\nsort,\t2\nsort.\t2\nsort\t45\nsortie\t1\nsorts\t2\nsoubriquet,\t1\nsought,\t2\nsought?\t1\nsought\t5\nsoul,\t6\nsoul;\t2\nsoul!\t1\nsoul.\t5\nsoul\t13\nsouls\t1\nsound,\t3\nsound.\t3\nsound\t33\nsounded,\t1\nsounded.\t1\nsounded\t6\nsounder\t4\nsoundest\t2\nsoundly,\t1\nsoundness,\t1\nsoundness\t1\nsounds,\t2\nsounds\t7\nsoup,\t2\nsoup.\t1\nsoup\t4\nsour;\t1\nsour\t1\nsource\t2\nsourish\t2\nsourly\t2\nsouth,\t1\nSouth\t2\nSouthdown,\t1\nsouth-east\t1\nsoutheast\t1\nsouth-west\t1\nsovereign\t1\nspace;\t1\nspace\t4\n“Space,\t1\nspaces,\t1\nspaces\t2\nspacings\t1\n“spacious”;\t1\nspacious\t2\nspaciousness\t1\nSpagnoletti,\t1\nSpaniard’s\t2\nSpanish?”\t1\nSpanish\t1\nspare\t3\nspared.\t1\nspared\t2\nsparing\t1\nsparkle,\t1\nsparkle\t3\nsparkling\t1\nspasm\t2\nspasmodic\t2\nspasmodically\t2\nspeak,\t2\nspeak;\t3\nspeak.\t2\nspeak\t21\nspeaker.\t1\nspeaker\t1\nspeaking,\t4\nspeaking:\t1\nspeaking.\t4\nspeaking\t9\nspeaks\t1\nspecial\t12\nspecializing\t1\nspecies,\t1\nspecies.\t2\nspecies\t1\nspecimen\t1\nspeckless\t1\nspectacle,\t1\nspectator\t2\nspectators\t1\nspectral\t1\nspectre\t1\nspectres,\t1\nspectres\t2\nspeculate.\t1\nspeculation!\t1\nspeculation\t2\nspeculations,\t1\nspeech,\t1\nspeech.\t2\nspeech\t2\nSpeech\t1\nspell.\t1\nspell\t2\nspellbound\t1\nspelling\t1\nspells\t2\nSpeltrate’\t1\nspend\t7\nSpender,\t1\nspending.\t1\nspending\t4\nspent.\t1\nspent\t14\nsphere\t1\nsphynx\t1\nspicy,\t1\nspidery\t1\nspine.\t1\nspine\t1\nspires\t1\nspirit,’\t1\nspirit,\t4\nspirit;\t2\nspirit.\t3\nspirit\t13\nspirited\t1\nspirits,\t2\nspirits.\t2\nspirits\t5\nspiritual\t2\nspiritually\t1\nspirit-urn\t1\nspite:\t1\nspite\t19\nspleen\t1\nsplendid;\t1\nsplendid\t3\nsplendidly;\t1\nsplendidly\t1\nsplit\t1\nspluttering\t1\nspoiled.\t1\nspoiled\t2\nspoiling\t2\nspoke,\t4\nspoke;\t1\nspoke.\t2\nspoke\t19\nspoken,\t3\nspoken.\t3\nspoken\t7\nspoons!’—\t1\nsporting\t1\nsports,\t1\nsportsman\t1\nsportsmanlike\t2\nsportsman’s\t1\ns’pose\t3\nspot,\t1\nspot!”\t1\nspot.\t1\nspot\t3\nspotted\t1\nsprang\t5\nsprawling\t2\nspread,\t1\nspread.\t1\nspread\t10\nspreading\t2\nsprightliness\t2\nsprightly,\t1\nspring,\t3\nspring;\t1\nspring:\t1\nspring!”\t1\nspring.\t3\nspring\t20\n“Spring!”\t1\nSpring,’\t1\nSpring\t1\nsprings,\t2\nsprings\t1\nsprinkle\t1\nsprinkled\t2\nsprinkling\t1\nsprung\t1\nspun\t4\nspurned\t1\nspy\t2\nspying\t2\nsqualor,\t1\nsquare,\t5\nsquare\t7\nSquare,\t8\nSquare;\t1\nSquare.”\t1\nSquare.\t8\nSquare\t13\nSQUARE,\t1\nsquare-chinned,\t1\nsquared\t2\nsquares,\t1\nsquares\t1\nsqueak,\t1\nsqueak!\t1\nsqueak\t1\nsqueaks;\t1\nsqueeze\t1\nsqueezed\t2\nsqueezing\t3\nSt.\t7\nstabbed\t1\nstable\t1\nstaccato\t1\nstacked\t1\nstacks,\t1\nstaff\t1\nstage.\t1\nstage\t4\nstaggered;\t1\nstaggered\t2\nstagnating\t1\nstagnation\t1\nstags,\t1\nstained\t2\nStainer’s\t1\nstaircase.\t1\nstaircase\t2\nstairs,\t6\nstairs;\t1\nstairs.\t3\nstairs\t1\nStairs\t1\nstairway.\t1\nstake.\t1\nstake\t1\nstakes\t1\nstalactite\t1\nstale,\t1\nstalked\t1\nstall,\t1\nstalls,\t2\nstalls?”\t1\nstalls\t2\nstammered,\t2\nstammered.\t1\nstammered\t2\nstamp,\t1\nstamp\t3\nstamped\t2\n‘stand’\t1\nstand,\t2\nstand\t27\nstanding,\t1\nstanding.\t1\nstanding\t26\nstands;\t1\nstands\t2\nstand-still\t1\nstandstill\t1\nstand-up\t3\nStanhope\t15\nstar,\t3\nstar.\t1\nstar\t1\nStar\t1\nstare,\t2\nstare:\t1\nstare.\t4\nstare\t4\nstared,\t2\nstared\t11\nstares\t1\nstaring,\t1\nstaring\t12\nStaring\t1\nstarry,\t1\nstars;\t1\nstars\t5\nstart;\t1\nstart\t2\nstarted,\t3\nstarted.\t1\nstarted\t11\nstarting!\t1\nstarting.”\t1\nstarting\t1\nstartle\t1\nstartled\t4\nstarvation\t1\nstarved\t1\nstate;\t1\nstate\t9\nstated\t2\nstatement?”\t1\nstatement\t2\nstatesman,\t1\nStatesman’\t1\nstation,\t1\nstation?\t1\nstation.\t6\nstation\t2\nStation,\t2\nStation\t3\nstatu\t1\nstatuary\t2\nstatue.\t2\nstatue\t2\nstatues\t1\nstature\t4\nstay,”\t1\nstay\t12\nstayed\t6\nstaying,\t1\nstaying\t2\nsteadfast\t1\nsteadfastness\t1\nsteadied\t1\nsteadily,\t2\nsteadily.\t2\nsteadily\t5\nsteadiness\t1\nsteady,\t1\nsteady;\t1\nsteady\t7\nsteal\t4\nstealing\t9\nStealing\t1\nsteals\t1\nstealthily,\t2\nstealthily.\t1\nstealthily\t7\nstealthy,\t1\nstealthy\t5\nsteam\t1\nsteel\t1\nsteel-blue,\t1\nsteeped\t1\nstep,\t3\nstep\t7\nstepdaughter\t1\nstepmother,”\t1\nstepmother,\t1\nstepmother.\t2\nstepmother\t1\nstepped.\t1\nstepped\t12\nstepping\t1\nsteps,\t4\nsteps;\t1\nsteps\t14\nsterile\t2\nsterilized\t1\nstern\t1\nsternly:\t1\nsternly\t1\nsternness\t1\nstick!\t2\nstick.\t1\nstick\t6\nsticking\t1\nstifle\t1\nstifled\t1\nstifling\t1\nstigmatize\t1\nstill,”\t1\nstill,\t11\nstill!\t1\nstill.\t3\nstill\t80\nStill,\t3\nStill\t1\nstillness,\t3\nstillness\t1\nstimulant.\t1\nstimulated.\t1\nstimulating\t1\nstint\t2\nstipulated\t1\nstir.\t1\nstir\t5\nstirred,\t1\nstirred;\t1\nstirred.\t1\nstirred\t5\nstirring\t3\nstock,\t2\nstock.\t1\nstock\t3\nStock\t4\nstockbroker,\t1\nstockbrokers,\t1\nstocking\t1\nstocks\t1\nstole\t18\nstolen,\t1\nstolid,\t1\nstolid\t2\nstolidly\t1\nstomach\t1\nstone,”\t1\nstone,\t2\nstone!”\t1\nstone.\t1\nstone\t4\nStone\t1\nstonemason\t1\nstones;\t1\nstones:\t1\nstones\t1\nstonily:\t1\nstood,\t5\nstood\t88\nstool,\t1\nstoop,\t1\nstoop;\t1\nstooped,\t1\nstooped\t1\nstooping,\t1\nstop,”\t1\nstop.\t3\nstop\t8\n“Stop!”\t1\n“Stop\t1\nstopped,\t8\nstopped;\t2\nstopped.\t3\nstopped\t16\nstopping\t2\nstore\t3\nStores;\t1\nStores.\t1\nStores\t2\nstories\t4\nstork-like\t1\nstorm!”\t1\nstorm\t1\nstory,\t5\nstory.\t2\nstory\t12\nstout,\t1\nstout;\t1\nstout\t3\nstouter.\t1\nstove.\t1\nstove\t1\nstraight,\t1\nstraight.\t1\nstraight\t15\nstraight-backed\t1\nstraightforward\t1\nstrain\t1\nstrained,\t1\nstrained\t2\nstraining\t1\nstranded\t1\nstrange,\t13\nstrange!\t1\nstrange.\t2\nstrange\t50\nstrangely.\t1\nstrangely\t3\nstrangeness,\t1\nstrangeness.\t1\nstranger.\t1\nstranger\t4\nstrange-seeming,\t1\nstrangest\t1\nstrangled:\t1\nstrangled\t1\nstratagems\t1\n—-straw\t1\nstrawberries,\t1\nStraw’s\t1\nstreak\t4\nstream!\t1\nstream?\t1\nstream.’\t1\nstream\t4\nstreamed\t2\nstreams,\t1\nstreet,\t3\nstreet;\t1\nstreet.\t7\nstreet\t11\nStreet,\t7\nStreet;\t1\nStreet.\t3\nStreet\t9\nSTREET,\t2\nstreet-door\t1\nstreets,\t6\nstreets;\t1\nstreets.\t4\nstreets\t5\nStreet’s\t1\nstrength\t3\nstrengthen\t1\nstrengthened\t1\nstrengthening.\t1\nstrenuous,\t1\nstrenuous\t2\nstress\t4\nstretch\t1\nstretched\t7\nstretches\t1\nstretching\t1\nstrewn\t2\nstricken\t2\nstrict\t2\nstrictest\t2\nstrictly\t1\nstrictness\t1\nstrident\t1\nstriding\t1\nstrike\t1\nstriking\t6\nstring\t2\nstrip\t2\nstrivings,\t1\nstrode,\t1\nstrode\t1\nstroke\t10\nstroked\t1\nstrokes\t1\nstroking\t3\nstrolled\t3\nstrollers\t2\n‘strong,’\t1\n‘strong’\t1\nstrong,\t9\nstrong.\t1\nstrong\t17\nstronger\t3\nstrongly\t9\nstrove\t1\nstruck.\t2\nstruck\t13\nstruggle,\t2\nstruggle.\t1\nstruggle\t6\nstruggling\t1\nStruggling\t1\nstrutting\t2\nstubborn\t2\nstubbornly:\t1\nstubbornly\t1\n“Stubbs?”\t1\n“Stucco!”\t1\n“Stucco!\t1\nstuck,\t1\nstuck\t2\nstudent\t1\nstudied\t1\nstudies,\t1\nstudy,\t4\nstudy.\t1\nstudy\t4\nstudying\t1\nstuff,’\t1\nstuff,\t2\nstuff!”\t1\nstuff\t1\nstuffy\t2\nstumbled\t1\nstump.\t1\nstumped\t2\nstung\t3\nstupendous\t1\nstupid\t2\nsturdy\t1\nstuttering\t1\nstyle,\t2\nstyle!\t1\nstyle.”\t1\nstyle\t4\nsuave;\t1\nsubconscious\t1\nsubdued,\t1\nsubdued.\t1\nsubdued\t2\nsubject,\t3\nsubject.\t1\nsubject\t11\nsubjects.\t1\nsubjects\t1\nsubmit\t2\nsubmitted\t1\nsubsequent\t1\nsubsequently\t1\nsubsidence\t1\nsubsidiary\t1\nsubstance.\t1\nsubstantial\t2\nsubstantiate\t1\nsubterfuge,\t1\n‘subterranean.’\t1\nsubterranean\t3\nsubtle.\t1\nsubtle\t2\nsubtlety\t1\nsubtly\t1\nsucceeded;\t1\nsucceeded\t7\nsucceeds\t1\nsuccess,\t4\nsuccess?”\t1\nsuccess.\t4\nsuccess\t4\n“Success,”\t1\nsuccessful,\t2\nsuccessful;\t1\nsuccessful.\t1\nsuccessful\t5\nsuccession\t1\nsucculent\t1\nsuccumbed,\t1\nsuch,\t2\nsuch.\t2\nsuch\t134\n“Such\t2\nSuch\t8\nsuction.\t1\nsudden,\t1\nsudden\t18\nSudden\t1\nsuddenly,\t6\nsuddenly.\t4\nsuddenly\t31\nSuddenly,\t1\nSuddenly\t7\nsue\t1\nsuffer!”\t1\nsuffer\t5\nsuffered;\t1\nsuffered\t4\nsufferer\t1\nsufferer)—‘Divorce\t1\nsufferers,\t1\nsuffering,\t1\nsuffering?’\t1\nsuffering.\t2\nsuffering\t9\n‘Suffering!\t1\nsufficed\t1\nsufficient\t3\nsufficiently\t1\nsuffocatingly\t1\nsugar;\t1\nSugar,\t1\nSugar\t1\nsugar-sifter?\t1\nsuggest\t1\nsuggesting\t2\nsuggestion,\t1\nsuggestion.\t1\nsuggestion\t4\nsuggestions.\t1\nsuggestions\t1\nsuicide,”\t1\nsuicide,\t4\nsuicide?”\t1\nsuicide.\t1\nsuicide\t8\n‘Suicide\t1\n“Suicide!\t1\nsuit,\t2\nsuit\t4\nsuitable,\t1\nsuitable\t2\nsuite\t1\nsuited\t2\nsulkily,\t2\nsulkily\t1\nsulky,\t2\nsulky.\t1\nsulky\t4\nsum!”\t1\nsum.\t1\nsum\t15\nsummarily.\t1\nsummed\t1\nsummer,\t3\nsummer;\t1\nsummer.”\t1\nsummer\t13\nsummer-like\t1\nsummit\t1\nsummon\t1\nsun,\t2\nsun;\t3\nsun.\t4\nsun\t10\nSunday,\t2\nSunday!”\t1\nSunday?”’\t1\nSunday?\t1\nSunday.”\t1\nSunday\t16\nSundays\t2\nsunk\t2\nsunken\t1\nsunlight,\t3\nsunlight.\t2\nsunlight\t4\nsunny\t2\nsunset,\t1\nsunset!”\t1\nsunset.\t1\nsunset’;\t1\nsunset\t1\nSunset’\t1\nsunshade,\t2\nsunshade\t3\nsunshades,\t1\nsunshades\t1\nsunshine,\t2\nsunshine;\t1\nsunshine.\t1\nsunshine\t4\nsupercilious,\t1\nsupercilious\t7\nsuperciliously.\t1\nsuperciliousness\t2\nSuperfinos\t1\nsuperintendence.\t1\nsuperintendent,’\t1\nsuperintendent\t2\nSuperintendent,\t1\nsuperintendent’s\t4\nsuperintendents\t1\nSuperintendent’s\t1\nsuperior,\t1\nsuperior\t1\n‘Superior\t1\nsuperiority\t2\nsuperstructure.\t1\nsupper,\t1\nsupper;\t1\nsupper\t1\nsupping\t1\nsupple,\t1\nsupple\t2\nsupplementing\t1\nsupplied,\t1\nsupply.\t1\nsupply\t1\nsupport\t5\nsupported\t4\nsupporters\t1\nsuppose,”\t1\nsuppose,\t3\nsuppose;\t1\nsuppose?”\t3\nsuppose.”\t1\nsuppose\t35\nsupposed\t8\nsupposing,\t1\nsupposing\t1\nsuppressing\t1\nsupremacy\t1\nsupreme\t5\nsure,”\t1\nsure,\t4\nsure.\t4\nsure”\t1\nsure\t22\nsurely,\t2\nsurely\t9\nsurface\t2\nsurfeited\t1\nsurged\t1\nsurlily:\t1\nsurly\t1\nsurmises\t1\nsurname,\t1\nsurprise,\t2\nsurprise:\t1\nsurprise.\t3\nsurprise\t6\nsurprised,\t2\nsurprised;\t1\nsurprised.\t1\nsurprised\t9\nsurprising,\t1\nsurprisingly\t1\nsurrender\t7\nsurrendered\t1\nsurreptitiously\t1\nSurreptitiously,\t1\nsurrounded\t4\nsurrounding\t3\nsurroundings,\t1\nsurroundings\t1\nsurveying\t2\nsurveys\t1\nsurvive\t1\nsurvived\t2\nsusceptibilities\t2\nsusceptibility\t1\nsuspect\t2\nsuspected,\t1\nsuspected\t2\nsuspense?\t1\nsuspense\t1\nsuspicion,\t3\nsuspicion:\t1\nsuspicion\t6\nsuspicions,\t2\nsuspicions\t2\nsuspicious\t4\nsuspiciously.\t1\nsuspiciously\t3\nsustain\t2\nsustained\t1\nS.W.,\t2\nswain\t1\nswallow\t2\nswan;\t1\nswarm\t2\nswarming\t2\nswarmings\t1\nswathed\t1\nswayed,\t1\nswayed\t1\nswaying,\t1\nswaying\t2\nswear;\t1\nswear\t4\nswearing\t1\nsweat\t1\nsweep\t2\nsweeper.\t1\nsweet,\t2\nsweet!\t1\nsweet?\t1\nsweet\t16\nsweeter\t2\nsweetness,\t1\nsweetness\t5\nsweet-shop,\t1\nsweet-smelling,\t1\nsweet-smelling;\t1\nswell\t1\nswelled.\t1\nswelled\t2\nswelling\t1\nswells.”\t1\nswept\t3\nswift\t2\nswiftly,\t1\nswiftly.\t1\nswiftly\t2\nswill\t1\nswim\t1\nswimming\t1\n‘swims’\t1\nswindled.\t1\nswing,\t1\nswing\t3\nswing-door\t1\nswinging\t2\nswish\t1\nSwithin,”\t5\nSwithin,\t24\nSwithin;\t4\nSwithin:\t1\nSwithin!”\t1\nSwithin!\t1\nSwithin?”\t3\nSwithin?\t1\nSwithin\t70\nSwithin’s,\t2\nSwithin’s\t20\nSwitzerland,\t1\nSwitzerland\t1\nswollen,\t1\nswollen\t3\nswop\t1\nswore\t2\nsworn\t3\nswung\t7\nsymbolizing\t1\nsympathetic\t4\nsympathetically\t1\nsympathize\t1\nsympathized\t2\nsympathy,\t1\nsympathy.\t2\nsympathy\t7\nsympathy’s\t1\nsymptom\t1\nsyndicate);\t1\nsystem,\t1\nsystem\t1\nT.\t1\ntable,\t13\ntable;\t2\ntable.\t3\ntable\t12\ntables,\t1\ntaciturn,\t2\ntaciturnity,\t1\ntaciturnity.\t1\ntaciturnity\t3\nTacitus:\t1\nTaglioni,\t1\ntail.\t1\ntail\t3\n“take\t1\ntake,\t1\ntake.\t1\ntake\t94\n“Take\t2\nTake\t2\n‘taken\t2\ntaken,\t1\ntaken?\t1\ntaken.”\t1\ntaken.\t4\ntaken\t48\ntakes\t2\ntaking\t44\n‘Taking\t1\nTaking\t5\ntakings\t1\ntale,\t1\ntale.\t2\ntale\t3\ntalent,\t1\ntalent\t2\ntalented\t1\ntalents,\t1\ntales,\t1\n“talk\t1\ntalk,\t1\ntalk;\t2\ntalk.\t4\ntalk)\t1\ntalk\t36\nTalk\t1\ntalkative\t1\ntalked,\t1\ntalked\t14\ntalker,\t1\ntalking,\t3\ntalking?\t2\ntalking\t22\ntalks\t2\ntall,\t13\ntall”\t1\ntall\t12\nTall?\t1\ntaller\t1\ntallest\t1\nTalleyrand\t1\ntallied\t1\ntame\t1\ntangible,\t1\ntangible\t2\ntapped\t2\ntapping\t1\ntar\t1\ntar-contract\t1\ntart.\t1\ntartly,\t1\ntartly\t1\ntaste,\t1\ntaste;\t2\ntaste!”\t1\ntaste!\t1\ntaste.”\t1\ntaste.\t3\ntaste\t8\n“Taste!”\t1\ntasted\t2\ntastes.\t1\ntasty;\t1\ntasty\t1\ntattle\t1\ntaunt,\t1\ntawny,\t1\ntax\t2\ntaxes,\t1\nTaxing\t1\nT-cart,\t1\ntea,\t5\ntea;\t1\ntea:\t1\ntea.\t5\ntea\t8\nteach\t1\nteaching\t1\nteachings\t1\ntea-gowns,\t1\ntear\t3\ntearing\t1\ntears,\t1\ntears.\t1\ntears\t11\nTears\t1\ntear-stained\t1\nteaser\t1\ntea-table,\t1\ntea-time\t1\ntea-tray,\t1\nteeth;\t2\nteeth:\t2\nteeth!\t1\nteeth\t2\ntelegram\t1\ntell,”\t2\ntell,\t1\ntell;\t2\ntell!\t3\ntell?\t2\ntell.”\t1\ntell.\t1\ntell\t76\n“Tell\t2\nTell\t1\ntelling\t10\ntells\t10\ntemper,\t1\ntemper\t2\ntemperament,\t1\ntemperament!\t1\ntemperament\t4\ntemper’s\t1\ntemple\t1\ntemples,\t3\ntemporary\t1\ntemptation\t1\ntempted\t1\ntempting\t1\nten,\t3\nten!”\t1\nten\t18\nTen\t1\ntenacious\t4\ntenaciously\t1\ntenacity,\t5\ntenacity.\t1\ntenacity\t5\ntenant\t2\ntenants\t1\ntended\t1\ntendencies\t2\ntendency\t4\ntender,\t3\ntender\t3\ntenderness\t2\ntenner\t1\ntennis,\t1\ntenor\t1\ntens\t3\ntent.\t1\ntent\t2\ntentative\t1\nterminating\t1\ntermini.\t1\nterms?”\t1\nterms.\t1\nterms\t14\nterrace,\t1\nterrace.\t1\nterrace\t8\nTerrace\t1\nterrible\t15\nterribly.\t1\nterribly\t5\nterrific\t1\nterrified\t1\nterrifying\t1\nterror:\t1\nterror.\t1\nterror\t2\nterrors\t1\ntestament\t1\nTestament\t1\ntestamentary\t1\ntestified\t1\ntestimony\t1\ntests\t1\ntethered\t1\nTewkesbury\t1\ntext\t1\nThames\t1\n“than\t1\nthan\t128\nThan\t1\nthank\t2\n“Thank\t2\nthankful\t1\nthanks\t2\n“Thanks,”\t1\n“Thanks,\t1\n“Thanks.\t1\n“Thanks\t1\nthanksgiving\t1\n‘that\t5\n“that\t11\n(that\t1\nthat,”\t4\nthat,\t24\nthat;”\t1\nthat;\t5\nthat!”\t5\nthat!\t6\nthat?’\t1\nthat?”\t6\nthat?\t8\nthat.”\t1\nthat.\t13\nthat”—\t1\nthat\t1273\n‘That\t5\n“That\t6\nThat,\t1\nThat\t34\nthatches\t1\nthat’ll\t2\n“that’s\t2\nthat’s\t18\n“That’s\t5\nThat’s\t3\n‘the\t6\n“the\t9\n(the\t4\n—‘the\t1\nthe,\t2\nthe.\t2\nthe\t5144\n‘The\t20\n“The\t27\n(The\t1\n—‘The\t2\nThe\t412\nTHE\t4\ntheatre,\t3\ntheatre;\t1\ntheatre.”\t1\ntheatre.\t1\ntheatre\t4\ntheatricals,\t1\ntheir\t283\nTheir\t8\ntheirs?\t1\ntheirs.\t1\nthem,”\t1\nthem,\t29\nthem;\t11\nthem:\t1\nthem!”\t1\nthem!\t7\nthem?”\t1\nthem?\t1\nthem.”\t2\nthem.\t31\nthem)\t1\nthem\t186\ntheme\t1\nthemselves,\t6\nthemselves;\t2\nthemselves\t18\nthen,”\t3\nthen,\t21\nthen!\t4\nthen?”\t1\nthen?\t2\nthen.\t2\nthen\t68\n‘Then\t1\n“Then,\t4\n“Then\t4\nThen,\t9\nThen\t34\nthence\t1\ntheoretically\t1\ntheory;\t1\ntheory.\t1\ntheory\t3\nTheory\t1\n“there!\t1\n“there\t1\nthere,”\t2\nthere,\t35\nthere;\t4\nthere!”\t2\nthere!\t2\nthere?”\t3\nthere?\t2\nthere.”\t1\nthere.\t20\nthere);\t1\nthere\t221\n“There!”\t2\n“There\t1\nThere,\t2\nThere’\t1\nThere\t89\nthereby\t3\nthere’d\t1\ntherefore,\t14\ntherefore\t9\ntherefrom\t1\ntherein.\t1\nthere’ll\t1\n“There’ll\t1\nThere’ll\t1\nthereof\t1\nthereon\t1\nThereon\t1\n“there’s\t1\nthere’s\t12\n“There’s\t11\nThere’s\t5\nthereto\t1\nthereupon\t1\nthese,\t1\nthese;\t1\nthese.”\t1\nthese\t88\nThese\t9\n‘they’—\t1\n“they\t2\n(they\t1\nthey,\t5\nthey\t368\n“They\t7\nThey\t100\n“they’d\t1\nthey’d\t2\nthey’ll\t1\nthey’re\t8\n“They’re\t1\nThey’re\t1\nthey’ve\t5\n“They’ve\t1\nthick,\t3\nthick;\t1\nthick!\t1\nthick\t14\nthicker\t1\nthick-set\t1\nthieves,\t1\nthimble-riggers.\t1\nthin,\t7\nthin;\t1\nthin.\t1\nthin\t17\nThin\t1\nthing,”\t1\nthing,\t19\nthing;\t2\nthing:\t1\nthing!”\t4\nthing!\t5\nthing.”\t1\nthing.\t12\nthing’—\t2\nthing\t60\n(things\t1\nthing’s\t1\nthings,”\t1\nthings,\t15\nthings;\t7\nthings:\t1\nthings!”\t4\nthings!\t4\nthings?”\t1\nthings.’\t2\nthings.”\t1\nthings.\t8\nthings\t53\nThings\t1\nthink,”\t4\nthink,\t3\nthink;\t1\nthink!\t1\nthink?”\t1\nthink?\t2\nthink\t76\n“Think\t1\nthinkable.\t1\nthinking,\t1\nthinking?\t1\nthinking.\t5\nthinking\t20\nthinks\t4\nthin-lipped,\t1\nthinned\t2\nthinner.”\t1\n“Thinner?\t1\nthin-skinned\t1\nthin-veined\t1\nthird,\t1\nthird\t5\nthird-rate\t1\nthirsty,\t3\nthirsty\t1\nthirteen.\t1\nthirteen\t1\nthirty\t2\nthirty-one\t1\n(this\t2\nthis,’\t1\nthis,”\t1\nthis,\t23\nthis;\t2\nthis:\t3\nthis!”\t2\nthis!\t2\nthis?”\t3\nthis?\t4\nthis.”\t1\nthis.\t8\nthis\t412\n‘This\t1\n“This\t7\nThis,\t1\nThis\t67\nTHIS\t1\n“This’ll\t1\nThistledown\t1\nThomas.\t1\nThomas\t2\nThornworthy.\t2\nThornworthy\t2\nThornworthy’s\t1\nthorough\t3\nthoroughbred\t1\nthoroughfare\t1\nthorough-fares,\t1\nthoroughly,\t1\nthoroughly\t3\nTHOS.\t1\n‘those\t6\nthose\t114\nThose\t5\n‘though\t1\n(though\t1\nthough,\t1\nthough?\t1\nthough\t143\nThough\t4\nthought,\t20\nthought;\t1\nthought:\t15\nthought!\t1\nthought.\t15\nthought\t108\nthoughtfully\t1\nthoughts,\t3\nthoughts;\t1\nthoughts:\t1\nthoughts?\t1\nthoughts.\t1\nthoughts\t10\nthousand,\t2\nthousand\t31\nthousands\t12\nthreadbare\t1\nthreaded\t1\nthreading\t1\nthread-papers\t1\nthreat,\t1\nthreaten\t1\nthreatened\t3\n‘three\t2\nthree,\t2\nthree!”\t1\nthree!\t1\nthree.\t1\nthree\t59\n“Three.”\t1\nThree\t1\nthree-cornered\t1\nthree-fourths\t1\nthree-quarters\t1\nthreshold,\t1\nthrew\t6\nthriven\t1\nthroat,\t2\nthroat;\t1\nthroat.\t2\nthroat\t1\nthrone\t1\nthrong,\t1\nthrong;\t1\nthrong\t2\nthronged\t1\n‘through’\t1\nthrough,\t2\nthrough.”\t1\nthrough.\t2\nthrough\t91\nThrough\t6\nthroughout\t7\nThroughout\t3\nthrow;\t1\nthrow\t9\nthrowing\t4\nthrown\t4\nthrush.\t1\nthrushes,\t1\nthrushes\t1\nthrust\t2\nthrusting\t1\nthumb,\t1\nthumb\t2\nthumbs\t1\nthump.\t1\nthump\t1\nthumping\t1\nthunder,\t1\nthunder\t1\nthunder-clap,\t1\nthus,\t5\nthus:\t1\nthus\t24\nThus\t8\nthyme.\t1\nticket!\t1\nticket\t3\ntickets\t1\nticking\t1\ntide,\t1\ntidy\t1\ntie,\t2\ntie”;\t1\ntie\t5\ntied\t2\nties,\t1\nties\t1\ntiger!”\t1\ntiger\t2\ntight,\t1\ntight!”\t1\ntight\t4\ntightened\t1\ntightening\t1\ntightly.\t1\ntightly\t5\ntightly-buttoned\t1\ntiled\t2\ntiles,”\t1\ntiles,\t1\ntiles\t1\n“till\t1\ntill,\t3\ntill\t41\ntilted\t1\ntimber\t1\ntime,”\t4\ntime,\t19\ntime;\t4\ntime!’\t1\ntime!”\t3\ntime!\t3\ntime.”\t3\ntime.\t18\ntime\t88\nTime,\t1\nTime\t2\ntimely\t1\ntime’s\t1\ntimes,”\t1\ntimes,\t4\ntimes;\t2\ntimes.\t2\ntimes\t15\nTimes,\t3\nTimes\t4\n“Timothy\t1\nTimothy,\t5\nTimothy;\t1\nTimothy?\t1\nTimothy.\t5\nTimothy\t20\n“Timothy’s\t1\nTimothy’s,\t6\nTimothy’s;\t1\nTimothy’s.\t3\nTimothy’s\t22\ntinge,\t1\ntinge\t3\ntinged\t1\ntingling\t1\ntinkle\t1\ntint\t1\ntints,\t1\ntiny,\t2\ntiny\t2\ntip.\t1\ntip\t3\ntips\t3\ntiptoe,\t1\ntired,\t6\ntired;\t1\ntired\t7\nTired\t1\ntiring;\t1\ntiring\t2\n..Titian\t1\nTitian’s\t1\ntitle.\t1\ntitle\t3\ntitles\t1\n‘to\t1\n“to\t2\nto,”\t1\nto,\t9\nto!”\t2\nto!\t3\nto?\t1\nto.”\t2\nto.\t7\nto\t2782\n‘To\t1\nTo.\t1\nTo\t45\nTO\t2\ntoad!\t1\ntoast\t1\ntoasts\t1\ntobacco.\t1\nto-day,\t1\nto-day\t3\ntoday,”\t1\ntoday\t1\nTo-day\t1\nto-day’s\t1\ntoddler\t1\ntoe,\t1\ntoe.\t1\ntoe\t1\ntogether,\t12\ntogether;\t4\ntogether!”\t1\ntogether.”\t1\ntogether.\t3\ntogether’\t1\ntogether\t21\nto-go-my-way.\t1\ntoilet.\t1\ntoilettes,\t1\ntoken\t1\n“told\t2\ntold,\t7\ntold:\t1\ntold.\t1\ntold\t61\ntolerant\t1\ntolerate\t1\ntolerated\t1\ntomb;\t1\ntomb.\t1\ntom-cat,\t1\nTomm\t1\nTomms’.\t1\nTommy,\t1\nTommy\t1\nto-morrow,”\t1\nto-morrow.\t2\nto-morrow\t1\ntomorrow.\t1\ntomorrow\t1\nto-morrow’s\t1\n“Tom’s\t1\ntone,\t2\ntone:\t1\ntone\t6\ntongue,\t2\ntongue.\t1\ntongue\t3\ntongues,\t1\ntongues\t1\nto-night.”\t1\n‘too\t1\n—“too\t1\ntoo,\t59\ntoo;\t5\ntoo!”\t3\ntoo!\t2\ntoo?”\t1\ntoo.”\t2\ntoo.\t9\ntoo\t135\n‘Too\t1\n“Too\t1\nToo\t3\ntook\t110\ntooth)\t1\ntop,\t1\ntop;\t1\ntop\t23\ntop-hats\t1\ntops\t3\ntore\t1\ntorment\t1\ntormenting\t1\ntorments\t1\ntorn,\t1\ntorn\t2\ntorpid\t1\ntortoise-shell\t1\ntortoiseshell\t1\ntortuous\t1\ntorture\t2\ntortured.\t1\ntortured\t2\ntortures\t2\ntorturing\t1\ntotal\t5\ntoto;\t1\ntouch\t16\ntouched,\t2\ntouched\t13\ntouching,\t1\ntouching;\t1\ntouching\t2\ntouchingly\t1\ntouchstone\t1\ntouchy,\t1\ntouchy\t1\ntough\t1\ntoughen\t1\ntoughest\t1\ntour\t1\ntow,\t1\ntoward\t2\ntowards\t53\nTowards\t3\ntow-coloured\t1\ntowel.\t1\ntower;\t1\ntower\t1\ntown,\t3\ntown;\t2\ntown.\t2\ntown\t7\nTown\t1\ntowns;\t1\ntown-stroller,\t1\ntrace,\t1\ntrace\t1\ntracery\t1\ntraces\t3\ntrack\t1\ntracking\t1\ntrade,\t1\ntrade.’\t1\ntrade\t1\ntradition,\t1\ntradition\t2\nTradition,\t1\ntraditional\t1\ntraditions.\t1\nTrafalgar\t1\ntraffic,\t2\ntraffic;\t1\ntraffic!\t1\ntraffic.\t4\ntragedies\t1\ntragedy,\t3\ntragedy!\t1\ntragedy?\t2\ntragedy.\t1\ntragedy\t5\ntragic\t1\ntragi-comic\t1\ntrail.\t1\ntrail\t1\ntrain,”\t1\ntrain.\t1\ntrain\t5\ntrained\t1\ntraining\t1\ntrait\t2\ntra-la-la!\t1\ntram-line,\t1\ntrample\t1\ntrampled\t1\ntrampling\t1\ntramps,\t1\ntrance.\t1\ntranquillity.”\t1\ntranquilly\t1\ntransaction.\t1\ntransaction\t2\ntransactions\t1\ntransfer\t2\ntransition\t1\ntransmit\t1\ntransparency\t1\ntransparent,\t1\ntransparent\t2\ntranspired\t1\ntrap\t1\nTraquair,\t1\nTraquair\t2\ntrash!\t2\ntravel,\t1\ntravelled\t3\ntravelling\t6\ntravels;\t1\ntraversed\t2\ntray\t1\ntread,\t1\ntreadmill,\t1\ntreason\t1\ntreasure\t1\ntreasures,\t1\ntreat,’\t1\ntreat\t3\nTreat\t1\ntreated\t2\ntreatment\t2\ntreble\t1\ntree,\t9\ntree;\t1\ntree!”\t1\ntree.”\t1\ntree.\t2\ntree\t7\ntrees,\t6\ntrees;\t1\ntrees.”\t1\ntrees.\t2\ntrees\t12\ntree-stump\t1\ntree-trunks,\t1\nTreffry,\t2\nTreffry!\t1\nTreffry\t4\ntrellis\t1\ntremble\t1\ntrembled\t2\ntrembling,\t3\ntrembling\t6\ntremendous\t3\ntremendously.”\t1\ntremors\t1\ntremulous\t2\ntrend\t3\ntrial,\t1\ntrial.\t1\nTrial\t1\ntriangle,\t1\ntribal\t1\ntribe\t1\ntrick\t2\ntricks\t1\ntried,”\t1\ntried,\t1\ntried\t29\ntries\t1\ntrifle,\t2\ntrifle:\t1\ntrifle\t1\ntrifled\t1\ntrifling\t1\ntriumph,\t2\ntriumph.\t1\ntriumph\t4\ntriumphed\t1\ntriumphs\t1\ntrivial\t1\ntrod\t1\ntrot,\t2\ntrotted\t1\ntrouble,\t3\ntrouble!”\t1\ntrouble.\t3\ntrouble\t12\ntroubled,\t1\ntroubled\t7\ntroubles,\t2\ntroubles.\t2\ntroubles\t3\ntrousers,\t1\ntrousers;\t1\ntrousers.\t3\ntrousers\t1\ntrue,”\t1\ntrue,\t3\ntrue.\t2\ntrue\t12\ntruly,\t3\ntruly\t1\ntrunk,\t3\ntrunk\t5\ntrust\t6\ntrusted\t1\ntrustee\t1\ntrustees\t2\ntrusteeships\t1\ntrustful,\t1\ntrustfulness\t1\ntrusting\t2\ntruth,\t2\ntruth\t3\nTruth\t1\ntruthfully\t2\ntry\t7\ntrying,\t1\ntrying\t15\ntryst.\t1\ntrysts,\t1\ntubs.\t1\ntucked\t1\ntugged\t1\ntugging\t2\ntulle\t3\ntumbler\t1\ntune,\t1\ntune.\t1\ntune\t2\ntunes,\t1\nTunisian\t1\ntureen.\t1\nturf,\t1\nturfed;\t1\nturkey-cock\t2\nTurkish\t2\nturmoil\t2\nturn,\t4\nturn.\t1\nturn\t28\nturned,\t4\nturned;\t1\nturned.\t3\nturned\t85\nTurner,’\t1\nTurner,\t1\nTurners,\t1\nturning,\t4\nturning\t18\nTurning\t4\nturn-out\t2\nturns,\t1\nturn-up\t1\nTussocks\t1\ntwang\t1\ntweaked\t1\nTweetyman,\t2\nTweetyman:\t1\ntwelve.\t2\ntwelve\t15\ntwentieth\t1\ntwenty\t9\ntwenty-five\t2\ntwenty-one\t1\ntwenty-three\t2\n“Twenty-two\t1\ntwice,\t2\ntwice;\t1\ntwice.\t1\ntwice\t7\nTwice\t1\ntwig.\t1\ntwin,\t1\ntwined\t1\ntwinkle.\t1\ntwinkle\t2\ntwinkled.\t2\ntwinkled\t1\ntwinkling\t1\ntwins,\t3\ntwirled\t1\ntwirling\t1\ntwist,\t1\ntwist\t1\ntwisted,\t1\ntwisted\t9\ntwisting\t2\nTwisting\t1\ntwitched,\t1\ntwitched;\t1\ntwitched\t2\ntwitching\t2\n“two\t1\ntwo,\t7\ntwo!”\t1\ntwo!\t1\ntwo?\t1\ntwo.\t2\ntwo’\t6\ntwo\t82\nTwo\t4\ntwopence\t1\n‘twopenny’\t1\ntwopenny\t1\nTynemouth\t1\ntype,\t1\ntype?”\t1\ntype\t2\ntypical\t1\ntypicality\t1\ntypified\t1\nugliest\t1\nugly\t2\nultimate\t1\nultimately,\t1\nultimately\t2\n‘Ultra\t1\numbrella,\t3\numbrella.\t1\numbrella\t13\nunable,\t1\nunable\t11\nunaccountable\t1\nunaccountably,\t1\nunaccustomed.\t1\nunaccustomed\t2\nunaffected\t1\nunalterably\t1\nunashamed,\t1\nunashamed.\t1\nunattached.\t1\nunbearable\t2\nunbecoming;\t1\nunbecoming\t2\nunbelievable\t1\nunbending,\t1\nunbosomed\t1\nunbreakable\t1\nunbroken,\t1\nuncannily\t1\nuncanny\t2\nuncertain\t1\nuncertainty,\t2\nuncertainty.\t1\nunchanged\t1\nuncharacteristic\t1\nuncle,\t2\nuncle?”\t1\nuncle?\t1\nuncle.\t1\nuncle\t7\n‘Uncle\t1\n“Uncle\t3\nUncle.\t1\nUncle\t30\nuncle’s\t3\nuncles\t1\nuncomfortable,\t1\nuncomfortable.\t1\nuncomfortable\t1\nuncommon\t1\nuncomplicated\t1\nuncompromising\t1\nunconnected\t1\nunconquerable\t1\nunconscious,\t1\nunconscious.\t1\nunconscious\t7\nunconsciously,\t1\nunconsciously\t4\nuncontrollable\t4\nUndaunted\t1\nundemonstrative.\t1\nunder\t90\nUnder\t3\nunderfoot\t1\nundergo\t1\nundergone\t1\nunderground.\t1\nunderground\t2\nUnderground.\t1\nUnderground).\t1\nUnderground\t1\nunderlies\t1\nunderlying\t4\nundermined\t1\nunderneath\t2\n“Underneath\t1\nUnderneath\t1\nunderstand,”\t1\nunderstand?”\t1\nunderstand\t14\n“Understand,”\t1\nunderstanding\t3\nunderstood.\t1\nunderstood\t7\nundertaken\t1\n‘undertaking,’\t1\nundertaking\t1\nundertook,\t1\nunderwent\t1\nunderwriter;\t1\nunderwriter\t1\nundesirable\t1\nundiscovered\t1\nundoing\t1\nundoubted.\t1\nundoubted\t2\nundoubtedly\t8\nundreamed\t1\nuneasily,\t1\nuneasily\t1\nUneasily,\t1\nuneasiness.\t1\nuneasiness\t7\nuneasy,\t1\nuneasy!\t1\nuneasy.\t3\nuneasy\t5\nUneasy\t1\nunequal\t1\nunerring\t1\nunexpected,\t2\nunexpected;\t1\nunexpectedly,\t1\nunexpectedly;\t1\nunexpectedly.\t1\nunexpectedly\t1\nunfaithful.\t1\nunfathomable\t2\nunfathomably\t1\nunfinished,\t1\nunfinished\t3\nunfortunate,\t1\nunfortunate\t7\nunfortunately,\t2\nunfortunately\t4\nunfriendly\t1\nunglossed!\t1\nungrateful\t1\nunhallowed\t1\nunhappy\t3\nuniform\t1\nunintelligible\t2\nunintentionally\t1\nunion,\t1\nunique,\t1\nunique\t1\nunit\t1\nunited\t1\nunity,\t1\nunity\t1\nuniversal\t2\nuniversally\t3\nuniverse.\t1\nunjustifiable,\t1\nunkindly\t1\nunknown,\t1\nunknown.\t1\nunknown\t4\nunless\t12\nunlighted,\t1\nunlike,\t1\nunlike\t5\nUnlike\t1\nunlikely;\t2\nunlikely.\t1\nunlikely\t1\n“Unlock\t1\nUnlock\t1\nunlocked,\t1\nunlovable,\t1\nunmade.\t1\nunmeaning,\t1\nunmistakable\t2\nunmitigated\t1\nunmoved,\t1\nunmoving\t1\nunnamable\t1\nunnameable,\t1\nunnamed,\t1\nunnecessary\t2\nunnoticed.\t1\nunnumbered\t2\nUnobserved\t1\nunoccupied,\t1\nunostentatious\t2\nunpardonable\t1\nunpleasant\t6\nunpleasantly\t1\nunpleasantness.\t2\nunpractical,\t1\nunpractical.\t1\nunpractical\t3\nunprecedented\t1\nUnprecedented\t1\nunpretentious,\t1\nunprofitable.\t1\nunquestionably\t1\nunread\t1\nunreadable,\t1\nunreal,\t2\nunreal.\t1\nunreasonable,\t1\nunreasonable\t1\nunreasonableness\t1\nunreasonably\t2\nunreasoning,\t1\nunregarded,\t1\nunreliable\t1\nunresponsive,\t1\nunsafe\t1\nunsatisfied.\t1\nunsay\t1\nunseeing\t1\nunseemliness\t1\nunseen,\t2\nunseen\t2\nunseizable\t2\nunshaven\t1\nunspoken\t2\nunstained,\t1\nunsupported\t1\nUntangling\t1\nuntil\t19\nuntimely\t1\nunto\t3\nuntouched.\t1\nuntouched\t1\nuntuned\t1\nunturned\t1\nunusual,\t1\nunusual;\t1\nunusual.\t3\nunusual\t4\nunusually\t1\nunwilling\t1\nunwillingly\t1\nunwisely\t1\nunwonted\t2\nunwritten\t1\nup,’\t1\nup,\t30\nup;\t1\nup!”\t1\nup!\t2\nup?\t1\nup.’\t1\nup.”\t1\nup.\t18\nup\t238\nuphill,\t1\nupholstered\t2\nuplifted\t1\nupon\t59\nUpon\t2\nupper\t16\nUpper\t1\nupper-middle\t6\nupraised\t1\nupright,\t4\nupright\t5\nUpright\t1\nupset,\t1\nupset.\t3\nupset\t9\nupstairs,\t5\nupstairs.\t5\nupstairs\t4\nupturned,\t1\nupturned\t1\nupward,\t1\nupward\t2\nupwards\t2\nurges\t1\nus,\t2\nus!”\t2\nus?\t2\nus.”\t1\nus.\t4\nus),\t1\nus)\t1\nus\t15\nusage\t1\nuse,\t3\nuse.\t1\nuse\t15\nused,\t1\nused\t29\nuseful\t3\nuseless!\t1\nuseless\t1\nUseless,\t1\nUseless\t1\nuses\t1\nusher\t1\nUshers,\t1\nusing\t4\nusual,\t1\nusual\t9\nusually\t7\nutmost\t2\nutter\t1\nutterance.\t1\nutterances\t1\nuttering\t1\nutterly\t2\nv.\t9\nvagabond,\t1\nvagabonds\t1\nvague,\t4\nvague\t9\nvaguely\t3\nvalet\t1\nValley,\t1\nvaluable\t3\nvalue,\t1\nvalue;\t1\nvalue.”\t1\nvalue.\t2\nvalue\t9\nvalues,\t1\nvalues\t1\nvan\t1\nvanished.\t2\nvanished\t2\nvanishing\t1\nvanity.\t1\nvapour\t2\nvariance\t1\nvarious\t2\nvarnish\t1\n‘Varsities\t1\nvarying\t2\nvase,\t1\nvase\t1\nvast,\t1\nvast\t3\nvault,\t1\nvault:\t1\nvault\t1\nveal;\t1\nvehicle,\t1\nvehicle\t2\nveil,\t2\nveil.\t1\nveil\t2\nveiled\t2\nVeiling\t1\nveined\t2\nveins,\t1\nveins;\t1\nveins\t1\nvelvet\t6\nvelvetiness,\t1\nvelvety\t1\nVenetian\t1\nvengeance,\t1\nVenice.\t1\nvent\t1\nventure\t1\nventured:\t1\nventuring\t1\n‘Venus\t1\nverbiage\t1\nverge\t2\nverging.\t1\nverging\t1\nversed\t1\nvertical\t1\n‘very\t4\n“very.”\t1\nvery!\t1\nvery\t188\n‘Very\t2\n“Very\t5\nVery\t4\n“Very-pretty!”\t1\nvessel,\t1\nvestibule,\t1\nVeuve\t1\nvexation.\t2\nvexation\t1\nvexatious\t1\nvexed,\t3\nvexed\t1\nvibrating.\t1\nvibrations\t1\nvicariously,\t1\nvice.\t1\nvice\t1\nvicious\t1\nvictim,\t1\nvictim\t2\nVictoria,\t1\nVictoria\t3\nVictorian\t2\nvictory,\t1\nvictory\t2\nVictory\t1\n‘vieux\t1\nvieux\t1\nview,\t3\nview;\t1\nview!”\t1\nview.”\t1\nview.\t1\nview\t20\nviews.\t1\nviews\t2\nvigil\t1\nVigor\t1\nvigorous\t1\nvigour\t1\nvineyard\t1\nviolated\t1\nviolence,\t1\nviolence\t2\nviolent;\t1\nviolent\t4\nviolently\t1\nviolet\t1\nviolets.\t3\nviolets\t1\nviolin.\t1\nviolin\t1\nvirtue,\t1\nvirtue\t6\nvisage.\t1\nvisible,\t1\nvisible\t4\nvision,\t1\nvision:\t1\nvision\t3\nvisions\t2\nVisions\t1\nvisit,\t2\nvisit.\t1\nvisit\t24\nvisited\t2\nVisited\t1\nvisiting\t2\nvisitor\t2\nvisitor’s\t1\nvisitors.\t1\nvisitors\t3\nvisits.\t1\nvisits\t2\nvista\t2\nvistas\t1\nvital\t3\nvitality.\t1\nvitality\t2\nvitalized\t1\nvivid\t3\nvividly.\t1\nvividly\t1\nVivisectionist,’\t1\nvocabulary.\t1\nvocation.\t1\nvocations,\t1\nvocations.\t1\nvogue\t1\nvoice,\t12\nvoice;\t2\nvoice:\t8\nvoice.\t5\nvoice\t20\nvoiced\t2\nvoices,\t2\nvoices\t8\nvoicing,\t1\nvolatile\t1\nvolubility\t1\nvolunteered\t1\nvote\t1\nVoyage\t1\nvulgar?\t1\nvulgar\t2\nwaddled\t1\nwade\t1\nwag,\t1\nwag;\t1\nwager;\t1\nWagner.\t1\nWagner\t1\nwaifs;\t1\nwaistcoat,\t5\nwaistcoat\t4\nwaistcoats,\t3\nwaistcoats\t4\nwait,\t1\nwait;\t1\nwait\t10\nwaited,\t2\nwaited.\t2\nwaited\t10\nwaiter,\t1\nwaiter\t2\nwaiters\t1\nwaiting,\t3\nwaiting.\t1\nwaiting\t31\nWaiting\t1\nwake\t1\nWales.\t1\nWales\t3\nwalk,\t3\nwalk.\t1\nwalk\t12\nwalked\t44\nwalking\t21\nWalking\t1\nwalking-stick.\t1\nwall,\t6\nwall;\t3\nwall.\t6\nwall’\t1\nwall\t6\nwalled\t1\nwallflowers\t1\nwall-papers\t1\nwalls,\t7\nwalls\t10\nWalmisley’s,\t1\nWalmisley’s\t1\nWalter\t2\nwaltz,\t1\nwaltz.\t2\nwaltz\t4\nWaltz\t1\nwaltzes,\t1\nwan\t1\nwander\t2\nwandered,\t1\nwandered\t8\nwandering,\t1\nwandering.\t1\nwandering\t5\nwanderings;\t1\nwant,\t5\nwant;\t1\nwant?”\t5\nwant.\t3\nwant\t63\n“Want\t1\nwanted,\t3\nwanted.\t1\nwanted\t32\nwanting\t4\n“wants\t1\nwants.\t1\nwants\t5\nwar.\t1\nwardrobe,\t1\nwares,\t1\nwar-horse\t1\nwarily\t1\nwarm,\t1\nwarm;\t1\nwarm\t13\nwarmed\t3\nwarming\t1\nwarmly,\t1\nwarmly:\t1\nwarmly.\t1\nWarmson?”\t1\nWarmson\t2\nwarmth,\t4\nwarmth;\t1\nwarmth\t4\nwarned\t3\nwarning;\t1\nwarning\t1\nwarpath\t1\nwarped\t1\nwarren,\t1\nwarren.\t1\nwarren\t2\nWarry,\t1\n‘was\t1\n“was\t2\nwas,\t29\nwas;\t2\nwas:\t3\nwas!’\t1\nwas.”\t1\nwas.\t4\nwas\t1702\n“Was\t2\nWas\t8\nwash\t2\nwashed\t2\nwashes\t1\nwashing.\t1\nwashing\t1\nwash-stand,\t1\nwasn’t\t9\nWasn’t\t1\nwaste,”\t1\nwaste\t1\n“Waste\t1\nwasted\t1\nwasteful\t1\nwasting\t4\nwatch,\t2\nwatch;\t1\nwatch.\t1\nwatch\t8\nwatched,\t1\nwatched.\t2\nwatched\t15\nwatchers\t2\nwatchfulness\t1\nwatching,\t3\nwatching.\t3\nwatching\t23\nWatching\t1\nwater,\t9\nwater!\t1\nwater.’\t1\nwater\t7\nWater\t1\nWaterbuck,\t11\nWaterbuck\t1\nWaterbuck’s\t1\nwater-cart,\t1\nwater-colour\t2\nwatercolour\t2\nwater-colours;\t1\nwater-colours.\t1\nwater-colours\t1\nwatered\t1\nwatering-places.\t1\nwaters\t2\nWatteau,\t1\nwave,\t1\nwave\t3\nwaved\t3\nwaver.\t1\nwaver\t1\nwavered,\t2\nwaves\t2\nwaving\t2\nwax\t1\nwaxed\t1\nwaxwork,\t1\nway,”\t2\nway,\t18\nway;\t3\nway:\t2\nway.”\t1\nway.\t16\nway’\t1\nway);\t1\nway\t88\nways.\t1\nways\t4\nwayside\t1\n“we\t1\n(we\t1\nwe?\t1\nwe\t34\n‘We\t1\n“We\t5\nWe\t15\nweak,\t1\nweak\t3\nweakness,\t1\nweakness.\t1\nweakness\t1\nweaknesses\t1\nwealth,\t2\nwealth\t2\nwealthy,\t1\nwear\t2\nweariness\t1\nwearing\t9\nweather!\t1\nweather\t3\nweb\t2\nwe’d\t1\nWe’d\t1\nwedded\t1\nwedding\t3\nwedlock,\t1\nwedlock.\t1\nweed,\t1\nweed;\t1\nweek,\t5\nweek;\t2\nweek!”\t1\nweek.”\t1\nweek.\t1\nweek\t4\nweek’s\t1\nweeks,\t1\nweeks!\t1\nweeks.\t3\nweeks\t3\nweeping,\t1\nweigh\t1\nweighed\t2\nweighing\t2\nweight;\t1\nweight!”\t1\nweight\t4\nweird,\t1\nweird\t2\nwelcome\t1\nwelcomed.\t1\nwelcomed\t1\nwelfare,\t1\nwe’ll\t3\nwell,”\t4\nwell,\t14\nwell;\t2\nwell!”\t1\nwell?”\t1\nwell.’\t1\nwell.”\t1\nwell.\t7\nwell\t58\n“We’ll\t1\n“Well,”\t17\n“Well,\t30\n“Well!”\t1\n“Well!\t2\n“Well\t1\nWe’ll\t2\nWell,\t5\nWell\t1\nwell-aired,\t1\nwell-arranged.\t1\nwell-brushed,\t1\nwell-constituted\t1\nwell-curled\t2\nwell-dressed\t3\nwell-earned\t1\nwelled\t1\nwell-educated\t1\nwell-fed\t1\nwell-flavoured,\t1\nwell-known\t5\nwells,\t1\nwell-shaved,\t1\nWelsh,\t1\nwelshed\t1\nwench!\t1\nwended\t1\n“went\t1\nwent,\t2\nwent.”\t1\nwent.\t1\nwent\t150\nwept\t1\nwe’re\t4\nwere,\t8\nwere!”\t1\nwere!\t1\nwere?\t1\nwere.\t3\nwere)\t1\nwere\t400\n“We’re\t2\n“Were\t1\nWe’re\t3\nweren’t\t2\nWest\t3\nwestwards.\t2\nwet,\t1\nwet.\t1\nwet\t1\nwetted\t1\nwetting\t1\n“we’ve\t2\nwe’ve\t3\n‘what\t1\n“what\t4\nwhat,”\t1\nwhat,\t3\nwhat!\t1\nwhat?”\t2\nwhat?\t1\nwhat.\t4\nwhat\t265\n..What\t1\n‘What\t2\n“What,”\t1\n“What,\t2\n“What?”\t2\n“What?\t2\n“What\t35\nWhat,”\t1\nWhat?\t2\nWhat\t68\nwhatever\t10\nwhat’ll\t1\nWhat’ll\t1\n“what’s\t1\nwhat’s\t13\n“What’s\t6\nWhat’s\t6\nWhat’s-his-name\t1\nwhatsoever\t1\nwheel\t2\nwheelbarrows\t1\nwheeling\t1\nwheels:\t1\nwheels\t1\nwheezed\t2\nwhen,\t3\nwhen\t179\n“When”—\t1\n“When\t1\nWhen,\t3\nWhen\t28\nwhence,\t1\nwhence\t9\nWhence\t2\nwhenever\t5\n“When’s\t2\nwhere,”\t1\nwhere,\t11\nwhere?\t1\nwhere\t115\n“Where\t5\nWhere\t8\nwherein\t1\nwhereon\t1\nwherever\t2\nwhether,\t1\nwhether\t41\n‘Whether\t1\nWhether\t2\nwhich,\t20\nwhich?\t1\nwhich\t337\nWhich?\t2\nWhich\t1\nwhile.\t1\nwhile\t28\nWhile\t4\nwhiles\t1\nwhilst\t1\nwhimpered\t1\nwhip,\t3\nwhip\t1\nwhip-lash\t1\nwhipped\t2\nwhippersnapper\t1\nwhirring\t1\nwhisker,\t1\nwhisker\t1\nwhiskers,\t2\nwhiskers;\t2\nwhiskers.\t2\nwhiskers).\t1\nwhiskers\t2\nwhisper,\t1\nwhisper.\t1\nwhispered,\t1\nwhispered\t4\nwhispering\t1\nwhispers\t1\nWhispers\t1\nwhistle:\t1\nwhistled\t1\nwhistles\t1\nwhistling\t2\n“white\t1\nwhite,\t3\nwhite.\t2\nwhite\t55\nwhitebait,\t1\nwhite-bearded\t1\nwhite-haired,\t1\nWhiteley’s\t1\nwhitened\t1\nwhiteness\t3\nwhiter,\t1\nwhite-tiled\t1\nwhite-walled\t1\nwhitewashed\t1\nwhitewood\t1\nWhither\t1\n“who\t1\n(who\t1\nwho,\t21\nwho\t231\n“Who?”\t2\n“Who\t6\nWho\t9\nWHO\t1\nwho-knows-what\t1\nwho-knows-whom,\t1\nwhole,\t1\nwhole.\t2\nwhole\t36\nwhole-hearted\t1\nwholehearted\t1\nwhom,\t1\nwhom\t50\nwho’s\t1\n“Who’s\t1\nWho’s\t1\nwhose\t37\n“Whose\t1\nwhosoever\t1\n‘why,\t1\n(why\t1\nwhy,\t4\nwhy?”\t2\nwhy.\t2\nwhy\t22\n‘Why\t1\n“Why,”\t1\n“Why,\t4\n“Why!”\t1\n“Why?”\t1\n“Why\t14\nWhy,\t4\nWhy!\t2\nWhy\t17\nwicker\t3\nwide,\t3\nwide\t6\nwider,\t2\nwider\t2\nwidow\t1\nwielded\t1\nwife,\t13\nwife;\t3\nwife!”\t3\nwife?\t3\nwife.\t6\nwife\t46\nwifely\t1\nwife’s\t18\nwig;\t1\nwig.\t1\nwig\t2\nWigmore\t2\nwigs,\t1\nwild,\t1\nwild!\t1\nwild\t19\nwilderness,\t1\nwilderness\t1\nwilful\t1\n“will\t2\nwill,\t3\nwill;\t1\nwill!”\t3\nwill.\t2\nwill\t73\n“Will\t4\nWill,”\t2\nWill,\t1\nWill;\t3\nWill.\t1\nWill\t8\nWilliam\t1\nwilling\t1\nwills.\t1\nwin\t4\nwind,\t2\nwind;\t1\nwind.\t2\nwind\t3\nwinded\t1\nwinding\t1\nwind-memories\t1\nwindow,\t6\nwindow;\t1\nwindow.\t11\nwindow\t15\nwindow-panes,\t1\nwindows.\t1\nwindows\t3\nWindows\t1\nWindsor\t1\nwindy\t1\nwine,”\t1\nwine,\t1\nwine!”\t1\nwine!\t1\nwine.”\t1\nwine.\t4\nwine\t10\nwine-cellar,\t1\nwine-glasses\t1\nWine’s\t1\nwing.\t1\nwing\t1\nwings.\t1\nwings\t4\nWinifred,\t4\nWinifred.”\t1\nWinifred.\t3\nWinifred\t19\n‘WINIFRED\t1\nWinifred’s,\t1\nWinifred’s\t3\nwink,\t1\nwinter,\t2\nwinter.\t2\nwinter\t2\nWinter\t1\nwiped\t5\nwire\t2\nwires\t1\nwiry\t1\nwise,\t1\nwise\t2\nwisely\t1\nwish,”\t1\nwish\t18\nwished,\t1\nwished\t6\nwishes.\t1\nwishes\t1\nwispy,\t1\nWistaria\t5\nwistful\t3\nwistfully,\t2\nwistfully\t1\nwit.\t1\nwitchlike,\t1\nwith,\t3\nwith!\t1\nwith.\t4\nwith\t1029\n‘With\t1\nWith\t28\nwithdraw\t2\nwithdrawal,\t1\nwithdrawing\t1\nwithdrew.\t1\nwithdrew\t4\nwithered\t1\nwithin\t32\nWithin\t1\n‘without\t1\nwithout,\t1\nwithout\t95\nWithout\t12\nwithstand;\t1\nwithstand\t1\nwitness.\t1\nwitness\t2\nwitnessed.\t1\nwitnessed\t2\nwittiest\t1\nwitty,\t1\nwitty\t2\nwives,\t3\nwives;\t1\nwives!\t1\nwives.\t2\nwives\t4\nwobbling\t1\nwoke.\t1\nwoke\t1\nwoman,”\t1\nwoman,\t15\nwoman!”\t3\nwoman!\t3\nwoman?”\t1\nwoman?\t1\nwoman.\t3\nwoman\t50\nwomankind\t1\nwoman’s\t6\nWoman’s\t1\n“women\t1\nwomen,\t7\nwomen;\t1\nwomen!\t4\nwomen.\t1\nwomen\t17\n‘Women!’\t1\n“Women\t1\nWomen\t1\nWomen’s\t1\nwon\t3\nwonder,”\t1\nwonder,\t2\nwonder!”\t1\nwonder!\t1\nwonder?”\t1\nwonder.\t4\nwonder\t18\nwondered\t6\nwonderful,\t1\nwonderful\t8\n“Wonderful!\t1\nWonderful\t1\nwondering,\t1\nwondering\t1\nwon’t,\t1\nwon’t!\t1\nwon’t.\t2\nwon’t\t19\nwont,\t1\nwont\t5\n“Won’t\t2\nwood,\t3\nwood.\t1\nwood\t3\nWood,\t2\nwood-cutter\t1\nwooden\t1\nwooings\t1\nWoollen\t1\nWorcester.”\t1\nWorcester.\t1\nword,\t11\nword.”\t1\nword.\t7\nword)—\t1\nword\t26\nword-analysis\t1\nwords,\t10\nwords:\t5\nwords?\t1\nwords.\t6\nwords\t31\nwore,\t1\nwore.\t2\nwore\t13\n‘work\t1\nwork,\t12\nwork.”\t2\nwork.\t3\nwork\t21\nworked,\t1\nworked\t7\nworking,\t1\nworking\t7\nworkmanship,\t1\nworkmen\t1\nworks\t4\nWork’s\t1\nworld,\t4\nworld.\t5\nworld\t24\nworldly,\t1\nworld’s’\t1\nworld’s\t2\nworlds,\t1\nworlds\t1\nwormed\t1\nworms,\t1\nworn,\t2\nworn.\t1\nworn\t11\nworried,\t1\nworried\t6\nworries\t2\nworry,\t2\nworry\t4\nworrying;\t1\nworrying\t3\n(worse,\t1\nworse.\t3\nworse\t6\nworship\t1\nworshippers\t1\nworst,\t1\nworst.\t1\nworst\t1\nWorst\t1\nworth.\t2\nworth\t18\nworthy.\t1\nworthy\t7\nwould,\t9\nwould.\t3\nwould\t436\n“Would\t1\nWould\t3\n“wouldn’t\t1\nwouldn’t!\t1\nwouldn’t\t18\n“Wouldn’t\t1\nwounded\t2\nwounds\t1\nwoven\t1\nwrapped\t9\nwrapping\t1\nwrath\t1\nwreathed\t1\nwrenched\t1\nwresting\t1\n‘wretched\t1\nwretched\t3\nwretchedness.\t1\nwriggled.\t1\nwrinkled\t1\nwrist,\t1\nwrist;\t1\nwristband.\t1\nwrists\t1\nwrite\t6\nwriters\t1\nwrites!”\t1\nwrithing,\t1\nwriting,\t1\nwriting\t8\nwriting-paper.\t1\nwritings\t1\nwriting-table\t2\nwritten.\t1\nwritten\t3\nwro.\t1\nwrong,\t1\nwrong;\t2\nwrong.\t7\nwrong\t9\nwrong-doers\t1\nwrongs;\t1\nwrote:\t1\nwrote\t8\nXIII,\t1\nXIII.,\t1\nyard\t1\nyards\t2\nYarmouth,\t2\nYarmouth.\t1\nYarmouth\t1\nyawning,\t1\nye\t1\nyear,\t6\nyear;\t3\nyear!”\t1\nyear!\t2\nyear.”\t1\nyear.\t5\nyear),\t1\nyear\t18\nYear\t1\nyearly\t1\nyearned,\t1\nyearned.\t1\nyearning,\t2\nyearning\t5\nyear’s\t1\nyears,\t10\nyears;\t2\nyears!\t1\nyears.\t7\nyears’\t1\nyears\t40\nYear’s\t1\nYears\t1\nYEARS\t1\nyelled\t1\nyellow,’\t1\nyellow,\t1\nyellow\t7\nyellow-ochre\t1\nyeoman\t1\n‘yeomen’\t2\n“Yeomen\t1\nyes,\t2\nyes;\t1\nyes!\t1\nyes\t2\n‘Yes,’\t2\n‘Yes,\t1\n“Yes,”\t5\n“Yes,\t7\n“Yes!”\t1\n“Yes?”\t1\n“Yes.”\t8\n“Yes”\t1\n“Yes\t3\nYes,\t2\nYes?\t1\nyesterday:\t1\nyesterday\t3\nyet,\t7\nyet?”\t1\nyet.\t4\nyet\t45\n“Yet\t1\nYet,\t3\nYet\t8\nyew-tree\t1\nyield.\t2\nyield\t2\nyielded,\t1\nyielded.\t1\nyielded\t1\nyielding\t2\nyields\t1\n“you\t16\n(you\t1\n—“you\t1\nyou,’\t1\nyou,”\t7\nyou,\t27\nyou;\t4\nyou:\t1\nyou!”\t11\nyou!\t3\nyou?”\t10\nyou?\t5\nyou.’\t2\nyou.”\t5\nyou.\t7\nyou\t420\n‘You\t1\n“You,\t1\n“You\t51\n—‘You\t1\nYou,\t1\nYou\t39\n“you’d\t2\nyou’d\t12\n“You’d\t1\nYou’d\t3\nyou-do!”\t1\n“you’ll\t1\nyou’ll\t20\n“You’ll\t7\nYou’ll\t7\n(young\t2\nyoung,\t5\nyoung;\t2\nyoung.\t2\nyoung\t186\n“Young\t1\nYoung\t39\nyounger!”\t1\nyounger\t9\nYounger\t1\nyoungest,\t1\nyoungest\t2\nyoungling\t1\nyoung-man\t1\n“your\t1\nyour\t129\n‘Your\t5\n“Your\t9\nYour\t5\nyou’re\t23\n“You’re\t7\nYou’re\t6\nyours,\t1\nyours\t1\n‘Yours,\t1\n‘Yours\t4\n“Yours\t1\nyourself,”\t1\nyourself,\t2\nyourself;\t1\nyourself!”\t4\nyourself?”\t1\nyourself?\t1\nyourself.”\t1\nyourself.\t1\nyourself\t10\nyourselves.”\t1\nyouth,\t1\nyouth:\t1\nyouth.\t3\nyouth\t5\nYouth,\t1\n“you’ve\t1\nyou’ve\t24\n“You’ve\t8\nYou’ve\t4\nZ.\t1\nZealand!\t1\nZermatt,\t1\nZoo,”\t1\nZoo,\t2\nZoo;\t1\nZoo.\t3\nZoo\t2\n"
  },
  {
    "path": "mapreduce_hive/mr和hive过程及结果.txt",
    "content": "MapreduceͳƴƵ\r\n\r\n[root@master mr]# ls\r\nHarry_Potter_and_the_Sorcerers_Stone.txt  map_new.py  red_new.py  run.sh  The_Man_of_Property.txt\r\n[root@master mr]# vim run.sh \r\n[root@master mr]# bash run.sh \r\nrmr: DEPRECATED: Please use 'rm -r' instead.\r\nDeleted /movieoutput\r\n20/05/19 11:40:59 WARN streaming.StreamJob: -file option is deprecated, please use generic option -files instead.\r\npackageJobJar: [./map_new.py, ./red_new.py, /tmp/hadoop-unjar580504151660082487/] [] /tmp/streamjob6814476713590359870.jar tmpDir=null\r\n20/05/19 11:41:01 INFO client.RMProxy: Connecting to ResourceManager at master/192.168.179.10:8032\r\n20/05/19 11:41:01 INFO client.RMProxy: Connecting to ResourceManager at master/192.168.179.10:8032\r\n20/05/19 11:41:03 INFO mapred.FileInputFormat: Total input paths to process : 1\r\n20/05/19 11:41:04 INFO mapreduce.JobSubmitter: number of splits:2\r\n20/05/19 11:41:04 INFO mapreduce.JobSubmitter: Submitting tokens for job: job_1589857910921_0005\r\n20/05/19 11:41:04 INFO impl.YarnClientImpl: Submitted application application_1589857910921_0005\r\n20/05/19 11:41:05 INFO mapreduce.Job: The url to track the job: http://master:8088/proxy/application_1589857910921_0005/\r\n20/05/19 11:41:05 INFO mapreduce.Job: Running job: job_1589857910921_0005\r\n20/05/19 11:41:17 INFO mapreduce.Job: Job job_1589857910921_0005 running in uber mode : false\r\n20/05/19 11:41:17 INFO mapreduce.Job:  map 0% reduce 0%\r\n20/05/19 11:41:35 INFO mapreduce.Job:  map 50% reduce 0%\r\n20/05/19 11:41:36 INFO mapreduce.Job:  map 100% reduce 0%\r\n20/05/19 11:41:46 INFO mapreduce.Job:  map 100% reduce 100%\r\n20/05/19 11:41:47 INFO mapreduce.Job: Job job_1589857910921_0005 completed successfully\r\n20/05/19 11:41:47 INFO mapreduce.Job: Counters: 50\r\n\tFile System Counters\r\n\t\tFILE: Number of bytes read=1076619\r\n\t\tFILE: Number of bytes written=2485013\r\n\t\tFILE: Number of read operations=0\r\n\t\tFILE: Number of large read operations=0\r\n\t\tFILE: Number of write operations=0\r\n\t\tHDFS: Number of bytes read=636495\r\n\t\tHDFS: Number of bytes written=181530\r\n\t\tHDFS: Number of read operations=9\r\n\t\tHDFS: Number of large read operations=0\r\n\t\tHDFS: Number of write operations=2\r\n\tJob Counters \r\n\t\tKilled map tasks=1\r\n\t\tLaunched map tasks=2\r\n\t\tLaunched reduce tasks=1\r\n\t\tData-local map tasks=2\r\n\t\tTotal time spent by all maps in occupied slots (ms)=31952\r\n\t\tTotal time spent by all reduces in occupied slots (ms)=8711\r\n\t\tTotal time spent by all map tasks (ms)=31952\r\n\t\tTotal time spent by all reduce tasks (ms)=8711\r\n\t\tTotal vcore-milliseconds taken by all map tasks=31952\r\n\t\tTotal vcore-milliseconds taken by all reduce tasks=8711\r\n\t\tTotal megabyte-milliseconds taken by all map tasks=32718848\r\n\t\tTotal megabyte-milliseconds taken by all reduce tasks=8920064\r\n\tMap-Reduce Framework\r\n\t\tMap input records=2866\r\n\t\tMap output records=111818\r\n\t\tMap output bytes=852977\r\n\t\tMap output materialized bytes=1076625\r\n\t\tInput split bytes=188\r\n\t\tCombine input records=0\r\n\t\tCombine output records=0\r\n\t\tReduce input groups=16985\r\n\t\tReduce shuffle bytes=1076625\r\n\t\tReduce input records=111818\r\n\t\tReduce output records=16984\r\n\t\tSpilled Records=223636\r\n\t\tShuffled Maps =2\r\n\t\tFailed Shuffles=0\r\n\t\tMerged Map outputs=2\r\n\t\tGC time elapsed (ms)=595\r\n\t\tCPU time spent (ms)=5780\r\n\t\tPhysical memory (bytes) snapshot=503996416\r\n\t\tVirtual memory (bytes) snapshot=6232170496\r\n\t\tTotal committed heap usage (bytes)=263024640\r\n\tShuffle Errors\r\n\t\tBAD_ID=0\r\n\t\tCONNECTION=0\r\n\t\tIO_ERROR=0\r\n\t\tWRONG_LENGTH=0\r\n\t\tWRONG_MAP=0\r\n\t\tWRONG_REDUCE=0\r\n\tFile Input Format Counters \r\n\t\tBytes Read=636307\r\n\tFile Output Format Counters \r\n\t\tBytes Written=181530\r\n20/05/19 11:41:47 INFO streaming.StreamJob: Output directory: /movieoutput\r\n[root@master mr]# hadoop fs -cat /movieoutput/part-00000 | tail\r\nwill\t2\r\nwomen\t1\r\nwouldnt\t1\r\nyou\t16\r\nyour\t1\r\nyoud\t2\r\nyoull\t1\r\nyouve\t1\r\nof\t1\r\n\t34\r\n[root@master mr]# \r\n\r\n\r\n\r\nHive\r\n\r\nhive> drop table movie1;\r\nOK\r\nTime taken: 0.359 seconds\r\nhive> create table IF NOT EXISTS movie1(\r\n    > name string,\r\n    > score double,\r\n    > people int,\r\n    > type string,\r\n    > address string,\r\n    > time int,\r\n    > sum float)\r\n    > ROW FORMAT DELIMITED FIELDS TERMINATED BY ',';\r\nOK\r\nTime taken: 0.138 seconds\r\nhive> load data local inpath '/douban/movie.csv' into table movie1;\r\nLoading data to table default.movie1\r\nTable default.movie1 stats: [numFiles=1, totalSize=715178]\r\nOK\r\nTime taken: 0.678 seconds\r\nhive> select * from movie1 limit 10;\r\nOK\r\nФ˵ľ\t9.6\t692795\t/\t\t1994\t6650832.0\r\nɱֲ̫ \t9.4\t662552\t//\t\t1994\t6227989.0\r\nοռ\t9.2\t642134\t//ƻ//ð\t/Ӣ\t2010\t5907633.0\r\n\t9.4\t580897\t/\t\t1994\t5460432.0\r\nɵֱ\t9.1\t549808\t/ϲ//\tӡ\t2011\t5003253.0\r\n̩̹˺\t9.1\t535491\t//\t\t1998\t4872968.0\r\nӵ\t8.7\t534791\t/ϲ//\tй½/\t2010\t4652681.5\r\nǧǧѰ ǧǧL\t9.2\t525505\t//\tձ\t2001\t4834646.0\r\nɵƯ\t9.0\t489231\t//ð\t/̨/Ӣ/ô\t2012\t4403079.0\r\n\t9.4\t478523\t//ͬ\tй½/\t1993\t4498116.0\r\nTime taken: 0.107 seconds, Fetched: 10 row(s)\r\n\r\nhive> select name,score,sum,time from movie1 where sum > 1000000  distribute by score sort by score desc,sum desc limit 20;\r\nQuery ID = root_20200517171319_650cf520-d597-45e3-8bfc-e33ca801582a\r\nTotal jobs = 2\r\nLaunching Job 1 out of 2\r\nNumber of reduce tasks not specified. Estimated from input data size: 1\r\nIn order to change the average load for a reducer (in bytes):\r\n  set hive.exec.reducers.bytes.per.reducer=<number>\r\nIn order to limit the maximum number of reducers:\r\n  set hive.exec.reducers.max=<number>\r\nIn order to set a constant number of reducers:\r\n  set mapreduce.job.reduces=<number>\r\nStarting Job = job_1589684973687_0006, Tracking URL = http://master:8088/proxy/application_1589684973687_0006/\r\nKill Command = /usr/local/src/hadoop-2.6.5/bin/hadoop job  -kill job_1589684973687_0006\r\nHadoop job information for Stage-1: number of mappers: 1; number of reducers: 1\r\n2020-05-17 17:13:34,350 Stage-1 map = 0%,  reduce = 0%\r\n2020-05-17 17:13:46,403 Stage-1 map = 100%,  reduce = 0%, Cumulative CPU 3.29 sec\r\n2020-05-17 17:13:58,358 Stage-1 map = 100%,  reduce = 100%, Cumulative CPU 5.82 sec\r\nMapReduce Total cumulative CPU time: 5 seconds 820 msec\r\nEnded Job = job_1589684973687_0006\r\nLaunching Job 2 out of 2\r\nNumber of reduce tasks determined at compile time: 1\r\nIn order to change the average load for a reducer (in bytes):\r\n  set hive.exec.reducers.bytes.per.reducer=<number>\r\nIn order to limit the maximum number of reducers:\r\n  set hive.exec.reducers.max=<number>\r\nIn order to set a constant number of reducers:\r\n  set mapreduce.job.reduces=<number>\r\nStarting Job = job_1589684973687_0007, Tracking URL = http://master:8088/proxy/application_1589684973687_0007/\r\nKill Command = /usr/local/src/hadoop-2.6.5/bin/hadoop job  -kill job_1589684973687_0007\r\nHadoop job information for Stage-2: number of mappers: 1; number of reducers: 1\r\n2020-05-17 17:14:17,413 Stage-2 map = 0%,  reduce = 0%\r\n2020-05-17 17:14:26,223 Stage-2 map = 100%,  reduce = 0%, Cumulative CPU 1.49 sec\r\n2020-05-17 17:14:36,961 Stage-2 map = 100%,  reduce = 100%, Cumulative CPU 4.0 sec\r\nMapReduce Total cumulative CPU time: 4 seconds 0 msec\r\nEnded Job = job_1589684973687_0007\r\nMapReduce Jobs Launched: \r\nStage-Stage-1: Map: 1  Reduce: 1   Cumulative CPU: 5.82 sec   HDFS Read: 722439 HDFS Write: 1129 SUCCESS\r\nStage-Stage-2: Map: 1  Reduce: 1   Cumulative CPU: 4.0 sec   HDFS Read: 6202 HDFS Write: 1139 SUCCESS\r\nTotal MapReduce CPU Time Spent: 9 seconds 820 msec\r\nOK\r\nФ˵ľ\t9.6\t6650832.0\t1994\r\n \t9.5\t3114622.5\t1997\r\nɱֲ̫ \t9.4\t6227989.0\t1994\r\n\t9.4\t5460432.0\t1994\r\n\t9.4\t4498116.0\t1993\r\nյ\t9.4\t2884897.5\t1993\r\n̩̹˺ \t9.4\t1476495.6\t2012\r\nܶԱ \t9.3\t3922126.2\t2008\r\n\t9.3\t2647263.5\t2016\r\nʮŭ\t9.3\t1255025.8\t1957\r\nοռ\t9.2\t5907633.0\t2010\r\nǧǧѰ ǧǧL\t9.2\t4834646.0\t2001\r\nȮ˹Ĺ\t9.2\t3244039.5\t2009\r\n̸\t9.2\t2584013.2\t1972\r\n\t9.2\t2080405.2\t1939\r\nɵֱ\t9.1\t5003253.0\t2011\r\n̩̹˺\t9.1\t4872968.0\t1998\r\nǼʴԽ\t9.1\t3459274.0\t2014\r\n֮ʥȢ [ӛY֮\t9.1\t3332629.2\t2014\r\nè ȤʤΥȥ\t9.1\t3133293.8\t1988\r\nTime taken: 78.253 seconds, Fetched: 20 row(s)\r\n"
  },
  {
    "path": "mapreduce_hive/red_new.py",
    "content": "import sys\n\ncur_word = None\nsum = 0\n\nfor line in sys.stdin:\n\tss = line.strip().split('\\t')\n\tif len(ss) != 2:\n\t\tcontinue\n\tword, cnt = ss\n\n\tif cur_word == None:\n\t\tcur_word = word\n\n\tif cur_word != word:\n\t\tprint('\\t'.join([cur_word, str(sum)]))\n\t\tcur_word = word\n\t\tsum = 0\n\n\tsum += int(cnt)\n\nprint('\\t'.join([cur_word, str(sum)]))\n"
  },
  {
    "path": "mapreduce_hive/run.sh",
    "content": "\nHADOOP_CMD=\"/usr/local/src/hadoop2.6.5/bin/hadoop\"\nSTREAM_JAR_PATH=\"/usr/local/src/hadoop2.6.5/contrib/streaming/hadoop-streaming-2.6.5.jar\"\n\nINPUT_FILE_PATH_1=\"/The_Man_of_Property.txt\"\nOUTPUT_PATH=\"/output\"\n\n$HADOOP_CMD fs -rmr -skipTrash $OUTPUT_PATH\n\n# Step 1.\n$HADOOP_CMD jar $STREAM_JAR_PATH \\\n    -input $INPUT_FILE_PATH_1 \\\n    -output $OUTPUT_PATH \\\n    -mapper \"python map_new.py\" \\\n    -reducer \"python red_new.py\" \\\n    -file ./map_new.py \\\n    -file ./red_new.py\n"
  },
  {
    "path": "movie.csv",
    "content": "﻿电影名称,评分,评论数,类型,地区,上映年份,总分\r\n肖申克的救赎,9.6,692795,剧情/犯罪,美国,1994,6650832\r\n这个杀手不太冷 ,9.4,662552,剧情/动作/犯罪,法国,1994,6227988.8\r\n盗梦空间,9.2,642134,剧情/动作/科幻/悬疑/冒险,美国/英国,2010,5907632.8\r\n阿甘正传,9.4,580897,剧情/爱情,美国,1994,5460431.8\r\n三傻大闹宝莱坞,9.1,549808,剧情/喜剧/爱情/歌舞,印度,2011,5003252.8\r\n泰坦尼克号,9.1,535491,剧情/爱情/灾难,美国,1998,4872968.1\r\n让子弹飞,8.7,534791,剧情/喜剧/动作/西部,中国大陆/香港,2010,4652681.7\r\n千与千寻 千と千尋の神隠,9.2,525505,剧情/动画/奇幻,日本,2001,4834646\r\n少年派的奇幻漂流,9,489231,剧情/奇幻/冒险,美国/台湾/英国/加拿大,2012,4403079\r\n霸王别姬,9.4,478523,剧情/爱情/同性,中国大陆/香港,1993,4498116.2\r\n阿凡达,8.6,451523,动作/科幻/奇幻/冒险,美国/英国,2010,3883097.8\r\n当幸福来敲门,8.9,450450,剧情/家庭/传记,美国,2008,4009005\r\n那些年，我们一起追的女孩 那些年，我們一起追的女,8.1,443884,剧情/喜剧/爱情,台湾,2012,3595460.4\r\n怦然心动,8.9,427162,剧情/喜剧/爱情,美国,2010,3801741.8\r\n飞屋环游记,8.9,423327,剧情/喜剧/动画/奇幻/冒险,美国,2009,3767610.3\r\n机器人总动员 ,9.3,421734,喜剧/爱情/科幻/动画/冒险,美国,2008,3922126.2\r\n天使爱美丽 ,8.7,412014,喜剧/爱情,法国/德国,2001,3584521.8\r\n剪刀手爱德华,8.7,409419,剧情/爱情/奇幻,美国,1990,3561945.3\r\n人再囧途之泰囧,7.5,392992,喜剧,中国大陆,2012,2947440\r\n星际穿越,9.1,380140,剧情/科幻/悬疑/家庭/冒险,美国/英国/加拿大,2014,3459274\r\n初恋这件小事,8.3,379595,喜剧/爱情,泰国,2012,3150638.5\r\n七宗罪,8.7,370351,剧情/悬疑/惊悚/犯罪,美国,1995,3222053.7\r\n大话西游之大圣娶亲 西遊記大結局之仙履奇,9.1,366223,喜剧/动作/爱情/奇幻/冒险,香港/中国大陆,2014,3332629.3\r\n楚门的世界,9,352755,剧情,美国,1998,3174795\r\n忠犬八公的故事,9.2,352613,剧情,美国/英国,2009,3244039.6\r\n搏击俱乐部,9,352460,剧情/动作/悬疑/惊悚,美国/德国,1999,3172140\r\n黑天鹅,8.5,349175,剧情/惊悚,美国,2010,2967987.5\r\n失恋3,7.4,345624,剧情/爱情,中国大陆,2011,2557617.6\r\n贫民窟的百万富翁,8.5,345020,剧情/爱情,英国/美国,2009,2932670\r\n龙猫 となりのトト,9.1,344318,动画/奇幻,日本,1988,3133293.8\r\n源代码,8.3,341620,剧情/动作/科幻/惊悚/犯罪,美国/加拿大,2011,2835446\r\n后会无期,7.2,340724,剧情/爱情,中国大陆,2014,2453212.8\r\nV字仇杀,8.8,334758,剧情/动作/科幻/惊悚,美国/英国/德国,2005,2945870.4\r\n本杰明·巴顿奇事,8.7,332847,剧情/爱情/奇幻,美国,2008,2895768.9\r\n北京遇上西雅图,7.4,331619,喜剧/爱情,中国大陆/香港,2013,2453980.6\r\n美丽人生 ,9.5,327855,剧情/喜剧/爱情,意大利,1997,3114622.5\r\n罗马假日,8.9,321376,剧情/喜剧/爱情,美国,1953,2860246.4\r\n蝴蝶效应,8.7,319632,剧情/科幻/悬疑/惊悚,美国/加拿大,2004,2780798.4\r\n大话西游之月光宝盒 西遊記第壹佰零壹回之月光寶,8.9,317485,喜剧/动作/爱情/奇幻/冒险/古装,香港/中国大陆,2014,2825616.5\r\n无间道 無間,8.9,314171,悬疑/惊悚/犯罪,香港,2003,2796121.9\r\n疯狂原始人,8.8,311462,喜剧/动画/冒险,美国,2013,2740865.6\r\n西游记之大圣归来,8.3,311050,喜剧/动作/动画/奇幻,中国大陆,2015,2581715\r\n西游降魔篇 西遊降魔,7.1,310504,喜剧/奇幻/冒险,中国大陆/香港,2013,2204578.4\r\n中国合伙人,7.7,308571,剧情,中国大陆/香港,2013,2375996.7\r\n辛德勒的名单,9.4,306904,剧情/历史/战争,美国,1993,2884897.6\r\n致我们终将逝去的青春,6.7,306233,剧情/爱情,中国大陆,2013,2051761.1\r\n神偷奶爸,8.5,305753,喜剧/动画/儿童,美国,2010,2598900.5\r\n老炮儿,8.2,301406,剧情/犯罪,中国大陆,2015,2471529.2\r\n情书,8.8,299308,剧情/爱情,日本,1995,2633910.4\r\n触不可及,9.1,293040,剧情/喜剧,法国,2011,2666664\r\n美人鱼,7.1,290491,喜剧/爱情/奇幻,中国大陆/香港,2016,2062486.1\r\n禁闭岛,8.6,288607,剧情/悬疑/惊悚,美国,2010,2482020.2\r\n沉默的羔羊,8.7,286852,剧情/惊悚/犯罪,美国,1991,2495612.4\r\n疯狂动物城,9.3,284652,喜剧/动作/动画/冒险,美国,2016,2647263.6\r\n超能陆战队,8.6,282909,喜剧/动作/科幻/动画/冒险,美国,2015,2433017.4\r\n国王的演讲,8.3,282204,剧情/传记/历史,英国/澳大利亚/美国,2012,2342293.2\r\n教父,9.2,280871,剧情/犯罪,美国,1972,2584013.2\r\n志明与春娇 志明與春,8,280257,剧情/喜剧/爱情,香港,2010,2242056\r\n哈尔的移动城堡 ハウルの動く,8.8,279362,爱情/动画/奇幻/冒险,日本,2004,2458385.6\r\n致命魔术,8.8,279084,剧情/悬疑/惊悚,美国/英国,2006,2455939.2\r\n穿普拉达的女王,7.9,278285,剧情/爱情,美国/法国,2007,2198451.5\r\n金陵十三钗,8,275632,剧情/历史/战争,中国大陆/香港,2011,2205056\r\n两小无猜,8.2,275216,剧情/喜剧/爱情,法国/比利时,2003,2256771.2\r\n夏洛特烦恼,7.5,275133,喜剧/爱情,中国大陆,2015,2063497.5\r\n复仇者联盟,8,274242,动作/科幻/奇幻/冒险,美国,2012,2193936\r\n加勒比海盗,8.6,273718,动作/奇幻/冒险,美国,2003,2353974.8\r\n入殓师 おくりび,8.8,273529,剧情,日本,2008,2407055.2\r\n西西里的美丽传说 ,8.6,271882,剧情/情色/战争,意大利/美国,2000,2338185.2\r\n告白,8.6,271280,剧情/惊悚,日本,2010,2333008\r\n天空之城 天空の城ラピュ,9,270523,动画/奇幻/冒险,日本,1986,2434707\r\n和莎莫的5,8,269049,剧情/喜剧/爱情,美国,2009,2152392\r\n低俗小说,8.7,267960,剧情/犯罪,美国,1994,2331252\r\n王牌特工：特工学院,8.5,267052,喜剧/动作/犯罪/冒险,英国/美国,2015,2269942\r\n寻龙诀,7.7,266061,剧情/动作/奇幻/冒险,中国大陆/香港,2015,2048669.7\r\n人在囧途,7.4,264042,喜剧,中国大陆,2010,1953910.8\r\n闻香识女人,8.9,262432,剧情,美国,1992,2335644.8\r\n断背山,8.5,262173,剧情/爱情/同性/家庭,美国/加拿大,2005,2228470.5\r\n功夫熊猫,7.9,261481,喜剧/动作/动画/冒险,美国,2008,2065699.9\r\n真爱至上,8.5,261280,剧情/喜剧/爱情,英国/美国,2003,2220880\r\n天堂电影院,9.1,259119,剧情/爱情,意大利/法国,1988,2357982.9\r\n岁月神偷 歲月神,8.6,258957,剧情/家庭,香港/中国大陆,2010,2227030.2\r\n消失的爱人,8.7,258541,剧情/悬疑/惊悚/犯罪,美国,2014,2249306.7\r\n蝙蝠侠：黑暗骑士,9,254865,剧情/动作/科幻/惊悚/犯罪,美国/英国,2008,2293785\r\n指环王1：魔戒再,8.9,254771,剧情/动作/奇幻/冒险,新西兰/美国,2002,2267461.9\r\n勇敢的心,8.8,254209,剧情/动作/传记/历史/战争,美国,1995,2237039.2\r\n听说 聽,8.1,254146,剧情/爱情/家庭,台湾,2015,2058582.6\r\n美丽心灵,8.9,253965,剧情/传记,美国,2001,2260288.5\r\n致命,8.6,251785,剧情/悬疑/惊悚,美国,2003,2165351\r\n重庆森林 重慶森,8.6,249432,剧情/爱情,香港,1994,2145115.2\r\n云图,8,247647,剧情/科幻/悬疑,德国/美国/香港/中国大陆/新加坡,2013,1981176\r\n暮光之城,7.4,247162,剧情/爱情/惊悚/奇幻,美国,2009,1828998.8\r\n一天,7.8,244431,剧情/爱情,美国/英国,2011,1906561.8\r\n冰雪奇缘,8.3,243482,喜剧/动画/奇幻/冒险,美国,2014,2020900.6\r\n蝙蝠侠：黑暗骑士崛起,8.5,243166,剧情/动作/科幻/惊悚/犯罪,美国/英国,2012,2066911\r\n疯狂的石头,8.2,243139,喜剧/犯罪,中国大陆/香港,2006,1993739.8\r\n傲慢与偏见,8.4,243125,剧情/爱情,法国/英国/美国,2005,2042250\r\n唐伯虎点秋香,8.3,241838,喜剧/爱情/古装,香港,1993,2007255.4\r\n他其实没那么喜欢你,7.7,241360,剧情/喜剧/爱情,美国/德国/荷兰,2009,1858472\r\n指环王3：王者无,9.1,240217,剧情/动作/奇幻/冒险,美国/新西兰,2004,2185974.7\r\n一代宗师 一代宗,7.6,240065,剧情/动作/传记,中国大陆/香港,2015,1824494\r\n功夫熊猫,8,239763,喜剧/动作/动画/冒险,美国,2011,1918104\r\n朗读者,8.4,238453,剧情/爱情,美国/德国,2008,2003005.2\r\n蓝色大门 藍色大,8.3,235464,剧情/爱情/同性,台湾/法国,2002,1954351.2\r\n风声,8,234465,剧情/惊悚/战争/犯罪,中国大陆,2009,1875720\r\n驯龙高手,8.7,234307,喜剧/动画/家庭/奇幻/冒险,美国,2010,2038470.9\r\n碟中谍,8.3,234188,动作/惊悚/犯罪/冒险,美国,2012,1943760.4\r\n恐怖游轮,8.3,233860,剧情/悬疑/惊悚,英国/澳大利亚,2009,1941038\r\n狮子王,8.8,233718,剧情/动画/歌舞/家庭/冒险,美国,1995,2056718.4\r\n非诚勿扰,7.2,233453,喜剧/爱情,中国大陆/香港,2008,1680861.6\r\n我的野蛮女友,8,232174,剧情/喜剧/爱情,韩国,2001,1857392\r\n两杆大烟枪,9,231805,剧情/喜剧/犯罪,英国,1998,2086245\r\n飞越疯人院,9,231012,剧情,美国,1975,2079108\r\n社交网络,8.1,230626,剧情/传记,美国,2010,1868070.6\r\n无人区,8.1,230487,剧情/犯罪/西部,中国大陆,2013,1866944.7\r\n春娇与志明 春嬌與志,7.4,230273,剧情/喜剧/爱情,香港/中国大陆,2012,1704020.2\r\n喜剧之王 喜劇之,8.3,228985,剧情/喜剧/爱情,香港,1999,1900575.5\r\n指环王2：双塔奇,8.9,228664,剧情/动作/奇幻/冒险,美国/新西兰,2003,2035109.6\r\n香水,8.4,228316,剧情/犯罪/奇幻,德国/法国/西班牙/美国,2006,1917854.4\r\n布达佩斯大饭店,8.7,227747,剧情/喜剧,美国/德国/英国,2014,1981398.9\r\n冰川时代,8.4,227255,喜剧/动画/冒险,美国,2002,1908942\r\n黑客帝国,8.7,226667,动作/科幻,美国/澳大利亚,1999,1972002.9\r\n乱世佳人,9.2,226131,剧情/爱情/战争,美国,1939,2080405.2\r\n火星救援,8.4,225665,剧情/科幻/冒险,美国/英国,2015,1895586\r\n记忆碎片,8.5,225621,剧情/悬疑/惊悚/犯罪,美国,2000,1917778.5\r\n环太平洋,7.6,225380,动作/科幻/冒险/灾难,美国,2013,1712888\r\n射雕英雄传之东成西就 射鵰英雄傳之東成西,8.7,223892,喜剧/古装,香港,1993,1947860.4\r\n小时代,4.8,223830,剧情/喜剧/爱情,中国大陆/台湾,2013,1074384\r\n哈利·波特与死亡圣器(,8.6,223829,剧情/悬疑/奇幻/冒险,美国/英国,2011,1924929.4\r\n秒速5厘米 秒速5センチメ,8.5,223763,剧情/爱情/动画,日本,2007,1901985.5\r\n恋恋笔记本,8.5,223564,剧情/爱情,美国,2004,1900294\r\n恋恋笔记本,8.5,223440,剧情/爱情,美国,2004,1899240\r\n史密斯夫妇,7.6,222886,喜剧/动作/爱情,美国,2005,1693933.6\r\n了不起的盖茨比,7.7,222409,剧情/爱情,澳大利亚/美国,2013,1712549.3\r\n死亡诗社,8.9,221446,剧情,美国,1989,1970869.4\r\n画皮 畫,6.6,221045,剧情/动作/惊悚,中国大陆/香港/新加坡,2008,1458897\r\n阳光灿烂的日子,8.7,220342,剧情,中国大陆/香港,1995,1916975.4\r\n功夫,7.7,219755,喜剧/动作/犯罪/奇幻,中国大陆/香港,2004,1692113.5\r\n心花路放,7,218692,喜剧/爱情,中国大陆,2014,1530844\r\n地心引力,7.8,216948,剧情/科幻/冒险,美国/英国,2013,1692194.4\r\n速度与激情,8.3,216400,动作/犯罪,美国/中国大陆/日本,2015,1796120\r\n捉妖记,6.9,215475,喜剧/奇幻/古装,中国大陆/香港,2015,1486777.5\r\n阳光姐妹淘,8.8,215430,剧情/喜剧,韩国,2011,1895784\r\n心灵捕手,8.7,213342,剧情,美国,1997,1856075.4\r\n被解救的姜戈,8.5,213102,剧情/动作/西部/冒险,美国,2013,1811367\r\n亲爱的,8.4,211437,剧情/家庭,中国大陆/香港,2014,1776070.8\r\n我的少女时代 我的少女時,7.9,211311,喜剧/爱情,台湾,2015,1669356.9\r\n非诚勿扰,6.5,211059,喜剧/爱情,中国大陆,2010,1371883.5\r\n猩球崛起,8,208421,剧情/动作/科幻/惊悚,美国,2011,1667368\r\n单身男女 單身男,6.9,208201,喜剧/爱情,香港,2011,1436586.9\r\n东邪西毒 東邪西,8.5,207840,剧情/动作/爱情/武侠/古装,香港/台湾,1994,1766640\r\n被嫌弃的松子的一生 嫌われ松子の一,8.9,206462,剧情/歌舞,日本,2006,1837511.8\r\n变形金刚,8.1,205436,动作/科幻,美国,2007,1664031.6\r\n大鱼,8.7,204900,剧情/家庭/奇幻/冒险,美国,2003,1782630\r\n十月围城,7.7,204659,剧情/动作/历史,香港/中国大陆,2009,1575874.3\r\n玛丽和马克思,8.9,204655,剧情/爱情/动画,澳大利亚,2009,1821429.5\r\n猜火车,8.5,203732,剧情/犯罪,英国,1996,1731722\r\nX战警：逆转未,8.2,203196,动作/科幻/冒险,美国/英国,2014,1666207.2\r\n活着,9,202794,剧情/家庭,中国大陆/香港,1994,1825146\r\n里约大冒险,8.4,202623,喜剧/动画/冒险,美国,2011,1702033.2\r\n明日边缘,8.1,202611,动作/科幻,美国/加拿大,2014,1641149.1\r\n超体,7,202240,动作/科幻,法国,2014,1415680\r\n11度青春之《老男,8.5,201951,剧情/喜剧/短片,中国大陆,2010,1716583.5\r\n变形金刚,7.7,200598,动作/科幻,美国,2009,1544604.6\r\n惊天魔盗团,7.5,199963,悬疑/犯罪/奇幻,美国/法国,2013,1499722.5\r\n霍比特人1：意外之,8.1,199625,动作/奇幻/冒险,美国/新西兰,2013,1616962.5\r\n第九区,8.1,198680,剧情/动作/科幻/惊悚,美国/新西兰/加拿大/南非,2009,1609308\r\n搜索,7.3,197928,剧情/悬疑,中国大陆,2012,1444874.4\r\n色，戒,7.9,197614,剧情/爱情/情色,台湾/美国/香港/中国大陆,2007,1561150.6\r\n神偷奶爸,8.1,196524,喜剧/科幻/动画/家庭/犯罪/冒险,美国,2014,1591844.4\r\n全城热恋,6.3,195399,喜剧/爱情,香港/美国/中国大陆,2010,1231013.7\r\n倩女幽魂,8.5,195072,剧情/爱情/武侠/古装,香港,2011,1658112\r\n爱在暹罗,8.3,194323,剧情/爱情/同性/家庭,泰国,2007,1612880.9\r\n幸福终点站,8.6,192424,剧情/喜剧/爱情,美国,2005,1654846.4\r\n变形金刚,7.1,191943,动作/科幻,美国,2011,1362795.3\r\n幽灵公主 もののけ,8.8,191099,动画/奇幻/冒险,日本,1997,1681671.2\r\n模仿游戏,8.6,190343,剧情/同性/传记/战争,英国/美国,2015,1636949.8\r\n银河护卫队,8,190255,喜剧/动作/科幻/冒险,美国/英国,2014,1522040\r\n甜蜜蜜,8.7,190187,剧情/爱情,香港,2015,1654626.9\r\n怪兽电力公司,8.6,189750,喜剧/动画/儿童/奇幻,美国,2001,1631850\r\n饥饿游戏,6.7,189134,动作/科幻/冒险,美国,2012,1267197.8\r\n第六感,8.8,189031,剧情/悬疑/惊悚,美国,1999,1663472.8\r\n僵尸新娘,8.1,188882,爱情/动画/歌舞/奇幻,英国/美国,2005,1529944.2\r\n天下无贼,7.6,188605,剧情/动作/犯罪,中国大陆/香港,2004,1433398\r\n哈利·波特与魔法石,8.5,188449,奇幻/冒险,美国/英国,2002,1601816.5\r\n艋舺,7.7,188351,剧情,台湾,2010,1450302.7\r\n海角七号 海角七,7.6,188155,剧情/喜剧/爱情,台湾,2009,1429978\r\n唐山大地震,7.4,186732,剧情/家庭/历史/灾难,中国大陆/香港,2010,1381816.8\r\n春光乍泄 春光乍,8.7,185845,剧情/爱情/同性,香港/日本/韩国,1997,1616851.5\r\n拯救大兵瑞恩,8.8,185637,剧情/历史/战争,美国,1998,1633605.6\r\n假如爱有天意,8.2,185361,剧情/爱情,韩国,2003,1519960.2\r\n速度与激情,8.4,185212,剧情/动作/惊悚/犯罪,美国,2011,1555780.8\r\n花样年华 花樣年,8.4,185121,剧情/爱情,香港/法国,2000,1555016.4\r\n穆赫兰道,8.4,184310,剧情/悬疑/惊悚,法国/美国,2001,1548204\r\n爱丽丝梦游仙境,7,183537,奇幻/冒险,美国,2010,1284759\r\n无耻混蛋,8.4,183390,剧情/犯罪,美国/德国,2009,1540476\r\n烈日灼心,7.9,183146,剧情/悬疑/犯罪,中国大陆,2015,1446853.4\r\n智取威虎山,7.7,182289,动作/战争/冒险,中国大陆/香港,2014,1403625.3\r\n港囧,5.8,181247,喜剧,中国大陆,2015,1051232.6\r\n鬼子来了,9.1,180738,剧情/战争,中国大陆,2000,1644715.8\r\n钢铁侠,7.8,180544,动作/科幻/惊悚/冒险,美国,2008,1408243.2\r\n加勒比海盗4：惊涛怪,7.5,179809,动作/奇幻/冒险,美国,2011,1348567.5\r\n变脸,8.4,179714,动作/犯罪,美国,1997,1509597.6\r\n钢铁侠,7.5,179084,动作/科幻,美国/中国大陆,2013,1343130\r\n大侦探福尔摩斯,7.5,179057,动作/悬疑/惊悚/犯罪/冒险,美国/德国,2010,1342927.5\r\n借东西的小人阿莉埃蒂 借りぐらしのアリエッテ,8.7,178199,动画/奇幻/冒险,日本,2010,1550331.3\r\n她,8.3,177710,剧情/爱情/科幻,美国,2013,1474993\r\n初恋5,7.9,177288,喜剧/爱情,美国,2004,1400575.2\r\n爱 ,7,177047,剧情/爱情,台湾/中国大陆,2012,1239329\r\n后天,8,176737,动作/科幻/冒险/灾难,美国,2004,1413896\r\n侏罗纪世界,7.7,176557,动作/科幻/冒险,美国/中国大陆,2015,1359488.9\r\n美国队长,8,176545,动作/科幻/冒险,美国,2014,1412360\r\n窃听风暴,9.1,176426,剧情/悬疑,德国,2006,1605476.6\r\n煎饼侠,6.2,176092,喜剧,中国大陆,2015,1091770.4\r\n泰迪熊,7,175776,喜剧,美国,2012,1230432\r\n雨人,8.6,175411,剧情,美国,1988,1508534.6\r\n叶问,7.6,175393,剧情/动作/传记/历史,香港/中国大陆,2008,1332986.8\r\n爱在黎明破晓前,8.7,174053,剧情/爱情,美国/奥地利/瑞士,1995,1514261.1\r\n查理和巧克力工厂,7.9,173573,喜剧/家庭/奇幻/冒险,美国/英国/澳大利亚,2005,1371226.7\r\n青蛇,8.3,173165,剧情/奇幻/古装,香港,1993,1437269.5\r\n寒战 寒,7.4,173158,剧情/动作/犯罪,香港/中国大陆,2012,1281369.2\r\n变形金刚4：绝迹重,6.6,172769,动作/科幻,美国/中国大陆,2014,1140275.4\r\n复仇者联盟2：奥创纪,7.1,172612,动作/科幻/奇幻/冒险,美国,2015,1225545.2\r\n将爱情进行到底,6.7,172095,剧情/爱情,中国大陆,2011,1153036.5\r\n桃姐,8.2,170615,剧情,香港,2012,1399043\r\n催眠大师,7.6,169755,剧情/悬疑/惊悚,中国大陆,2014,1290138\r\n唐人街探案,7.5,169694,喜剧/动作/悬疑,中国大陆,2015,1272705\r\n萤火虫之墓 火垂るの,8.8,169485,剧情/动画/战争,日本,1988,1491468\r\n怪兽大学,8,169293,喜剧/动画/冒险,美国,2013,1354344\r\n夜访吸血鬼,8.3,168913,剧情/惊悚/奇幻,美国,1994,1401977.9\r\n霍比特人2：史矛革之,8.2,168661,动作/奇幻/冒险,美国/新西兰,2014,1383020.2\r\n十二生肖,6.7,168622,喜剧/动作/冒险,中国大陆/香港,2012,1129767.4\r\n海底总动员,8.2,168452,喜剧/动画/家庭/冒险,美国/澳大利亚,2003,1381306.4\r\n霍比特人3：五军之,8.2,167986,动作/奇幻/冒险,美国/新西兰,2015,1377485.2\r\n宝贝计划,7.1,167497,剧情/喜剧/动作,中国大陆/香港,2006,1189228.7\r\n猫鼠游戏,8.7,167005,剧情/传记/犯罪,美国/加拿大,2002,1452943.5\r\n山楂树之恋,6.7,166713,剧情/爱情,中国大陆,2010,1116977.1\r\n钢琴家,9,166550,剧情/传记/历史/战争,法国/德国/英国/波兰,2002,1498950\r\n熔炉,9.1,166196,剧情,韩国,2011,1512383.6\r\n玩具总动员,8.7,165626,喜剧/动画/奇幻/冒险,美国,2010,1440946.2\r\n滚蛋吧！肿瘤君,7.5,165620,喜剧/爱情,中国大陆,2015,1242150\r\n电锯惊魂,8.6,165127,悬疑/惊悚/犯罪,美国/澳大利亚,2004,1420092.2\r\n杜拉拉升职记,5.7,165034,剧情/喜剧/爱情,中国大陆,2010,940693.8\r\n孤儿怨,8.1,164208,剧情/悬疑/惊悚,美国/加拿大/德国/法国,2009,1330084.8\r\n加勒比海盗2：聚魂,8.1,163480,动作/奇幻/冒险,美国,2006,1324188\r\n晚秋,6.9,163171,剧情,韩国/美国/香港,2012,1125879.9\r\n诺丁山,7.9,162874,喜剧/爱情,英国/美国,1999,1286704.6\r\n黑衣人,7.5,162760,喜剧/动作/科幻,美国,2012,1220700\r\n爱在日落黄昏时,8.7,162730,剧情/爱情,美国,2004,1415751\r\n小鬼当家,8,161210,喜剧/家庭,美国,1990,1289680\r\n龙门飞甲,6.7,161186,动作/武侠/古装,中国大陆/香港,2011,1079946.2\r\n疯狂的麦克斯4：狂暴之,8.5,161023,动作/科幻/冒险,澳大利亚/美国,2015,1368695.5\r\n007：大破天,6.9,160790,动作/惊悚/犯罪/冒险,英国/美国,2013,1109451\r\n一步之遥,6.2,159460,喜剧/爱情/冒险,中国大陆/美国/香港,2014,988652\r\n我是传奇,7.8,159443,剧情/科幻/惊悚/灾难,美国,2007,1243655.4\r\n雏菊,8,158981,剧情/爱情,韩国/香港,2006,1271848\r\n人工智能,8.6,158000,剧情/科幻/冒险,美国,2001,1358800\r\n头脑特工队,8.7,157968,喜剧/动画/家庭/冒险,美国,2015,1374321.6\r\n公主日记,7.5,157917,喜剧/爱情/家庭,美国,2001,1184377.5\r\n泰坦尼克号 ,9.4,157074,剧情/爱情/灾难,美国,2012,1476495.6\r\n私人订制,5.6,156918,喜剧,中国大陆,2013,878740.8\r\n朱诺,7.9,156611,剧情/喜剧/爱情,美国/加拿大,2007,1237226.9\r\n窃听风云 竊聽風,7.4,156375,剧情/动作/惊悚,香港/中国大陆/新加坡,2009,1157175\r\n加勒比海盗3：世界的尽,8,156157,动作/奇幻/冒险,美国,2007,1249256\r\n归来,7.7,156000,剧情/爱情/历史,中国大陆,2014,1201200\r\n时间旅行者的妻子,7.7,155922,剧情/爱情/悬疑/奇幻,美国,2009,1200599.4\r\n分手大师,5.1,155129,喜剧/爱情,中国大陆,2014,791157.9\r\n绣春刀,7.5,154581,动作/爱情/武侠/古装,中国大陆,2014,1159357.5\r\n食神,7.7,154122,喜剧/动作,香港,1996,1186739.4\r\n无敌破坏王,8.7,153972,喜剧/动画/冒险,美国,2012,1339556.4\r\n疯狂的赛车,7.8,153781,喜剧/动作/冒险,中国大陆,2009,1199491.8\r\n发条橙,8.4,153315,剧情/科幻/犯罪,英国/美国,1971,1287846\r\n美国丽人,8.4,152418,剧情/家庭,美国,1999,1280311.2\r\n魔女宅急便 魔女の宅急,8.4,152253,动画/奇幻/冒险,日本,1989,1278925.2\r\n杀死比尔,8,152213,动作/惊悚/犯罪,美国,2003,1217704\r\n哈利·波特与死亡圣器(,7.8,152024,剧情/奇幻/冒险,英国/美国,2010,1185787.2\r\n杀人回忆,8.6,151994,剧情/悬疑/惊悚/犯罪,韩国,2003,1307148.4\r\n杀人回忆,8.6,151878,剧情/悬疑/惊悚/犯罪,韩国,2003,1306150.8\r\n碟中谍5：神秘国,7.7,151456,动作/惊悚/冒险,美国/香港/中国大陆,2015,1166211.2\r\n九品芝麻官,8.1,151436,喜剧,香港,1994,1226631.6\r\n教父2,9.1,151333,剧情/犯罪,美国,1974,1377130.3\r\n英国病人,8.4,151044,剧情/爱情/战争,美国/英国,1996,1268769.6\r\n普罗米修斯,7.1,151020,动作/科幻/惊悚/恐怖,美国/英国,2012,1072242\r\n海扁王,7.5,150403,动作/惊悚/犯罪,美国/英国,2010,1128022.5\r\n重返2,7.3,150089,喜剧/爱情/奇幻,中国大陆/韩国/台湾/香港,2015,1095649.7\r\n画皮2 畫,5.9,149832,动作/爱情/惊悚/奇幻,中国大陆/香港,2012,884008.8\r\n美食总动员,8.2,149225,喜剧/动画/奇幻,美国,2007,1223645\r\n谍影重重,8.5,148996,动作/悬疑/冒险,美国/德国/捷克,2002,1266466\r\n穿越时空的少女 時をかける少,8.7,148876,剧情/爱情/科幻/动画,日本,2006,1295221.2\r\n西雅图未眠夜,8,148376,剧情/喜剧/爱情,美国,1993,1187008\r\n长江七号,6.2,147897,剧情/喜剧/科幻/家庭/奇幻,中国大陆/香港,2008,916961.4\r\n悬崖上的金鱼姬 崖の上のポニ,8.2,147800,动画/奇幻/冒险,日本,2008,1211960\r\n逃离德黑兰,8.2,147544,剧情/惊悚/历史,美国,2012,1209860.8\r\n新龙门客栈 新龍門客,8.4,147427,剧情/动作/武侠/古装,香港/中国大陆,1992,1238386.8\r\n窃听风云,7.6,147251,剧情/动作/悬疑/犯罪,香港/中国大陆,2011,1119107.6\r\n撞车,8.6,147027,剧情/犯罪,美国/德国,2004,1264432.2\r\nX战警：第一,8.1,146818,剧情/动作/科幻,美国/英国,2011,1189225.8\r\n你看起来好像很好吃 おまえうまそうだ,8.9,146799,剧情/动画/儿童,日本,2010,1306511.1\r\n午夜巴黎,8.1,146787,剧情/爱情/奇幻,西班牙/美国,2011,1188974.7\r\n金刚,7.7,146773,剧情/动作/爱情/冒险,新西兰/美国/德国,2006,1130152.1\r\n李米的猜想,7.7,145740,剧情/爱情/犯罪,中国大陆/香港,2008,1122198\r\n非常完美,6.1,145672,喜剧/爱情,中国大陆/韩国,2009,888599.2\r\n铁甲钢拳,8.2,145256,剧情/动作/科幻/运动,美国/印度,2011,1191099.2\r\n战争之王,8.5,144923,剧情/犯罪,美国/法国,2005,1231845.5\r\n在云端,7.9,144862,剧情/爱情,美国,2009,1144409.8\r\n蚁人,7.6,144780,动作/科幻/冒险,美国,2015,1100328\r\n钢的琴,8.3,144617,剧情/喜剧,中国大陆,2011,1200321.1\r\n前度,7.1,143795,爱情,香港,2010,1020944.5\r\n宿醉,7.7,143607,喜剧,美国,2009,1105773.9\r\n风之谷 風の谷のナウシ,8.8,143601,科幻/动画/奇幻/冒险,日本,1905,1263688.8\r\n哈利·波特与密室,8.1,143456,奇幻/冒险,美国/英国/德国,2003,1161993.6\r\n战马,8,143193,剧情/战争,美国,2012,1145544\r\n午夜巴塞罗那,7.8,142307,剧情/爱情,西班牙/美国,2008,1109994.6\r\n白日焰火,7.1,142232,剧情/悬疑/犯罪,中国大陆,2014,1009847.2\r\n谍影重重,8.7,141202,动作/悬疑/冒险,美国/德国,2007,1228457.4\r\n解救吾先生,7.9,141198,剧情/犯罪,中国大陆,2015,1115464.2\r\n美国往事,9.1,141130,剧情/犯罪,意大利/美国,1984,1284283\r\n厨子戏子痞子,7,140991,喜剧/动作,中国大陆,2013,986937\r\n恋空,7.1,140426,剧情/爱情,日本,2007,997024.6\r\n菊次郎的夏天 菊次郎の,8.7,140137,剧情/喜剧,日本,1999,1219191.9\r\n恐怖直播,8.7,139754,剧情/悬疑/犯罪,韩国,2013,1215859.8\r\n暮光之城2：新,6.5,139625,剧情/爱情/惊悚/奇幻,美国,2009,907562.5\r\n听风者,6.9,138725,剧情/悬疑,中国大陆/香港,2012,957202.5\r\n黑衣人,7.9,138613,喜剧/动作/科幻,美国,1997,1095042.7\r\n大内密探零零发 大內密探零零,7.6,138560,剧情/喜剧/动作/爱情,香港,1996,1053056\r\n荒野猎人,7.9,138368,剧情/惊悚/冒险,美国,2016,1093107.2\r\n时空恋旅人,8.6,137749,剧情/爱情/奇幻,英国,2013,1184641.4\r\n观音山,7.1,137174,剧情/爱情,中国大陆,2011,973935.4\r\n卧虎藏龙 臥虎藏,7.7,137079,剧情/动作/爱情/武侠/古装,台湾/香港/美国/中国大陆,2000,1055508.3\r\n侏罗纪公园,7.9,137056,科幻/冒险,美国,2013,1082742.4\r\n冰川时代,8.3,136982,喜剧/动画/冒险,美国,2009,1136950.6\r\n如果·爱,7.6,136977,剧情/爱情/歌舞,中国大陆/香港/马来西亚,2005,1041025.2\r\n同桌的妳,5.9,136501,剧情/爱情,中国大陆,2014,805355.9\r\n这个男人来自地球,8.5,136095,剧情/科幻,美国,2007,1156807.5\r\n成为简·奥斯汀,8.2,136060,剧情/爱情/传记,英国/爱尔兰,2007,1115692\r\n哈利·波特与混血王子,7.2,135992,剧情/奇幻/冒险,英国/美国,2009,979142.4\r\n猩球崛起2：黎明之,7.5,135673,剧情/动作/科幻,美国,2014,1017547.5\r\n龙纹身的女孩,8,135616,剧情/悬疑/惊悚/犯罪,美国/挪威/瑞典,2011,1084928\r\n重返十七岁,7.3,135441,剧情/喜剧/爱情,美国,2009,988719.3\r\n罗拉快跑,8.1,135426,动作/惊悚/犯罪,德国,1998,1096950.6\r\n蜘蛛侠,7.4,134961,动作/科幻/犯罪/奇幻,美国,2002,998711.4\r\n十二怒汉,9.3,134949,剧情,美国,1957,1255025.7\r\n阳光小美女,8.2,134872,剧情/喜剧/家庭,美国,2006,1105950.4\r\n超脱,8.7,134813,剧情,美国,2011,1172873.1\r\n阿飞正传 阿飛正,8.5,134758,剧情/爱情/犯罪,香港,1990,1145443\r\n哈利·波特与阿兹卡班的囚徒,8,134722,剧情/奇幻/冒险,英国/美国,2004,1077776\r\n饮食男女 飲食男,8.9,134617,剧情/家庭,台湾/美国,1994,1198091.3\r\n辩护人,9.1,134273,剧情,韩国,2013,1221884.3\r\n冰川时代,8.1,134070,喜剧/动画/冒险,美国,2012,1085967\r\n哆啦A梦：伴我同行 STA,7.9,133889,剧情/动画,日本,2015,1057723.1\r\n万能钥匙,7.8,133858,剧情/悬疑/恐怖,美国/德国,2005,1044092.4\r\n狄仁杰之通天帝国,6.4,133844,剧情/动作/悬疑/犯罪/古装,中国大陆/香港,2010,856601.6\r\n速度与激情,7.7,133625,剧情/动作/惊悚/犯罪,美国,2013,1028912.5\r\n变相怪杰,7.8,133512,喜剧/动作/爱情/犯罪/奇幻,美国,1994,1041393.6\r\n钢铁侠,7.1,133509,动作/科幻/冒险,美国,2010,947913.9\r\n大侦探福尔摩斯2：诡影游,7.5,133283,动作/悬疑/惊悚/犯罪/冒险,美国,2012,999622.5\r\n哈利·波特与火焰杯,8,132289,奇幻/冒险,英国/美国,2005,1058312\r\n星际迷航：暗黑无界,8,131830,动作/科幻/冒险,美国,2013,1054640\r\n狼图腾,7,131619,剧情/冒险,中国大陆/法国,2015,921333\r\n我脑中的橡皮擦,7.9,131048,剧情/爱情,韩国,2004,1035279.2\r\n上帝之城,8.9,130931,剧情/犯罪,巴西/法国,2002,1165285.9\r\n叶问2：宗师传,7.3,129727,动作/传记/历史,中国大陆/香港,2010,947007.1\r\n独自等待,8.1,129472,剧情/喜剧/爱情,中国大陆,2005,1048723.2\r\n燃情岁月,8.8,129167,剧情/爱情/家庭/西部,美国,1994,1136669.6\r\n雪国列车,7.2,128461,剧情/动作/科幻/灾难,韩国/捷克/美国/法国,2014,924919.2\r\n超凡蜘蛛侠,7.2,128170,动作/科幻/惊悚/冒险,美国,2012,922824\r\n哈利·波特与凤凰社,7.6,127781,奇幻/冒险,英国/美国,2007,971135.6\r\n国产凌凌漆 國產凌凌,8,127569,喜剧/动作,香港,1994,1020552\r\n全民目击,7.6,126283,剧情/悬疑/犯罪,中国大陆,2013,959750.8\r\n冰川时代2：融冰之,8,126154,喜剧/动画/冒险,美国,2006,1009232\r\n死神来了,7.7,125908,悬疑/惊悚,美国/加拿大,2000,969491.6\r\n一九四二,7.2,125833,剧情/历史/战争/灾难,中国大陆,2012,905997.6\r\n我的个神啊,8.3,125772,喜剧/奇幻,印度,2015,1043907.6\r\n达拉斯买家俱乐部,8.6,125631,剧情/同性/传记,美国,2013,1080426.6\r\n乌云背后的幸福线,7.8,125487,剧情/喜剧/爱情/家庭,美国,2012,978798.6\r\n武林外传,6.4,125450,喜剧/动作/古装,中国大陆,2011,802880\r\nE.T,8.5,125215,剧情/科幻/奇幻/冒险,美国,1982,1064327.5\r\n无间道2 無,8.1,125174,剧情/动作/惊悚/犯罪,香港,2003,1013909.4\r\n珍珠港,7.8,125120,剧情/动作/爱情/战争,美国,2001,975936\r\n达·芬奇密码,7.2,124662,悬疑/惊悚,美国/马耳他/法国/英国,2006,897566.4\r\n人鬼情未了,8.2,124223,剧情/爱情/悬疑/惊悚/奇幻,美国,1990,1018628.6\r\n大魔术师 大魔術,6.6,124007,剧情/喜剧/爱情/奇幻,中国大陆/香港,2012,818446.2\r\n匆匆那年,5.4,123705,爱情,中国大陆,2014,668007\r\n水果硬糖,7.5,123546,剧情/惊悚,美国,2005,926595\r\n一一,8.8,122919,剧情/爱情/家庭,台湾/日本,2000,1081687.2\r\n小时代2：青木时,5.1,122774,剧情/喜剧/爱情,中国大陆/台湾,2013,626147.4\r\n致命伴旅,6.6,122521,剧情/悬疑/惊悚,美国/法国/意大利,2011,808638.6\r\n黑客帝国3：矩阵革,8.4,122443,动作/科幻,美国/澳大利亚,2003,1028521.2\r\n7号房的礼,8.7,122407,剧情/喜剧/家庭,韩国,2013,1064940.9\r\n博物馆奇妙夜,7.2,122181,喜剧/动作/家庭/奇幻/冒险,美国/英国,2007,879703.2\r\n少林足球,7.1,122094,喜剧/动作/运动,香港/中国大陆,2001,866867.4\r\n饥饿游戏2：星火燎,7.3,122078,动作/科幻/冒险,美国,2013,891169.4\r\n罪恶之城,8.4,121963,动作/惊悚/犯罪,美国,2005,1024489.2\r\n谍影重重,8.5,121897,动作/悬疑/冒险,美国/德国,2004,1036124.5\r\n黄金大劫案,6.8,121521,剧情/喜剧/动作/爱情/历史/战争,中国大陆,2012,826342.8\r\n花与爱丽丝 花とアリ,8.1,121248,剧情/喜剧,日本,2004,982108.8\r\n盲探,7.1,120987,喜剧/爱情/悬疑/惊悚/犯罪,中国大陆/香港,2013,859007.7\r\n寂静岭,7.5,120597,剧情/悬疑/惊悚/恐怖/奇幻,加拿大/法国/日本/美国,2006,904477.5\r\n第36个,7.7,120026,剧情/喜剧,台湾,2010,924200.2\r\n雨果,7.6,119963,剧情/儿童/传记/奇幻,美国,2012,911718.8\r\n鸟人,7.9,119550,剧情/喜剧,美国/加拿大,2014,944445\r\n暖暖内含光,8.4,119235,剧情/爱情/奇幻,美国,2004,1001574\r\n环形使者,6.8,119211,动作/科幻/惊悚,美国/中国大陆,2012,810634.8\r\n女朋友○男朋友,7.5,119163,剧情/爱情/同性,台湾,2012,893722.5\r\n神探夏洛克,6.9,119159,剧情/悬疑/犯罪,英国,2016,822197.1\r\n我，机器人,7.9,118963,动作/科幻/悬疑/惊悚,美国/德国,2004,939807.7\r\n夜·店,6.6,118816,喜剧,中国,2009,784185.6\r\n功夫熊猫,7.9,117968,喜剧/动作/动画/冒险,中国大陆/美国,2016,931947.2\r\n勇闯夺命岛,8.5,117903,动作/冒险,美国,1996,1002175.5\r\n独裁者,7.6,117751,喜剧,美国,2012,894907.6\r\n末代皇帝,8.7,117708,剧情/传记/历史,意大利/中国大陆/英国/法国,1987,1024059.6\r\nBJ单身,7.5,117248,剧情/喜剧/爱情,英国/法国/美国/爱尔兰,2001,879360\r\n驯龙高手,7.9,117197,喜剧/动画/冒险,美国,2014,925856.3\r\n玩具总动员,8.1,117131,喜剧/动画/家庭/荒诞,美国,1995,948761.1\r\n爱情与灵药,7,116948,剧情/喜剧/爱情,美国,2010,818636\r\n黑客帝国2：重装上,8.3,116849,动作/科幻,美国/澳大利亚,2003,969846.7\r\n赎罪,8.1,116750,剧情/爱情/悬疑/战争,英国/法国,2007,945675\r\n武状元苏乞儿,7.3,116578,喜剧/动作/古装,香港,1992,851019.4\r\n全民超人汉考克,6.8,116526,动作/犯罪/奇幻,美国,2008,792376.8\r\n美国队长,6.4,116244,动作/科幻/冒险,美国,2011,743961.6\r\n101,5.7,115719,爱情,中国大陆/台湾/日本,2013,659598.3\r\nX战,7.6,115706,动作/科幻,美国/加拿大,2000,879365.6\r\n大逃杀 バトル・ロワイ,8.1,115516,动作/惊悚,日本,2000,935679.6\r\n金刚狼,7.1,115373,动作/科幻/惊悚/奇幻,美国,2009,819148.3\r\n爱情呼叫转移,6.4,115246,喜剧/爱情,中国大陆,2007,737574.4\r\n雷神2：黑暗世,7.5,115202,动作/奇幻/冒险,美国,2013,864015\r\n迷失东京,7.7,115168,剧情/爱情,美国/日本,2003,886793.6\r\n头文字D 頭,6.7,114964,剧情/动作,香港/日本,2005,770258.8\r\n素媛,9.1,114819,剧情/家庭,韩国,2013,1044852.9\r\n萤火之森 蛍火の杜,8.8,114775,剧情/爱情/动画/奇幻,日本,2011,1010020\r\n迷雾,7.8,114442,剧情/科幻/惊悚/灾难,美国,2007,892647.6\r\n超人总动员,7.8,114408,喜剧/动作/动画/冒险,美国,2005,892382.4\r\n新警察故事,7.2,114301,剧情/动作/惊悚/犯罪,中国大陆/香港,2004,822967.2\r\n终结者,8.5,114194,动作/科幻,美国/法国,1991,970649\r\n小时代3：刺金时,4.4,113923,剧情/喜剧/爱情,中国大陆/台湾,2014,501261.2\r\n华尔街之狼,7.6,113743,剧情/喜剧/传记/犯罪,美国,2013,864446.8\r\n狄仁杰之神都龙王,6.6,113705,动作/悬疑/犯罪/古装,中国大陆/香港,2013,750453\r\n鹿鼎记 鹿鼎,7.8,113608,喜剧/动作/武侠/古装,香港,1992,886142.4\r\n月球,8.5,113387,剧情/科幻/悬疑,英国,2009,963789.5\r\n英雄本色,8.7,113083,动作/犯罪,香港,1986,983822.1\r\n巴黎，我爱你,8.3,112978,剧情/爱情,法国/德国/列支敦士登/瑞士,2006,937717.4\r\n老男孩,8.2,112539,剧情/悬疑/惊悚,韩国,2003,922819.8\r\n超凡蜘蛛侠,7.3,112196,动作/科幻/冒险,美国,2014,819030.8\r\n碟中谍,7.9,112118,动作/惊悚/冒险,美国,1996,885732.2\r\n少年时代,8.5,111805,剧情/家庭,美国,2014,950342.5\r\n心慌方,8,111748,科幻/悬疑/惊悚,加拿大,1997,893984\r\n建国大业,6.1,111700,剧情/历史,中国大陆/香港,2009,681370\r\n河东狮吼 我家有一隻河東,6.7,111671,喜剧,中国大陆/香港,2002,748195.7\r\n敢死队,6.7,111434,动作/惊悚/冒险,美国,2010,746607.8\r\n小黄人大眼萌,7.3,111217,喜剧/动画,美国,2015,811884.1\r\n第五元素,7.9,110926,动作/爱情/科幻/惊悚/冒险,法国,1997,876315.4\r\n天使之城,8,110910,剧情/爱情/奇幻,美国/德国,1998,887280\r\n甲方乙方,8.2,110908,喜剧,中国大陆,1997,909445.6\r\n开心家族,8.5,110795,剧情/喜剧/家庭,韩国,2011,941757.5\r\n蝙蝠侠：侠影之谜,8.2,110571,剧情/动作/科幻/惊悚/犯罪,美国/英国,2005,906682.2\r\n彗星来的那一夜,8.3,110162,科幻/悬疑/惊悚,美国/英国,2013,914344.6\r\n魂断蓝桥,8.8,109909,剧情/爱情/战争,美国,1940,967199.2\r\n通缉令,7.4,109732,动作/惊悚/犯罪,美国/德国,2008,812016.8\r\n飓风营救,8.2,109722,剧情/动作/惊悚/犯罪,法国/美国/英国,2008,899720.4\r\n分手合约,5.7,109594,爱情,中国大陆/韩国,2013,624685.8\r\n赤壁(,6.3,109553,剧情/动作/历史/战争/冒险,中国大陆/香港/台湾/日本/韩国,2008,690183.9\r\n纵横四海 緃横四,8.7,109294,剧情/喜剧/动作/犯罪,香港,1991,950857.8\r\n马达加斯加,8.2,109266,喜剧/动画/冒险,美国,2012,895981.2\r\n麦兜故事 麥兜故,8.5,109195,剧情/喜剧/动画,香港,2001,928157.5\r\n武侠,6.6,108807,剧情/动作/悬疑/武侠,香港/中国大陆,2011,718126.2\r\n门徒 門,7.4,108680,剧情/惊悚/犯罪,香港,2007,804232\r\n最爱,7.2,108461,剧情/爱情,中国大陆/香港,2011,780919.2\r\n超人：钢铁之躯,6.8,108219,动作/科幻/冒险,美国/加拿大/英国,2013,735889.2\r\n角斗士,8.4,108095,剧情/动作/历史/冒险,英国/美国,2000,907998\r\n星球大战7：原力觉,7.2,107958,动作/科幻/奇幻/冒险,美国,2016,777297.6\r\n小岛惊魂,8,107817,剧情/悬疑/恐怖,美国/西班牙/法国/意大利,2001,862536\r\n赵氏孤儿,5.9,107744,剧情/动作/历史/武侠/古装,中国大陆,2010,635689.6\r\n怪物史瑞克,7.9,107488,喜剧/动画/家庭/奇幻/冒险,美国,2001,849155.2\r\n道士下山,5.4,107402,喜剧/动作/奇幻/冒险/武侠/古装,中国大陆/美国,2015,579970.8\r\n小鞋子,9.1,107031,剧情/家庭/儿童,伊朗,1999,973982.1\r\n冒牌天神,7.4,106969,剧情/喜剧/奇幻,美国,2003,791570.6\r\n马达加斯加,7.7,106960,喜剧/动画/家庭/冒险,美国,2005,823592\r\n小王子,8.1,106914,动画/奇幻,法国/美国,2015,866003.4\r\n可可西里,8.6,106818,剧情,中国大陆/香港,2004,918634.8\r\n英雄,6.6,106572,剧情/动作/武侠/古装,中国大陆/香港,2002,703375.2\r\n无间道3：终极无间 無間道II,7.7,106518,剧情/动作/惊悚/犯罪,中国大陆/香港,2003,820188.6\r\n天下无双,6.9,106514,喜剧/动作/爱情,中国大陆/香港,2002,734946.6\r\n胭脂扣,8.2,106419,剧情/爱情,香港,1988,872635.8\r\n时间规划局,6.9,106113,动作/科幻,美国,2011,732179.7\r\n老无所依,7.9,105953,剧情/惊悚/犯罪,美国,2007,837028.7\r\n刺客聂隐娘,7.1,105925,剧情/武侠/古装,台湾/中国大陆/香港,2015,752067.5\r\n荒岛余生,8.4,105878,剧情/冒险,美国,2000,889375.2\r\n一次别离,8.7,105788,剧情/家庭,伊朗,2012,920355.6\r\n荒野生存,8.7,105729,剧情/传记/冒险,美国,2007,919842.3\r\n雷神,6.6,105580,剧情/动作/奇幻/冒险,美国,2011,696828\r\n扫毒 掃,7.3,105534,剧情/动作/悬疑/犯罪,中国大陆/香港,2013,770398.2\r\n调音师,9.2,105300,剧情/悬疑/惊悚/短片,法国,2010,968760\r\n女人不坏,6,105279,喜剧,中国大陆/香港,2008,631674\r\n特种部队：眼镜蛇的崛起,7.3,105156,动作/科幻/惊悚/冒险,美国/捷克,2009,767638.8\r\n潘神的迷宫,7.8,104763,剧情/悬疑/战争/奇幻,西班牙/墨西哥/美国,2006,817151.4\r\n撒娇女人最好命,5.9,104763,喜剧/爱情,中国大陆/香港,2014,618101.7\r\n白日梦想家,8.3,104725,剧情/喜剧/冒险,美国,2013,869217.5\r\n独立日,8,104419,动作/科幻/冒险/灾难,美国,1996,835352\r\n北京爱情故事,6.1,104376,爱情,中国大陆,2014,636693.6\r\n十二猴子,8,104348,科幻/悬疑/惊悚,美国,1995,834784\r\n附注：我爱你,8.1,103732,剧情/爱情,美国,2007,840229.2\r\n导盲犬小Q クイ,8.4,103373,剧情,日本,2004,868333.2\r\n教父,8.7,103148,剧情/犯罪,美国,1990,897387.6\r\n蒂凡尼的早餐,8.1,102997,剧情/喜剧/爱情,美国,1961,834275.7\r\n金蝉脱壳,7.6,102991,动作/惊悚,美国,2013,782731.6\r\n前任攻略,6.3,102869,喜剧/爱情,中国大陆,2014,648074.7\r\n黑衣人,7.5,102742,喜剧/动作/科幻,美国,2002,770565\r\nX战,7.6,102679,动作/科幻/惊悚,美国/加拿大,2003,780360.4\r\n师父,8.1,102535,剧情/动作/武侠,中国大陆,2015,830533.5\r\n越光宝盒,5.2,102499,喜剧/奇幻,中国大陆/香港,2010,532994.8\r\n天台爱情,6.9,102449,喜剧/动作/爱情/歌舞,中国大陆/香港/台湾,2013,706898.1\r\n神话,6.2,102440,剧情/喜剧/动作/奇幻/冒险,中国大陆/香港,2005,635128\r\n南京！南京！,7.5,102304,剧情/历史/战争,中国大陆/香港,2009,767280\r\n孤胆特工,8.1,102241,剧情/动作/惊悚/犯罪,韩国,2011,828152.1\r\n我的机器人女友 僕の彼女はサイボー,7.4,102064,喜剧/动作/爱情/科幻,日本,2009,755273.6\r\n蓝宇,7.9,101973,剧情/爱情/同性,中国大陆/香港,2001,805586.7\r\n血钻,8.5,101965,剧情/惊悚/冒险,美国/德国,2006,866702.5\r\n僵尸世界大战,7.2,101621,动作/科幻/冒险/灾难,美国/马耳他,2013,731671.2\r\n魔发奇缘,8.1,101541,喜剧/爱情/动画/歌舞/奇幻,美国,2010,822482.1\r\n大内密探灵灵狗,5.1,101404,喜剧,香港/中国大陆/台湾,2009,517160.4\r\n沉睡魔咒,6.9,101335,动作/爱情/奇幻/冒险,美国/英国,2014,699211.5\r\n二次曝光,6.1,101277,剧情/爱情/悬疑,中国大陆,2012,617789.7\r\n卡萨布兰卡,8.6,101266,剧情/爱情/战争,美国,1942,870887.6\r\n壁花少年,7.9,101232,剧情,美国,2012,799732.8\r\n闪灵,7.9,101224,剧情/悬疑/恐怖,英国/美国,1980,799669.6\r\n偷心,7.8,101047,剧情/爱情,美国,2004,788166.6\r\n奇怪的她,8.3,100874,喜剧/奇幻,韩国,2014,837254.2\r\n穿条纹睡衣的男孩,8.8,100803,剧情/战争,英国/美国,2008,887066.4\r\n喜宴,8.7,100798,剧情/喜剧/爱情/同性/家庭,台湾/美国,1993,876942.6\r\n假结婚,7.1,100771,剧情/喜剧/爱情,美国,2009,715474.1\r\n毕业生,7.9,100479,剧情/喜剧/爱情,美国,1967,793784.1\r\n浪潮,8.7,100368,剧情,德国,2008,873201.6\r\n花木兰,7.5,100055,剧情/动画/家庭/冒险,美国,1998,750412.5\r\n狙击电话亭,7.9,99430,悬疑/惊悚,美国,2002,785497\r\n精灵旅社,7.8,99270,喜剧/动画/奇幻,美国,2013,774306\r\n逃学威龙 逃學威,7.4,99012,喜剧/动作/爱情,香港,1991,732688.8\r\n灰姑娘,6.8,98981,爱情/奇幻/冒险,美国/英国,2015,673070.8\r\n四月物语 四月物,8.1,98927,爱情,日本,1998,801308.7\r\n蓝莓之夜,7.6,98910,剧情/爱情,中国大陆/香港/法国,2007,751716\r\n集结号,7.8,98714,剧情/传记/历史/战争,中国大陆/香港,2007,769969.2\r\n遗愿清单,8.5,98373,剧情/喜剧/冒险,美国,2007,836170.5\r\n枪王之王,6.6,98334,动作/悬疑/惊悚,香港/中国大陆,2010,649004.4\r\n毒战 毒,7.1,97960,剧情/动作/犯罪,中国大陆/香港,2013,695516\r\n保持通话,6.7,97888,动作,香港/中国,2008,655849.6\r\n杀死比尔,7.8,97793,动作/惊悚/犯罪,美国,2004,762785.4\r\n大腕,7.7,97689,喜剧,中国大陆/香港,2001,752205.3\r\n左耳,5.5,97150,爱情,中国大陆,2015,534325\r\n007：,6.2,97008,动作/惊悚/冒险,英国/美国,2015,601449.6\r\n猫的报恩 猫の恩返,7.9,97004,喜剧/动画/奇幻/冒险,日本,2002,766331.6\r\n空中监狱,8.1,96885,动作/惊悚/犯罪,美国,1997,784768.5\r\nX战警3：背水,7.5,96738,动作/科幻/惊悚,美国/加拿大/英国,2006,725535\r\n九层妖塔,4.3,96643,动作/惊悚/冒险,中国大陆,2015,415564.9\r\n特工绍特,7.2,96594,动作/悬疑/惊悚,美国,2010,695476.8\r\n天生一对,8.3,96471,剧情/喜剧/爱情/家庭/儿童,美国,1998,800709.3\r\n革命之路,7.9,96193,剧情/爱情,美国/英国,2008,759924.7\r\n盛夏光年,7.2,95808,剧情/爱情/同性,台湾,2006,689817.6\r\n加菲猫,7.6,95802,喜剧/家庭,美国,2004,728095.2\r\n激战 激,7.8,95635,剧情/动作/运动,香港/中国大陆,2013,745953\r\n西游记之大闹天宫,4.2,95377,动作/奇幻,中国大陆/香港,2014,400583.4\r\n碧海蓝天,8.7,95313,剧情/爱情,法国/美国/意大利,1988,829223.1\r\n哥斯拉,6.4,95298,动作/科幻/冒险/灾难,美国/日本,2014,609907.2\r\n林中小屋,7.4,95198,喜剧/悬疑/恐怖,美国,2012,704465.2\r\n僵尸肖恩,7.7,95169,喜剧/惊悚,英国/法国/美国,2004,732801.3\r\n蜘蛛侠,7.1,95116,动作/爱情/犯罪/奇幻,美国,2004,675323.6\r\n锦衣卫,6,95064,剧情/动作/惊悚/武侠/古装,中国大陆/香港/新加坡,2010,570384\r\n恋爱假期,7.6,95017,喜剧/爱情,美国,2006,722129.2\r\n有一个地方只有我们知道,5,94960,爱情,中国大陆,2015,474800\r\n暮光之城3：月,6.5,94949,剧情/爱情/惊悚/奇幻,美国,2010,617168.5\r\n丑女大翻身,7.2,94867,喜剧/爱情,韩国,2006,683042.4\r\n暗战 暗,8.3,94768,剧情/动作/犯罪,香港,1999,786574.4\r\n万万没想到,5.6,94721,喜剧/奇幻/冒险/古装,中国大陆,2015,530437.6\r\n太阳照常升起,7.9,94709,剧情,中国大陆,2007,748201.1\r\n了不起的狐狸爸爸,8.4,94565,喜剧/动画/家庭/冒险,美国,2009,794346\r\n罗生门 羅生,8.7,94501,剧情/悬疑/犯罪,日本,1950,822158.7\r\n通天塔,8,94451,剧情,法国/美国/墨西哥,2006,755608\r\n歌舞青春,7.7,94359,剧情/喜剧/家庭,美国,2006,726564.3\r\n窃听风云,6.2,94347,动作/悬疑/惊悚/犯罪,香港/中国大陆,2014,584951.4\r\n偷拐抢骗,8.5,94291,喜剧/犯罪,英国/美国,2000,801473.5\r\n纳尼亚传奇1：狮子、女巫和魔衣,7.1,93986,家庭/奇幻/冒险,英国/美国,2005,667300.6\r\n我愿意,5.9,93703,喜剧/爱情,中国大陆,2012,552847.7\r\n剑雨,6.9,93610,动作/武侠/古装,中国大陆/香港/台湾,2010,645909\r\n鬼妈妈,8,93552,动画/家庭/奇幻/冒险,美国,2009,748416\r\n大兵小将,6.9,93492,喜剧/动作/冒险,中国大陆/香港,2010,645094.8\r\n回忆积木小屋 つみきのい,9.3,93384,剧情/动画/短片,日本,2008,868471.2\r\n十一罗汉,7.9,93266,动作/犯罪,美国,2001,736801.4\r\n卢旺达饭店,8.8,93146,剧情/历史/战争,英国/南非/意大利/美国,2004,819684.8\r\n星空,7.2,92972,剧情/爱情/奇幻,中国大陆/台湾,2011,669398.4\r\n燕尾蝶 スワロウテイ,8.7,92867,剧情/犯罪,日本,1996,807942.9\r\n巴黎淘气帮,8.6,92857,喜剧/家庭/儿童,法国/比利时,2013,798570.2\r\n国家宝藏,7.6,92699,动作/悬疑/惊悚/冒险,美国,2004,704512.4\r\n无极,4.6,92479,剧情/动作/奇幻,中国大陆/香港/日本/韩国,2005,425403.4\r\n移动迷宫,6.8,92394,动作/科幻,美国/加拿大/英国,2014,628279.2\r\n生化危机,7.8,92310,动作/科幻/恐怖,英国/德国/法国/美国,2002,720018\r\n恋爱通告,6,92294,喜剧/爱情,台湾/中国大陆,2010,553764\r\n手机,7.3,92251,剧情/喜剧/家庭,中国大陆,2003,673432.3\r\n理发师陶德,7.7,92188,剧情/惊悚/歌舞,美国/英国,2007,709847.6\r\n你丫闭嘴！,8,92153,喜剧/犯罪,法国/意大利,2003,737224\r\n满城尽带黄金甲,5.1,91851,剧情/动作/爱情/古装,中国大陆/香港,2006,468440.1\r\n奇幻森林,7.9,91264,剧情/奇幻/冒险,美国,2016,720985.6\r\n夺宝联盟,7.1,91260,动作/犯罪,韩国,2013,647946\r\n蝙蝠侠大战超人：正义黎明,6.6,91242,动作/科幻/奇幻/冒险,美国,2016,602197.2\r\n十二公民,8.2,90934,剧情,中国大陆,2015,745658.8\r\n非常嫌疑犯,8.6,90903,剧情/悬疑/惊悚/犯罪,德国/美国,1995,781765.8\r\n老男孩猛龙过江,5.8,90627,剧情/喜剧,中国大陆,2014,525636.6\r\n弱点,8.4,90610,剧情/家庭/传记/运动,美国,2009,761124\r\n拆弹部队,7.6,90376,剧情/惊悚/战争,美国,2008,686857.6\r\n向左走．向右走,6.9,90310,爱情,香港/新加坡,2003,623139\r\n虎口脱险,8.9,90092,喜剧/战争,法国/英国,1966,801818.8\r\n被偷走的那五年,5.8,90006,爱情,中国大陆,2013,522034.8\r\n瘦身男女,6.7,89668,喜剧/爱情,香港,2001,600775.6\r\n叫我第一名,8.6,89530,剧情/传记,美国,2008,769958\r\n投名状,6.8,89513,剧情/动作/战争/古装,中国大陆/香港,2007,608688.4\r\n百变星君 百變星,7.2,89345,喜剧/科幻/奇幻,香港,1995,643284\r\n只是爱着你 ただ、君を愛して,8.1,89259,剧情/爱情,日本,2006,722997.9\r\n帕丁顿熊,7.6,89245,喜剧/家庭,英国/法国,2015,678262\r\n火锅英雄,7.4,88828,剧情,中国大陆,2016,657327.2\r\n不再让你孤单,7,88662,剧情/爱情,香港/中国大陆,2011,620634\r\n木乃伊,7.7,88256,动作/奇幻/冒险,美国,1999,679571.2\r\n十二宫,7.2,88246,剧情/悬疑/惊悚/历史/犯罪,美国,2007,635371.2\r\n公主日记,6.9,88215,喜剧/爱情/家庭,美国,2004,608683.5\r\n嫌疑人X的献身 容疑者X,8.3,88119,剧情/悬疑/犯罪,日本,2008,731387.7\r\n敢死队,6.9,88107,动作/冒险,美国,2012,607938.3\r\n红辣椒 パプリ,8.8,87924,科幻/动画/悬疑/惊悚,日本,2006,773731.2\r\n机械姬,7.5,87796,剧情/科幻/悬疑/惊悚,英国,2015,658470\r\n心迷宫,8.6,87524,剧情/悬疑/犯罪,中国大陆,2015,752706.4\r\n波斯王子：时之刃,7.2,86866,动作/爱情/奇幻/冒险,美国,2010,625435.2\r\n线人 線,7.3,86854,剧情/动作/惊悚,香港/中国大陆,2010,634034.2\r\n黑鹰坠落,8.4,86834,动作/历史/战争,美国,2002,729405.6\r\n惊情四百年,7.8,86822,爱情/恐怖,美国,1992,677211.6\r\n博物馆奇妙夜,6.8,86777,喜剧/动作/奇幻/冒险,美国/加拿大,2009,590083.6\r\n海洋天堂,7.9,86624,剧情,中国大陆/香港,2010,684329.6\r\n律政俏佳人,7.3,86614,喜剧/爱情,美国,2001,632282.2\r\n功夫之王,5.3,86593,动作/奇幻/冒险/武侠/古装,美国/中国大陆,2008,458942.9\r\n谍影重重,6.7,86534,动作/悬疑/冒险,美国/日本,2012,579777.8\r\n换子疑云,8.3,86507,剧情/悬疑/惊悚,美国,2008,718008.1\r\n安德的游戏,6.9,86239,动作/科幻/冒险,美国,2014,595049.1\r\n蜘蛛侠,6.9,86068,动作/奇幻,美国,2007,593869.2\r\n真实的谎言,8.1,85992,喜剧/动作/惊悚,美国,1995,696535.2\r\n梦之安魂曲,8.7,85959,剧情,美国,2000,747843.3\r\n夏日大作战 サマーウォー,8.6,85936,喜剧/科幻/动画/冒险,日本,2009,739049.6\r\n爱在午夜降临前,8.7,85704,剧情/爱情,美国,2013,745624.8\r\n挪威的森林 ノルウェイの,5.9,85662,剧情/爱情,日本,2011,505405.8\r\n再见我们的幼儿园 さよならぼくたちのようちえ,8.8,85636,剧情,日本,2011,753596.8\r\n绿里奇迹,8.7,85592,剧情/悬疑/犯罪/奇幻,美国,1999,744650.4\r\n想爱就爱,7.6,85478,喜剧/爱情/同性,泰国,2010,649632.8\r\n超级战舰,6.6,85356,动作/科幻/冒险/灾难,美国,2012,563349.6\r\n纽约，我爱你,7.7,84793,剧情/爱情,美国,2009,652906.1\r\n生化危机4：战神再,6.3,84779,动作/科幻/惊悚/恐怖/冒险,德国/法国/美国/加拿大,2010,534107.7\r\n精灵鼠小弟,7.5,84638,喜剧/家庭/奇幻/冒险,美国/德国,2000,634785\r\n不二神探,4.7,84550,喜剧/动作/犯罪,中国大陆,2013,397385\r\n七磅,8.1,84402,剧情,美国,2008,683656.2\r\n梅兰芳,6.9,84393,剧情/传记/历史,中国大陆,2008,582311.7\r\n出租车司机,8.4,84388,剧情/犯罪,美国,1976,708859.2\r\n丁丁历险记,7.6,84383,动作/动画/悬疑/冒险,美国/新西兰,2011,641310.8\r\n赤壁(,6.5,84154,剧情/动作/历史/战争,中国大陆/香港/日本/台湾/韩国,2009,547001\r\n万物理论,8,84153,剧情/爱情/传记,英国,2014,673224\r\n遗落战境,6.8,84150,动作/科幻/悬疑/冒险,美国,2013,572220\r\n情人节,7.1,83976,喜剧/爱情,美国,2010,596229.6\r\n空房间,8,83956,剧情/爱情/犯罪,韩国,2004,671648\r\n十面埋伏,5.5,83618,剧情/武侠/古装,中国大陆/香港,2004,459899\r\n万物生长,5.9,83565,喜剧/爱情,中国大陆,2015,493033.5\r\n赛德克·巴莱 賽德克·巴,8.7,83529,剧情/历史/战争,台湾,2012,726702.3\r\n李献计历险记,8.7,83471,动画/短片,中国,2009,726197.7\r\n蝴蝶,8.6,83238,剧情/喜剧/儿童,法国,2002,715846.8\r\n战狼,6.9,83230,动作/战争,中国大陆,2015,574287\r\n我是山姆,8.9,83109,剧情/家庭,美国,2001,739670.1\r\n神秘代码,6.6,83090,剧情/科幻/悬疑/惊悚/灾难,美国/英国/澳大利亚,2009,548394\r\n隐秘而伟大,7.8,83058,喜剧/动作,韩国,2013,647852.4\r\n博物馆奇妙夜,7,82974,喜剧/奇幻/冒险,美国/英国,2015,580818\r\n夜行者,8.2,82920,惊悚/犯罪,美国,2014,679944\r\n不见不散,7.8,82899,喜剧/爱情,中国大陆,1998,646612.2\r\n狩猎,9,82870,剧情,丹麦/瑞典/比利时,2012,745830\r\n007：大战皇,7.4,82580,动作/惊悚/犯罪,美国/英国/德国/捷克CzechRepublic/巴哈马Bahamas,2007,611092\r\n死神来了,7.3,82448,悬疑/惊悚,美国/加拿大,2003,601870.4\r\n狂怒,7.8,82367,剧情/动作/战争,英国/中国大陆/美国,2014,642462.6\r\n神探,8.3,82293,动作/惊悚/犯罪,香港,2007,683031.9\r\n黄金时代,7.1,82164,剧情/爱情/传记,中国大陆/香港,2014,583364.4\r\n云水谣,6.9,82139,剧情/爱情/战争,中国大陆/台湾,2006,566759.1\r\n人生遥控器,7.7,82091,剧情/喜剧/家庭/奇幻,美国,2007,632100.7\r\n星际迷航,7.9,81900,动作/科幻/冒险,美国/德国,2009,647010\r\n追风筝的人,8.2,81858,剧情,美国/中国大陆,2007,671235.6\r\n暗杀,8,81719,剧情/动作/历史/犯罪,韩国,2015,653752\r\n落水狗,8.2,81657,惊悚/犯罪,美国,1992,669587.4\r\n澳门风云 賭城風,5.8,81587,喜剧/动作,中国大陆/香港,2014,473204.6\r\n全面回忆,7,81515,动作/科幻/惊悚/冒险,美国/加拿大,2012,570605\r\n永无止境,7.3,81457,科幻/悬疑/惊悚,美国,2011,594636.1\r\n百万美元宝贝,8.4,81455,剧情/运动,美国,2004,684222\r\n等风来,5.7,81431,喜剧/爱情,中国大陆,2013,464156.7\r\n康斯坦丁,7.7,81425,动作/惊悚/奇幻,美国/德国,2005,626972.5\r\n为奴十二载,7.8,81253,剧情/传记/历史,美国/英国,2013,633773.4\r\n白蛇传说,4.8,81245,动作/爱情/奇幻/古装,中国大陆,2011,389976\r\n碟中谍,7.3,81108,动作/惊悚/冒险,美国/德国,2006,592088.4\r\n夜宴,5.6,81026,剧情/动作/古装,中国大陆,2006,453745.6\r\n十全九美,5.2,81017,喜剧,中国,2008,421288.4\r\n杀生,7.6,80999,剧情/悬疑,中国大陆,2012,615592.4\r\n卡罗尔,8.2,80984,剧情/爱情/同性,英国/美国,2015,664068.8\r\n买凶拍人 買兇拍,8.3,80890,喜剧/动作/犯罪,香港,2001,671387\r\n终结者,7.9,80786,动作/科幻/惊悚,美国/英国,1984,638209.4\r\n全民情敌,7.5,80756,喜剧/爱情,美国,2005,605670\r\n特洛伊,7.4,80524,动作/爱情,美国/马耳他/英国,2004,595877.6\r\n冷山,8,80464,剧情/爱情/战争,美国,2004,643712\r\n天降美食,7.4,80464,喜剧/动画/家庭/奇幻,美国,2009,595433.6\r\n死亡笔记 デスノー,7.7,80404,剧情/悬疑/犯罪/冒险,日本,2006,619110.8\r\n面纱,8.2,80260,剧情/爱情,美国/中国大陆/加拿大,2006,658132\r\n一夜惊喜,5.6,80141,喜剧/爱情,中国大陆/香港,2013,448789.6\r\n成长教育,7.8,79940,剧情,美国/英国,2009,623532\r\n上帝也疯狂,8.6,79711,喜剧,博茨瓦纳/南非,1980,685514.6\r\n超级大坏蛋,7.8,79305,喜剧/动作/动画,美国,2010,618579\r\n何以笙箫默,3.7,79302,爱情,中国大陆,2015,293417.4\r\n山河故人,7.8,79143,剧情/家庭,中国大陆/法国/日本,2015,617315.4\r\n12,8.1,79078,剧情/惊悚/传记/冒险,美国/英国,2010,640531.8\r\n全球热恋,5.7,79036,喜剧/爱情,中国大陆/香港,2011,450505.2\r\n画壁,4.5,78960,剧情/动作/爱情/奇幻,中国大陆/香港,2011,355320\r\n本能,7.6,78813,爱情/悬疑/惊悚/情色,美国/法国,1992,598978.8\r\n霍元甲,6.6,78801,剧情/动作/传记,美国/中国大陆/香港,2006,520086.6\r\n末路狂花,8.6,78755,剧情/惊悚/犯罪,美国/法国,1991,677293\r\n勇敢传说,7.4,78708,喜剧/动作/动画/家庭/奇幻/冒险,美国,2012,582439.2\r\n终结者：创世纪,6.9,78639,动作/科幻/冒险,美国,2015,542609.1\r\n洛杉矶之战,6,78636,动作/科幻/战争/灾难,美国,2011,471816\r\n生化危机5：惩,5.6,78570,动作/科幻/惊悚/恐怖,德国/加拿大/美国/法国,2013,439992\r\n杀破狼2 殺,7.4,78500,剧情/动作/犯罪,香港/中国大陆,2015,580900\r\n我是路人甲,7.3,78468,剧情/喜剧,中国大陆/香港,2015,572816.4\r\n鸿门宴传奇,6.4,78464,剧情/动作/爱情/历史/古装,中国大陆/香港,2011,502169.6\r\n起风了 風立ち,7.8,78379,剧情/爱情/动画,日本,2013,611356.2\r\n一个陌生女人的来信,7.5,78263,剧情,中国大陆,2005,586972.5\r\n蓝精灵,7.3,78224,喜剧/动画/家庭/奇幻,美国/比利时,2011,571035.2\r\n死寂,7.4,78128,悬疑/恐怖,美国,2007,578147.2\r\n大灌篮,5.2,77996,喜剧/运动,中国大陆/香港/台湾,2008,405579.2\r\n艺伎回忆录,6.8,77984,剧情/爱情,美国,2005,530291.2\r\n苏州河,7.8,77822,剧情/爱情,中国/德国,2000,607011.6\r\n金刚狼,6.1,77744,动作/科幻,美国/英国,2013,474238.4\r\n末日崩塌,7,77740,动作/冒险/灾难,美国/澳大利亚,2015,544180\r\n斯巴达30,7.6,77722,动作/历史/战争/奇幻,美国,2006,590687.2\r\n荒蛮故事,8.7,77686,剧情/喜剧/犯罪,阿根廷/西班牙,2014,675868.2\r\n死神来了,6.9,77363,悬疑/惊悚,美国/加拿大/德国,2006,533804.7\r\n电锯惊魂,8.1,77358,悬疑/惊悚/犯罪,美国/加拿大,2005,626599.8\r\n廊桥遗梦,8.5,77023,剧情/爱情,美国,1995,654695.5\r\n风月俏佳人,7.9,76728,喜剧/爱情,美国,1990,606151.2\r\n红磨坊,7.9,76705,剧情/爱情/歌舞,澳大利亚/美国,2001,605969.5\r\n房间,8.8,76645,剧情/家庭,爱尔兰/加拿大,2015,674476\r\n穿靴子的猫,7.6,76637,喜剧/动画/奇幻/冒险,美国,2011,582441.2\r\n倩女幽魂,5.3,76560,剧情/惊悚/奇幻/古装,中国大陆/香港,2011,405768\r\n浓情巧克力,8,76548,剧情/爱情,英国/美国,2000,612384\r\n澳门风云2 賭城,5.7,76432,喜剧/动作,香港/中国大陆,2015,435662.4\r\n麦兜响当当 麥兜響當,7.3,76236,喜剧/动画,中国大陆/香港,2009,556522.8\r\n红猪 紅の,8.3,75831,爱情/动画/奇幻/冒险,日本,1992,629397.3\r\n言叶之庭 言の葉の,8.2,75810,爱情/动画,日本,2013,621642\r\n宿醉,6.8,75692,喜剧,美国,2011,514705.6\r\n红高粱,8.2,75606,剧情/战争,中国大陆,1905,619969.2\r\n暴力云与送子鹳,9.2,75567,喜剧/动画/短片/奇幻,美国,2009,695216.4\r\n死侍,7.5,75306,喜剧/动作/科幻/冒险,美国/加拿大,2016,564795\r\n生化危机3：灭,7.1,75220,动作/科幻/惊悚/恐怖,美国/法国/澳大利亚/德国/英国,2007,534062\r\n伤城,6.8,75166,剧情/惊悚/犯罪,中国大陆/香港,2006,511128.8\r\n生化危机2：启示,7.6,75091,动作/科幻/惊悚/恐怖,德国/法国/英国/加拿大/美国,2004,570691.6\r\n建党伟业,5.3,75045,剧情/历史,中国大陆/香港,2011,397738.5\r\n兰戈,7.8,75014,喜剧/动作/动画/家庭/西部/冒险,美国,2011,585109.2\r\n风暴 風,6.4,74957,动作/犯罪,香港/中国大陆,2013,479724.8\r\n阿黛尔的生活 ,8.3,74935,剧情/爱情/同性,法国/比利时/西班牙/突尼斯,2013,621960.5\r\n天使之恋 天使の,7.5,74920,剧情,日本,2009,561900\r\n兵临城下,8.3,74898,剧情/惊悚/历史/战争,美国/德国/英国/爱尔兰,2001,621653.4\r\n大闹天宫,9.2,74881,动画/奇幻,中国大陆,1905,688905.2\r\n饥饿游戏3：嘲笑鸟,5.8,74838,动作/科幻/冒险,美国,2015,434060.4\r\n碟中谍,7,74740,动作/惊悚/冒险,美国/德国,2000,523180\r\n天机·富春山居图,2.9,74709,动作/冒险,中国大陆,2013,216656.1\r\n五十度灰,5,74672,剧情/爱情/情色,美国,2015,373360\r\n惊天危机,7.4,74558,动作/灾难,美国,2013,551729.2\r\n大红灯笼高高挂,8.2,74443,剧情,中国大陆/香港/台湾,1991,610432.6\r\n吾栖之肤,7.5,74416,惊悚,西班牙,2011,558120\r\n雨中曲,8.9,74373,喜剧/爱情/歌舞,美国,1952,661919.7\r\n斗牛,7.7,74302,剧情/喜剧,中国,2009,572125.4\r\n色即是空,7.2,74251,喜剧/爱情/情色,韩国,2002,534607.2\r\n情癫大圣,5.3,74177,剧情/喜剧/动作/爱情/科幻/奇幻,中国大陆/香港,2005,393138.1\r\n爱情无线牵,6.7,74140,喜剧/爱情,美国,2011,496738\r\n当哈利遇到莎莉,8.2,73933,剧情/喜剧/爱情,美国,1989,606250.6\r\n暮光之城4：破晓,6.3,73893,剧情/爱情/惊悚/奇幻/冒险,美国,2012,465525.9\r\n消失的子弹,6.5,73883,动作/悬疑/犯罪,中国大陆/香港,2012,480239.5\r\n万有引力,6.5,73849,剧情/喜剧/爱情/悬疑,中国大陆/香港,2011,480018.5\r\n一个都不能少,7.4,73830,剧情/喜剧,中国大陆,1999,546342\r\n赛车总动员,7.7,73326,喜剧/动画/家庭/冒险/运动,美国,2006,564610.2\r\n整蛊专家 整蠱專,7.2,73304,喜剧/爱情,香港,1991,527788.8\r\n火柴人,8.2,73091,剧情/喜剧/犯罪,美国,2003,599346.2\r\n小时代4：灵魂尽,4.7,72967,喜剧/爱情,中国大陆,2015,342944.9\r\n月满轩尼诗 月滿軒尼,6.7,72957,喜剧/爱情,香港,2010,488811.9\r\n月满轩尼诗 月滿軒尼,6.7,72956,喜剧/爱情,香港,2010,488805.2\r\n鹿鼎记2：神龙教 鹿鼎記I,7.6,72948,喜剧/动作/武侠/古装,香港,1992,554404.8\r\n聚焦,8.8,72733,剧情/传记,美国/加拿大,2015,640050.4\r\n牛仔裤的夏天,7.6,72697,剧情/喜剧/爱情/冒险,美国,2005,552497.2\r\n情人,8,72684,剧情/爱情/情色/传记,法国/英国/越南,1992,581472\r\n小森林 夏秋篇 リトル・フォレス,8.9,72602,剧情,日本,2014,646157.8\r\n欲望都市,7.7,72570,剧情/喜剧/爱情,美国,2008,558789\r\n神奇四侠,6.5,72500,动作/科幻/奇幻/冒险,美国/德国,2005,471250\r\n速度与激情,7.6,72393,动作/惊悚/犯罪,美国/德国,2001,550186.8\r\n新少林寺,5.9,72381,剧情/动作,中国大陆/香港,2011,427047.9\r\n十七岁的单车,7.7,72354,剧情,中国大陆/台湾,2001,557125.8\r\n汉尼拔,8.1,72327,惊悚/犯罪,英国/美国,2001,585848.7\r\n白鹿原,6.2,72279,剧情/历史,中国大陆,2012,448129.8\r\n幻影凶间,7.3,72233,惊悚/恐怖,美国,2007,527300.9\r\n古墓丽影,7,72158,动作/惊悚/奇幻/冒险,美国/英国/德国/日本,2001,505106\r\n枪火 鎗,8.5,72077,剧情/动作/犯罪,香港,1999,612654.5\r\n炮友,6.6,72029,喜剧/爱情,美国,2011,475391.4\r\n牯岭街少年杀人事件 牯嶺街少年殺人事,8.6,72008,剧情/犯罪,台湾,1991,619268.8\r\n勇士,8.9,71866,剧情/家庭/运动,美国,2011,639607.4\r\n蓝色茉莉,7.9,71739,剧情/家庭,美国,2013,566738.1\r\n触不到的恋人,7.7,71701,剧情/爱情/奇幻,美国/澳大利亚,2006,552097.7\r\n我的黑色小礼服,7.2,71610,剧情,韩国,2011,515592\r\n分手信,7.1,71319,剧情/爱情/战争,美国,2010,506364.9\r\n女间谍,7.6,71157,喜剧/动作/犯罪,美国,2015,540793.2\r\n生死狙击,7.7,71086,动作/悬疑/惊悚/犯罪,美国,2007,547362.2\r\n东邪西毒：终极版 東邪西毒終極,8.6,71083,剧情/动作/爱情,香港/中国大陆/台湾,2009,611313.8\r\n垫底辣妹 ビリギャ,8.2,70993,剧情/家庭,日本,2016,582142.6\r\n美食、祈祷和恋爱,7.3,70896,剧情/爱情,美国,2010,517540.8\r\n2001,8.5,70706,剧情/科幻/悬疑/冒险,美国/英国,1968,601001\r\n热血警探,8.3,70685,喜剧/动作,美国/法国/英国,2007,586685.5\r\n贱女孩,6.8,70307,剧情/喜剧,美国/加拿大,2004,478087.6\r\n断头谷,7.7,70260,悬疑/惊悚/奇幻,德国/美国,1999,541002\r\n机械师,6.9,70223,剧情/动作/惊悚,美国,2012,484538.7\r\n分手说爱你 分手說愛,7.4,70137,剧情/喜剧/爱情,香港,2010,519013.8\r\n超市夜未眠,7.8,70081,剧情/喜剧/爱情,英国,2006,546631.8\r\n西游记之孙悟空三打白骨精,5.8,70037,喜剧/动作/奇幻,中国大陆/香港,2016,406214.6\r\n爱情呼叫转移Ⅱ：爱情左右,5.3,69952,喜剧/爱情,中国,2008,370745.6\r\n艺术家,8.4,69845,剧情/喜剧/爱情,法国/比利时/美国,2012,586698\r\n偷天陷阱,7.7,69843,动作/爱情/惊悚/犯罪,美国/英国/德国,1999,537791.1\r\n马达加斯加2：逃往非,7.6,69739,喜剧/动作/动画/家庭/冒险,美国,2009,530016.4\r\n闪电狗,7.3,69660,喜剧/动画/家庭/冒险,美国,2008,508518\r\n笑傲江湖2：东方不败 笑傲江湖II,8.2,69647,动作/武侠/古装,香港,1992,571105.4\r\n里约大冒险,7.7,69642,喜剧/动画/冒险,美国,2014,536243.4\r\n花木兰,6.3,69600,剧情/爱情/冒险,中国大陆/香港,2009,438480\r\n麦兜当当伴我心 麥兜‧噹噹伴,8.4,69596,喜剧/动画,中国大陆/香港,2012,584606.4\r\n一级恐惧,8.3,69547,剧情/悬疑/惊悚/犯罪,美国,1996,577240.1\r\n偷天换日,7.6,69412,动作/惊悚/犯罪,美国,2003,527531.2\r\n夺命金 奪命,7.1,69271,剧情/犯罪,香港,2012,491824.1\r\n赛末点,8,69267,剧情/爱情/悬疑,英国/美国/爱尔兰/俄罗斯,2005,554136\r\n少数派报告,7.7,69239,动作/科幻/悬疑/惊悚/犯罪,美国,2002,533140.3\r\n建筑学概论,7.5,69053,爱情,韩国,2012,517897.5\r\n新宿事件,7.3,68962,剧情/惊悚/犯罪,香港,2009,503422.6\r\n美国队长,8.1,68903,动作/科幻/冒险,美国,2016,558114.3\r\n三枪拍案惊奇,4.6,68888,剧情,中国大陆/香港,2009,316884.8\r\n杀手没有假期,8.1,68645,剧情/喜剧/犯罪,英国/美国,2008,556024.5\r\n爸爸去哪儿,6.2,68645,喜剧/家庭/儿童,中国大陆,2014,425599\r\n木乃伊归来,7.4,68571,动作/奇幻/冒险,美国,2001,507425.4\r\n时时刻刻,8.5,68531,剧情/传记,美国/英国,2002,582513.5\r\n转山,8,68454,剧情/冒险,中国大陆/台湾,2011,547632\r\n天生杀人狂,8,68441,剧情/动作/爱情/惊悚/犯罪,美国,1994,547528\r\n千年女优 千年女,8.4,68399,剧情/爱情/动画,日本,2001,574551.6\r\n一页台北 一頁台,6.6,68160,喜剧/爱情,台湾/美国,2010,449856\r\n栀子花开,4.1,68121,爱情,中国大陆,2015,279296.1\r\n前目的地,7.6,68027,科幻/悬疑,澳大利亚,2015,517005.2\r\n魔术师,7.6,67985,剧情/爱情/悬疑,美国/捷克,2006,516686\r\n异形,7.9,67970,科幻/恐怖,英国/美国,1979,536963\r\n无敌浩克,6.8,67874,动作/科幻/惊悚,美国,2008,461543.2\r\n不一样的天空,8.6,67858,剧情/爱情/家庭,美国,1993,583578.8\r\n诸神之战,6,67496,动作/奇幻/冒险,美国,2010,404976\r\n勇敢者的游戏,7.9,67428,惊悚/家庭/奇幻/冒险,美国,1995,532681.2\r\n忍者神龟：变种时代,6.4,67417,喜剧/动作/科幻/冒险,美国,2014,431468.8\r\n小鸡快跑,7.5,67411,喜剧/动画/家庭,英国/美国,2001,505582.5\r\n茜茜公主,8.5,67236,剧情/喜剧/爱情/历史,奥地利,1955,571506\r\n暴力街区,8,67208,动作/犯罪,法国,2004,537664\r\n天使与魔鬼,7.2,67186,悬疑/惊悚,美国,2009,483739.2\r\n锅匠，裁缝，士兵，间谍,7.9,66966,剧情/惊悚,英国/法国/德国,2011,529031.4\r\n汉江怪物,7.1,66937,剧情/科幻/惊悚/灾难,韩国,2006-07-27/2012-06,475252.7\r\n一树梨花压海棠,7.9,66879,剧情/爱情/情色,美国/法国,1997,528344.1\r\n死神来了,6.3,66814,悬疑/惊悚,美国,2009,420928.2\r\n戏梦巴黎,7.8,66808,剧情/爱情/情色/历史,法国/英国/意大利,2003,521102.4\r\n电子情书,7.8,66720,喜剧/爱情,美国,1998,520416\r\n玩具总动员,7.9,66645,喜剧/动画/家庭/奇幻/冒险,美国,1999,526495.5\r\n爱再来一次,8,66610,剧情/喜剧/爱情/奇幻,美国/英国,2004,532880\r\n圣诞夜惊魂,8.2,66574,剧情/动画/惊悚/歌舞/奇幻,美国,1993,545906.8\r\n狼少年,7.8,66448,爱情/奇幻,韩国,2013,518294.4\r\n恶棍天使,4,66427,喜剧,中国大陆,2015,265708\r\n太极1：从零开,5.7,66426,喜剧/动作/奇幻/武侠/古装,中国大陆,2012,378628.2\r\n超能查派,7.2,66418,动作/科幻/惊悚,美国/墨西哥/南非,2015,478209.6\r\n空中营救,7.5,66373,动作/悬疑/惊悚/灾难,英国/法国/美国,2014,497797.5\r\n中央车站,8.7,66364,剧情,巴西/法国,1998,577366.8\r\n10,7.3,66312,喜剧/家庭,美国,1996,484077.6\r\n八恶人,8.3,66234,剧情/犯罪/西部,美国,2015,549742.2\r\n白兔糖 うさぎドロッ,7.9,66232,剧情/喜剧,日本,2011,523232.8\r\n闺蜜,5.5,66205,喜剧/爱情,中国大陆,2014,364127.5\r\n预见未来,7.1,66052,动作/爱情/科幻/惊悚/奇幻,美国,2007,468969.2\r\n实习生,7.7,65651,喜剧,美国,2015,505512.7\r\n星愿 星,7.1,65614,剧情/爱情/奇幻,香港,1999,465859.4\r\n憨豆的黄金周,7.8,65609,喜剧/家庭,英国/法国/德国,2007,511750.2\r\n我家买了动物园,7.8,65596,剧情/喜剧/家庭,美国,2011,511648.8\r\n风雨哈佛路,8.2,65545,剧情/传记,美国,2003,537469\r\n天才瑞普利,8.2,65480,剧情/惊悚/犯罪,美国,1999,536936\r\n马达加斯加的企鹅,7.4,65384,喜剧/动画/冒险,美国,2014,483841.6\r\n洛城机密,8.6,65095,剧情/悬疑/惊悚/犯罪,美国,1997,559817\r\n我的早更女友,5.5,64920,喜剧/爱情,中国大陆,2014,357060\r\n摩登时代,9.1,64916,剧情/喜剧/爱情,美国,1936,590735.6\r\n朱莉与朱莉娅,8,64869,剧情/传记,美国,2009,518952\r\n四个婚礼和一个葬礼,7.4,64783,剧情/喜剧/爱情,英国,1994,479394.2\r\n咒怨 呪,7.3,64779,悬疑/恐怖,日本,2002,472886.7\r\n审死官 審死,7.3,64728,喜剧/古装,香港,1992,472514.4\r\n国家宝藏：夺宝秘笈,7.1,64618,喜剧/动作/悬疑/惊悚/冒险,美国,2007,458787.8\r\n单身男女2 單身,5.4,64607,喜剧/爱情,香港/中国大陆,2014,348877.8\r\n创：战纪,6.4,64552,动作/科幻/惊悚/冒险,美国,2011,413132.8\r\n敢死队,6.7,64503,动作/惊悚/冒险,美国/法国,2014,432170.1\r\n速度与激情,7.6,64421,剧情/动作/惊悚/犯罪,美国,2009,489599.6\r\n机械师,7.5,64348,剧情/悬疑/惊悚,西班牙,2004,482610\r\n旋风小子,7.8,64338,喜剧,香港/台湾,1994,501836.4\r\n电锯惊魂,7.9,64119,悬疑/惊悚/犯罪,美国/加拿大,2006,506540.1\r\n四大名捕,5,64041,动作/爱情/悬疑/武侠/古装,中国大陆/香港,2012,320205\r\n关云长,4.9,63935,剧情/动作/传记/历史,中国大陆/香港,2011,313281.5\r\n飓风营救,6.7,63767,剧情/动作/犯罪,法国,2012,427238.9\r\n国家公敌,8,63744,剧情/动作/惊悚,美国,1998,509952\r\n生死时速,8,63645,动作/惊悚/犯罪,美国,1994,509160\r\n赌圣 賭,7.3,63633,喜剧/动作,香港,1990,464520.9\r\n无间道风云,7.1,63614,剧情/惊悚/犯罪,美国/香港,2006,451659.4\r\n8,7,63591,剧情,中国大陆,2010,445137\r\n有话好好说,7.9,63589,喜剧,中国/香港,1997,502353.1\r\n分歧者：异类觉醒,6.4,63566,动作/爱情/科幻/冒险,美国,2014,406822.4\r\n可爱的骨头,7.1,63488,剧情/惊悚/家庭/奇幻,美国/英国/新西兰,2009,450764.8\r\n戴珍珠耳环的少女,7.7,63486,剧情/爱情/传记,英国/卢森堡,2003,488842.2\r\n追击者,8.3,63269,剧情/惊悚/犯罪,韩国,2008,525132.7\r\n大卫·戈尔的一生,8.7,63229,剧情/悬疑/犯罪,美国/德国/英国,2003,550092.3\r\n午夜凶铃 リン,7.4,62966,悬疑/恐怖,日本,1998,465948.4\r\n推拿,7.7,62889,剧情,中国大陆/法国,2014,484245.3\r\n那小子真帅,6.8,62803,喜剧/爱情,韩国,2004,427060.4\r\n美女与野兽,8.2,62800,喜剧/爱情/动画/歌舞/奇幻,美国,1991,514960\r\n一生一世,5.1,62771,爱情,中国大陆/香港,2014,320132.1\r\n哪吒闹海,8.8,62722,动画/奇幻/冒险,中国,1979,551953.6\r\n好好先生,7.6,62696,喜剧/爱情,美国/澳大利亚,2008,476489.6\r\n极品飞车,7.3,62632,剧情/动作/惊悚/犯罪,美国/菲律宾/爱尔兰/英国,2014,457213.6\r\n结婚大作战,6.7,62628,喜剧/爱情,美国,2009,419607.6\r\n最强囍事,5.3,62615,喜剧/爱情,中国大陆/香港,2011,331859.5\r\n亲切的金子,7.6,62601,剧情/惊悚/犯罪,韩国,2005,475767.6\r\n逆光飞翔 逆光飛,8.3,62569,剧情/爱情,台湾,2013,519322.7\r\n无人驾驶,6.2,62507,剧情/爱情,中国大陆,2010,387543.4\r\n我们俩,8.6,62469,剧情,中国大陆,2005,537233.4\r\n哪啊哪啊神去村 WOOD JOB,8.5,62365,剧情/喜剧,日本,2014,530102.5\r\n极速风流,8.8,62305,剧情/传记/运动,英国/美国/德国,2015,548284\r\n天注定,7.8,62290,剧情/犯罪,中国大陆/日本/法国,2013,485862\r\n我在伊朗长大,8.7,62287,剧情/动画/传记/战争,法国/美国,2007,541896.9\r\n怪物史瑞克,7.6,62169,喜剧/动画/家庭/奇幻/冒险,美国,2004,472484.4\r\n警察故事,5.7,62152,剧情/动作/犯罪,中国大陆/香港,2013,354266.4\r\n孔雀,7.8,62137,剧情/家庭,中国大陆,2005,484668.6\r\n名侦探柯南：贝克街的亡灵 名探偵コナン ベイカー街の,8.8,62133,动画/悬疑/冒险,日本,2002,546770.4\r\n天水围的日与夜 天水圍的日與,8.5,62051,剧情,香港,2008,527433.5\r\n天将雄师,6,62022,动作/战争/古装,中国大陆/香港,2015,372132\r\n你好，陌生人,7.7,61945,喜剧/爱情,泰国,2010,476976.5\r\n72家,6.7,61939,喜剧,香港,2010,414991.3\r\n海街日记 海,8.6,61927,剧情/家庭,日本,2015,532572.2\r\n我的初恋情人 僕の初恋をキミに捧,7.4,61786,剧情/爱情,日本,2009,457216.4\r\n泰山,7.5,61586,剧情/动画/家庭/冒险,美国,1999,461895\r\n家有喜事,8,61544,剧情/喜剧/爱情/家庭,香港,1992,492352\r\n完美的世界,9,61397,剧情/犯罪,美国,1993,552573\r\n小森林 冬春篇 リトル・フォレス,8.9,61391,剧情,日本,2015,546379.9\r\n特种部队2：全面反,6.4,61153,动作/冒险,美国,2013,391379.2\r\n007：大破量,6.4,61146,动作/惊悚/冒险,英国/美国,2008,391334.4\r\n地球上的星星,8.9,61122,剧情/家庭/儿童,印度,2007,543985.8\r\n惊魂记,8.8,60941,悬疑/恐怖,美国,1960,536280.8\r\n十二罗汉,7.1,60816,惊悚/犯罪,美国,2004,431793.6\r\n芳芳,8.1,60754,喜剧/爱情,法国,1993,492107.4\r\n夏日么么茶 夏日的嬷嬷,6.7,60710,喜剧/爱情,香港,2000,406757\r\n证人,7.2,60568,动作/惊悚,香港/中国大陆,2008,436089.6\r\n美国派,7.3,60531,喜剧/爱情,美国,1999,441876.3\r\n北京遇上西雅图之不二情书,6.7,60530,喜剧/爱情,中国大陆/香港,2016,405551\r\n闰年,7.8,60458,喜剧/爱情,美国/爱尔兰,2010,471572.4\r\n千钧一发,8.7,60408,剧情/科幻,美国,1997,525549.6\r\n小鬼当家,7.7,60365,喜剧/家庭/犯罪/冒险,美国,1992,464810.5\r\n赤道,6,60194,剧情/动作/悬疑/犯罪,香港,2015,361164\r\n终结者,6.7,60135,动作/科幻/惊悚/冒险,美国/德国/英国/意大利,2009,402904.5\r\n比悲伤更悲伤的故事,7.7,60046,剧情/爱情,韩国,2009,462354.2\r\n黑暗中的舞者,8.3,59932,剧情/歌舞,丹麦/西班牙/阿根廷/德国/荷兰/意大利/美国/英国/法国/瑞典/芬兰/冰岛/挪威,2000,497435.6\r\n血肉之躯,7.3,59824,喜剧/爱情/恐怖,美国,2013,436715.2\r\n少年斯派维的奇异旅行,8.5,59756,剧情/家庭/冒险,法国/澳大利亚/加拿大,2013,507926\r\n银河系漫游指南,8.1,59567,喜剧/科幻/冒险,美国/英国,2005,482492.7\r\n邻家特工,6.1,59561,喜剧/动作/家庭,美国,2010,363322.1\r\n追随,9,59219,悬疑/惊悚/犯罪,英国,1998,532971\r\n太平轮(,5.8,59197,剧情/爱情/战争,中国大陆/香港,2014,343342.6\r\n宝莲灯,7.4,59107,动画,中国大陆,1999,437391.8\r\n钢琴课,8,59098,剧情/爱情,澳大利亚/新西兰/法国,1993,472784\r\n未麻的部屋,8.7,59096,动画/惊悚/奇幻,日本,1997,514135.2\r\n辛普森一家,8.4,59068,喜剧/动画/冒险,美国,2007,496171.2\r\n给朱丽叶的信,7.6,59016,剧情/喜剧/爱情,美国,2010,448521.6\r\n侏罗纪公园2：失落的世,7.5,58978,动作/科幻/惊悚/冒险,美国,1997,442335\r\n桃花运,5.8,58933,剧情/喜剧/爱情,中国/香港,2008,341811.4\r\n青蜂侠,5.8,58894,喜剧/动作/犯罪,美国,2011,341585.2\r\n七武士 七人の,9.1,58845,剧情/动作/冒险,日本,1954,535489.5\r\n月升王国,8.2,58824,剧情/爱情/儿童,美国,2012,482356.8\r\n赤焰战场,7.5,58655,喜剧/动作,美国,2011,439912.5\r\n危险关系,5.8,58621,剧情/爱情,中国大陆/韩国/新加坡,2012,340001.8\r\n丹麦女孩,8,58592,剧情/爱情/传记,英国/美国/比利时/丹麦/德国,2015,468736\r\n旺角卡门 旺角卡,7.6,58579,剧情/爱情/犯罪,香港,1988,445200.4\r\n破风 破,7.3,58425,剧情/运动,香港/中国大陆,2015,426502.5\r\n万箭穿心,8.4,58413,剧情/家庭,中国大陆,2012,490669.2\r\n岁月的童话 おもひでぽろぽ,8.5,58290,剧情/爱情/动画,日本,1991,495465\r\n我最好朋友的婚礼,7.4,58053,喜剧/爱情,美国,1997,429592.2\r\n黑夜传说,7.4,57854,动作/科幻/惊悚/奇幻,英国/德国/匈牙利/美国,2003,428119.6\r\n心理游戏,7.7,57699,动作/悬疑/惊悚/冒险,美国,1997,444282.3\r\n我的父亲母亲,7.8,57597,剧情/爱情,中国大陆,1999,449256.6\r\n幸福额度,5.9,57594,喜剧/爱情,中国大陆,2011,339804.6\r\n蓝白红三部曲之蓝,8.5,57549,剧情/爱情,法国/波兰/瑞士,1993,489166.5\r\n回到未来,8.4,57480,喜剧/科幻/冒险,美国,1985,482832\r\n窈窕绅士,6.1,57465,喜剧/爱情,中国大陆,2009,350536.5\r\n玩命快递,7.2,57418,动作/犯罪,法国/美国,2002,413409.6\r\n命运规划局,6.9,57395,爱情/科幻,美国,2011,396025.5\r\n九降风 九降,7.4,57343,剧情,台湾,2008,424338.2\r\n阿黛拉的非凡冒险 ,6.8,57280,喜剧/奇幻/冒险,法国,2010,389504\r\n招魂,7.5,57261,悬疑/恐怖,美国,2013,429457.5\r\n爱的发声练习 愛的發聲練,5.6,57080,爱情,台湾,2008,319648\r\n导火线 導火,6.9,57035,动作,香港/中国大陆,2007,393541.5\r\n另一个波琳家的女孩,6.9,56999,剧情/爱情/传记/历史,英国/美国,2008,393293.1\r\n死神来了,6.4,56985,悬疑/惊悚,美国,2011,364704\r\n我是谁 我是,7.2,56922,喜剧/动作/科幻/冒险,香港,1998,409838.4\r\n看上去很美,7.9,56890,剧情/喜剧,中国大陆/意大利,2006,449431\r\n大笑江湖,4.6,56854,动作/古装,中国大陆/台湾,2010,261528.4\r\n功夫梦,6.4,56852,剧情/动作/家庭/运动,美国/中国大陆,2010,363852.8\r\n美国骗局,6.7,56776,剧情/犯罪,美国,2014,380399.2\r\n东京审判,7.3,56734,剧情/历史/战争/犯罪,中国大陆,2006,414158.2\r\n最好的时光 最好的時,7.5,56550,剧情/爱情,台湾,2005,424125\r\n超验骇客,6.6,56495,动作/爱情/科幻,美国/中国大陆/英国,2014,372867\r\n京城8,5,56465,剧情/悬疑/恐怖,中国大陆,2014,282325\r\n孔子,5.3,56463,剧情/传记,中国大陆/香港,2010,299253.9\r\n机器人9,7.4,56376,科幻/动画/悬疑/惊悚/奇幻/冒险,美国,2009,417182.4\r\n极乐空间,6.2,56303,剧情/动作/科幻,美国,2013,349078.6\r\n美国X档,8.5,56217,剧情/犯罪,美国,1998,477844.5\r\n十万个冷笑话,6.3,56165,喜剧/动画/奇幻,中国大陆,2014,353839.5\r\n伊莎贝拉,7.6,56154,剧情,香港,2006,426770.4\r\n危情三日,7.9,56033,剧情/动作/爱情/惊悚/犯罪,美国/法国,2011,442660.7\r\n赤裸特工,6.4,56026,剧情/动作/爱情/惊悚,香港,2002,358566.4\r\n守望者,7.9,56007,动作/科幻/悬疑/惊悚/犯罪/奇幻,美国,2009,442455.3\r\n恐怖蜡像馆,6.8,55995,惊悚/恐怖,美国/澳大利亚,2005,380766\r\n歌舞青春,7.2,55982,剧情/喜剧/家庭,美国,2007,403070.4\r\n盗火线,8.4,55888,剧情/惊悚/犯罪,美国,1995,469459.2\r\n王的盛宴,5.2,55681,历史/古装,中国大陆,2012,289541.2\r\n特殊身份,3.8,55664,动作/犯罪,中国大陆,2013,211523.2\r\n痞子英雄之全面开战 痞子英,6.5,55663,剧情/动作/犯罪,中国大陆/台湾,2012,361809.5\r\n逆战,6.5,55578,剧情/动作/惊悚/犯罪,香港/中国大陆,2012,361257\r\n机械战警,6.3,55563,动作/科幻/犯罪,美国,2014,350046.9\r\n结婚礼服,8.5,55467,剧情/家庭,韩国,2010,471469.5\r\n木乃伊,5.4,55372,动作/惊悚/奇幻/冒险,美国/德国,2008,299008.8\r\n雪花秘扇,5.7,55317,剧情/历史,中国大陆/美国,2011,315306.9\r\nBJ单身日记2：理,7.3,55292,喜剧/爱情,英国/法国/德国/爱尔兰/美国,2004,403631.6\r\n生日快乐,7.2,55284,爱情,香港,2007,398044.8\r\n方世玉,7.6,55271,喜剧/动作/武侠/古装,香港,1993,420059.6\r\n早熟,6.6,55269,剧情/爱情,香港,2005,364775.4\r\n秘密特工,8,55226,喜剧/动作/冒险,美国/英国,2015,441808\r\n人间·小团圆 香港,5.2,55219,剧情,香港/中国大陆,2014,287138.8\r\n活埋,7.7,55163,剧情/悬疑/惊悚,西班牙/美国/法国,2010,424755.1\r\n天伦之旅,8.7,55160,剧情/家庭,美国,2009,479892\r\n苹果,6.4,55141,剧情/情色,中国大陆,2007,352902.4\r\n虞美人盛开的山坡 コクリコ坂か,7.7,55123,剧情/动画,日本,2011,424447.1\r\n逃出克隆岛,7,54970,动作/科幻/惊悚/冒险,美国,2005,384790\r\n霜花店,6.9,54956,剧情/爱情/情色/同性/历史,韩国,2008,379196.4\r\n心动 心,8.2,54896,爱情,香港/日本,1999,450147.2\r\n布达佩斯之恋,8.6,54892,剧情/爱情,德国/匈牙利,1999,472071.2\r\n莎翁情史,7.4,54887,剧情/喜剧/爱情,英国/美国,1998,406163.8\r\n别让我走,7.7,54856,剧情/爱情/科幻,英国/美国,2010,422391.2\r\n美少年之恋,7.4,54853,剧情/爱情/同性,香港,1998,405912.2\r\n速度与激情3：东京漂,6.6,54823,剧情/动作/惊悚/犯罪,美国/德国,2006,361831.8\r\n摩纳哥王妃,6.8,54818,剧情/爱情/传记,法国/美国/比利时/意大利/瑞士,2014,372762.4\r\n逆世界,6.2,54754,剧情/爱情/科幻/奇幻,加拿大/法国,2013,339474.8\r\n黄金罗盘,6.4,54751,家庭/奇幻/冒险,美国/英国,2008,350406.4\r\n梦旅人,8.4,54726,剧情/奇幻,日本,1996,459698.4\r\n蓝色情人节,7.7,54715,剧情/爱情/家庭,美国,2010,421305.5\r\n登堂入室,8.5,54692,剧情/悬疑,法国,2012,464882\r\n死亡笔记：最后的名字 デスノー,7.7,54686,剧情/悬疑/惊悚/犯罪/冒险,日本,2006,421082.2\r\n后窗,8.4,54639,悬疑/惊悚,美国,1954,458967.6\r\n亲密敌人,5.7,54541,剧情/爱情,中国大陆,2011,310883.7\r\n27套,6.7,54498,喜剧/爱情,美国,2008,365136.6\r\n我是证人,6.1,54478,剧情/悬疑/犯罪,中国大陆/韩国,2015,332315.8\r\n大上海,6.6,54472,剧情/动作,中国大陆/香港,2012,359515.2\r\n倩女幽魂2：人间道 倩女幽魂I,7.7,54323,喜剧/动作/爱情/鬼怪,香港,1990,418287.1\r\n关键第四号,6.2,54308,动作/科幻/惊悚,美国,2011,336709.6\r\n点球成金,8.1,54267,剧情/传记/运动,美国,2011,439562.7\r\n加菲猫,7.4,54234,喜剧/家庭,英国/美国,2006,401331.6\r\n游龙戏凤 遊龍戲,6.1,54154,爱情,香港,2009,330339.4\r\n王牌对王牌,8.4,54153,剧情/动作/悬疑/惊悚/犯罪,美国/德国,1998,454885.2\r\n范海辛,7.1,54079,剧情/动作/悬疑/惊悚/奇幻/冒险,捷克/美国,2004,383960.9\r\n翻滚吧！阿信 翻滾吧！阿,7.1,53921,剧情/喜剧/运动,台湾,2011,382839.1\r\n八面埋伏,7.6,53787,剧情/悬疑/惊悚/犯罪,美国/荷兰/英国/芬兰,2004,408781.2\r\n逃学威龙2 逃學,7.1,53739,喜剧,香港,1992,381546.9\r\n黑暗面,8.1,53683,剧情/悬疑/惊悚,哥伦比亚/西班牙,2011,434832.3\r\n钟馗伏魔：雪妖魔灵,4.3,53680,动作/爱情/奇幻,中国大陆/香港/美国,2015,230824\r\n名侦探柯南：世纪末的魔术师 名探偵コナン 世紀末の魔,8.5,53635,喜剧/动画/悬疑/犯罪/冒险,日本,1999,455897.5\r\n阅后即焚,7,53602,剧情/喜剧/犯罪,美国/英国/法国,2008,375214\r\n暮光之城4：破晓,6.5,53566,剧情/爱情/惊悚/奇幻/冒险,美国,2012,348179\r\n名侦探柯南：引爆摩天楼 名探偵コナン 時計じかけの摩,8.3,53517,喜剧/动画/悬疑/家庭/冒险,日本,1997,444191.1\r\n叶问,6.4,53474,剧情/动作/传记/历史,中国大陆/香港,2016,342233.6\r\n费城故事,8.6,53438,剧情/同性,美国,1993,459566.8\r\n一个勺子,7.7,53375,剧情/喜剧,中国大陆,2015,410987.5\r\n父与女,9.2,53358,剧情/动画/短片,英国/比利时/荷兰,2001,490893.6\r\n单身男子,8.4,53345,剧情/同性,美国,2009,448098\r\n白发魔女传之明月天国,3.8,53336,动作/爱情/奇幻/武侠/古装,中国大陆/香港,2014,202676.8\r\n黄海,8.3,53327,剧情/动作/犯罪,韩国/美国/香港,2010,442614.1\r\n精武风云·陈真,6.1,53323,动作,香港/中国大陆,2010,325270.3\r\n盲井,8.6,53298,剧情/犯罪,中国大陆/德国/香港,2003,458362.8\r\n十三罗汉,7.3,53198,惊悚/犯罪,美国,2007,388345.4\r\n盗钥匙的方法 鍵泥棒のメソッ,8.4,53105,剧情/喜剧,日本,2012,446082\r\n电锯惊魂,7.6,53064,悬疑/惊悚/犯罪,美国/加拿大,2007,403286.4\r\n初三大四我爱你,7.2,52959,爱情,泰国,2009,381304.8\r\n千机变Ⅱ花都大战,5.4,52944,喜剧/动作/奇幻/冒险,中国大陆/香港,2004,285897.6\r\n赌侠,7.3,52901,剧情/喜剧,香港,1990,386177.3\r\n电焊工波力,9,52898,喜剧/动画/短片,美国,2008,476082\r\n灵魂战车,6.4,52746,动作/惊悚/奇幻,美国/澳大利亚,2007,337574.4\r\n我知女人心,5.6,52724,喜剧/爱情,中国大陆/香港/韩国,2011,295254.4\r\n狗镇,8.5,52716,剧情/悬疑/惊悚,丹麦/瑞典/挪威/芬兰/英国/法国/德国/荷兰/意大利,2003,448086\r\n云中漫步,7.8,52674,剧情/爱情,美国/墨西哥,1995,410857.2\r\n终极面试,7,52641,悬疑/惊悚,英国,2009,368487\r\n我想和你好好的,5.8,52578,剧情/爱情,中国大陆,2013,304952.4\r\n花田喜事2010,5.2,52534,喜剧,中国大陆/香港,2010,273176.8\r\n时尚先锋香奈儿,7.2,52425,剧情/传记,法国,2009,377460\r\n杀破狼 殺破,7.1,52316,剧情/动作/犯罪,香港,2005,371443.6\r\n他是龙 Он - др,7.5,52293,爱情/奇幻/冒险,俄罗斯,2015,392197.5\r\n再见列宁,8.7,52247,剧情/家庭,德国,2003,454548.9\r\n云中行走,7.6,52246,剧情/传记/冒险,美国,2016,397069.6\r\n守法公民,8,52234,剧情/惊悚/犯罪,美国,2009,417872\r\n速度与激情,7.1,52162,动作/惊悚/犯罪,美国/德国,2003,370350.2\r\n鸟！鸟！鸟！,8.7,52011,动画/短片/家庭,美国,2000,452495.7\r\n羞耻,7.3,52001,剧情/情色,英国,2011,379607.3\r\n悲伤电影,7.8,51971,剧情/喜剧/爱情,韩国,2005,405373.8\r\n纳尼亚传奇2：凯斯宾王,6.8,51929,动作/家庭/奇幻/冒险,美国/波兰Poland/斯洛文尼亚Slovenia/捷克CzechRepublic,2008,353117.2\r\n初恋红豆冰 初戀紅豆,7.6,51859,喜剧/爱情,马来西亚,2010,394128.4\r\n赌神,7.9,51853,剧情/喜剧,香港,1989,409638.7\r\n微爱之渐入佳境,4.8,51821,喜剧/爱情,中国大陆,2014,248740.8\r\n横冲直撞好莱坞,4.6,51777,喜剧/动作/冒险,中国大陆/香港/美国,2015,238174.2\r\n咱们结婚吧,6,51754,喜剧/爱情,中国大陆,2015,310524\r\n热血高校 クロー,7.6,51748,动作/惊悚,日本,2007,393284.8\r\n爱有来生,7.6,51718,剧情/爱情,中国,2009,393056.8\r\n名侦探柯南：漆黑的追踪者 名探偵コナン 漆黒の追,7.3,51661,动画/悬疑,日本,2010,377125.3\r\n终结者,7,51527,动作/科幻/惊悚,美国/德国/英国,2003,360689\r\n僵尸 殭,7.7,51488,剧情/动作/恐怖,香港,2013,396457.6\r\n魔鬼代言人,8.2,51473,剧情/悬疑/惊悚,美国/德国,1997,422078.6\r\n王的男人,6.8,51461,剧情/惊悚/同性/历史,韩国,2005,349934.8\r\n回魂夜,7.7,51408,喜剧/恐怖/奇幻,香港,1995,395841.6\r\n韩城攻略,6.1,51344,剧情/喜剧/动作,香港/韩国,2005,313198.4\r\n触不到的恋人,7.9,51328,爱情/奇幻,韩国,2000,405491.2\r\n千机变,5.8,51322,喜剧/动作/恐怖/冒险,香港,2003,297667.6\r\n星球大战前传1：幽灵的威,8,51245,动作/科幻/奇幻/冒险,美国,1999,409960\r\n跳出我天地,8.7,51216,剧情/歌舞/家庭/儿童,英国/法国,2000,445579.2\r\n阿郎的故事,8.5,51165,剧情,香港,1989,434902.5\r\n我爱你莫里斯,7.9,51102,喜剧/爱情/同性/传记,法国/美国,2009,403705.8\r\n憨豆特工,7.5,51049,喜剧/动作/冒险,英国/法国/美国,2003,382867.5\r\n新扎师妹,7.6,51010,喜剧/爱情,香港,2002,387676\r\n花好月圆,6,51007,喜剧,香港,2004,306042\r\n苍蝇一分钟的生命,8.9,50941,动画/短片,德国,1905,453374.9\r\n泰迪熊,6.4,50838,喜剧,美国,2015,325363.2\r\n小蝌蚪找妈妈,8.6,50827,动画/短片,中国大陆,1905,437112.2\r\n天龙特攻队,7.6,50811,动作/惊悚/冒险,美国,2010,386163.6\r\n狗狗与我的十个约定 犬と私の10,8,50777,剧情/喜剧/爱情,日本,2009,406216\r\n女王,7.7,50747,剧情/传记,英国/法国/意大利,2006,390751.9\r\n虫虫危机,7.7,50728,喜剧/动画/家庭/冒险,美国,1998,390605.6\r\n百变狸猫 平成狸合戦ぽんぽ,8.3,50691,剧情/喜剧/动画/奇幻,日本,1994,420735.3\r\n两生花 ,8.3,50578,剧情/爱情/奇幻,法国/挪威/波兰,1991,419797.4\r\n我是谁：没有绝对安全的系统,8,50575,悬疑/惊悚/犯罪,德国,2014,404600\r\n低俗喜剧 低俗喜,6.4,50497,喜剧/情色,香港,2012,323180.8\r\n纸人,8.1,50446,喜剧/爱情/动画/短片,美国,2012,408612.6\r\n异度空间 異度空,7.4,50259,惊悚/恐怖/犯罪,香港,2002,371916.6\r\n蓝白红三部曲之红,8.6,50250,剧情/爱情,法国/波兰/瑞士,1994,432150\r\n铁娘子：坚固柔情,7.6,50224,剧情/传记/历史,英国/法国,2013,381702.4\r\n菲利普船长,8.1,50223,剧情/传记/犯罪/冒险,美国,2013,406806.3\r\n独行侠,7.1,50174,动作/西部/冒险,美国,2013,356235.4\r\n太极张三丰 太極張三,7.4,50067,喜剧/动作/武侠/古装,香港,1993,370495.8\r\n黑暗侵袭,7.6,50042,剧情/悬疑/恐怖,英国,2005,380319.2\r\n双食记,7,49978,剧情/爱情/悬疑,中国大陆,2008,349846\r\n失孤,6.4,49901,剧情,中国大陆/香港,2015,319366.4\r\n浮城谜事,7.2,49867,剧情,中国大陆/法国,2012,359042.4\r\n堕落天使,8,49839,剧情/喜剧/爱情/犯罪,香港,1995,398712\r\n海洋之歌,8.8,49821,剧情/动画/奇幻,爱尔兰/丹麦/比利时/卢森堡/法国,2014,438424.8\r\n大象,7.8,49571,剧情/犯罪,美国,2003,386653.8\r\n黄飞鸿 黃飛,7.8,49429,剧情/动作/武侠/古装,香港,1991,385546.2\r\n感官世界 愛のコリー,6.8,49421,剧情/爱情/情色,法国/日本,1976,336062.8\r\n名侦探柯南：通向天国的倒计时 名探偵コナン 天国へのカウントダ,8.5,49399,动作/动画/悬疑/惊悚,日本,2001,419891.5\r\n葬礼上的死亡,8.1,49363,喜剧,英国/美国/德国/荷兰,2007,399840.3\r\n整容日记,4.6,49340,喜剧/爱情,中国大陆/香港,2014,226964\r\n电锯惊魂,7.6,49318,悬疑/惊悚/犯罪,美国/加拿大,2008,374816.8\r\n穿越时空爱上你,7.4,49314,喜剧/爱情/奇幻,美国,2001,364923.6\r\n黑社会 黑社,7.7,49133,剧情/惊悚/犯罪,香港,2005,378324.1\r\n芝加哥,8.4,49123,喜剧/歌舞/犯罪,美国/德国,2002,412633.2\r\n伴娘,6.9,49067,喜剧,美国,2011,338562.3\r\n暴力街区,7,48908,剧情/动作/犯罪,法国/加拿大,2014,342356\r\n三个和尚,8.6,48869,动画/短片,中国大陆,1982,420273.4\r\n红龙,7.7,48847,惊悚/犯罪,美国/德国,2002,376121.9\r\n星球大战,8.3,48752,动作/科幻/冒险,美国,1977,404641.6\r\n记住我,7.3,48644,剧情/爱情/家庭,美国,2010,355101.2\r\n婚前试爱 婚前試,5.7,48637,剧情/爱情,香港,2010,277230.9\r\n罪恶之家,8.4,48595,剧情/悬疑,英国,2015,408198\r\n公众之敌,7.4,48566,剧情/传记/历史/犯罪,美国,2009,359388.4\r\n裂缝,7.9,48504,剧情/惊悚,英国/爱尔兰/西班牙/法国/瑞士,2009,383181.6\r\n木星上行,5.4,48469,动作/科幻/冒险,美国/英国,2015,261732.6\r\n第一次,6.3,48421,爱情,中国大陆,2012,305052.3\r\n谜一样的双眼,8.3,48387,剧情/爱情/悬疑,阿根廷/西班牙,2009,401612.1\r\n名侦探柯南：迷宫的十字路口 名探偵コナン 迷宮の十,8.2,48375,动画/悬疑/冒险,日本,2003,396675\r\n神笔马良,8.3,48357,动画/短片,中国大陆,1905,401363.1\r\n死亡幻觉,7.4,48248,剧情/科幻/悬疑,美国,2001,357035.2\r\n黑洞频率,8.3,48192,剧情/科幻/惊悚/家庭/犯罪,美国,2000,399993.6\r\n没头脑和不高兴,8.6,48149,喜剧/动画/短片,中国大陆,1905,414081.4\r\n与狼共舞,8.9,48132,剧情/西部/冒险,美国,1990,428374.8\r\n狼的孩子雨和雪 おおかみこどもの雨と,8.6,48117,剧情/动画/奇幻,日本,2012,413806.2\r\n名侦探柯南：沉默的15分钟 名探偵コナン ,6.5,48111,动画/悬疑,日本,2011,312721.5\r\n千王之王,6.8,48051,喜剧,香港,1999,326746.8\r\n古惑仔之人在江湖,7.8,48039,动作/犯罪,香港,1996,374704.2\r\n新世界,8.4,47973,剧情/犯罪,韩国,2013,402973.2\r\n星河战队,7.6,47938,动作/科幻/惊悚/冒险,美国,1997,364328.8\r\n虎胆龙威,7.7,47923,动作/惊悚/犯罪,美国/英国,2007,369007.1\r\n地心历险记2：神秘,6.2,47855,动作/科幻/家庭/奇幻/冒险,美国,2012,296701\r\n对她说,8.6,47807,剧情,西班牙,2002,411140.2\r\n全金属外壳,8.4,47788,剧情/战争,英国/美国,1987,401419.2\r\n男儿本色,6.9,47745,动作/犯罪,中国大陆/香港,2007,329440.5\r\n憨豆特工,7,47715,喜剧,美国/法国/英国,2011,334005\r\n破事儿 破事,7.5,47618,喜剧,香港,2007,357135\r\n走出非洲,8.5,47535,剧情/爱情/传记/冒险,美国,1985,404047.5\r\n守护者联盟,8,47500,动画/家庭/奇幻/冒险,美国,2012,380000\r\n别惹我,7.1,47356,喜剧/动作/惊悚/犯罪,法国/美国,2014,336227.6\r\n澳门风云3 賭城,4,47236,喜剧/动作,香港/中国大陆,2016,188944\r\n野孩子,7.2,47161,剧情/喜剧/爱情,英国/美国/法国,2008,339559.2\r\n边境风云,7.6,47098,剧情/犯罪,中国大陆,2012,357944.8\r\n青春派,7.5,46955,剧情/爱情,中国大陆,2013,352162.5\r\n百元之恋 百円の,8.2,46946,剧情,日本,2014,384957.2\r\n意外,7.2,46926,惊悚,香港,2009,337867.2\r\n得闲炒饭 得閒炒,7.1,46915,剧情/爱情/同性,香港,2010,333096.5\r\n理智与情感,8.2,46898,剧情/爱情,美国/英国,1995,384563.6\r\n霹雳娇娃,6.7,46881,喜剧/动作/惊悚/犯罪/冒险,美国/德国,2001,314102.7\r\n囚徒,7.9,46871,剧情/悬疑/犯罪,美国,2013,370280.9\r\n破坏之王,7.1,46843,喜剧/动作,香港,1994,332585.3\r\n云的彼端，约定的地方 雲のむこう、約束の場,7.9,46838,剧情/科幻/动画,日本,2004,370020.2\r\n漫长的婚约,8,46837,剧情/爱情/悬疑/战争,法国/美国,2004,374696\r\n姐姐的守护者,8.3,46774,剧情/家庭,美国,2009,388224.2\r\n功夫熊猫之盖世五侠的秘密,7.6,46768,喜剧/动作/动画/短片/家庭,美国,2008,355436.8\r\n墨攻,6.1,46572,剧情/动作/战争,中国大陆/香港/日本/韩国,2006,284089.2\r\nA计划 ,7.6,46553,喜剧/动作,香港,1983,353802.8\r\n空军一号,7.5,46530,剧情/动作/惊悚,美国/德国,1997,348975\r\n相助,8.8,46519,剧情,美国/印度/阿联酋,2011,409367.2\r\n云上的日子 ,7.7,46358,剧情/爱情/情色,法国/意大利/德国,1995,356956.6\r\n保罗,7.6,46345,喜剧/科幻/冒险,美国/英国,2011,352222\r\n倾城之泪,4.9,46327,剧情/爱情,中国大陆,2011,227002.3\r\n小武,8.2,46307,剧情,香港/中国大陆,1998,379717.4\r\n人间喜剧 人間喜,7.5,46305,喜剧,香港,2010,347287.5\r\n疯狂约会美丽都,8.7,46296,喜剧/动画,法国/比利时/加拿大/英国/拉脱维亚,2003,402775.2\r\n金福南杀人事件始末,8.3,46268,剧情/惊悚/犯罪,韩国,2010,384024.4\r\n伊甸湖,7.5,46251,惊悚/恐怖,英国,2008,346882.5\r\n赛德克·巴莱(上)：太阳旗 賽德克·巴萊(,8.8,46199,剧情/历史/战争,台湾,2011,406551.2\r\n渺渺,7,46157,喜剧/爱情/同性,香港/台湾,2008,323099\r\n美国狙击手,7.4,46151,动作/传记/战争,美国,2014,341517.4\r\n推手,8.3,46044,剧情/家庭,台湾/美国,1991,382165.2\r\n土拨鼠之日,8.5,45985,剧情/喜剧/爱情/奇幻,美国,1993,390872.5\r\n盲山,8.1,45955,剧情,中国大陆,2007,372235.5\r\n电锯惊魂,7.5,45932,悬疑/惊悚/犯罪,美国/加拿大,2010,344490\r\n刺陵,3.8,45929,动作/冒险,中国大陆/台湾/香港,2009,174530.2\r\n仙境之桥,7.8,45910,剧情/家庭/奇幻/冒险,美国,2009,358098\r\n练习曲 練習,8,45888,剧情,台湾,2006,367104\r\n玩命快递,7.3,45887,动作/犯罪,法国/美国,2005,334975.1\r\n下一站，说爱你 ,7.9,45829,喜剧/爱情,泰国,2009,362049.1\r\n影子写手,7.5,45792,剧情/悬疑/惊悚,法国/德国/英国,2010,343440\r\n玻璃之城,7.9,45779,爱情/历史,香港,1998,361654.1\r\n精灵旅社,7.5,45742,喜剧/动画/奇幻,美国,2015,343065\r\n刺猬的优雅 ,8.8,45721,剧情,法国/意大利,2009,402344.8\r\n黄飞鸿之三：狮王争霸 黃飛鴻之三獅王爭,7.6,45717,动作/武侠/古装,香港/中国大陆,1993,347449.2\r\n雇佣人生,9.1,45682,剧情/喜剧/动画/短片,阿根廷,2008,415706.2\r\n爱在罗马,7.5,45662,喜剧/爱情,美国/意大利/西班牙,2012,342465\r\n小情人,8.6,45586,喜剧/儿童,泰国,2004,392039.6\r\n七个神经病,7.6,45576,喜剧/犯罪,英国,2012,346377.6\r\n怦然星动,4.3,45571,喜剧/爱情,中国大陆,2015,195955.3\r\n像素大战,6.1,45492,喜剧/动作/科幻,美国/中国大陆,2015,277501.2\r\n东京攻略 東京攻,6.4,45456,剧情/喜剧/动作/爱情,香港,2000,290918.4\r\n原罪,7.5,45379,剧情/爱情/悬疑/情色,法国/美国,2001,340342.5\r\n狼狈 ヘルタースケルタ,7,45343,剧情/惊悚/犯罪,日本,2012,317401\r\n怒火攻心,7.4,45342,剧情/动作/惊悚/犯罪,美国,2006,335530.8\r\n歌舞青春3：毕业,7.3,45293,剧情/喜剧/家庭,美国,2008,330638.9\r\n九色鹿,8.6,45282,剧情/动画/短片/奇幻,中国大陆,1905,389425.2\r\n名侦探柯南：战栗的乐谱 名探偵コナン 戦慄の,7,45272,动画/悬疑,日本,2008,316904\r\n魔法师的学徒,6.1,45179,剧情/喜剧/动作/奇幻/冒险,美国,2010,275591.9\r\n星球大战前传3：西斯的复,8.1,45161,动作/科幻/奇幻/冒险,美国,2005,365804.1\r\n死亡飞车,7.4,45150,动作/科幻/惊悚,美国,2008,334110\r\n飓风营救,6.3,45091,动作/惊悚/犯罪,法国/美国,2015,284073.3\r\n小羊肖恩,8.4,45069,喜剧/动画/冒险,英国/法国,2015,378579.6\r\n春夏秋冬又一春,8.5,45050,剧情,韩国/德国,2003,382925\r\n太极旗飘扬,8.3,45014,剧情/动作/战争,韩国,2004,373616.2\r\n饥饿游戏3：嘲笑鸟,6.1,44963,动作/科幻/冒险,美国,2015,274274.3\r\n名侦探柯南：瞳孔中的暗杀者 名探偵コナン 瞳の中の暗,8.2,44962,剧情/动画/悬疑/犯罪/冒险,日本,2000,368688.4\r\n随波逐流,7.3,44925,喜剧/爱情,美国,2011,327952.5\r\n我的小小新娘,7,44866,喜剧/爱情,韩国,2004,314062\r\n合约情人,5.4,44848,喜剧/爱情,中国大陆,2007,242179.2\r\n快乐到家,3.3,44833,喜剧,中国大陆,2013,147948.9\r\n一个购物狂的自白,6.4,44817,喜剧/爱情,美国,2009,286828.8\r\n落叶归根,7.3,44781,喜剧,中国大陆/香港,2007,326901.3\r\n玩命快递,6.9,44754,动作/犯罪,法国,2009,308802.6\r\n电锯惊魂,7.7,44691,悬疑/惊悚/犯罪,美国/加拿大/英国/澳大利亚,2009,344120.7\r\n安娜·卡列尼娜,7.1,44584,剧情/爱情,英国,2012,316546.4\r\n侠探杰克,6.1,44581,动作/惊悚/犯罪,美国,2013,271944.1\r\n好家伙,8.3,44564,剧情/喜剧/传记/犯罪,美国,1990,369881.2\r\n侏罗纪公园,7,44561,动作/科幻/惊悚/冒险,美国,2002,311927\r\n名侦探柯南：侦探们的镇魂歌 名探偵コナン 探偵たちの鎮,7.6,44503,动画/悬疑,日本,2006,338222.8\r\n绿巨人浩克,6.5,44413,动作/科幻,美国,2003,288684.5\r\n三毛从军记,8.3,44373,剧情/喜剧/战争,中国大陆,1992,368295.9\r\n隐婚男女,5.7,44363,剧情/爱情,中国大陆/香港/日本,2011,252869.1\r\n蓝白红三部曲之白,8.4,44351,剧情/喜剧/爱情/悬疑,法国/波兰/瑞士,1994,372548.4\r\n重返地球,5.5,44347,动作/科幻/冒险,美国,2013,243908.5\r\n大开眼戒,7.6,44293,剧情/悬疑/惊悚/情色,英国/美国,1999,336626.8\r\n倒霉爱神,6.8,44277,喜剧/爱情/奇幻,美国,2006,301083.6\r\n疯狂愚蠢的爱,7.3,44161,剧情/喜剧/爱情/家庭,美国,2011,322375.3\r\n缘分天注定,7.6,44143,喜剧/爱情/奇幻,美国,2001,335486.8\r\n南极大冒险,8.6,44122,剧情/冒险,美国,2006,379449.2\r\n城中大盗,7.5,44044,剧情/惊悚/犯罪,美国,2010,330330\r\n小萝莉的猴神大叔,8.7,44018,剧情/喜剧/动作/爱情,印度,2015,382956.6\r\n移动迷宫,5.7,43988,动作/科幻/惊悚,美国,2015,250731.6\r\n黑夜传说2：进,7.3,43986,动作/科幻/惊悚/奇幻,美国,2006,321097.8\r\n豚鼠特攻队,6.9,43917,喜剧/动作/奇幻/冒险,美国,2009,303027.3\r\n花吃了那女孩,6.1,43912,爱情/同性,台湾,2008,267863.2\r\n大地惊雷,8,43798,剧情/西部/冒险,美国,2010,350384\r\n没完没了,7.4,43709,剧情/喜剧,中国大陆,1999,323446.6\r\n亲爱的伽利略,8.1,43681,剧情/爱情,泰国,2009,353816.1\r\n神奇四侠,6.3,43677,动作/科幻/奇幻/冒险,美国/德国/英国/加拿大,2007,275165.1\r\n妈妈咪呀,7.5,43542,喜剧/爱情/歌舞,英国/美国/德国,2008,326565\r\n银翼杀手,8.1,43518,剧情/科幻/惊悚,美国/香港/英国,1982,352495.8\r\n名侦探柯南：银翼的魔术师 名探偵コナン 銀翼の奇,7.9,43492,动画/悬疑,日本,2004,343586.8\r\n生死停留,7.5,43490,剧情/悬疑/惊悚,美国,2005,326175\r\n真爱之吻,6.7,43484,喜剧/爱情/奇幻,英国/美国,2006,291342.8\r\n魔术师,8.7,43471,剧情/动画,法国/英国,2010,378197.7\r\n异星战场,6.3,43375,动作/科幻/奇幻/冒险,美国,2012,273262.5\r\n洋葱电影,7.7,43362,喜剧,美国,2008,333887.4\r\n绝代艳后,6.7,43333,剧情/传记/历史,美国/法国/日本,2006,290331.1\r\n波普先生的企鹅,7.3,43318,喜剧/家庭,美国,2011,316221.4\r\n飞行家,7.9,43265,剧情/传记,美国/德国,2004,341793.5\r\n女巫季节,5.5,43189,动作/奇幻/冒险,美国,2011,237539.5\r\n绿灯侠,5.9,43172,动作/科幻,美国,2011,254714.8\r\n极盗者,6.8,43160,动作/犯罪/运动,美国/中国大陆/德国,2015,293488\r\n倚天屠龙记之魔教教主 倚天屠龍記之魔教教,7.1,43151,动作/武侠/古装,香港,1993,306372.1\r\n辣妈辣妹,7.4,43051,喜剧/家庭/奇幻,美国,2003,318577.4\r\n异形,7.8,43044,动作/科幻/恐怖,美国/英国,1986,335743.2\r\n命运呼叫转移,5.8,43044,喜剧/爱情,中国大陆,2007,249655.2\r\n控方证人,9.5,42995,剧情/悬疑/犯罪,美国,1957,408452.5\r\n危情谍战,6.8,42949,喜剧/动作/惊悚/冒险,美国,2010,292053.2\r\n星尘,7.6,42916,爱情/家庭/奇幻/冒险,美国/英国/冰岛,2007,326161.6\r\n天才眼镜狗,7.4,42909,喜剧/科幻/动画/冒险,美国,2014,317526.6\r\n算死草,6.8,42905,剧情/喜剧,香港,1997,291754\r\n足球尤物,7.3,42862,喜剧/爱情,美国/加拿大,2006,312892.6\r\n月神,9,42842,动画/短片/奇幻,美国,2011,385578\r\n假装情侣,6.1,42842,喜剧/爱情,中国大陆,2011,261336.2\r\nK星异,8.5,42819,剧情/科幻/悬疑,美国/德国,2001,363961.5\r\n刺青,5.8,42778,剧情/爱情/同性,台湾,2007,248112.4\r\n狼的诱惑,6.9,42769,剧情/动作/爱情,韩国,2004,295106.1\r\n怪物史瑞克,7.3,42715,喜剧/动画/家庭/奇幻/冒险,美国,2007,311819.5\r\n名侦探柯南：天空的遇难船 名探偵コナン 天空の難,7.3,42662,动作/动画/悬疑,日本,2010,311432.6\r\n听到涛声 海がきこえ,8.1,42649,剧情/爱情/动画,日本,1993,345456.9\r\n决胜2,6.9,42595,剧情/犯罪,美国,2008,293905.5\r\n布拉格之恋,8.1,42579,剧情/爱情,美国,1988,344889.9\r\n人兽杂交,5.5,42536,剧情/科幻/惊悚,加拿大/法国/美国,2010,233948\r\n星球大战前传2：克隆人的进,7.8,42533,动作/科幻/奇幻/冒险,美国,2002,331757.4\r\n虎胆龙威,6.3,42520,动作/惊悚/犯罪,美国,2013,267876\r\n澳洲乱世情,7.2,42495,剧情/爱情/历史/战争/冒险,澳大利亚/美国,2009,305964\r\n爱出色,6,42485,喜剧/爱情,中国大陆,2010,254910\r\n最佳出价,8.3,42402,剧情/爱情/悬疑,意大利,2013,351936.6\r\n纳尼亚传奇3：黎明踏浪,6.5,42356,家庭/奇幻/冒险,美国,2011,275314\r\n赤焰战场,7.1,42328,喜剧/动作/犯罪,美国/法国/加拿大,2013,300528.8\r\n海扁王,6.3,42297,喜剧/动作/犯罪,美国,2013,266471.1\r\n绝密跟踪,7.7,42295,动作/犯罪,韩国,2014,325671.5\r\n美少女特攻队,6,42295,动作/惊悚/奇幻,美国,2011,253770\r\n三峡好人,7.9,42278,剧情/爱情,中国大陆,2006,333996.2\r\n非常幸运,4.6,42278,喜剧/爱情,中国大陆/香港,2013,194478.8\r\n黄飞鸿之二：男儿当自强 黃飛鴻之二男兒當自,7.7,42247,动作/爱情/武侠/古装,香港,1992,325301.9\r\n无姓之人,8.2,42223,剧情/爱情/科幻/奇幻,加拿大/比利时/法国/德国,2009,346228.6\r\n白雪公主与猎人,5.4,42209,动作/奇幻/冒险,美国,2012,227928.6\r\n亡命驾驶,7.2,42181,剧情/动作/犯罪,美国,2011,303703.2\r\n钟无艳 鐘無,6.6,42105,喜剧/奇幻,香港,2001,277893\r\n精武英雄,8.1,42071,剧情/动作,香港,1994,340775.1\r\n现代启示录,8.3,41978,剧情/战争,美国,1979,348417.4\r\n鬼影,7.7,41976,悬疑/恐怖,泰国,2004,323215.2\r\n剑鱼行动,7.4,41927,动作/惊悚/犯罪,美国/澳大利亚,2001,310259.8\r\n星运里的错,7.8,41912,剧情/爱情,美国,2014,326913.6\r\n三个火枪手,6.7,41888,动作/爱情/冒险,法国/美国/英国/德国,2012,280649.6\r\n美味情缘,6.9,41887,剧情/喜剧/爱情,美国/澳大利亚,2007,289020.3\r\n龙虎门,5.7,41881,剧情/动作,中国大陆/香港,2006,238721.7\r\n恶童 鉄コン筋クリー,8.6,41851,动作/动画/犯罪/冒险,日本,2006,359918.6\r\n决战刹马镇,6.1,41760,喜剧/西部/冒险,中国大陆,2010,254736\r\n黑镜：圣诞特别篇,9.1,41667,剧情/喜剧/惊悚,英国,2014,379169.7\r\n未知死亡,8.1,41638,剧情/动作/爱情/悬疑/惊悚,印度,2008,337267.8\r\n赛车总动员,7.7,41603,喜剧/动作/动画/家庭/冒险,美国,2011,320343.1\r\n暴力街区13：,7.4,41561,动作/科幻,法国,2009,307551.4\r\n留下我,8.9,41513,剧情/短片/奇幻,美国,2009,369465.7\r\n世界之战,6.5,41509,动作/科幻/冒险/灾难,美国,2005,269808.5\r\n白雪公主之魔镜魔镜,5.9,41409,剧情/喜剧/奇幻/冒险,美国,2012,244313.1\r\n超时空接触,8.3,41398,剧情/科幻,美国,1997,343603.4\r\n我们天上见,8.6,41387,剧情/家庭,中国大陆,2010,355928.2\r\n杀手：代号,7.1,41335,剧情/动作/惊悚/犯罪,法国/美国,2007,293478.5\r\n怪物史瑞克,7.5,41325,喜剧/动作/动画/冒险,美国,2010,309937.5\r\n超人归来,6.6,41314,动作/科幻/奇幻/冒险,美国,2006,272672.4\r\n夕阳天使,6.6,41308,剧情/喜剧/动作/爱情/惊悚/犯罪/冒险,香港,2002,272632.8\r\n龙凤斗 龍鳳,6.7,41276,剧情/喜剧/爱情,香港,2004,276549.2\r\n魔警,6,41216,动作/悬疑/惊悚/犯罪,香港/中国大陆,2014,247296\r\n天书奇谭,8.9,41144,动画,中国大陆,1905,366181.6\r\n我爱你,9,41093,剧情/爱情,韩国,2011,369837\r\n相思成灾,7.4,41059,喜剧/爱情,法国/英国,2007,303836.6\r\n下妻物语 下妻物,7.9,41022,喜剧,日本,2004,324073.8\r\n训练日,7.9,40994,剧情/惊悚/犯罪,美国/澳大利亚,2001,323852.6\r\n家有喜事,5.5,40983,喜剧,香港,2009,225406.5\r\n放·逐,7.8,40893,惊悚/犯罪,香港,2006,318965.4\r\n潜伏,7.2,40843,悬疑/恐怖,美国,2011,294069.6\r\n奥林匹斯的陷落,6.3,40841,动作,美国,2013,257298.3\r\n老爷车,8.6,40830,剧情,美国/德国,2008,351138\r\n花魁 さくら,8.1,40773,剧情/历史,日本,2007,330261.3\r\n穿靴子的猫：萌猫三剑客,8.1,40746,动画/短片,美国,2012,330042.6\r\n血滴子,4.6,40744,动作/武侠/古装,中国大陆/香港,2012,187422.4\r\n爱,8.5,40729,剧情/爱情,法国/德国/奥地利,2012,346196.5\r\n嫁个有钱人,5.9,40710,剧情/喜剧/爱情/奇幻,香港,2002,240189\r\n精英部队2：大敌当前,8.7,40702,剧情/动作/惊悚/犯罪,巴西,2011,354107.4\r\n黑暗阴影,6.3,40607,喜剧/奇幻,美国/澳大利亚,2012,255824.1\r\n我的名字叫可汗,8.5,40529,剧情/爱情,印度,2010,344496.5\r\n白雪公主和七个小矮人,8,40516,爱情/动画/歌舞/家庭/奇幻,美国,1937,324128\r\n大河恋,8.4,40481,剧情/家庭,美国,1992,340040.4\r\n寻枪,7.6,40326,剧情/悬疑/犯罪,中国,2002,306477.6\r\n风语战士,7.5,40309,动作/历史/战争,美国,2002,302317.5\r\n尖峰时刻,6.8,40307,喜剧/动作/惊悚/犯罪,美国,1998,274087.6\r\n赛德克·巴莱(下)：彩虹桥 賽德克·巴萊(,8.7,40240,剧情/历史/战争,台湾,2011,350088\r\n哥斯拉,7,40184,动作/科幻/冒险/灾难,美国/日本,1998,281288\r\n老鼠爱上猫,5.5,40135,喜剧/动作/爱情,中国大陆/香港,2003,220742.5\r\n救火英雄,7.3,40086,动作/灾难,香港/中国大陆,2014,292627.8\r\n大话王,7.5,40056,喜剧/奇幻,美国,1997,300420\r\n异次元骇客,8.3,40038,科幻/悬疑/惊悚,德国/美国,1999,332315.4\r\n名侦探柯南：水平线上的阴谋 名探偵コナン 水平線上の,7.6,40036,动画/悬疑,日本,2005,304273.6\r\n胜者即是正义SP リーガ,8.9,40030,剧情/喜剧,日本,2013,356267\r\n伴我同行,8.9,40026,剧情/儿童/冒险,美国,1986,356231.4\r\n大空头,8.3,39952,剧情/传记,美国,2015,331601.6\r\n局内人,7.7,39942,剧情/惊悚/犯罪,美国,2006,307553.4\r\n虎胆龙威,8.1,39914,动作/惊悚/犯罪,美国,1988,323303.4\r\n机器管家,8.5,39877,剧情/爱情/科幻/奇幻,美国/德国,1999,338954.5\r\n米尔克,8.3,39808,剧情/同性/传记,美国,2008,330406.4\r\n英雄本色,8.1,39791,剧情/动作/犯罪,香港,1987,322307.1\r\n恶老板,7,39791,喜剧/犯罪,美国,2011,278537\r\n抗癌的我,7.7,39610,剧情/喜剧,美国,2011,304997\r\n黄飞鸿之英雄有梦,5.4,39578,剧情/动作/爱情/武侠,中国大陆/香港/英国,2014,213721.2\r\n简爱,7.4,39558,剧情/爱情,英国,2011,292729.2\r\n马利和我,7.9,39503,剧情/喜剧/爱情,美国,2008,312073.7\r\n河童之夏 河童のクゥと夏休,8.7,39465,剧情/动画,日本,2007,343345.5\r\n忠犬八公物语 ハチ公物,9,39315,剧情,日本,1987,353835\r\n孤堡惊情,7.4,39314,剧情/悬疑/恐怖,西班牙/墨西哥,2010,290923.6\r\n地狱男爵,6.9,39277,动作/奇幻/冒险,美国,2004,271011.3\r\n花水木 ハナミズ,7.3,39260,剧情,日本,2010,286598\r\n雪孩子,8.8,39246,动画/短片,中国大陆,1905,345364.8\r\n的士速递,7.8,39199,喜剧/动作,法国,1998,305752.2\r\n名侦探柯南：第十四个目标 名探偵コナン 14番,7.9,39188,动画/悬疑,日本,1998,309585.2\r\n芭啦芭啦樱之花,6.1,39179,剧情/喜剧/爱情/歌舞,香港/中国大陆,2001,238991.9\r\n少年汉尼拔,7.1,39097,惊悚/犯罪,英国/捷克/法国/意大利,2007,277588.7\r\n预产期,7.1,39069,剧情/喜剧,美国,2010,277389.9\r\n春风沉醉的夜晚,7.8,39066,剧情/同性,中国大陆/法国,2009,304714.8\r\n济公 濟,6.8,39057,喜剧,香港,1993,265587.6\r\n金鸡,8.1,39039,剧情/喜剧,香港,2002,316215.9\r\n光杆乐队,8.6,39013,喜剧/动画/短片,美国,2005,335511.8\r\n我,7.2,38915,剧情/犯罪,中国大陆/法国,2012,280188\r\n疯狂外星人,7.3,38911,喜剧/科幻/动画/冒险,美国,2015,284050.3\r\n太极2：英雄崛,6,38862,喜剧/动作/奇幻/武侠/古装,中国大陆,2012,233172\r\n录取通知,7.6,38831,喜剧,美国,2006,295115.6\r\n宿醉,6.4,38822,喜剧,美国,2013,248460.8\r\n罗密欧与朱丽叶,7.2,38820,剧情/爱情/犯罪,美国,1996,279504\r\n陪安东尼度过漫长岁月,6.3,38738,剧情/爱情,中国大陆,2015,244049.4\r\n精神分裂症,9,38717,剧情/动画/短片,法国,2008,348453\r\n窈窕淑女,8,38699,剧情/爱情/歌舞,美国,1964,309592\r\n黑社会2：以和为贵 黑社會以和,7.5,38682,剧情/惊悚/犯罪,香港,2006,290115\r\n青春梦工场,8,38677,剧情/喜剧/爱情,香港,2005,309416\r\n3D肉蒲团之极乐宝鉴 3D肉蒲團,5,38654,情色,香港,2011,193270\r\n小鬼当家,7.5,38613,喜剧/动作/家庭/犯罪,美国,1997,289597.5\r\n完美嫁衣 抱抱俏佳,6.5,38561,喜剧/爱情,香港/中国大陆,2010,250646.5\r\n小红帽,5.8,38514,剧情/爱情/惊悚/奇幻,美国/加拿大,2011,223381.2\r\n美丽密令,5.5,38503,喜剧,香港/中国大陆,2010,211766.5\r\n大追捕,7.1,38476,剧情/动作/悬疑/惊悚/犯罪,香港/中国大陆,2012,273179.6\r\n科洛弗档案,7.3,38455,科幻/悬疑/惊悚/灾难,美国,2008,280721.5\r\n我的最爱 我的最,7.6,38450,爱情,香港,2008,292220\r\n秋天的童话 秋天的童,8.3,38398,剧情/爱情,香港,1987,318703.4\r\n魔术师和兔子,8.8,38392,喜剧/动画/短片,美国,2008,337849.6\r\n铜雀台,5,38383,剧情/古装,中国大陆,2012,191915\r\n牛仔裤的夏天,7.5,38381,剧情/喜剧/爱情,美国,2008,287857.5\r\n星球大战2：帝国反击,8.2,38331,动作/科幻/冒险,美国,1980,314314.2\r\n七剑,5.8,38296,剧情/动作/武侠/古装,中国大陆/香港/韩国,2005,222116.8\r\n倩女幽魂3：道道道 倩女幽魂Ⅲ ,7.3,38290,喜剧/动作/恐怖/奇幻,香港,1991,279517\r\n边境杀手,7.4,38212,剧情/动作/犯罪,美国,2015,282768.8\r\n永不妥协,8.3,38207,剧情/爱情/传记,美国,2000,317118.1\r\n冒牌家庭,7.4,38197,喜剧,美国,2013,282657.8\r\n华尔街：金钱永不眠,6.4,38190,剧情/犯罪,美国,2010,244416\r\n满汉全席 金玉滿,7.9,38179,喜剧/爱情,香港,1995,301614.1\r\n神秘拼图,7.4,38153,剧情/悬疑/惊悚/恐怖/犯罪,美国,1999,282332.2\r\n那山那人那狗,8.4,38133,剧情/家庭,中国大陆,1905,320317.2\r\n绝命海拔,7.4,38094,剧情/传记/冒险,英国/美国/冰岛,2015,281895.6\r\n伊丽莎白镇,7.4,38075,剧情/喜剧/爱情/家庭,美国,2005,281755\r\n心灵传输者,6.6,38063,动作/科幻/惊悚/冒险,美国,2008,251215.8\r\n棋逢敌手,8.4,38056,动画/短片/家庭,美国,1997,319670.4\r\n捉迷藏,7.4,38047,悬疑/惊悚/恐怖,美国,2005,281547.8\r\n爱·回家,9.1,38043,剧情/家庭/儿童,韩国,2002,346191.3\r\n自闭历程,8.9,38003,剧情/传记,美国,2010,338226.7\r\n攻壳机动队 攻殻機動,8.9,38000,动作/科幻/动画/惊悚/奇幻,日本,1995,338200\r\n八月照相馆,7.9,37989,剧情/爱情,韩国,1998,300113.1\r\n拜见岳父大人,7.1,37978,喜剧/爱情,美国,2000,269643.8\r\n暗花,8.3,37956,悬疑/犯罪,香港,1998,315034.8\r\n白发魔女传 白髮魔女,7.7,37932,动作/爱情/奇幻/冒险/武侠/古装,香港,1993,292076.4\r\n黄金三镖客,9.1,37831,西部/冒险,意大利/西班牙/西德,1966,344262.1\r\n苏乞儿 蘇乞,4.7,37744,剧情/动作/历史,中国大陆/香港,2010,177396.8\r\n最后的武士,7.8,37709,剧情/动作/历史/战争/冒险,美国,2003,294130.2\r\n大白鲨,7.6,37689,剧情/惊悚/灾难,美国,1975,286436.4\r\n魔境仙踪,6.3,37619,奇幻/冒险,美国,2013,236999.7\r\n第六感生死缘,7.8,37611,剧情/爱情/悬疑/奇幻,美国,1998,293365.8\r\n阮玲玉,8.4,37609,剧情/爱情/传记,香港,1991,315915.6\r\n阿童木,6.8,37593,动作/科幻/动画/家庭,香港/美国/日本,2009,255632.4\r\n三国之见龙卸甲,5.2,37575,剧情/动作/历史/战争,中国大陆/韩国/香港,2008,195390\r\n十分爱 十分,7.3,37564,爱情,香港,2007,274217.2\r\n死亡录像,7.5,37506,悬疑/恐怖,西班牙,2007,281295\r\n通灵男孩诺曼,7.2,37479,喜剧/动画/悬疑/惊悚/奇幻/冒险,美国,2012,269848.8\r\n寂静岭,5.5,37461,悬疑/惊悚/恐怖,法国/美国/加拿大,2012,206035.5\r\n维多利亚一号 維多利亞壹,7.2,37424,剧情/动作/惊悚/犯罪,香港,2010,269452.8\r\n即日启程,7.1,37422,剧情/喜剧,中国,2008,265696.2\r\n夏洛特的网,7.9,37405,喜剧/家庭/奇幻,美国/德国,2006,295499.5\r\n天国王朝,8.2,37306,动作/历史/冒险,美国/英国/西班牙/德国/摩洛哥,2005,305909.2\r\n沙漠之花,8.7,37284,剧情,英国/德国/奥地利,2009,324370.8\r\n地心历险记,6.7,37281,动作/科幻/惊悚/家庭/冒险,美国,2008,249782.7\r\n最遥远的距离 最遙遠的距,6.9,37272,剧情,台湾,2007,257176.8\r\n魔法奇缘,7.1,37224,喜剧/爱情/歌舞/家庭/奇幻,美国,2007,264290.4\r\n热血高校2 クロ,7.7,37220,动作,日本,2009,286594\r\n蝴蝶效应,6,37177,剧情/科幻/惊悚,美国,2006,223062\r\n2,7.9,37158,剧情/惊悚/犯罪,美国,2003,293548.2\r\n危情时速,7.6,37114,剧情/动作/惊悚/灾难,美国,2010,282066.4\r\n道林·格雷,6.9,37104,剧情/惊悚/奇幻,英国,2009,256017.6\r\n赌侠2：上海滩赌圣 賭俠II上,7.1,37098,喜剧/奇幻,香港,1991,263395.8\r\n寻找梦幻岛,7.8,37082,剧情/家庭/传记,美国/英国,2004,289239.6\r\n公民凯恩,8.5,37077,剧情/悬疑,美国,1941,315154.5\r\n横道世之介,8.7,37033,剧情/爱情,日本,2013,322187.1\r\n四百击,8.7,37027,剧情/犯罪,法国,1959,322134.9\r\n第一滴血,8.1,36995,剧情/动作/惊悚/冒险,美国,1982,299659.5\r\n中南海保镖,7.3,36977,动作,香港,1994,269932.1\r\n大武生,5.3,36975,剧情/动作/爱情,中国大陆,2011,195967.5\r\n间谍之桥,8,36919,剧情/传记/历史,美国/德国/印度,2015,295352\r\n年轻气盛,8.2,36903,剧情,意大利/法国/瑞士/英国,2015,302604.6\r\n未来水世界,7.1,36872,动作/科幻/惊悚/冒险,美国,1995,261791.2\r\n东方不败风云再起 東方不敗之風雲再,7.3,36860,动作/爱情/武侠/古装,香港,1993,269078\r\n恋人絮语 戀人絮,6,36814,剧情/爱情,香港,2010,220884\r\n如父如子 そして父にな,8.3,36785,剧情/家庭,日本,2013,305315.5\r\n母亲,8.3,36764,剧情,韩国,2009,305141.2\r\n灰姑娘的故事,6.8,36745,喜剧/爱情/家庭,加拿大/美国,2004,249866\r\n战略特勤组,7.8,36702,剧情/悬疑/惊悚,美国,2011,286275.6\r\n风云雄霸天下 風雲雄霸天,6.7,36701,动作/奇幻/冒险,香港/中国大陆,1998,245896.7\r\n上帝也疯狂,8.8,36650,喜剧,博茨瓦纳/南非/美国,1989,322520\r\n世界末日,7.7,36643,动作/科幻/冒险/灾难,美国,1998,282151.1\r\n魔法灰姑娘,6.6,36636,喜剧/爱情/家庭/奇幻,美国/爱尔兰/英国,2004,241797.6\r\n秋菊打官司,7.7,36577,剧情,中国大陆/香港,1992,281642.9\r\n夺宝奇兵,7.8,36538,动作/冒险,美国,1981,284996.4\r\n我老公不靠谱 我老婆唔够秤II：我老公,6.6,36489,喜剧/爱情,香港,2012,240827.4\r\n爱情三选一,7.8,36473,剧情/喜剧/爱情,英国/美国/法国,2008,284489.4\r\n红番区 紅番,7.2,36472,喜剧/动作/犯罪,香港,1995,262598.4\r\n蔷花，红莲,7.2,36453,剧情/悬疑/惊悚/恐怖,韩国,2003,262461.6\r\n剩者为王,5.6,36425,剧情/爱情,中国大陆/香港,2015,203980\r\n忘不了,7.7,36413,剧情,香港,2003,280380.1\r\n蜀山传,6.2,36368,动作/奇幻/武侠/古装,中国大陆/香港,2001,225481.6\r\n明日世界,6.3,36321,动作/科幻/冒险,美国/西班牙,2015,228822.3\r\n金枝玉叶 金枝玉,8.2,36316,喜剧/爱情/同性,香港,1994,297791.2\r\n科学怪狗,7.4,36303,喜剧/科幻/动画/恐怖,美国,2012,268642.2\r\n怒火救援,8.2,36295,剧情/动作/惊悚,美国/英国,2004,297619\r\n97家有喜事 9,7.4,36252,喜剧,香港,1997,268264.8\r\n在世界中心呼唤爱 世界の中心で、愛をさけ,7.6,36193,剧情/爱情,日本,2004,275066.8\r\n摇摆de,5.8,36188,剧情/喜剧,中国大陆,2010,209890.4\r\n古惑仔2之猛龙过,7.5,36180,剧情/动作,香港,1996,271350\r\n硬汉,6.1,36115,喜剧/动作,中国大陆/香港,2008,220301.5\r\n有关时间旅行的热门问题,7.8,36074,喜剧/科幻,英国,2009,281377.2\r\n我配不上她,6.6,36018,喜剧/爱情,美国,2010,237718.8\r\n小胖妞,8.7,35980,动作/爱情/动画/短片,中国大陆,2010,313026\r\n麦兜，菠萝油王子 麥兜，菠蘿油王,7.9,35961,剧情/喜剧/动画,香港,2004,284091.9\r\n詹妮弗的肉体,5.4,35922,喜剧/恐怖/奇幻,美国,2009,193978.8\r\n新不了情,8.3,35918,剧情/爱情,香港,1993,298119.4\r\n游园惊梦 遊園驚,7.5,35863,剧情/同性,香港,2001,268972.5\r\n星球大战3：绝地归,8.3,35850,动作/科幻/奇幻/冒险,美国,1983,297555\r\n公爵夫人,6.9,35825,剧情/爱情/传记/历史,英国/意大利/法国,2008,247192.5\r\n大块头有大智慧 大隻,6.3,35820,剧情/动作/惊悚,香港/中国,2003,225666\r\n一个人的武林,6.2,35817,动作/惊悚,中国大陆/香港,2014,222065.4\r\n地道战,8.3,35796,战争,中国,1905,297106.8\r\n黑皮书,8.2,35774,剧情/惊悚/战争,荷兰/德国/英国/比利时,2009,293346.8\r\n初吻,8,35685,喜剧/爱情,法国,1980,285480\r\n波西·杰克逊与神火之盗,5.9,35614,奇幻/冒险,美国/加拿大,2010,210122.6\r\n火影忍者剧场版：博人传,8.5,35612,动作/动画/冒险,日本,2016,302702\r\n警察故事,7.6,35606,喜剧/动作/惊悚/犯罪,香港,1985,270605.6\r\n四大名捕,4.8,35534,动作/悬疑/奇幻/武侠/古装,中国大陆/香港,2013,170563.2\r\n高兴,6.5,35523,剧情/喜剧,中国,2009,230899.5\r\n钢铁苍穹,6.6,35509,喜剧/动作/科幻,芬兰/德国/澳大利亚,2012,234359.4\r\n大明劫,7.8,35497,剧情/历史/古装,中国大陆,2013,276876.6\r\n冲上云霄 衝上雲,4.4,35465,剧情/爱情,香港/中国大陆,2015,156046\r\n霍顿与无名氏,7.8,35425,喜剧/动画/冒险,美国,2008,276315\r\n启示,8.4,35412,剧情/动作/冒险,美国,2006,297460.8\r\n斯托克,7.4,35381,剧情/悬疑/惊悚,美国/英国,2013,261819.4\r\n偶滴神啊,8.4,35344,剧情/喜剧,印度,2012,296889.6\r\n神奇侠侣,5.1,35257,喜剧,中国大陆/香港,2011,179810.7\r\n诸神之怒,5.9,35244,动作/奇幻/冒险,美国,2012,207939.6\r\n后裔,7.5,35217,剧情/家庭,美国,2011,264127.5\r\n欲望都市,6.8,35215,剧情/喜剧/爱情,美国,2010,239462\r\n新天生一对,6.4,35186,剧情/喜剧/爱情/家庭,中国大陆/台湾,2012,225190.4\r\n东京物语 東京物,9.1,35150,剧情/家庭,日本,1953,319865\r\n恋爱地图 戀愛地,7.4,35127,爱情,台湾/中国大陆/日本,2005,259939.8\r\n魁拔之十万火急,7.8,35086,动画/儿童/奇幻/冒险,中国大陆,2011,273670.8\r\n中华英雄 中華英,6.3,35064,剧情/动作/冒险,香港/中国大陆,1999,220903.2\r\n搞定岳父大人,6.5,35002,喜剧/爱情/家庭,中国大陆,2012,227513\r\n刀锋战士,6.9,34874,动作/惊悚/恐怖/奇幻/冒险,美国,1998,240630.6\r\n最终幻想7：圣子降临 ファイナルファンタジーVII アドベン,8.2,34831,动作/科幻/动画/惊悚,日本,2005,285614.2\r\n方世玉续集,7.5,34825,喜剧/动作/武侠/古装,香港,1993,261187.5\r\n姨妈的后现代生活,7.2,34819,剧情/喜剧/爱情,中国大陆/香港,2007,250696.8\r\n勺子杀人狂,8.2,34740,喜剧/恐怖/短片,美国,2008,284868\r\n命中注定,5.8,34724,喜剧/爱情,中国大陆/香港/美国,2015,201399.2\r\n坠入,8.8,34708,剧情/奇幻/冒险,美国/印度,2006,305430.4\r\n寄生兽 寄生,7.4,34697,科幻/恐怖,日本,2014,256757.8\r\n深夜食堂 电影版 映画 深,7.8,34693,剧情,日本,2015,270605.4\r\n名侦探柯南：深蓝色的海盗旗 名探偵コナン 紺碧,6.7,34631,剧情/动画/悬疑,日本,2007,232027.7\r\n最爱女人购物狂,5.9,34588,喜剧/爱情,香港,2006,204069.2\r\n蝴蝶,7.6,34555,剧情/同性,香港,2004,262618\r\n美国派,7,34538,喜剧/爱情,美国,2001,241766\r\n小美人鱼,8.2,34531,爱情/动画/歌舞/奇幻,美国,1989,283154.2\r\n冰血暴,7.9,34519,剧情/惊悚/犯罪,美国/英国,1996,272700.1\r\n我爱HK 开心万岁 我愛,7,34503,剧情/喜剧,香港,2011,241521\r\n宫锁沉香,4.8,34497,剧情/爱情/古装,中国大陆,2013,165585.6\r\n宝贝和我,7.1,34426,喜剧,韩国,2008,244424.6\r\n依然爱丽丝,7.9,34402,剧情,美国/法国/英国,2014,271775.8\r\n洛丽塔,7.7,34383,剧情/爱情/情色,美国/英国,1962,264749.1\r\n行动目标希特勒,7,34381,剧情/历史/战争,美国/德国,2009,240667\r\n心慌方2：超立方,6.7,34334,科幻/悬疑/惊悚/恐怖,加拿大,2002,230037.8\r\n蝴蝶效应3：启,6.7,34305,剧情/科幻/惊悚/犯罪,美国,2009,229843.5\r\nHell,7,34304,剧情/喜剧,中国大陆,2011,240128\r\n白雪公主杀人事件 白ゆき姫殺人事,7.5,34296,剧情/悬疑,日本,2014,257220\r\n律政俏佳人,6.7,34279,喜剧,美国,2003,229669.3\r\n蒙娜丽莎的微笑,7.7,34250,剧情/爱情,美国,2004,263725\r\n打，打个大西瓜,8.6,34237,动画/短片/战争,中国大陆,2008,294438.2\r\n春田花花同学会 春田花花同學,6.2,34229,喜剧/动画/奇幻,香港,2006,212219.8\r\n丧尸乐园,7.2,34228,喜剧/恐怖,美国,2009,246441.6\r\n小姐好白,7.1,34207,喜剧/犯罪,美国,2004,242869.7\r\n彩虹女神 虹の女,7.8,34172,剧情/爱情,日本,2006,266541.6\r\n惊声尖笑,6.9,34161,喜剧,美国,2000,235710.9\r\n少年班,5.7,34100,剧情/喜剧,中国大陆,2015,194370\r\n白夜行,6.9,34079,爱情/悬疑,韩国,2009,235145.1\r\n神秘河,7.8,34062,剧情/悬疑/惊悚/犯罪,美国/澳大利亚,2003,265683.6\r\n千里走单骑,7.2,34042,剧情,中国大陆/香港/日本,2005,245102.4\r\n财神客栈,5.3,34022,喜剧/动作/悬疑/古装,中国大陆/香港,2011,180316.6\r\n南极料理人 南極料理,8.2,33944,喜剧,日本,2009,278340.8\r\n喜马拉亚星,5.3,33938,剧情/喜剧,香港,2005,179871.4\r\n不明身份,7,33910,剧情/悬疑/惊悚,美国/英国/德国/法国,2011,237370\r\n猫汤 ねこぢる,8.6,33865,动画/短片/奇幻,日本,2001,291239\r\n古惑仔3之只手遮天 古惑仔3之隻,7.6,33839,剧情/动作,香港,1996,257176.4\r\n麦兜我和我妈妈 麥兜‧我和我,8.3,33809,喜剧/动画/家庭,香港/中国大陆,2014,280614.7\r\n回到未来,8.2,33797,喜剧/科幻/冒险,美国,1989,277135.4\r\n浪客剑心 るろうに剣,7.7,33795,剧情/动作/历史,日本,2012,260221.5\r\n荷尔蒙,7.6,33761,喜剧,泰国,2008,256583.6\r\n开往春天的地铁,7,33761,剧情/爱情,中国大陆,2002,236327\r\n龙虾,7.5,33758,剧情/喜剧/爱情/科幻,爱尔兰/英国/希腊/法国/荷兰,2015,253185\r\n凯尔经的秘密,8.4,33745,剧情/动画/奇幻,爱尔兰/法国/比利时,2009,283458\r\n克莱默夫妇,8.5,33692,剧情/家庭,美国,1979,286382\r\n保姆日记,6.9,33679,剧情/喜剧/爱情,美国,2007,232385.1\r\n克洛伊,7.4,33660,悬疑/同性/家庭,美国/加拿大/法国,2009,249084\r\n杀戮,8.2,33599,剧情/喜剧,法国/德国/波兰/西班牙,2011,275511.8\r\n夏日乐悠悠,6.3,33599,喜剧/爱情,中国大陆/香港,2011,211673.7\r\n逃出生天,6.8,33545,剧情/灾难,香港/中国大陆,2013,228106\r\n致命黑兰,6.9,33480,剧情/动作/惊悚/犯罪,法国,2013,231012\r\n惊变2,7.1,33479,科幻/惊悚/灾难,英国,2002,237700.9\r\n前任2：备胎反击,5.1,33400,喜剧/爱情,中国大陆/香港,2015,170340\r\n小屁孩日记,7.1,33391,喜剧/家庭,美国,2010,237076.1\r\n怒火攻心2：高压,6.8,33371,动作/惊悚/犯罪,美国,2009,226922.8\r\n突袭,7.5,33343,动作/惊悚/犯罪,印度尼西亚/美国,2012,250072.5\r\n我的P.,7.2,33308,喜剧/爱情,韩国,2012,239817.6\r\n充气娃娃之恋,7.5,33295,剧情/喜剧,美国,2007,249712.5\r\n百年好合,6,33251,喜剧/动作/爱情,中国大陆/香港,2003,199506\r\n香草的天空,7.3,33236,爱情/科幻/悬疑/惊悚,美国,2001,242622.8\r\n远在天边,9,33188,剧情/动画/短片,英国,2008,298692\r\n卢浮魅影 ,6.6,33116,悬疑/恐怖/奇幻,法国,2001,218565.6\r\n世界末日,6.8,33042,喜剧/奇幻,美国,2013,224685.6\r\n亚当,7.9,33034,剧情/爱情,美国,2009,260968.6\r\n文雀,6.6,33034,剧情/爱情,香港,2008,218024.4\r\n步履不停 歩いても 歩い,8.8,33029,剧情/家庭,日本,2008,290655.2\r\nL之终章·最后的23天 L、最,7.2,33018,剧情/惊悚/恐怖/犯罪,日本,2008,237729.6\r\n我的邻居山田君 ホーホケキョとなりの山田く,8.7,32968,喜剧/动画/家庭,日本,1999,286821.6\r\n向阳处的她 陽だまりの彼,7.9,32923,爱情,日本,2013,260091.7\r\n天堂口,5.6,32863,剧情/动作/爱情,中国大陆/香港/台湾,2007,184032.8\r\n乐高大电影,7.9,32842,喜剧/动画/冒险,澳大利亚/美国/丹麦,2014,259451.8\r\n念念,7,32801,剧情/爱情/家庭,香港/台湾,2015,229607\r\n异形,7.1,32784,动作/科幻/惊悚,美国,1992,232766.4\r\n安妮·霍尔,8.5,32765,剧情/喜剧/爱情,美国,1977,278502.5\r\n海鸥食堂 かもめ食,8.3,32729,剧情/喜剧,日本,2006,271650.7\r\n时空线索,7.7,32729,动作/科幻/惊悚,美国/英国,2007,252013.3\r\n亚瑟和他的迷你王国,7.2,32710,家庭/奇幻/冒险,法国,2006,235512\r\n半生缘 半生,7.6,32698,剧情/爱情,香港/中国大陆,1997,248504.8\r\n坏孩子的天空 キッズ・リタ,8.4,32670,剧情,日本,1996,274428\r\n天气预报员,7.6,32657,剧情/喜剧,美国/德国,2005,248193.2\r\n欢迎来到东莫村,8.2,32653,剧情/喜剧/战争,韩国,2005,267754.6\r\n海啸奇迹,7.5,32638,剧情/家庭/灾难,西班牙/美国,2013,244785\r\n美国精神病人,7.7,32625,剧情/惊悚/犯罪,美国,2000,251212.5\r\n玻璃樽,6.4,32601,喜剧/动作/爱情,香港/台湾,1999,208646.4\r\n和声,8.6,32598,剧情,韩国,2010,280342.8\r\n奇爱博士,8.7,32560,剧情/喜剧,美国/英国,1964,283272\r\n商标的世界,8.1,32530,动作/动画/短片/犯罪,法国,2009,263493\r\n福音战士新剧场版：破 ヱヴァンゲリヲン新劇場版：,9.3,32524,剧情/动作/科幻/动画,日本,2009,302473.2\r\n阿拉丁,8,32515,爱情/动画/歌舞/家庭/奇幻/冒险,美国,1992,260120\r\n借刀杀人,7.3,32502,剧情/惊悚/犯罪,美国,2004,237264.6\r\n蜂蜜与四叶草 ハチミツとクローバ,7.5,32451,爱情,日本,2006,243382.5\r\n新少林五祖,7.5,32400,剧情/动作/冒险/武侠/古装,香港,1994,243000\r\n地狱男爵2：黄金军,6.7,32373,动作/奇幻/冒险,美国,2008,216899.1\r\n人类之子,7.4,32345,剧情/科幻/冒险/灾难,英国/美国,2006,239353\r\n唐璜,6.3,32343,剧情/喜剧/爱情,美国,2013,203760.9\r\n逃学威龙3之龙过鸡年 逃学威龙III,7,32333,喜剧,香港,1993,226331\r\n狮子王2：辛巴的荣,7.7,32278,爱情/动画/歌舞/家庭/冒险,美国/澳大利亚,1998,248540.6\r\n整编特工,6.3,32270,喜剧/动作/爱情/惊悚,美国,2011,203301\r\n绯闻计划,6.6,32265,喜剧/爱情,美国,2010,212949\r\n华丽上班族 華麗上班,6.1,32243,剧情/喜剧/爱情/歌舞,香港/中国大陆,2015,196682.3\r\n地下铁 地下,6.4,32221,爱情,中国大陆/香港/台湾,2003,206214.4\r\n异形,7.5,32186,动作/科幻/惊悚,美国,1997,241395\r\n鹰眼,7.1,32143,动作/悬疑/惊悚,美国/德国,2008,228215.3\r\n山村老尸,6.6,32138,恐怖,香港,1999,212110.8\r\n纽约黑帮,7.4,32026,剧情/历史/犯罪,美国/意大利,2002,236992.4\r\n茉莉花开,7.1,32019,剧情/爱情/家庭,中国,2004,227334.9\r\n松鼠，坚果和时间机器,8.7,32015,动画/短片,美国,2006,278530.5\r\n只有你,7.7,31981,剧情/爱情,韩国,2011,246253.7\r\n追逐繁星的孩子 星を追う子ど,7.3,31960,动画/奇幻/冒险,日本,2011,233308\r\n第三种爱情,5.3,31903,爱情,中国大陆/韩国,2015,169085.9\r\n公主与青蛙,7.2,31878,爱情/动画/歌舞/家庭,美国,2009,229521.6\r\n鲨鱼黑帮,7.1,31861,喜剧/动画/冒险,美国,2005,226213.1\r\n神探亨特张,6.9,31860,剧情,中国大陆,2012,219834\r\n绝世好,5.8,31807,喜剧/爱情,香港,2001,184480.6\r\n飞越老人院,7.9,31763,剧情/喜剧,中国大陆,2012,250927.7\r\n十兄弟,6.6,31714,喜剧/动作/奇幻/冒险,香港,1995,209312.4\r\n青春期,4.2,31690,剧情,中国大陆,2011,133098\r\n偷自行车的人,8.9,31677,剧情/犯罪,意大利,1948,281925.3\r\n虎胆龙威,7.8,31663,动作/惊悚/犯罪,美国,1995,246971.4\r\n灵魂战车2：复仇时,5.4,31615,动作/惊悚/奇幻,美国,2012,170721\r\n成为约翰·马尔科维奇,8.2,31571,剧情/喜剧/爱情/奇幻,美国,1999,258882.2\r\n黑夜传说4：觉,6.6,31548,动作/恐怖/奇幻,美国,2012,208216.8\r\n移魂都市,7.8,31520,科幻/悬疑/惊悚,澳大利亚/美国,1998,245856\r\n一夜迷情,7.2,31453,剧情/爱情,美国/法国,2011,226461.6\r\n红领巾,8.2,31449,剧情/短片/儿童,中国大陆,2011,257881.8\r\n好想告诉你 君に届,6.9,31428,剧情/爱情,日本,2010,216853.2\r\n等一个人咖啡 等一個人咖,6,31426,喜剧/爱情,台湾/香港,2014,188556\r\n金钱帝国,6.3,31410,犯罪,香港/中国大陆,2009,197883\r\n平常的心,8.3,31404,剧情/同性/传记,美国,2014,260653.2\r\n分歧者2：绝地反,5.8,31404,动作/爱情/科幻/冒险,美国,2015,182143.2\r\n魔法奇幻秀,6.9,31388,悬疑/奇幻/冒险,英国/加拿大/法国,2011,216577.2\r\n副作用,7.4,31361,剧情/惊悚/犯罪,美国,2013,232071.4\r\n天浴,8.2,31338,剧情,香港/美国/台湾,1998,256971.6\r\n红河谷,7.7,31298,剧情/爱情/历史/战争,中国大陆,1999,240994.6\r\n我和厄尔以及将死的女孩,8,31283,剧情/喜剧,美国,2015,250264\r\n极速6,7.4,31257,动作/惊悚/犯罪,美国,2000,231301.8\r\n妈妈再爱我一次 媽媽再愛我一,8.4,31245,剧情/家庭,台湾,1990,262458\r\n世界尽头,7.3,31212,喜剧/动作/科幻,英国,2013,227847.6\r\n双龙会 雙龍,7.3,31185,喜剧/动作,香港,1992,227650.5\r\n青红,6.9,31133,剧情,中国大陆,2005,214817.7\r\n城市之光,9.2,31105,剧情/喜剧/爱情,美国,1931,286166\r\n华尔街,8.1,31092,剧情/犯罪,美国,1987,251845.2\r\n死在西部的一百万种方式,6.8,31018,喜剧/西部,美国,2014,210922.4\r\n和平饭店,7.6,31002,动作/西部,香港,1995,235615.2\r\n太平轮(下)·,6.6,30967,剧情/爱情/灾难,中国大陆/香港,2015,204382.2\r\n透明人,6.6,30966,动作/科幻/惊悚,美国/德国,2000,204375.6\r\n六福喜事,5.2,30961,喜剧/爱情,中国大陆/香港,2014,160997.2\r\n波拉特,7.4,30909,喜剧,美国/英国,2006,228726.6\r\n魔法保姆麦克菲,7.4,30876,喜剧/家庭/奇幻,美国/英国/法国,2005,228482.4\r\n女性瘾者：第一部,7.7,30845,剧情/情色,丹麦/德国/法国/比利时/英国,2013,237506.5\r\n监狱风云 監獄風,8,30829,剧情/动作/犯罪,香港,1987,246632\r\n梁祝,7.8,30826,剧情/爱情/奇幻,香港,1994,240442.8\r\n全城戒备,4.4,30825,动作/科幻/惊悚,香港/中国大陆,2010,135630\r\n西北偏北,8.1,30816,动作/悬疑/犯罪,美国,1959,249609.6\r\n大电影,5.7,30812,喜剧/动作,中国大陆,2006,175628.4\r\n冒险王 冒險,6.6,30793,动作,香港,1996,203233.8\r\n断箭,7.2,30742,动作/惊悚/冒险,美国,1996,221342.4\r\n尼罗河上的惨案,8.4,30703,悬疑/惊悚/犯罪,英国,1978,257905.2\r\n东京教父 東京ゴッドファーザー,8.7,30669,剧情/喜剧/动画/冒险,日本,2003,266820.3\r\n相见恨早,7.7,30647,剧情/喜剧/爱情,美国,2005,235981.9\r\n壮志凌云,7.6,30642,剧情/动作/爱情,美国,1986,232879.2\r\n喜爱夜蒲 喜愛夜,5.5,30617,剧情/情色,香港,2011,168393.5\r\n奔跑吧！兄弟,3.4,30581,喜剧,中国大陆,2015,103975.4\r\n悲情城市,8.7,30554,剧情,台湾/香港,1989,265819.8\r\n痞子英雄2：黎明升起 痞子英雄2：黎,5.4,30526,剧情/动作/犯罪,中国大陆/台湾/香港,2014,164840.4\r\n猎杀本·拉登,7.6,30505,剧情/惊悚/历史,美国,2012,231838\r\n古墓丽影,6.6,30491,动作/惊悚/奇幻/冒险,美国/德国/日本/英国,2003,201240.6\r\n蕾切尔的婚礼,6.9,30447,剧情/爱情/家庭,美国,2008,210084.3\r\n恋上你的床,5.8,30431,喜剧,中国大陆/香港,2003,176499.8\r\n决战猩球,6.8,30400,动作/科幻/惊悚/冒险,美国,2001,206720\r\n我杀了我妈妈 J,8.4,30373,剧情/家庭/传记,加拿大,2009,255133.2\r\n无翼鸟,9.1,30346,剧情/动画/短片,美国,2006,276148.6\r\n我自己的爱达荷,8.1,30325,剧情/爱情/同性,美国,1991,245632.5\r\n杯酒人生,7.9,30321,剧情/喜剧/爱情,美国/匈牙利,2004,239535.9\r\n未来警察,3.9,30316,科幻,香港/台湾,2010,118232.4\r\n尖峰时刻,6.6,30314,喜剧/动作/惊悚/犯罪,美国,2001,200072.4\r\n落魄大厨,7.6,30241,喜剧,美国,2014,229831.6\r\n林肯,7.7,30240,剧情/传记/历史/战争,美国,2012,232848\r\n三岔口,6.5,30225,动作/犯罪,中国大陆/香港,2005,196462.5\r\n心慌方·零,7,30203,剧情/科幻/恐怖,加拿大,2004,211421\r\n倔强萝卜,5.5,30194,喜剧/犯罪,中国大陆,2009,166067\r\n独家试爱 獨家試,7.2,30162,喜剧/爱情,香港,2006,217166.4\r\n孤男寡女,6.7,30145,喜剧/爱情,香港,2000,201971.5\r\n帝国的毁灭,8.6,30098,剧情/传记/历史/战争,德国/意大利/奥地利,2004,258842.8\r\n赶尽杀绝,7.4,30022,喜剧/动作/惊悚/犯罪/冒险,美国,2007,222162.8\r\n银行大劫案,7.5,29981,剧情/惊悚/犯罪,英国,2008,224857.5\r\n珍爱,8.1,29961,剧情,美国,2009,242684.1\r\n97古惑仔战无不胜 97古惑,7.4,29952,剧情/动作,香港,1997,221644.8\r\n童梦奇缘,6.4,29900,剧情/喜剧/科幻/奇幻,中国大陆/香港,2005,191360\r\n旺角黑夜,7.2,29899,剧情/动作/爱情/犯罪,香港,2004,215272.8\r\n特工强档,6.8,29890,喜剧/动作/爱情,韩国,2010,203252\r\n狗咬狗,7.9,29859,剧情/动作/惊悚/犯罪,香港,2006,235886.1\r\n潜水钟与蝴蝶,7.9,29858,剧情/传记,法国/美国,2007,235878.2\r\n每当变幻时,7.8,29841,剧情/喜剧/爱情,中国大陆/香港,2007,232759.8\r\n猫屎一号,8.3,29839,动画/短片/战争,日本,2010,247663.7\r\n军中乐园 軍中樂,7.3,29817,剧情/爱情/历史,台湾/中国大陆,2014,217664.1\r\n决战紫禁之巅,5.6,29790,喜剧/动作/科幻/奇幻/冒险,中国大陆/香港,2000,166824\r\n洗澡,8.2,29781,剧情/喜剧/家庭,中国,2001,244204.2\r\n白夜行,6.8,29725,剧情/悬疑,日本,2011,202130\r\n坏蛋必须死,6.1,29706,喜剧/动作/悬疑/犯罪,中国大陆/香港/韩国,2015,181206.6\r\n兔子洞,7.3,29704,剧情/家庭,美国,2010,216839.2\r\n摩托日记,8.5,29635,剧情/传记/冒险,阿根廷/美国/智利/秘鲁/巴西/英国/德国/法国,2004,251897.5\r\n唐顿庄园：2011圣,9.2,29611,剧情,英国,2011,272421.2\r\n我的兄弟姐妹,7.4,29610,家庭,中国大陆,2001,219114\r\n青春爱欲吻,7.2,29561,剧情/喜剧,美国/德国/英国,2008,212839.2\r\n花火,8.5,29539,剧情/爱情/惊悚/犯罪,日本,1997,251081.5\r\n电梯里的恶魔,6.4,29538,悬疑/惊悚/恐怖,美国,2010,189043.2\r\n男人四十,7.9,29535,剧情,香港,2002,233326.5\r\n传染病,6.4,29534,剧情/科幻/惊悚/灾难,美国/阿联酋,2011,189017.6\r\n布鲁克林,7.7,29509,剧情/爱情,爱尔兰/英国/加拿大,2015,227219.3\r\n胡佛,7.2,29498,剧情/同性/传记/历史/犯罪,美国,2011,212385.6\r\n心之全蚀,8.1,29477,剧情/爱情/同性/传记,英国/法国/比利时,1995,238763.7\r\n笑傲江湖,7.8,29463,动作/武侠/古装,香港/台湾,1990,229811.4\r\n少林寺,7.9,29450,动作/武侠/古装,中国大陆/香港,1982,232655\r\n福尔摩斯先生,7.7,29422,剧情/悬疑/犯罪,英国/美国,2015,226549.4\r\n战国,4,29419,剧情/动作/爱情/悬疑/战争/古装,中国大陆,2011,117676\r\n史前一万年,5.9,29404,剧情/奇幻/冒险,美国,2008,173483.6\r\n异形大战铁血战士,6.8,29375,动作/科幻/惊悚,美国/德国/捷克/英国,2004,199750\r\n我左眼见到鬼,6.9,29370,喜剧/爱情/恐怖/家庭,香港,2002,202653\r\n一个好爸爸,7.1,29354,剧情/家庭,香港,2008,208413.4\r\n回到未来,8.2,29339,喜剧/科幻/西部/冒险,美国,1990,240579.8\r\n信号,8.7,29288,爱情/短片,澳大利亚,2008,254805.6\r\n大学新生,6.8,29275,喜剧/爱情,美国,2007,199070\r\n顽主,8.3,29265,剧情/喜剧,中国大陆,1989,242899.5\r\n宅,8.3,29258,动画/短片,英国,2003,242841.4\r\n放手爱,2.3,29254,喜剧/爱情,中国大陆,2014,67284.2\r\n生人勿进,7.7,29155,剧情/爱情/悬疑/惊悚/奇幻,瑞典,2008,224493.5\r\n两小无猜,8.6,29150,剧情/爱情,英国,1971,250690\r\n花田喜事 花田囍,7.5,29150,喜剧/爱情,香港,1993,218625\r\n关于我母亲的一切,8.5,29146,剧情,西班牙/法国,2000,247741\r\n极限特工,7.3,29134,动作/犯罪/冒险,美国,2002,212678.2\r\n千杯不醉,6.2,29122,喜剧/爱情,中国大陆/香港,2005,180556.4\r\n喋血双雄,8.3,29117,剧情/动作/惊悚/犯罪,香港,1989,241671.1\r\n新娘大作战,4,29063,喜剧/爱情,中国大陆/香港,2015,116252\r\n自杀专卖店,7,29059,喜剧/动画/歌舞,法国/加拿大/比利时,2012,203413\r\n蝴蝶梦,8.2,29033,剧情/悬疑,美国,1940,238070.6\r\n五月之恋 五月之,6.7,29005,爱情,台湾,2004,194333.5\r\n绑架课,8.7,28966,喜剧/动画/短片/家庭,美国,2007,252004.2\r\n新扎师妹2 新紮,6.6,28935,喜剧,香港,2003,190971\r\n极速蜗牛,7.2,28926,喜剧/动画/冒险,美国,2013,208267.2\r\n糊涂侦探,6.8,28925,喜剧/动作/冒险,美国,2008,196690\r\n堕落的艺术,8.6,28904,动画/短片,波兰,2004,248574.4\r\n露水红颜,4.9,28853,爱情,中国大陆,2014,141379.7\r\n杀出个黎明,7.5,28837,动作/恐怖/犯罪,美国,1996,216277.5\r\n黑夜传说前传：狼族再起,6.8,28802,动作/惊悚/奇幻/冒险,美国/新西兰,2009,195853.6\r\n李献计历险记,6.4,28780,爱情/奇幻/冒险,中国大陆,2011,184192\r\n罪恶之城,6.7,28755,动作/惊悚/犯罪,美国,2014,192658.5\r\n爱情是狗娘,8.3,28732,剧情/惊悚,墨西哥,2000,238475.6\r\n福音战士新剧场版：序 ヱヴァンゲリヲン新劇場版：,9.1,28726,动作/科幻/动画,日本,2007,261406.6\r\n摔角王,8.3,28713,剧情/运动,美国/法国,2008,238317.9\r\n踏血寻梅 踏血尋,7.4,28677,剧情/悬疑/犯罪,香港,2015,212209.8\r\n紫日,8,28667,剧情/战争,中国大陆,2001,229336\r\n机器侠,5.4,28635,喜剧/动作/爱情/科幻,中国,2009,154629\r\n女男变错身,6.9,28630,喜剧/爱情,美国/英国/加拿大,2006,197547\r\n处刑人,8.2,28623,剧情/动作/惊悚/犯罪,加拿大/美国,1999,234708.6\r\n地球停转之日,5.7,28605,剧情/科幻/灾难,美国/加拿大,2008,163048.5\r\n上帝保佑美国,7.8,28603,喜剧/犯罪,美国,2012,223103.4\r\n超能失控,6.9,28592,剧情/动作/科幻/惊悚,英国/美国,2012,197284.8\r\n美国派3：美国婚,7,28585,喜剧/爱情,美国/德国,2003,200095\r\n夺宝奇兵,8.1,28561,动作/冒险,美国,1989,231344.1\r\n早间主播,7.7,28545,剧情/喜剧/爱情,美国,2010,219796.5\r\n恋恋风尘 戀戀風,8.4,28507,剧情/爱情,台湾,1987,239458.8\r\n秘窗,7,28498,悬疑/惊悚,美国,2004,199486\r\n卑劣的街头,7.8,28466,动作/惊悚/犯罪,韩国,2006,222034.8\r\n老妇人与死神,8,28442,剧情/喜剧/动画/短片/奇幻,西班牙,1905,227536\r\n明亮的星,7.7,28420,剧情/爱情/传记,英国/澳大利亚/法国,2009,218834\r\n时光尽头的恋人,6.4,28405,剧情/爱情/奇幻,美国,2015,181792\r\n王朝的女人·杨贵妃,3.7,28389,爱情/古装,中国大陆,2015,105039.3\r\n城市猎人 城市獵,7.1,28353,喜剧/动作/爱情,香港/日本,1993,201306.3\r\n活死人黎明,7.4,28325,动作/科幻/恐怖,美国/加拿大/日本/法国,2004,209605\r\n年轻的维多利亚,7.3,28251,剧情/爱情/传记/历史,英国/美国,2009,206232.3\r\n猫头鹰王国：守卫者传奇,7.4,28243,动作/动画/奇幻/冒险,美国/澳大利亚,2010,208998.2\r\n辉夜姬物语 かぐや姫の物,8.3,28241,动画,日本,2013,234400.3\r\n傻瓜,7.6,28226,喜剧/爱情,韩国,2008,214517.6\r\n孤岛惊魂,3.2,28218,悬疑/惊悚/恐怖,中国大陆,2011,90297.6\r\n法官老爹,7.8,28204,剧情,美国,2014,219991.2\r\n求婚大作战特别篇 プロポーズ大作戦スペシャ,8.6,28194,剧情,日本,2008,242468.4\r\n极地特快,7.5,28169,动画/家庭/奇幻/冒险,美国,2005,211267.5\r\n四大名捕大结局,4.7,28150,动作/爱情/悬疑/武侠/古装,中国大陆/香港,2014,132305\r\n美国黑帮,7.8,28117,剧情/犯罪,美国,2007,219312.6\r\n居家男人,8.1,28095,剧情/喜剧/爱情/家庭/奇幻,美国,2000,227569.5\r\n伸冤人,7.4,28073,动作/惊悚/犯罪,美国,2014,207740.2\r\n坏未来,8.1,28061,剧情/动作/爱情/科幻/短片,中国大陆,2013,227294.1\r\n背水一战,6.9,28056,喜剧/动作/犯罪,美国,2013,193586.4\r\n虎胆龙威,7.8,28033,动作/惊悚/犯罪,美国,1990,218657.4\r\n走到尽头,7.8,28020,动作/悬疑/惊悚/犯罪,韩国,2014,218556\r\n刀锋战士,6.9,27996,动作/惊悚/恐怖/奇幻/冒险,美国/德国,2002,193172.4\r\n男孩别哭,8.1,27978,剧情/爱情/同性/犯罪,美国,1999,226621.8\r\n晚娘,6.4,27944,剧情/情色,泰国,2001,178841.6\r\n闯入者,7.7,27938,剧情/惊悚/犯罪,中国大陆,2015,215122.6\r\n迷魂记,8.5,27913,爱情/悬疑/惊悚,美国,1958,237260.5\r\n黑客帝国动画版,8.7,27906,剧情/动作/科幻/动画,美国,2003,242782.2\r\n十二夜,7.9,27852,剧情,香港,2000,220030.8\r\n热天午后,8.6,27776,剧情/喜剧/犯罪,美国,1975,238873.6\r\n恐怖星球,7.4,27757,动作/科幻/恐怖,美国,2007,205401.8\r\n驱魔人,7.6,27753,恐怖,美国,1973,210922.8\r\n娜娜,6.5,27744,剧情/爱情,日本,2006,180336\r\n不可撤销 ,6.8,27722,剧情/惊悚/情色/犯罪,法国,2002,188509.6\r\n不能没有你,8.3,27703,剧情/家庭,台湾,2009,229934.9\r\n机动部队,7.8,27695,剧情/犯罪,香港,2003,216021\r\n内布拉斯加,8.6,27635,剧情/家庭,美国,2013,237661\r\n西风烈,5.9,27614,剧情/动作/犯罪/西部,中国大陆,2010,162922.6\r\n吸血鬼猎人林肯,6.3,27547,动作/惊悚/恐怖/奇幻,美国,2012,173546.1\r\n恋爱前规则,5.1,27547,剧情/喜剧/爱情,中国,2009,140489.7\r\n有种你爱我,4.8,27516,喜剧/爱情,中国大陆,2015,132076.8\r\n忠奸人,8.1,27507,剧情/惊悚/犯罪,美国,1997,222806.7\r\n流感,7.8,27504,剧情/惊悚/灾难,韩国,2013,214531.2\r\n黑店狂想曲,8.1,27475,喜剧/奇幻,法国,1991,222547.5\r\n超级八,6.4,27474,科幻/悬疑/惊悚/儿童,美国,2011,175833.6\r\n咒怨2 ,7.2,27469,恐怖,日本,2003,197776.8\r\n大奥,7.1,27451,剧情/同性,日本,2010,194902.1\r\n生命之树,6.9,27411,剧情/家庭/奇幻,美国,2011,189135.9\r\n伦敦陷落,6.2,27411,动作/惊悚/犯罪,英国/美国/保加利亚,2016,169948.2\r\n编舟记 舟を編,8.5,27350,剧情,日本,2013,232475\r\n时光倒流七十年,7.8,27314,剧情/爱情/奇幻,美国,1980,213049.2\r\n夜·上海,6.6,27314,剧情/爱情,中国大陆/日本,2007,180272.4\r\n奇幻精灵事件簿,7.2,27303,家庭/奇幻/冒险,美国,2008,196581.6\r\n斗士,7.9,27279,剧情/家庭/传记/运动,美国,2010,215504.1\r\n恋恋书中人,7.5,27266,喜剧/爱情/奇幻,美国,2012,204495\r\n夺宝奇兵,6.9,27250,动作/惊悚/冒险,美国,2008,188025\r\n大丈夫,7.5,27235,剧情/喜剧,香港,2003,204262.5\r\n丈夫得了抑郁症 ツレがうつになりまして,8,27212,剧情/爱情/家庭,日本,2011,217696\r\n萨玛利亚女孩,7.5,27212,剧情/情色,韩国,2004,204090\r\n给桃子的信 ももへの手,8.1,27209,剧情/动画,日本,2011,220392.9\r\n鸣梁海战,7,27198,剧情/动作/传记/战争/冒险,韩国,2014,190386\r\n的士速递,7.8,27192,喜剧/动作/犯罪,法国,2000,212097.6\r\n驯龙高手番外篇：龙的礼物,8.5,27120,动画/短片/家庭/冒险,美国,2011,230520\r\n东方快车谋杀案,8.3,27098,剧情/悬疑,英国,1974,224913.4\r\n冲出亚马逊,6.4,27081,剧情/动作,中国大陆,2002,173318.4\r\n双雄 雙,6.4,27079,惊悚,香港,2003,173305.6\r\n芙蓉镇,8.9,27054,剧情/爱情,中国大陆,1986,240780.6\r\n蒂莫西的奇异生活,7.8,26991,剧情/喜剧/家庭/奇幻,美国,2012,210529.8\r\n大事件,6.4,26973,剧情/动作/犯罪,中国大陆/香港,2004,172627.2\r\n天际浩劫,4.4,26955,动作/科幻/灾难,美国,2011,118602\r\n微不足道,8.1,26932,喜剧/惊悚/犯罪,英国/加拿大,2006,218149.2\r\n冬天的骨头,7.3,26932,剧情/悬疑/惊悚/家庭,美国,2010,196603.6\r\n五个扑水的少年 ウォーターボーイ,8.4,26902,喜剧/运动,日本,2001,225976.8\r\n饺子,6.5,26895,剧情/惊悚,香港,2004,174817.5\r\n铁皮鼓,8.3,26889,剧情/历史/战争,西德/波兰/法国/南斯拉夫,1979,223178.7\r\n突袭2：暴,7.8,26880,剧情/动作/犯罪,印度尼西亚/美国,2014,209664\r\n女孩梦三十,6.9,26880,喜剧/爱情/奇幻,美国,2004,185472\r\n弯刀,6.5,26867,喜剧/动作/惊悚/犯罪,美国,2010,174635.5\r\n谜城,5.5,26862,动作/惊悚/犯罪,中国大陆/香港,2015,147741\r\n白银帝国,6.3,26825,剧情/爱情/家庭/传记/历史/古装,中国大陆/台湾/香港,2009,168997.5\r\n圣殇,7.8,26823,剧情,韩国,2012,209219.4\r\n最后的巫师猎人,5.8,26817,动作/奇幻/冒险,美国,2016,155538.6\r\n触不可及,5.3,26795,爱情/战争,中国大陆,2014,142013.5\r\n迫在眉梢,8.5,26790,剧情/惊悚/家庭/犯罪,美国,2002,227715\r\n饭局也疯狂,5,26752,剧情/喜剧,中国大陆,2012,133760\r\n柏拉图式性爱 プラトニック・セッ,6.6,26750,剧情/情色/传记,日本,2001,176550\r\n看得见风景的房间,7.8,26736,剧情/爱情,英国,1985,208540.8\r\n巨人捕手杰克,6.2,26732,剧情/奇幻/冒险,美国,2013,165738.4\r\n林肯律师,7.7,26706,剧情/惊悚/犯罪,美国,2012,205636.2\r\n致命急件,7,26679,动作/惊悚,美国,2012,186753\r\n赌神2 ,7.5,26666,喜剧/动作,香港,1994,199995\r\n我与梦露的一周,7.3,26644,剧情/传记/历史,英国/美国,2011,194501.2\r\n黄河绝恋,7.5,26643,剧情/战争,中国,1999,199822.5\r\n杀人漫画,7.1,26641,悬疑/惊悚/犯罪,韩国,2013,189151.1\r\n两男变错身,6.7,26619,喜剧,美国,2011,178347.3\r\n双瞳,7,26617,悬疑/恐怖,香港/台湾,2002,186319\r\n小飞侠彼得潘,8.1,26598,剧情/奇幻/冒险,澳大利亚/美国/英国,2003,215443.8\r\n消失的松果,8.7,26590,喜剧/动画/短片,美国,2002,231333\r\n飞鹰计划 飛鷹計,7.4,26576,喜剧/动作/惊悚/犯罪/冒险,香港,1991,196662.4\r\n人皮客栈,6.7,26569,悬疑/惊悚/恐怖,美国,2005,178012.3\r\n绿茶,6.2,26556,剧情/爱情,中国大陆,2003,164647.2\r\n一半海水一半火焰,6.6,26537,剧情,香港,2008,175144.2\r\n交响情人梦 最终乐章 后篇 のだめカンタービレ 最終,8.7,26505,剧情,日本,2010,230593.5\r\n香蕉,8.3,26496,喜剧/动画/短片,美国,1905,219916.8\r\n站台,8.2,26492,剧情/历史,中国/香港/日本/法国,2000,217234.4\r\n风云2 风,4.8,26470,动作/奇幻/冒险,香港/中国,2009,127056\r\n意外的幸运签 カラフ,8.2,26462,动画/奇幻,日本,2010,216988.4\r\n孩子们都很好,7.5,26413,剧情/喜剧/同性/家庭,美国,2010,198097.5\r\n一念天堂,5.1,26397,喜剧,中国大陆,2015,134624.7\r\n人狗奇缘,8.4,26391,剧情/儿童,韩国,2006,221684.4\r\n苦月亮,8.1,26364,剧情/爱情/惊悚/情色,法国/英国/美国,1992,213548.4\r\n金氏漂流记,8.3,26344,剧情/爱情,韩国,2009,218655.2\r\n你眼中的世界,7.6,26344,剧情/爱情/科幻,美国,2014,200214.4\r\n无人知晓 誰も知らな,8.9,26341,剧情,日本,2004,234434.9\r\n冒牌天神,6.6,26327,喜剧/家庭/奇幻,美国,2007,173758.2\r\n如梦,6.3,26305,剧情,中国大陆/台湾,2010,165721.5\r\n卡拉是条狗,7,26304,剧情/喜剧,中国大陆,2003,184128\r\n深海寻人,5.9,26272,剧情/爱情/惊悚/恐怖/奇幻,中国大陆/香港,2008,155004.8\r\n我老婆未满十八岁 我老婆唔够,6.5,26203,喜剧/爱情,香港,2002,170319.5\r\n新天龙八部之天山童姥 新天龍八部之天山童,7.2,26196,动作/武侠/古装,香港/中国大陆,1994,188611.2\r\n欲盖弄潮,8,26180,剧情/爱情/同性/运动,美国,2008,209440\r\n百万富翁的初恋,6.6,26178,爱情,韩国,2006,172774.8\r\n龙凤店,4.9,26178,喜剧/爱情/古装,香港/中国大陆,2010,128272.2\r\n南方公园,8.5,26160,喜剧/动画/歌舞,美国,1999,222360\r\n第九道门,7.2,26090,剧情/悬疑/惊悚/恐怖/奇幻,法国/西班牙/美国,1999,187848\r\n歪小子斯科特对抗全世界,7,26059,喜剧/动作/爱情/奇幻,美国/英国/加拿大,2010,182413\r\n空中大灌篮,6.9,26012,喜剧/科幻/动画/家庭/冒险/运动,美国,1996,179482.8\r\n辛亥革命,6.2,26002,剧情/历史,中国大陆,2011,161212.4\r\n美国派4：美国重,7,25981,喜剧/爱情,美国,2012,181867\r\n精灵鼠小弟,7,25980,喜剧/家庭/奇幻/冒险,美国,2002,181860\r\n名侦探柯南：业火的向日葵 名探偵コナン 業火の向,5.7,25967,动画/悬疑/冒险,日本,2015,148011.9\r\n豚鼠系列之5：下水道的美人鱼 ザ・ギニーピッグ マンホールの,5.9,25964,爱情/恐怖,日本,1988,153187.6\r\n硫磺岛的来信,7.9,25943,剧情/历史/战争,美国,2006,204949.7\r\n邻家女优,6.7,25924,剧情/喜剧/爱情,美国,2004,173690.8\r\n尼斯湖怪：深水传说,6.7,25900,家庭/奇幻/冒险,新西兰/英国/澳大利亚,2008,173530\r\n疤面煞星,8.2,25884,剧情/惊悚/犯罪,美国,1983,212248.8\r\n未来战警,6.7,25884,动作/科幻/惊悚,美国,2009,173422.8\r\n冰封：重生之门,3.5,25861,喜剧/动作/奇幻,中国大陆,2014,90513.5\r\n猴子捞月,8,25812,动画/短片,中国大陆,1905,206496\r\n枪王 鎗,8.1,25802,动作/惊悚/犯罪,香港,2000,208996.2\r\n食人鱼,5.9,25801,喜剧/惊悚/恐怖,美国,2010,152225.9\r\n色即是空,6.4,25789,喜剧/情色,韩国,2007,165049.6\r\n偷听女人心,7,25749,喜剧/爱情/奇幻,美国,2000,180243\r\n暴疯语,6,25724,悬疑/惊悚,中国大陆/香港,2015,154344\r\n乱,8.7,25721,剧情/动作/战争,日本/法国,1985,223772.7\r\n奸臣,6.4,25719,剧情/情色/古装,韩国,2015,164601.6\r\n地铁惊魂,6.7,25706,剧情/动作/犯罪,美国/英国,2009,172230.2\r\n007之择,7.1,25669,动作/惊悚/犯罪/冒险,英国/美国,2002,182249.9\r\n不可饶恕,8.4,25637,剧情/犯罪/西部,美国,1992,215350.8\r\n我要复仇,7.9,25609,剧情/惊悚/犯罪,韩国,2002,202311.1\r\n岳父岳母真难当,8,25496,喜剧/家庭,法国,2014,203968\r\n姐弟恋,7,25444,喜剧/爱情,美国,2009,178108\r\n霹雳娇娃,6.5,25439,喜剧/动作/犯罪/冒险,美国,2003,165353.5\r\n南郭先生,8,25428,动画/短片,中国大陆,1905,203424\r\n死神的十字路口,7.4,25411,剧情/悬疑/惊悚/恐怖,泰国,2008,188041.4\r\n98古惑仔之龙争虎斗 98古惑仔,7.2,25353,动作,香港,1998,182541.6\r\n内在美,7.5,25344,剧情/爱情/奇幻,韩国,2015,190080\r\n此间的少年,7.6,25342,剧情/喜剧,中国大陆,2010,192599.2\r\n名侦探柯南：第十一名前锋 名探偵コナン 11人目のスト,6.1,25327,动作/动画,日本,2012,154494.7\r\n如月疑云 キサラ,8.1,25317,喜剧/悬疑,日本,2007,205067.7\r\n欧洲性旅行,7.1,25315,喜剧/冒险,捷克/美国,2004,179736.5\r\n摇滚黑帮,7.6,25233,动作/惊悚/犯罪,美国/英国,2008,191770.8\r\n暗恋桃花源 暗戀桃花,8.6,25228,剧情/喜剧/爱情,台湾,1905,216960.8\r\n漂流欲室,7.1,25227,剧情/惊悚/情色,韩国,2000,179111.7\r\n给爸爸的信 給爸爸的,7.5,25196,动作,香港,1995,188970\r\n星之声 ほしのこ,8.4,25180,爱情/科幻/动画/短片,日本,2002,211512\r\n潜伏,7.8,25180,惊悚/恐怖,美国,2013,196404\r\n埃及王子,8,25165,剧情/动画/歌舞/家庭/历史/冒险,美国,1998,201320\r\n巴黎野玫瑰 ,8.1,25119,剧情/爱情/情色,法国,1986,203463.9\r\n冥界警局,6,25107,喜剧/动作/犯罪/奇幻,美国,2013,150642\r\n笔仙,6.3,25103,恐怖,韩国,2004,158148.9\r\n独家新闻,7.2,25101,喜剧/爱情/悬疑/奇幻,英国/美国,2006,180727.2\r\n天堂之吻 パラダイス・,6.7,25080,剧情/爱情,日本,2011,168036\r\n硬汉2：奉陪到,6.4,25067,动作/爱情,中国大陆,2011,160428.8\r\n盲,7.5,25065,剧情/悬疑/犯罪,韩国,2011,187987.5\r\n弗兰克,7.8,25040,剧情,英国/爱尔兰,2014,195312\r\n人类清除计划,5.6,25021,科幻/惊悚/恐怖,美国/法国,2013,140117.6\r\n墨水心,6.3,24995,家庭/奇幻/冒险,德国/英国/美国,2008,157468.5\r\n六指琴魔,7,24975,动作/武侠/古装,香港/中国大陆,1994,174825\r\n夏天的尾巴,7.1,24884,剧情,台湾,2007,176676.4\r\n纯真年代,8.2,24822,剧情/爱情,美国,1993,203540.4\r\n我爱你,7.1,24800,爱情,中国大陆,2003,176080\r\n与时尚同居,5.6,24776,喜剧/爱情,中国大陆,2011,138745.6\r\n粉红豹,7.3,24772,喜剧/悬疑/犯罪/冒险,美国/捷克,2006,180835.6\r\n艾利之书,6.7,24765,剧情/动作/冒险,美国,2010,165925.5\r\n真爱无价,7.1,24756,喜剧/爱情,法国,2006,175767.6\r\n末日危途,7.7,24745,剧情/惊悚/冒险/灾难,美国,2009,190536.5\r\n临时同居 失戀急,5,24744,喜剧/爱情,香港/中国大陆,2014,123720\r\n环游地球八十天,5.9,24728,喜剧/动作/冒险,美国/德国/爱尔兰/英国,2004,145895.2\r\n失忆界女王,6.2,24703,喜剧/爱情,中国大陆/香港,2003,153158.6\r\n小鬼当街,8.2,24699,喜剧/冒险,美国,1994,202531.8\r\n托斯卡纳艳阳下,8.1,24698,剧情/喜剧/爱情,美国/意大利,2003,200053.8\r\n一触即发,5.7,24613,剧情/动作/惊悚,美国/俄罗斯,2014,140294.1\r\n一个字头的诞生 一個字頭的誕,8.3,24608,喜剧/动作/犯罪,香港,1997,204246.4\r\n熊猫大侠,4.5,24583,喜剧/动作/古装,中国大陆,2009,110623.5\r\n圣诞玫瑰,6.1,24560,剧情/悬疑/犯罪,中国大陆/香港,2013,149816\r\n涉外大饭店,8,24546,剧情/喜剧,英国/美国/阿联酋,2011,196368\r\n捕蝇纸,7.8,24509,喜剧/犯罪,美国/德国,2011,191170.2\r\n生活多美好,9.2,24495,剧情/爱情/奇幻,美国,1946,225354\r\n八月：奥色治郡,8,24495,剧情,美国,2013,195960\r\n记忆裂痕,7.2,24482,动作/科幻/悬疑/惊悚,美国,2004,176270.4\r\n共同警备区,8.6,24475,剧情/惊悚/战争,韩国,2000,210485\r\n总统杀局,7,24439,剧情,美国,2011,171073\r\n滚滚红尘,8.2,24437,爱情/战争,香港/中国大陆,1990,200383.4\r\n吐司,7.5,24406,剧情/喜剧/同性/家庭,英国,2010,183045\r\n破绽,7.3,24405,剧情/悬疑/惊悚/犯罪,美国/德国,2007,178156.5\r\n变节：潜罪犯 Lau,6.1,24399,动作/悬疑/犯罪,香港,2012,148833.9\r\n名侦探柯南：远海的侦探 名探偵コナン 絶海の,6.2,24387,动画/悬疑/犯罪/冒险,日本,2013,151199.4\r\n新世纪福音战士剧场版：Air/真心为你 新世紀エヴァンゲリオン劇場版 Ai,9.4,24355,剧情/动作/科幻/动画/奇幻,日本,1997,228937\r\n血色将至,8,24339,剧情/惊悚/历史,美国,2007,194712\r\n新桥恋人,8.1,24337,剧情/爱情,法国,1991,197129.7\r\n天佑鲍比,8.9,24227,剧情/同性/传记,美国,2009,215620.3\r\n利益风暴,7.8,24205,剧情,美国,2011,188799\r\n阿呆与阿瓜,7.2,24177,喜剧,美国,1994,174074.4\r\n愤怒的公牛,8.3,24172,剧情/动作/传记/运动,美国,1980,200627.6\r\n仙履奇缘,8.1,24157,爱情/动画/歌舞/奇幻,美国,1950,195671.7\r\n美人鱼,6.5,24105,喜剧/爱情/家庭/奇幻,美国/澳大利亚,2006,156682.5\r\n下一站…天后,6.5,24096,剧情/喜剧/爱情,香港,2003,156624\r\n埃及艳后,7.7,24080,剧情/爱情/传记/历史,英国/美国/瑞士,1963,185416\r\n大城小事,6.3,24068,剧情/爱情,中国大陆/香港,2004,151628.4\r\n黑色大丽花,6.5,24055,剧情/悬疑/惊悚/历史/犯罪,美国/德国,2006,156357.5\r\n红气球,8.7,24034,短片/家庭/奇幻,法国,1956,209095.8\r\n憨豆先生的大灾难,7.9,24005,喜剧/家庭,英国/美国,1997,189639.5\r\n江湖,6.9,23965,剧情/动作/犯罪,香港,2004,165358.5\r\n柏林,7.2,23854,剧情/动作/惊悚,韩国,2013,171748.8\r\n出埃及记,7,23835,剧情/喜剧/犯罪,香港,2007,166845\r\n福音战士新剧场版：Q ヱヴァンゲリヲン新劇場,8.3,23819,剧情/动作/科幻/动画,日本,2012,197697.7\r\n听说桐岛要退部 桐島、部活やめるって,7.9,23807,剧情,日本,2012,188075.3\r\n与我同眠,6.6,23805,剧情/爱情/情色,加拿大,2005,157113\r\n007之,7.5,23773,动作/惊悚/冒险,英国/美国,1995,178297.5\r\n铁拳男人,8.6,23770,剧情/家庭/传记/运动,美国,2005,204422\r\n300勇士：帝,6.1,23756,剧情/动作/历史/战争,美国,2014,144911.6\r\n精英部队,7.9,23725,剧情/动作/惊悚/犯罪,巴西/美国/阿根廷,2007,187427.5\r\n007之黑,7.3,23725,动作/惊悚/冒险,英国/美国,1999,173192.5\r\n反贪风暴 Z,5.5,23717,剧情/动作/犯罪,香港/中国大陆,2014,130443.5\r\n茜茜公主,8.5,23696,剧情/爱情/历史,奥地利,1956,201416\r\n嗜血破晓,6.8,23679,剧情/动作/科幻/恐怖/犯罪,美国/澳大利亚,2010,161017.2\r\n永远的三丁目的夕阳 ALWAY,8.8,23676,剧情/家庭,日本,2005,208348.8\r\n深空失忆,7.3,23658,动作/科幻/悬疑/惊悚/恐怖,德国/英国,2009,172703.4\r\n古今大战秦俑情 古今大戰秦俑,6.7,23654,爱情/奇幻/冒险/古装,香港,1990,158481.8\r\n杜拉拉追婚记,5.3,23634,喜剧/爱情,中国大陆,2015,125260.2\r\n一球成名,7.4,23619,剧情/运动,英国/美国,2006,174780.6\r\n我唾弃你的坟墓,6.4,23553,惊悚/犯罪,美国,2010,150739.2\r\n刀锋战士,6.6,23527,动作/惊悚/奇幻/冒险,美国,2004,155278.2\r\n第六日,6.8,23459,动作/科幻/惊悚,美国,2000,159521.2\r\n怪兽屋,7.1,23457,喜剧/动画/悬疑/家庭/奇幻,美国,2006,166544.7\r\n迫降航班,7.2,23430,剧情/灾难,美国,2012,168696\r\n奋斗,5,23409,剧情/喜剧/爱情,中国大陆,2011,117045\r\n进击的巨人真人版：前篇 進撃の巨,5.1,23396,动作/科幻/惊悚,日本,2015,119319.6\r\n巴尔扎克与小裁缝,7.7,23365,剧情/爱情/传记,中国/法国,2002,179910.5\r\n求爱上上签 性感都,5.9,23362,喜剧/爱情,香港,2004,137835.8\r\n无敌幸运星 無敵幸運,6.8,23354,喜剧/动作,香港,1990,158807.2\r\n007之明,7.2,23351,动作/惊悚/冒险,英国/美国,1997,168127.2\r\n机器战警,7.5,23349,剧情/动作/科幻/惊悚/犯罪,美国,1987,175117.5\r\n尖峰时刻,6.4,23316,喜剧/动作/犯罪,美国/德国,2007,149222.4\r\n龙虎少年队,6.8,23315,喜剧/动作/犯罪,美国,2012,158542\r\n孤独的幸存者,8,23294,剧情/动作/传记,美国,2013,186352\r\nB+侦探,5.7,23282,剧情/悬疑/惊悚/犯罪,香港/中国大陆,2011,132707.4\r\n隔山有眼,6.7,23229,惊悚/恐怖,美国,2006,155634.3\r\n大电影2 大电影2.0：两个傻,5.7,23211,喜剧,中国大陆,2007,132302.7\r\nSPE,8.6,23199,剧情/悬疑,日本,2012,199511.4\r\n沉睡的青春 沈睡的青,7.1,23194,爱情/悬疑,台湾,2007,164677.4\r\n极度深寒,7.3,23188,动作/科幻/惊悚/灾难,美国,1998,169272.4\r\n史蒂夫·乔布斯,7.2,23188,剧情/传记,美国/英国,2015,166953.6\r\n死亡实验,7.3,23178,剧情/惊悚,美国,2010,169199.4\r\n九,6.9,23177,剧情/爱情/歌舞,美国/意大利,2009,159921.3\r\n蝙蝠侠,7.2,23173,动作/奇幻,美国/英国,1989,166845.6\r\n大逃杀2：镇魂歌 バトル・ロワイアルII,5.4,23152,剧情/动作/惊悚,日本,2003,125020.8\r\n好奇害死猫,6.3,23150,剧情/爱情/悬疑/惊悚,中国大陆,2006,145845\r\n情圣 情,7,23145,喜剧,香港,1991,162015\r\n七龙珠,3.7,23139,动作/科幻/惊悚/奇幻/冒险,美国/香港/英国,2009,85614.3\r\n狼牙,6.1,23134,动作/惊悚,香港,2008,141117.4\r\n灵动：鬼影实录,6.4,23131,悬疑/恐怖,美国,2007,148038.4\r\n冲锋车 衝鋒,6.6,23128,喜剧/犯罪,香港/中国大陆,2015,152644.8\r\n大战外星人,6.9,23127,喜剧/动作/科幻/动画/家庭/冒险,美国,2009,159576.3\r\n面子,8.6,23125,剧情/喜剧/爱情/同性,美国,2004,198875\r\n功夫小蝇,7.4,23118,喜剧/动作/奇幻,印度,2012,171073.2\r\n成事在人,8.2,23115,剧情/传记/历史/运动,美国,2009,189543\r\n性、谎言和录像带,7.6,23082,剧情/情色,美国,1989,175423.2\r\nA计划续集 A計,7.3,23057,喜剧/动作/犯罪,香港,1987,168316.1\r\n回归,8.1,23042,剧情/喜剧/悬疑/犯罪,西班牙,2006,186640.2\r\n爱人,6.6,23011,爱情/情色,韩国,2005,151872.6\r\n猎头游戏,7.7,22996,悬疑/惊悚/犯罪,挪威/德国,2011,177069.2\r\n杀死一只知更鸟,8.5,22989,剧情/悬疑/犯罪,美国,1962,195406.5\r\n河东狮吼,3.3,22977,喜剧/动作/爱情,中国大陆/香港,2012,75824.1\r\n宋家皇朝,7.7,22964,剧情/爱情/历史,中国大陆/香港/日本,1997,176822.8\r\n二十四城记,7.4,22962,剧情,中国大陆/香港/日本,2009,169918.8\r\n魁拔之大战元泱界,7.6,22960,动作/动画/奇幻/冒险,中国大陆,2013,174496\r\n人体蜈蚣,5,22958,恐怖,荷兰,2009,114790\r\n思悼,8.3,22932,剧情/传记/历史,韩国,2015,190335.6\r\n特工争风,6.6,22905,喜剧/动作/爱情,美国,2012,151173\r\n胜者即是正义 2014SP リーガ,8.3,22886,剧情/悬疑,日本,2014,189953.8\r\n魔幻厨房,5.6,22884,喜剧/爱情,香港,2004,128150.4\r\n出水芙蓉,8.5,22879,喜剧/歌舞,美国,1944,194471.5\r\n老师的恩惠,6.7,22879,悬疑/惊悚/恐怖,韩国,2006,153289.3\r\n公主复仇记,6.8,22877,剧情,香港,2004,155563.6\r\n一路惊喜,5.1,22861,喜剧/爱情/家庭,中国大陆,2015,116591.1\r\n惊变2,6.7,22843,惊悚/恐怖,英国/西班牙,2007,153048.1\r\n危情十日,8.3,22827,剧情/惊悚/犯罪,美国,1990,189464.1\r\n一座城池,5.4,22739,剧情/喜剧,中国大陆,2013,122790.6\r\n战栗空间,7.1,22723,惊悚,美国,2002,161333.3\r\n夺宝奇兵,7.7,22672,动作/冒险,美国,1984,174574.4\r\n红樱桃,7.5,22656,剧情/战争,中国大陆,1995,169920\r\n惊声尖叫,7,22655,悬疑/恐怖/犯罪,美国,1996,158585\r\n狂暴飞车,5.8,22622,动作/惊悚/犯罪/奇幻,美国,2011,131207.6\r\n爱你，罗茜,7.3,22598,喜剧/爱情,德国/英国,2014,164965.4\r\n第一滴血,7.1,22597,动作/惊悚,美国/德国,2008,160438.7\r\n乔布斯,6,22548,剧情/传记,美国,2013,135288\r\n汉娜·蒙塔娜：电影版,7,22519,喜剧,美国,2009,157633\r\n行运超人,6.6,22519,喜剧/爱情,香港,2003,148625.4\r\n醉拳2 醉,7.4,22508,喜剧/动作,香港,1994,166559.2\r\n太空一号,6.1,22503,动作/科幻/惊悚,美国/法国,2012,137268.3\r\n我妻子的一切,7.3,22502,喜剧/爱情,韩国,2012,164264.6\r\n攻壳机动队2：无罪 攻殻機動隊2 イ,9,22491,剧情/科幻/动画/惊悚,日本,2004,202419\r\n香奈儿,8,22470,传记,意大利/法国/英国,2008,179760\r\n看见恶魔,7.5,22444,剧情/惊悚/犯罪,韩国,2010,168330\r\n雷蒙·斯尼奇的不幸历险,7.5,22443,喜剧/家庭/奇幻/冒险,美国/德国,2004,168322.5\r\n人间中毒,6.4,22443,剧情/爱情/情色,韩国,2014,143635.2\r\n丑陋的真相,6.7,22427,喜剧/爱情,美国,2009,150260.9\r\n绿芥刑警,7.1,22419,剧情/喜剧/动作/惊悚/犯罪,法国/日本,2001,159174.9\r\n笑林小子2：新乌龙院 笑林小子2：新,7.6,22415,喜剧/动作,香港/台湾,1994,170354\r\n天若有情,7.9,22398,剧情/动作/爱情,香港,1990,176944.2\r\n猫狗大战,6.7,22390,喜剧/动作/家庭/冒险,美国/澳大利亚,2001,150013\r\n追影,4.5,22384,喜剧/动作,中国/香港,2009,100728\r\n大独裁者,8.9,22337,剧情/喜剧/战争,美国,1940,198799.3\r\n别惹蚂蚁,7,22313,喜剧/动画/家庭/奇幻/冒险,美国,2006,156191\r\n行运一条龙 行運一條,6.6,22309,剧情/喜剧/爱情,香港,1998,147239.4\r\n唐伯虎点秋香2之四大才,4.1,22307,喜剧/古装,中国大陆/香港,2010,91458.7\r\n帕克,6.4,22303,动作/惊悚/犯罪,美国,2013,142739.2\r\n离开雷锋的日子,7.2,22301,剧情/传记,中国大陆,1996,160567.2\r\n国际市场,8.2,22298,剧情/家庭,韩国,2014,182843.6\r\n来自地狱,7.3,22291,悬疑/惊悚/恐怖/犯罪,美国,2001,162724.3\r\n弗里达,8.7,22267,剧情/爱情/传记,美国/墨西哥/加拿大,2002,193722.9\r\n女性瘾者：第二部,7.7,22236,剧情/情色,丹麦/德国/比利时/英国/法国/瑞典,2013,171217.2\r\n亲爱的朋友 Dear F,7.3,22211,剧情,日本,2007,162140.3\r\n金色梦乡 ゴールデンスランバ,8.6,22201,剧情/悬疑/惊悚,日本,2010,190928.6\r\n特警判官,6.3,22162,动作/科幻/惊悚/犯罪,英国/美国/印度/南非,2013,139620.6\r\n车手,6,22155,剧情/动作/犯罪,中国大陆/香港,2012,132930\r\n佐罗传奇,7,22110,动作/西部/冒险,美国,2005,154770\r\n不求上进的玉子 もらとりあむタマ,7.2,22100,喜剧,日本,2013,159120\r\n蓝风筝,8.5,22075,剧情/历史,中国大陆/香港,1993,187637.5\r\n爱情麻辣烫,7.4,22070,剧情/爱情,中国,1999,163318\r\n醉拳,7.2,22067,喜剧/动作,香港,1978,158882.4\r\n恋爱恐慌症,5.5,22054,喜剧/爱情,中国大陆/台湾,2011,121297\r\n带我去远方 帶我去遠,7.4,22044,剧情/同性,台湾,2009,163125.6\r\n一声叹息,7.3,22027,剧情/爱情/家庭,中国大陆,1905,160797.1\r\n异能,5.9,22024,动作/科幻/惊悚,加拿大/英国/美国,2009,129941.6\r\n绝世宝贝 絕世,5.8,21971,喜剧,香港,2002,127431.8\r\n那年夏天，宁静的海 あの夏、いちばん静かな,8.2,21938,爱情,日本,1991,179891.6\r\n甜性涩爱,6.4,21929,剧情/情色,韩国,2003,140345.6\r\n金刚不坏,7.6,21903,动作/惊悚/犯罪,美国,2007,166462.8\r\n皮囊之下,6.1,21888,科幻/恐怖,英国/美国/瑞士,2013,133516.8\r\n失物招领,8.2,21885,剧情/动画/短片/奇幻,澳大利亚/英国,2010,179457\r\n八美图,7.8,21847,喜剧/悬疑/歌舞,法国/意大利,2002,170406.6\r\n绿野仙踪,8.1,21845,歌舞/奇幻/冒险,美国,1939,176944.5\r\n香港制造,8.1,21844,剧情/喜剧/爱情/犯罪,香港,1997,176936.4\r\n魔女嘉莉,5.8,21842,剧情/恐怖,美国,2013,126683.6\r\n狂蟒之灾,6.6,21820,动作/惊悚/冒险/灾难,巴西/美国/秘鲁,1997,144012\r\n吸血鬼猎人,8.7,21819,科幻/动画/悬疑/奇幻/冒险,美国/日本,2000,189825.3\r\n忠烈杨家将,6,21818,战争/古装,中国大陆/香港,2013,130908\r\n格林兄弟,6.6,21793,喜剧/惊悚/奇幻/冒险,捷克/美国/英国,2005,143833.8\r\n爱情的牙齿,7.7,21789,剧情/爱情,中国大陆,2007,167775.3\r\n家园防线,6.2,21781,动作/惊悚/犯罪,美国,2014,135042.2\r\n时间,7.6,21766,剧情/爱情,韩国/日本,2006,165421.6\r\n奔腾年代,8.4,21730,剧情/历史/运动,美国,2003,182532\r\n第七封印,8.3,21722,剧情/奇幻,瑞典,1957,180292.6\r\n嫌疑人X的献,7.5,21690,剧情/爱情/悬疑/犯罪,韩国,2012,162675\r\n父子,6.8,21686,剧情/家庭,香港/马来西亚,2006,147464.8\r\n神枪手 神槍,5.9,21676,剧情/动作/惊悚/犯罪/冒险,香港,2009,127888.4\r\n小杰克的攻击,8.1,21662,动画/短片/家庭/冒险,美国,2005,175462.2\r\n2008年第29届北京,8.8,21643,运动,中国大陆,2008,190458.4\r\n大话天仙,3,21629,喜剧/奇幻/古装,中国大陆/香港,2014,64887\r\n龙的传人 龍的傳,6.9,21620,喜剧,香港,1991,149178\r\n我恨你的十件事,7.7,21618,喜剧/爱情,美国,1999,166458.6\r\n在一起,3.6,21616,爱情,香港/中国大陆,2013,77817.6\r\n蜂鸟特攻,6.2,21613,剧情/动作/惊悚/犯罪,英国/美国,2014,134000.6\r\n黑暗侵袭,6.7,21586,惊悚/恐怖/冒险,英国,2009,144626.2\r\n卧虎藏龙：青冥宝剑,4.8,21585,剧情/动作/武侠/古装,中国大陆/美国,2016,103608\r\n浪客剑心：京都大火篇 るろうに剣心 京都大,7.7,21545,动作/古装,日本,2014,165896.5\r\n天地大冲撞,7,21528,剧情/动作/科幻/灾难,美国,1998,150696\r\n谋杀绿脚趾,7.7,21524,喜剧/犯罪,美国/英国,1998,165734.8\r\n刮痧,7.5,21516,剧情/家庭,中国,2001,161370\r\n银魂完结篇：直到永远的万事屋 劇場版 銀魂 完結篇 万事屋よ,9.4,21513,剧情/动画,日本,2013,202222.2\r\n火星人玩转地球,7.2,21504,喜剧/动作/科幻/惊悚/奇幻,美国,1996,154828.8\r\n极恶非道 アウトレイ,7.8,21471,剧情/犯罪,日本,2010,167473.8\r\n雏妓 雛,6.4,21465,剧情,香港,2014,137376\r\n色情男女,7.5,21436,剧情/喜剧/情色,香港,1996,160770\r\n新抢钱夫妻,6.9,21434,喜剧/犯罪,美国,2005,147894.6\r\n拜见岳父大人,7.1,21405,喜剧/爱情,美国,2004,151975.5\r\n人狼大战,6.5,21392,剧情/动作/惊悚/冒险,美国,2012,139048\r\n决战犹马镇,7.9,21387,剧情/动作/犯罪/西部,美国,2007,168957.3\r\n101,7.9,21377,喜剧/动画/家庭/冒险,美国,1961,168878.3\r\n布鲁克斯先生,7.6,21371,剧情/悬疑/惊悚/犯罪,美国,2007,162419.6\r\n甜心先生,7.4,21362,剧情/喜剧/爱情/运动,美国,1996,158078.8\r\n曼哈顿女佣,6.4,21362,剧情/喜剧/爱情,美国,2002,136716.8\r\n德州电锯杀人狂,6.9,21322,惊悚/恐怖,美国,2003,147121.8\r\n神奇燕尾服,6,21293,喜剧/动作/科幻/惊悚,美国,2002,127758\r\n只要在一起,7.7,21274,剧情/爱情,法国,2007,163809.8\r\n刀见笑,5.7,21266,喜剧/动作/古装,中国大陆/香港/美国,2011,121216.2\r\n堕入地狱,6.4,21261,恐怖,美国,2009,136070.4\r\n耶稣受难记,7.8,21192,剧情,美国,2004,165297.6\r\n12怒汉：大,8.5,21168,剧情/悬疑,俄罗斯,2007,179928\r\n爱国者,8.1,21148,剧情/动作/战争,美国/德国,2000,171298.8\r\n海神号,6.7,21129,剧情/动作/冒险/灾难,美国,2006,141564.3\r\n神勇奶爸,6.9,21112,剧情/喜剧/动作/惊悚/家庭,加拿大/美国,2005,145672.8\r\n超新约全书,8,21107,喜剧/奇幻,比利时/法国/卢森堡,2015,168856\r\n消失的凶手,4.7,21103,动作/悬疑/犯罪,中国大陆/香港,2015,99184.1\r\n的士速递,7.3,21053,喜剧/动作,法国,2003,153686.9\r\n想爱就爱,6.2,21052,剧情/爱情,泰国,2012,130522.4\r\n毁灭之路,7.7,21043,剧情/惊悚/犯罪/冒险,美国,2002,162031.1\r\n神探飞机头,7.2,21043,喜剧/动作/悬疑/惊悚,美国,1994,151509.6\r\n借着雨点说爱你 いま、会いにゆきま,8.5,21028,剧情/爱情/奇幻,日本,2004,178738\r\n好雨时节,6.4,21018,剧情/爱情,韩国/中国,2009,134515.2\r\n再说一次我爱你,6.3,20999,剧情/爱情,中国大陆/香港,2005,132293.7\r\n囚室,8.1,20992,剧情/动作,西班牙/法国,2009,170035.2\r\n自梳,8.1,20987,剧情/爱情/同性,香港,1997,169994.7\r\n我的野蛮女老师,6.6,20957,喜剧/爱情,韩国,2003,138316.2\r\n撕裂的末日,7.5,20955,剧情/动作/科幻/惊悚,美国,2002,157162.5\r\n德州巴黎,8.7,20954,剧情,英国/法国/美国/西德,1984,182299.8\r\n野战排,8.1,20941,剧情/动作/战争,美国/英国,1986,169622.1\r\n的士速递,7,20939,喜剧/动作,法国,2007,146573\r\n家庭作业,6.9,20924,爱情,美国,2011,144375.6\r\n夏天协奏曲 夏天協奏,6.9,20922,剧情/爱情,台湾,2009,144361.8\r\n街角洋果子店 洋菓子店コアンド,7,20914,剧情,日本,2011,146398\r\n坏中尉,6.9,20905,惊悚/犯罪,美国,2009,144244.5\r\n虐童疑云,7.6,20901,剧情/悬疑,美国,2008,158847.6\r\n地雷战,8,20892,剧情/战争,中国大陆,1963,167136\r\n乘客,6.6,20860,剧情/爱情/悬疑/惊悚,美国/加拿大,2008,137676\r\n新上海滩 新上海,7.5,20850,动作/惊悚/犯罪,香港,1996,156375\r\n孙子从美国来,8.3,20825,剧情/家庭/儿童,中国大陆,2012,172847.5\r\n花花型警,5.8,20763,动作/爱情/惊悚,香港,2008,120425.4\r\n鱼缸,7.4,20741,剧情,英国/荷兰,2009,153483.4\r\n贝奥武夫,6.6,20735,动作/动画/奇幻/冒险,美国,2007,136851\r\n大武当之天地密码,3.8,20735,喜剧/动作/冒险,中国大陆/香港,2012,78793\r\n快乐的大脚,7.2,20729,喜剧/动画/歌舞/家庭,澳大利亚,2012,149248.8\r\n曼谷杀手,6,20729,动作/惊悚/犯罪,美国/泰国,2008,124374\r\n便所爱情故事 Уборная история - Любовная и,8,20698,动画/短片,俄罗斯,2007,165584\r\n庞贝末日,6,20697,动作/爱情/冒险/灾难,加拿大/德国/美国,2014,124182\r\n骗中骗,8.7,20689,剧情/喜剧/犯罪,美国,1973,179994.3\r\n一夜大肚,6.5,20668,喜剧/爱情,美国,2007,134342\r\n东方三侠 東方三,7.2,20649,动作/奇幻/武侠,香港,1993,148672.8\r\n绝种好男人,5.8,20647,喜剧,香港,2003,119752.6\r\n亚瑟王,6.8,20636,动作/历史/战争/冒险,爱尔兰/美国/英国,2004,140324.8\r\n幽灵船,6.7,20635,悬疑/惊悚/恐怖,美国/澳大利亚,2002,138254.5\r\n热血青春,6.8,20634,喜剧/爱情,韩国,2014,140311.2\r\n极速天使,5.1,20633,剧情/动作,中国大陆/香港,2011,105228.3\r\n第七子：降魔之战,5,20622,奇幻/冒险,英国/美国/加拿大/中国大陆,2015,103110\r\n蓝丝绒,7.4,20619,悬疑/惊悚/犯罪,美国,1986,152580.6\r\n斯图尔特：倒带人生,8.7,20611,剧情,英国,2007,179315.7\r\nOf,6.6,20593,剧情/悬疑/惊悚/恐怖,香港,2002,135913.8\r\n疾速追杀,6.9,20592,动作/惊悚,美国,2014,142084.8\r\n高考,7.3,20591,剧情,中国,2009,150314.3\r\n追爱大布局 愛情無全,6,20558,喜剧/爱情,台湾,2014,123348\r\n热带惊雷,6.8,20525,喜剧/动作/冒险,美国/德国,2008,139570\r\n绝地战警,7.4,20512,剧情/喜剧/动作/惊悚/犯罪,美国,1995,151788.8\r\n丛林大反攻,7.1,20505,喜剧/动画/家庭/冒险,美国,2006,145585.5\r\n飞虎出征 飛虎出,6.7,20485,喜剧/情色,香港,2013,137249.5\r\n脑男 脳,7.1,20484,悬疑/犯罪,日本,2013,145436.4\r\n太阳泪,7.2,20482,剧情/动作/惊悚/战争,美国,2003,147470.4\r\n暗战,6.5,20480,动作/犯罪,香港,2001,133120\r\n小男孩,8.1,20468,剧情/喜剧/战争,墨西哥/美国,2015,165790.8\r\n离开拉斯维加斯,8.1,20453,剧情/爱情,美国/法国/英国,1995,165669.3\r\n心急吃不了热豆腐,6.8,20451,喜剧,中国大陆,2005,139066.8\r\n安娜·卡列尼娜,7.4,20435,剧情/爱情,美国,1997,151219\r\n摩登年代,5.3,20434,剧情/喜剧,中国大陆,2013,108300.2\r\n可爱的你 五個小孩的校,7.8,20432,剧情,香港/中国大陆,2015,159369.6\r\n咖喱辣椒,6.8,20413,喜剧/动作/爱情/犯罪,香港,1990,138808.4\r\n城南旧事,8.7,20391,剧情,中国大陆,1905,177401.7\r\n恋爱中的城市,5.7,20387,爱情,中国大陆,2015,116205.9\r\n蝎子王,6.5,20380,动作/惊悚/奇幻/冒险,德国/美国/比利时,2002,132470\r\n双子神偷 雙子神,5.4,20364,喜剧/动作,香港,2007,109965.6\r\n弓,7.9,20329,剧情/爱情/情色,韩国/日本,2005,160599.1\r\n老手,7.5,20295,剧情/动作,韩国,2015,152212.5\r\n不良教育 ,8.2,20278,剧情/悬疑/惊悚/同性/犯罪,西班牙,2004,166279.6\r\n东京塔 東京タワー～オカンとボクと、時々、オトン,8.7,20274,剧情/家庭,日本,2007,176383.8\r\n铁血精英,6.5,20271,动作/惊悚,美国/澳大利亚,2012,131761.5\r\n顽皮跳跳灯,7.9,20267,动画/短片/家庭,美国,1986,160109.3\r\n喜爱夜蒲2 喜愛,4.9,20258,剧情/情色,香港,2012,99264.2\r\n爱德华大夫,8.3,20249,爱情/悬疑/惊悚/黑色电影,美国,1945,168066.7\r\n月代头布丁 ちょんまげぷり,7.9,20246,喜剧,日本,2010,159943.4\r\n霍乱时期的爱情,7.5,20235,剧情/爱情,美国,2007,151762.5\r\n小门神,6.9,20228,喜剧/动画/奇幻,中国大陆,2016,139573.2\r\n远距离爱情,6.8,20217,喜剧/爱情,美国,2010,137475.6\r\n玩命速递：重启之战,6,20201,动作/惊悚/犯罪,法国/中国大陆/比利时,2015,121206\r\n故园风雨后,7.7,20199,剧情/爱情,英国,2008,155532.3\r\n死亡实验,8,20194,剧情/惊悚,德国,2001,161552\r\n不可饶恕,7.7,20193,惊悚,韩国,2010,155486.1\r\n唐顿庄园：2012圣,7.9,20191,剧情,英国,2012,159508.9\r\n惊声尖笑,6.7,20191,喜剧,美国,2006,135279.7\r\n诈欺游戏 电影版 ライアーゲーム　ザ・ファイナルス,7.9,20156,剧情/惊悚,日本,2010,159232.4\r\n隋朝来客,4.7,20095,剧情/喜剧,中国大陆,2009,94446.5\r\n雾都孤儿,7.9,20092,剧情/家庭,英国/捷克/法国/意大利,2005,158726.8\r\n八星抱喜,5,20088,喜剧,中国大陆/香港,2012,100440\r\n光棍儿,8.1,20086,剧情/喜剧/同性,中国大陆,2011,162696.6\r\n海上花,7.9,20073,剧情,台湾,1998,158576.7\r\n誓约,7.2,20056,剧情/爱情,美国/法国/英国/德国/巴西/澳大利亚,2012,144403.2\r\n越狱特别篇：最后一越,8,20017,剧情/动作/惊悚,美国,2009,160136\r\n杀手欧阳盆栽,5.5,20015,剧情/喜剧/动作/爱情,台湾,2012,110082.5\r\n警察故事续集 警察故事續,7.2,19969,喜剧/动作/惊悚/犯罪,香港,1988,143776.8\r\n东宫西宫 東宮西,6.6,19945,剧情/同性,中国,1996,131637\r\n绝密飞行,6.6,19943,动作/科幻/冒险,美国,2005,131623.8\r\n回家的路,8.5,19924,剧情/家庭/犯罪,韩国,2013,169354\r\n天水围的夜与雾 天水圍的夜與,7.5,19923,剧情,香港,2009,149422.5\r\n胜者为王 勝者為,7.3,19923,惊悚/犯罪,香港,2000,145437.9\r\n入侵脑细胞,7.3,19919,剧情/科幻/惊悚/恐怖/奇幻,美国/德国,2000,145408.7\r\n暖春,8,19912,剧情/家庭,中国大陆,2003,159296\r\n恋战冲绳 戀戰沖,7.2,19912,剧情/爱情,香港,2000,143366.4\r\n神经侠侣 神經俠,6.9,19904,剧情/喜剧,香港,2005,137337.6\r\n特工佳丽,6.8,19899,喜剧/动作/犯罪,美国/澳大利亚,2000,135313.2\r\n老雷斯的故事,6.8,19897,动画/家庭/奇幻,美国,2012,135299.6\r\n杀手阿一 殺し,7.4,19895,剧情/喜剧/动作/悬疑/惊悚/犯罪,日本,2001,147223\r\n阴齿,5.8,19858,喜剧/惊悚/恐怖,美国,2007,115176.4\r\n人鱼传说 人魚傳,7.1,19846,喜剧/爱情/奇幻,香港,1994,140906.6\r\n生化危机：诅咒 バイオハザード ダムネーシ,7.6,19828,动作/科幻/动画/惊悚/恐怖,日本,2012,150692.8\r\n猎杀,7.8,19827,剧情/动作/战争,美国/法国,2000,154650.6\r\n明明,4.9,19813,动作/爱情/悬疑,中国大陆/香港,2007,97083.7\r\n超级无敌掌门狗：人兔的诅咒,8.2,19809,喜剧/动画,英国/美国,2005,162433.8\r\n见鬼,7.1,19798,剧情/惊悚/恐怖,香港/新加坡,2002,140565.8\r\n白宫管家,7.4,19797,剧情/传记,美国,2013,146497.8\r\n厉鬼将映,6.9,19778,惊悚/恐怖,泰国,2008,136468.2\r\n一场风花雪月的事,4.7,19774,动作/爱情/犯罪,中国大陆,2013,92937.8\r\n忍者神龟,6.3,19747,剧情/喜剧/动作/动画/家庭/奇幻/冒险,香港/美国,2007,124406.1\r\n罗宾汉,6.7,19746,剧情/动作/冒险,美国/英国,2010,132298.2\r\n考死：血之期中考试,6.4,19740,悬疑/惊悚/恐怖,韩国,2008,126336\r\n爱久弥新,7.9,19738,剧情/爱情,泰国,2009,155930.2\r\n拉贝日记,7.2,19713,剧情/传记/历史/战争,法国/中国大陆/德国,2009,141933.6\r\n停车 停,7.3,19705,剧情,台湾,2008,143846.5\r\n玩命记忆,7.2,19699,剧情/悬疑/惊悚/犯罪,美国,2006,141832.8\r\n卫斯理之蓝血人,5.2,19646,动作/爱情/科幻,香港,2002,102159.2\r\n超级学校霸王 超級學校霸,7.1,19639,动作,香港,1993,139436.9\r\n冰河世纪：猛犸象的圣诞,7.6,19622,喜剧/动画/短片/家庭,美国,2011,149127.2\r\n黑金,7.6,19622,犯罪,香港,1997,149127.2\r\n我的特工爷爷 特工爺,5.3,19618,剧情/动作/冒险,香港/中国大陆,2016,103975.4\r\n在路上,7,19594,剧情/冒险,美国/英国/法国/巴西,2012,137158\r\n柏林苍穹下 ,8.5,19561,剧情/爱情/奇幻,西德/法国,1987,166268.5\r\n惊声尖笑,6.7,19559,喜剧,美国/加拿大,2001,131045.3\r\n重生男人,7.3,19523,剧情/动作/科幻/惊悚/犯罪,美国/加拿大,2010,142517.9\r\n昼与夜,8.6,19519,动画/短片,美国,2010,167863.4\r\n囡囡,6.1,19487,剧情/情色,香港,2010,118870.7\r\n天生爱情狂 天生愛情,5.8,19485,喜剧/爱情,香港,2012,113013\r\n没事偷着乐,7.4,19482,喜剧,中国大陆,1999,144166.8\r\n坏老师,5.8,19452,喜剧,美国,2011,112821.6\r\n鬼来电 着信ア,6.9,19438,悬疑/恐怖,日本,2003,134122.2\r\n菊豆,7.7,19419,剧情,中国大陆/日本,1990,149526.3\r\n肩上蝶,4.9,19406,剧情/爱情/动画/奇幻,中国大陆,2011,95089.4\r\n艾特熊和赛娜鼠 ,8.8,19399,动画,法国,2012,170711.2\r\n从今以后,7.2,19394,剧情/奇幻,美国,2010,139636.8\r\n父辈的旗帜,7.5,19381,剧情/动作/历史/战争,美国,2006,145357.5\r\n跟踪 跟,7.1,19380,惊悚/犯罪,香港,2007,137598\r\n兄弟,7.6,19358,剧情/惊悚/战争,美国,2009,147120.8\r\n性工作者十日谈 性工作者十日,7.4,19342,剧情/情色,香港,2007,143130.8\r\n茜茜公主,8.5,19338,剧情/爱情/历史,奥地利,1957,164373\r\nC+侦探,6.5,19338,剧情/悬疑,香港,2007,125697\r\n极地大冒险,5.8,19330,剧情/喜剧/动画/冒险,芬兰/德国/丹麦/爱尔兰,2014,112114\r\n保持爱你 保持愛,6.8,19328,爱情,香港,2009,131430.4\r\n沉静如海,9,19322,剧情/爱情/战争,法国/比利时,2004,173898\r\n第一滴血,7.7,19309,动作/惊悚/冒险,美国,1985,148679.3\r\n机器人历险记,7.5,19267,喜剧/动画/冒险,美国,2005,144502.5\r\n名侦探柯南：异次元的狙击手 名探偵コナン 異次元の狙,6.5,19258,动画/悬疑/犯罪,日本,2014,125177\r\n美国派(番外篇)5,6.5,19257,喜剧,加拿大/美国,2006,125170.5\r\n洛奇,8.5,19243,剧情/爱情/运动,美国,1976,163565.5\r\n奇幻人生,7.9,19239,剧情/喜剧/爱情/奇幻,美国,2006,151988.1\r\n前路漫漫 ハルフウェ,7.5,19234,剧情/爱情,日本,2009,144255\r\n天降美食,7.1,19211,喜剧/动画/奇幻,美国,2013,136398.1\r\n巴黎最后的探戈,7.4,19203,剧情/爱情/情色,意大利/法国,1972,142102.2\r\n男孩,8.2,19197,剧情/爱情/犯罪,英国,2007,157415.4\r\n莫里斯,8.6,19190,剧情/爱情/同性,英国,1987,165034\r\n宇宙快递,9,19185,喜剧/科幻/动画/短片,韩国,2014,172665\r\n周渔的火车,6.6,19176,剧情/爱情,中国大陆/香港,2002,126561.6\r\n西伯利亚的理发师 Сибирский цирюльн,8.7,19154,剧情/喜剧/爱情,俄罗斯/法国/意大利/捷克,1998,166639.8\r\n教室别恋,7.1,19148,剧情/爱情/情色/战争,瑞典/丹麦,1995,135950.8\r\n一夜风流,8.6,19138,喜剧/爱情,美国,1934,164586.8\r\n圣女贞德,7.4,19090,剧情/传记/历史/战争,法国,1999,141266\r\n空中危机,7.1,19085,剧情/悬疑/惊悚,美国,2005,135503.5\r\n魔力月光,7.1,19085,喜剧/爱情,美国,2014,135503.5\r\n玛戈王后,7.8,19083,剧情/爱情/传记/历史,法国/德国/意大利,1994,148847.4\r\n不惧风暴,6.7,19083,动作/灾难,美国,2014,127856.1\r\n垂直极限,7.7,19077,动作/惊悚/冒险,美国/德国,2000,146892.9\r\n近距离恋爱 近キョリ恋,5.9,19061,爱情,日本,2014,112459.9\r\n深度谜案,6.7,19055,悬疑/惊悚/犯罪,西班牙/英国/法国,2011,127668.5\r\n失眠症,7.3,19046,剧情/悬疑/惊悚/犯罪,美国/加拿大,2002,139035.8\r\n许三观,7.2,19017,剧情/家庭,韩国,2015,136922.4\r\n榴莲飘飘 榴槤飄,7.6,19006,剧情,中国大陆/香港/法国,2000,144445.6\r\n美丽的大脚,7.3,18999,剧情,中国大陆,2002,138692.7\r\n台北晚九朝五,6.9,18999,剧情/爱情,台湾/香港,2002,131093.1\r\n我的美女老板,4.9,18970,剧情,中国大陆,2010,92953\r\n惊天战神,5.7,18951,剧情/动作/奇幻,美国,2011,108020.7\r\n我们所知道的生活,7.1,18948,剧情/喜剧/家庭,美国,2010,134530.8\r\n左右,6.5,18947,剧情/家庭,中国大陆,2008,123155.5\r\n匹夫,5.3,18944,剧情/动作/战争/西部,中国大陆,2012,100403.2\r\n天边一朵云 天邊一朵,6.7,18943,剧情/喜剧/情色/歌舞,台湾/法国,2005,126918.1\r\n古宅心慌慌,5.2,18915,喜剧/惊悚/恐怖,中国大陆/香港,2003,98358\r\n剩女也疯狂,6.3,18876,喜剧/爱情,美国,2010,118918.8\r\n天地英雄,6.4,18874,剧情/动作/冒险/古装,中国大陆/香港/美国,2003,120793.6\r\n地下,9.1,18855,剧情/喜剧/战争,法国/南斯拉夫联盟共和国/德国,1995,171580.5\r\n音为爱,7.4,18851,喜剧/爱情,泰国,2011,139497.4\r\nLaughi,6.6,18832,剧情/动作/犯罪,香港,2009,124291.2\r\n别惹佐汉,6.3,18829,剧情/喜剧/动作,美国,2008,118622.7\r\n十分钟年华老去：小号篇,8.5,18817,剧情,西班牙/英国/德国/芬兰/中国大陆/美国,2002,159944.5\r\n回忆三部曲,8.8,18811,科幻/动画/惊悚/奇幻,日本,1995,165536.8\r\n巴黎宝贝,5.7,18798,剧情/喜剧/爱情,中国大陆,2011,107148.6\r\n亡命天涯,8,18791,剧情/动作/悬疑/惊悚/犯罪,美国,1994,150328\r\n蓝雨伞之恋,8.3,18790,爱情/动画/短片,美国,2013,155957\r\n扶桑花女孩 フラガー,8,18780,剧情/喜剧,日本,2006,150240\r\n真相至上,8.3,18769,剧情/惊悚,美国,2008,155782.7\r\n幸运查克,6.3,18758,剧情/喜剧/爱情,美国/加拿大,2007,118175.4\r\n魔力麦克,6.5,18755,喜剧,美国,2012,121907.5\r\n巴黎圣母院,8,18747,剧情/历史,意大利/法国,1956,149976\r\nSPEC：天,7.6,18735,剧情/科幻/悬疑,日本,2012,142386\r\n水牛城,8.5,18727,剧情/喜剧/爱情/犯罪,美国,1998,159179.5\r\n美国派(番外篇)6：,6.5,18704,喜剧,加拿大/美国,2007,121576\r\n光荣之路,8.5,18682,剧情/运动,美国,2006,158797\r\n桃花期 モテ,7.2,18681,喜剧/爱情,日本,2011,134503.2\r\n呆佬拜寿,7.4,18658,喜剧/爱情,香港,1995,138069.2\r\n蝙蝠侠归来,7.1,18653,动作/惊悚/犯罪/奇幻,美国/英国,1992,132436.3\r\n坏小子,7.4,18652,剧情/情色,韩国,2001,138024.8\r\n意外的恋爱时光,5.7,18637,喜剧/爱情,中国大陆,2013,106230.9\r\n唯爱永生,7.4,18631,剧情/爱情/奇幻,德国/美国/英国/法国/塞浦路斯,2013,137869.4\r\n美国田园下的罪恶,8.2,18604,剧情/犯罪,美国,2007,152552.8\r\n喜羊羊与灰太狼之飞马奇遇记,4.2,18593,喜剧/动画/家庭/奇幻/冒险,中国大陆,2014,78090.6\r\n情人结,6.7,18591,剧情/爱情,中国大陆,2005,124559.7\r\n劫案迷云,6.1,18581,剧情/动作/惊悚/犯罪,美国,2013,113344.1\r\n一条叫旺达的鱼,7.7,18576,喜剧/犯罪,美国/英国,1988,143035.2\r\n男人不可以穷 男人唔可以,6,18566,剧情/喜剧,香港/中国大陆,2014,111396\r\n宠物,9.1,18562,喜剧/动画/短片,美国,2013,168914.2\r\n雌雄大盗,8.3,18546,动作/传记/犯罪,美国,1967,153931.8\r\n天使的性 ,6.6,18546,剧情/爱情/情色/同性,西班牙/巴西,2012,122403.6\r\n某个旅人的日记 或る旅人の日,8.5,18537,动画/短片/奇幻,日本,1905,157564.5\r\n惊声尖笑,6.8,18520,喜剧,美国/加拿大,2003,125936\r\n微光城市,6.7,18518,科幻/家庭/奇幻/冒险,美国,2008,124070.6\r\n欲望号街车,8.3,18511,剧情,美国,1951,153641.3\r\n阿拉伯的劳伦斯,8.6,18502,剧情/传记/历史/战争/冒险,英国/美国,1962,159117.2\r\n移魂女郎,8.3,18501,剧情/传记,美国/德国,1999,153558.3\r\n龙卷风,7.2,18497,动作/冒险/灾难,美国,1996,133178.4\r\n百万元与苦虫女 百万円と苦虫,7.9,18495,剧情,日本,2008,146110.5\r\n我盛大的同志婚礼,7,18486,喜剧/爱情/同性,美国,2007,129402\r\n最完美的离婚 2014特别篇,9.1,18478,剧情/喜剧/爱情,日本,2014,168149.8\r\n秦时明月之龙腾万里,6.8,18467,动画/奇幻/冒险/武侠,中国大陆,2014,125575.6\r\n干柴烈火 乾柴烈,6.5,18465,剧情/喜剧/爱情,香港,2002,120022.5\r\n勇者行动,7.5,18444,动作,美国,2012,138330\r\n鬼乱,7.2,18444,恐怖,泰国,2009,132796.8\r\n贵族大盗,5.3,18437,喜剧/动作,美国/英国,2015,97716.1\r\n女人四十,8.8,18420,剧情/家庭,香港,1995,162096\r\n心火,8,18409,剧情/爱情,英国/美国,1997,147272\r\n女高怪谈3：狐狸阶,6.6,18400,剧情/恐怖,韩国,2003,121440\r\n铁三角,6.3,18393,动作,中国大陆/香港,2007,115875.9\r\n迷幻公园,7.4,18390,剧情/悬疑/犯罪,法国/美国,2007,136086\r\n唐人街,8.3,18384,剧情/悬疑/惊悚/犯罪,美国,1974,152587.2\r\n丑闻,6.6,18384,剧情/爱情/情色,韩国,2003,121334.4\r\n黑洞,8.2,18368,剧情/短片/犯罪,英国,2008,150617.6\r\n章鱼的爱情,8.1,18368,喜剧/动画/短片,法国,2007,148780.8\r\n伯纳德行动,7.9,18366,剧情/战争/犯罪,德国/奥地利,2009,145091.4\r\n渔童,8.7,18358,动画/短片,中国大陆,1905,159714.6\r\n落跑新娘,6.9,18334,喜剧/爱情,美国,1999,126504.6\r\n鬼马狂想曲,6,18308,喜剧,香港,2004,109848\r\n精舞门,4.8,18274,喜剧/动作,香港,2008,87715.2\r\n形影不离,6,18273,剧情/喜剧/悬疑,中国大陆,2012,109638\r\n不可思异,3.8,18262,剧情/喜剧/科幻,中国大陆,2015,69395.6\r\n宠物情人,5.8,18251,剧情/喜剧/爱情,韩国,2011,105855.8\r\n魔法保姆麦克菲,7.4,18245,喜剧/家庭/奇幻,英国/法国/美国,2010,135013\r\n空气人偶 空気人,7.4,18234,剧情/奇幻,日本,2009,134931.6\r\n精武家庭,5.7,18203,喜剧/动作,香港,2005,103757.1\r\n失乐园 失楽,7.3,18148,剧情/爱情/情色,日本,1997,132480.4\r\n曹冲称象,7.7,18129,动画/短片,中国,1905,139593.3\r\n爱到底,6.1,18122,剧情/喜剧/爱情/短片,台湾,2009,110544.2\r\n暮色大电影,6.2,18121,喜剧,美国,2010,112350.2\r\n亲家过年,5.7,18112,喜剧/家庭,中国大陆,2012,103238.4\r\n八部半,8.5,18097,剧情/奇幻,意大利/法国,1963,153824.5\r\n王尔德,7.7,18089,剧情/同性/传记/历史,英国/德国/日本,1997,139285.3\r\n一个头两个大,7,18088,喜剧,美国,2000,126616\r\n伊丽莎白,7.7,18035,剧情/爱情/传记/历史,英国,1998,138869.5\r\n因父之名,8.8,18019,剧情/传记,爱尔兰/英国/美国,1993,158567.2\r\n寄生兽：完结篇 寄生獣 完,6.8,17992,科幻/恐怖,日本,2015,122345.6\r\n爱疯了,7.1,17984,剧情/爱情,美国,2011,127686.4\r\n穿越大吉岭,7.7,17977,剧情/喜剧/家庭/冒险,美国,2007,138422.9\r\n冲出宁静号,7.1,17975,动作/科幻/冒险,美国,2005,127622.5\r\n极限特工,6.6,17975,动作/惊悚/犯罪/冒险,美国,2005,118635\r\n我是杀人犯,7.5,17968,动作/惊悚/犯罪,韩国,2012,134760\r\n森林战士,7.4,17953,动画/奇幻/冒险,美国,2013,132852.2\r\n野草莓,8.6,17942,剧情,瑞典,1957,154301.2\r\n狂野目标,7.5,17940,喜剧/动作/犯罪,英国/法国,2010,134550\r\n我们的幸福时光,8.1,17910,爱情,韩国,2006,145071\r\n篱笆墙外,7.4,17908,喜剧/动画/家庭/冒险,美国,2006,132519.2\r\n坚不可摧,6.8,17901,剧情/传记/战争/运动,美国,2015,121726.8\r\n铁线虫入侵,6.5,17882,剧情/惊悚/灾难,韩国,2012,116233\r\n扑克王 撲克,5.5,17873,喜剧,香港,2009,98301.5\r\n玉观音,6.2,17871,剧情/动作/爱情/犯罪,中国大陆,2003,110800.2\r\n不要回头,6.3,17868,剧情/悬疑/惊悚/恐怖,法国/意大利/卢森堡/比利时,2010,112568.4\r\n世上最美的离别,8.4,17846,剧情/家庭,韩国,2011,149906.4\r\n愚人节 エイプリルフール,7.8,17843,喜剧,日本,2015,139175.4\r\n刺杀据点,7.3,17837,剧情/动作/惊悚/犯罪,美国,2008,130210.1\r\n警察故事3：超级警察 警察故事II,7.3,17830,喜剧/动作/惊悚/犯罪,香港,1992,130159\r\n长大成人,7.3,17819,喜剧,美国,2010,130078.7\r\n人皮客栈,6.6,17814,惊悚/恐怖,美国,2007,117572.4\r\n南国野兽,7.6,17813,剧情,美国,2012,135378.8\r\n十三棵泡桐,7.1,17811,剧情,中国大陆,2007,126458.1\r\n豺狼计划,7.3,17806,悬疑/惊悚/犯罪,美国,2005,129983.8\r\n十日拍拖手册,6.7,17795,喜剧/爱情,美国/德国,2003,119226.5\r\n醉后一夜,5.5,17781,喜剧/爱情/悬疑,中国大陆/香港,2012,97795.5\r\n如何众叛亲离,6.8,17780,喜剧/爱情,英国,2008,120904\r\n安娜与武林,5.1,17775,喜剧/动作/爱情,中国大陆/香港,2003,90652.5\r\n忧郁症,6.8,17768,剧情/科幻/惊悚,法国/德国/丹麦/瑞典,2011,120822.4\r\n杨门女将之军令如山,3.5,17762,剧情/动作/古装,中国大陆/香港,2011,62167\r\n约会之夜,6.9,17756,喜剧/爱情/犯罪,美国,2010,122516.4\r\n欢迎来北方,8.2,17732,喜剧,法国,2008,145402.4\r\n尽情游戏 ,8.1,17732,喜剧/犯罪,法国,2009,143629.2\r\n更好的世界,8.4,17731,剧情,丹麦/瑞典,2010,148940.4\r\n前进，达瓦里希,7.1,17718,动画/短片,中国大陆,2013,125797.8\r\n我的见鬼女友,6.8,17718,喜剧/爱情/惊悚,韩国,2011,120482.4\r\n绝地战警,7.4,17713,喜剧/动作/惊悚/犯罪,美国,2003,131076.2\r\n恐怖玩具屋,7.9,17710,剧情/动画/惊悚/短片,美国/西班牙,2009,139909\r\n少女小渔 少女小,7.9,17703,剧情,台湾,1995,139853.7\r\n裁缝,7.8,17683,剧情,澳大利亚,2015,137927.4\r\n古惑仔情义篇之洪兴十三妹,7.1,17680,剧情,香港,1998,125528\r\n密阳,7.7,17674,剧情,韩国,2007,136089.8\r\n大搜查之女,5.9,17662,喜剧/惊悚/犯罪,香港/中国,2008,104205.8\r\n叶问前传,5.8,17653,动作,香港/中国大陆,2010,102387.4\r\n感谢你抽烟,8,17650,剧情/喜剧,美国,2005,141200\r\n群鸟,8.1,17641,悬疑/惊悚,美国,1963,142892.1\r\n创可贴,7.3,17640,剧情/爱情,韩国,2012,128772\r\n我叫刘跃进,6.4,17635,剧情,中国,2008,112864\r\n了不起的亡灵 ステキな金縛,7.7,17619,喜剧,日本,2011,135666.3\r\n跳跳羊,7.8,17602,动画/短片/家庭,美国,2004,137295.6\r\n保持缄默,7.7,17592,喜剧/犯罪,英国,2005,135458.4\r\n阴阳师 陰陽,7.8,17586,剧情/动作/恐怖/奇幻,日本,2001,137170.8\r\n露西亚的情人 ,7.7,17580,剧情/爱情/情色,西班牙/法国,2001,135366\r\n高楼大劫案,6.8,17548,喜剧/动作/犯罪,美国,2011,119326.4\r\n红河,7.1,17541,剧情/爱情,中国大陆,2009,124541.1\r\n妈妈,6.6,17525,恐怖,西班牙/加拿大,2013,115665\r\n爱很复杂,7.4,17524,喜剧/爱情,美国,2009,129677.6\r\n向左爱·向右爱,7.6,17519,剧情/爱情,韩国,2002,133144.4\r\n江湖告急,7.5,17507,喜剧/犯罪,香港,2000,131302.5\r\n绿区,7.2,17497,剧情/动作/惊悚/战争,美国/法国/西班牙/英国,2010,125978.4\r\n银魂剧场版：新译红樱篇 劇場版 銀魂 新訳,9.2,17493,喜剧/动作/动画/古装,日本,2010,160935.6\r\n妙笔生花,7.6,17493,剧情/爱情,美国,2012,132946.8\r\n焦点,6.6,17478,剧情/喜剧/犯罪,美国,2015,115354.8\r\n猩红山峰,6.2,17477,剧情/悬疑/惊悚,美国/加拿大,2015,108357.4\r\n四角关系,7.5,17474,剧情/喜剧/爱情/同性,德国/英国,2005,131055\r\n野蛮师姐,6.9,17466,剧情/喜剧/爱情/犯罪,韩国/香港,2004,120515.4\r\n金鸡SS,6.3,17454,剧情/喜剧,香港,2014,109960.2\r\n广岛之恋,7.7,17444,剧情/爱情/战争,法国/日本,1959,134318.8\r\n六号出口,6.3,17413,剧情,台湾,2006,109701.9\r\n很想和你在一起,7.4,17406,爱情,香港,2009,128804.4\r\n蝙蝠侠与罗宾,6,17404,动作/科幻/犯罪/奇幻,美国/英国,1997,104424\r\n日照重庆,6.4,17388,剧情,中国大陆,2010,111283.2\r\n太坏了,6.8,17386,喜剧,美国,2007,118224.8\r\n丑闻笔记,7.8,17383,剧情/惊悚,英国,2006,135587.4\r\n图雅的婚事,7.9,17382,剧情/爱情,中国大陆,2006,137317.8\r\n近在咫尺的爱恋,6.4,17381,爱情/运动,中国大陆/香港/台湾,2010,111238.4\r\n玩命追踪,6.1,17366,动作/惊悚/犯罪,英国/法国/美国,2012,105932.6\r\n外出,6.4,17350,剧情/爱情,韩国,2005,111040\r\n甘地传,8.6,17345,剧情/传记/历史,英国/印度,1982,149167\r\n变身男女,5.1,17344,剧情/爱情,中国大陆,2012,88454.4\r\n蒸发密令,7.2,17334,剧情/动作/悬疑/惊悚/犯罪,美国,1996,124804.8\r\n2016年中央电视台春节,2.3,17328,歌舞/真人秀,中国大陆,2016,39854.4\r\n金枝玉叶2 金枝,7.8,17306,喜剧/同性,香港,1996,134986.8\r\n炮制女朋友,4.6,17289,喜剧/爱情,中国大陆/香港,2003,79529.4\r\n蓝精灵,6.5,17276,喜剧/动画/奇幻,美国,2013,112294\r\n汉娜,6.1,17255,动作/悬疑/惊悚/冒险,美国/英国/德国,2011,105255.5\r\n百星酒店,5.8,17255,喜剧/爱情,中国大陆/香港,2013,100079\r\n人类清除计划2：无政府状,6.2,17249,动作/惊悚/恐怖,美国/法国,2014,106943.8\r\n小姐好辣,6.9,17248,喜剧/奇幻,美国,2002,119011.2\r\n八毫米,7.3,17246,悬疑/惊悚/犯罪,美国/德国,1999,125895.8\r\n海绵宝宝,7.2,17242,喜剧/动画/冒险,美国,2015,124142.4\r\n浪客剑心：传说的完结篇 るろうに剣心 伝説の最,7.7,17236,剧情/动作,日本,2014,132717.2\r\n盛夏的方程式 真夏の方程,7.4,17234,剧情/悬疑,日本,2013,127531.6\r\n简爱,7.8,17229,剧情/爱情,美国,1943,134386.2\r\n东京家族 東京家,8.7,17208,剧情/家庭,日本,2013,149709.6\r\n宇宙追缉令,5.9,17204,动作/科幻/惊悚,美国,2001,101503.6\r\n童年往事,8.8,17186,剧情/家庭/传记,台湾,1985,151236.8\r\n生化危机：恶化 バイオハザード ディジェネレーシ,7.1,17168,动作/科幻/动画/惊悚,日本,2008,121892.8\r\n亚当斯一家,8.4,17162,喜剧/家庭/奇幻,美国,1991,144160.8\r\n变蝇人,7.2,17159,科幻/恐怖,美国/英国/加拿大,1986,123544.8\r\n北京乐与路 北京樂與,7.1,17120,剧情/歌舞,香港,2001,121552\r\n龙虎少年队,6.8,17110,喜剧/动作/犯罪,美国,2014,116348\r\n美女与野兽 ,6.3,17110,爱情/奇幻,法国/德国,2014,107793\r\n青之炎 青の,8.6,17096,剧情/爱情/犯罪,日本,2003,147025.6\r\n双宝斗恶魔,7.7,17084,喜剧/恐怖,美国/加拿大,2010,131546.8\r\n与犯罪的战争：坏家伙的全盛时代,7.7,17082,剧情/犯罪,韩国,2012,131531.4\r\n东风雨,5.5,17082,剧情,中国大陆,2010,93951\r\n新世纪福音战士剧场版：死与新生 新世紀エヴァンゲリオン劇場版 シト,9.2,17059,动作/科幻/动画/悬疑,日本,1997,156942.8\r\n熊的故事,9.1,17058,剧情,法国/美国,1988,155227.8\r\n兄弟,6.2,17050,剧情/动作,中国大陆/香港,2007,105710\r\n我要成名,6.9,17043,剧情/喜剧,中国大陆/香港,2006,117596.7\r\n控制,5.8,17038,动作/科幻/悬疑/犯罪,香港/中国大陆,2013,98820.4\r\n阿波罗1,7.9,17027,剧情/历史/冒险,美国,1995,134513.3\r\n内衣少女,5.9,17023,喜剧,香港,2008,100435.7\r\n神奇四侠,4.1,17019,动作/科幻/冒险,美国/英国/德国,2015,69777.9\r\n穿裘皮的维纳斯 L,8,17015,剧情/情色,法国/波兰,2013,136120\r\n刑房,7.8,17004,动作/惊悚/恐怖,美国,2007,132631.2\r\n战场上的快乐圣诞,8.7,17002,剧情/同性/战争,英国/日本,1983,147917.4\r\n白丝带 ,8,16990,剧情/悬疑,德国/奥地利/法国/意大利,2009,135920\r\n文森特,8.5,16966,动画/短片/奇幻,美国,1982,144211\r\n谎言之躯,7,16964,剧情/动作/惊悚,美国,2008,118748\r\n麻将,8.5,16958,剧情/喜剧,台湾,1996,144143\r\n入学考试,8.4,16958,动画/短片,中国大陆,2013,142447.2\r\n快餐车,7.3,16931,喜剧/动作,香港/西班牙,1984,123596.3\r\n蜜蜂总动员,6.8,16925,喜剧/动画/家庭/冒险,美国,2007,115090\r\n生人勿进(美,7.1,16924,惊悚,美国,2010,120160.4\r\n罗丹的情人,8.1,16920,剧情/爱情/传记/历史,法国,1988,137052\r\n完美风暴,7.5,16890,剧情/灾难,美国,2000,126675\r\n美国派(番外篇)4：集,6.3,16885,喜剧,美国,2005,106375.5\r\n污垢,7.8,16871,剧情/喜剧/犯罪,英国,2013,131593.8\r\n木兰花,8.2,16860,剧情,美国,1999,138252\r\n时空罪恶 ,7.3,16858,剧情/科幻/悬疑/惊悚,西班牙,2008,123063.4\r\n喜福会,8.5,16847,剧情/爱情,美国,1993,143199.5\r\n怪物之子 バケモノの,7.7,16847,动作/动画/奇幻/冒险,日本,2015,129721.9\r\n说来有点可笑,7.8,16846,剧情/喜剧/爱情,美国,2011,131398.8\r\n开心鬼 開心,7.1,16842,喜剧/家庭/奇幻,香港,1984,119578.2\r\n剑蝶,4.9,16829,动作/爱情,香港/中国,2008,82462.1\r\n空之境界 第一章 俯瞰风景 劇場版 空の境界 第一,8.6,16828,动画/奇幻/冒险,日本,2007,144720.8\r\n艾德·伍德,8.2,16825,剧情/喜剧/传记,美国,1994,137965\r\n性爱巴士,7.2,16815,剧情/爱情/情色,美国,2006,121068\r\n解放军在巴黎 ,7.3,16812,喜剧/奇幻,法国/意大利,1974,122727.6\r\n灿烂人生 ,9.3,16807,剧情/爱情/家庭,意大利,2003,156305.1\r\n小城之春,8.6,16807,剧情/爱情,中国大陆,1948,144540.2\r\n为黛西小姐开车,8.3,16772,剧情/喜剧,美国,1989,139207.6\r\n特警新人类,6.3,16769,喜剧/动作/惊悚,香港,1999,105644.7\r\n偷书贼,7.8,16766,剧情/战争,美国/德国,2013,130774.8\r\n火星没事,5,16763,喜剧/儿童,中国,2009,83815\r\n佐罗的面具,7.5,16761,动作/爱情/西部/冒险,美国/德国,1998,125707.5\r\n群尸玩过界,7.7,16755,喜剧/恐怖,新西兰,1992,129013.5\r\n影子武士 影武,8.8,16749,剧情/历史/战争,美国/日本,1980,147391.2\r\n七天,7.5,16745,惊悚/犯罪,韩国,2007,125587.5\r\n朝圣之路,8.6,16737,剧情/喜剧/冒险,美国/西班牙,2010,143938.2\r\n复仇,6.7,16733,剧情/动作/惊悚/犯罪,香港/法国,2009,112111.1\r\n上海正午,6.3,16690,喜剧/动作/西部/冒险,美国/香港,2000,105147\r\n谍海风云,5.9,16653,剧情/爱情/悬疑/惊悚,美国/中国大陆/泰国,2010,98252.7\r\n墨西哥往事,7.4,16652,剧情/喜剧/动作/犯罪/西部,美国/墨西哥,2003,123224.8\r\n梦 ,8.6,16645,剧情/奇幻,日本/美国,1990,143147\r\n美味盛宴,8.2,16636,动画/短片,美国,2014,136415.2\r\n龙骑士,5.7,16629,动作/家庭/奇幻/冒险,美国/英国/匈牙利,2007,94785.3\r\n驱魔者,5.9,16620,动作/科幻/惊悚/恐怖,美国,2011,98058\r\n那时花开,7.1,16616,爱情,中国大陆,2002,117973.6\r\n慕尼黑,7.8,16596,剧情/惊悚/历史,美国/加拿大/法国,2006,129448.8\r\n全职杀手,6.7,16595,剧情/惊悚/犯罪,香港,2001,111186.5\r\n宙斯之子：赫拉克勒斯,6,16594,动作/冒险,美国,2014,99564\r\n名扬四海,7.6,16589,剧情/喜剧/爱情/歌舞/家庭,美国,2009,126076.4\r\n异形大战铁血战士,5.8,16564,动作/科幻/惊悚,美国,2007,96071.2\r\n极限挑战之皇家宝藏,4.4,16564,喜剧/悬疑,中国大陆,2016,72881.6\r\n宵禁,8,16551,剧情/短片,美国,2012,132408\r\n怒海争锋,7.6,16548,剧情/动作/战争/冒险,美国,2004,125764.8\r\n鬼宿舍,7.6,16546,剧情/恐怖,泰国,2006,125749.6\r\n黑侠,6.7,16545,喜剧/动作/科幻/惊悚/犯罪/冒险,香港,1996,110851.5\r\n麦田,5,16532,剧情/动作/历史,中国,2009,82660\r\n海滩,7.6,16529,剧情/爱情/惊悚/冒险,美国/英国,2000,125620.4\r\n星际宝贝,7.9,16507,喜剧/科幻/动画/家庭/冒险,美国,2002,130405.3\r\n花漾,5.8,16506,剧情/爱情/古装,中国大陆/台湾,2013,95734.8\r\n战鸽总动员,6.6,16505,喜剧/动画/家庭/战争/冒险,英国,2006,108933\r\n第一滴血,7.5,16498,动作/惊悚/冒险,美国,1988,123735\r\n情非得已之生存之道,8,16492,喜剧,台湾,2007,131936\r\n这就是英格兰,8,16487,剧情/犯罪,英国,2007,131896\r\n巴顿将军,8.1,16479,剧情/传记/战争,美国,1970,133479.9\r\n恐龙当家,7.1,16475,喜剧/动画/家庭/冒险,美国,2015,116972.5\r\n菲洛梅娜,8.4,16453,剧情/同性/家庭/传记,英国/美国/法国,2013,138205.2\r\n喜羊羊与灰太狼之牛气冲天,6.4,16453,喜剧/动画/儿童,中国,2009,105299.2\r\n变身超人 變,6.7,16450,喜剧/动作,台湾,2013,110215\r\n93,7.7,16448,剧情/历史/犯罪/灾难,法国/英国/美国,2006,126649.6\r\n江山美人,4.5,16447,剧情/动作/爱情/战争,中国/香港,2008,74011.5\r\n诺亚方舟：创世之旅,5.7,16439,动作/冒险/灾难,美国,2014,93702.3\r\n女魔头,7.7,16437,剧情/同性/传记/犯罪,美国/德国,2003,126564.9\r\n半支烟 半支,7.1,16434,剧情/爱情,香港,1999,116681.4\r\n恋爱写真 恋愛寫,7.7,16407,剧情/喜剧/爱情,日本,2003,126333.9\r\n阳光清洗,7.6,16401,剧情/喜剧,美国,2009,124647.6\r\n新铁血战士,6.2,16399,动作/科幻/惊悚/冒险,美国,2010,101673.8\r\n老人与海,8.9,16398,动画/短片,俄罗斯/加拿大/日本,1999,145942.2\r\n藏身之所,6.9,16390,动作/惊悚/恐怖,美国,2012,113091\r\n盟军夺宝队,5.5,16390,剧情/传记/历史/战争,美国/德国,2014,90145\r\n恶魔的艺术2：邪,7.5,16382,恐怖/奇幻,泰国,2005,122865\r\n电话谋杀案,8.6,16375,悬疑/惊悚/犯罪,美国,1954,140825\r\n黄飞鸿之铁鸡斗蜈蚣 黃飛鴻之鐵雞鬥蜈,6.9,16361,喜剧/动作/历史/武侠,香港,1993,112890.9\r\n辣手神探,7.9,16354,剧情/动作/惊悚/犯罪,香港,1992,129196.6\r\n锅盖头,7.4,16346,剧情/传记/战争,美国/德国,2005,120960.4\r\n泪光闪闪 涙そうそ,7.3,16293,剧情/爱情,日本,2006,118938.9\r\n爱得起,5.8,16286,喜剧/爱情,香港/中国,2009,94458.8\r\n绝世高手,7.9,16276,喜剧/动作/短片/武侠/古装,中国大陆,2013,128580.4\r\n鼠胆龙威 鼠膽龍,7,16274,喜剧/动作/犯罪,香港,1995,113918\r\n日落大道,8.6,16273,剧情/黑色电影,美国,1950,139947.8\r\n天地逃生,6.1,16273,动作/科幻/惊悚,美国,2010,99265.3\r\n祖与占,8.5,16270,剧情/爱情,法国,1962,138295\r\n大眼仔的新车,7.5,16270,动画/短片/家庭,美国,2002,122025\r\n救命,6.6,16262,剧情/惊悚/恐怖,香港,2004,107329.2\r\n太极侠,5.5,16240,动作/犯罪,中国大陆/香港/美国,2013,89320\r\n季节变幻,7.8,16196,喜剧/爱情,泰国,2006,126328.8\r\n宅女侦探桂香,4.1,16192,喜剧/爱情/悬疑,中国大陆/香港/台湾,2015,66387.2\r\n爱你九周半,7.4,16185,剧情/爱情/情色,美国,1986,119769\r\n红领巾侠,7.5,16182,动作/动画/短片,中国大陆,2010,121365\r\n抓住那个家伙,7.9,16181,剧情/惊悚/犯罪,韩国,2013,127829.9\r\n新精武门1991 新精武,6.9,16180,喜剧/动作,香港,1991,111642\r\n天降奇兵,7,16177,动作/科幻/奇幻,美国/德国/捷克/英国,2003,113239\r\n翡翠森林：狼与羊 あらしのよる,8.2,16159,动画,日本,2005,132503.8\r\n爷们儿些,7.6,16154,喜剧/爱情,英国/法国,2015,122770.4\r\n当你熟睡,7.3,16132,悬疑/惊悚,西班牙,2011,117763.6\r\n高海拔之恋Ⅱ,5.9,16127,爱情,中国大陆/香港,2012,95149.3\r\n怎样都行,7.8,16112,喜剧/爱情,美国/法国,2009,125673.6\r\n追梦赤子心,8.9,16111,剧情/传记/运动,美国,1993,143387.9\r\n完美感觉,7.6,16076,剧情/爱情,英国/瑞典/丹麦/爱尔兰,2011,122177.6\r\n激辩风云,8.4,16066,剧情/传记,美国,2007,134954.4\r\n我的老婆是大佬,6.4,16065,喜剧/动作/爱情,韩国,2001,102816\r\n嘻游记,3.4,16064,喜剧,中国大陆,2010,54617.6\r\n黄石的孩子,6.8,16063,剧情/战争,澳大利亚/中国大陆/德国,2008,109228.4\r\n这不是斯巴达,6,16062,喜剧/战争,美国,2008,96372\r\n校园兔女郎,5.9,16053,喜剧/爱情,美国,2008,94712.7\r\n花与爱丽丝杀人事件 花とアリス殺人事,7.9,16020,喜剧/动画,日本,2015,126558\r\n闪闪的红星,7.5,16010,剧情/儿童/战争,中国大陆,1905,120075\r\n我们的存在(上) 僕等がい,7.5,16001,剧情/爱情,日本,2012,120007.5\r\n喜欢你 好きだ,7,16001,剧情/爱情,日本,2005,112007\r\n初学者,7.8,15998,剧情/喜剧/爱情/同性/家庭,美国,2010,124784.4\r\n御法度,7.3,15989,剧情/惊悚/同性/历史,日本/法国/英国,1999,116719.7\r\n雾中风景 Τοπίο στην ο,8.8,15977,剧情,法国/希腊/意大利,1988,140597.6\r\n长恨歌,6,15963,剧情/爱情,中国大陆/香港,2005,95778\r\n游侠,6.3,15960,动作/惊悚/犯罪,美国,2007,100548\r\n超级女特工,7.1,15951,剧情/历史/战争,法国,2008,113252.1\r\n蕾蒙娜和姐姐,8.1,15950,喜剧/家庭/冒险,美国,2010,129195\r\n警戒结束,7.8,15948,剧情/动作/犯罪,美国,2012,124394.4\r\n热浴盆时光机,6.5,15941,喜剧/科幻,美国,2010,103616.5\r\nHO,3.4,15938,喜剧/爱情/悬疑,中国大陆,2012,54189.2\r\n越来越好之村晚,4.3,15930,喜剧/爱情,中国大陆,2013,68499\r\n大海啸之鲨口逃生,5.4,15926,动作/惊悚/灾难,澳大利亚,2012,86000.4\r\n亚历山大大帝,7.3,15895,剧情/动作/爱情/传记/历史/战争/冒险,美国/德国/荷兰/法国/英国/意大利,2004,116033.5\r\n一线声机,7.3,15876,动作/惊悚/犯罪,美国/德国,2004,115894.8\r\n圣杯神器：骸骨之城,5.4,15872,动作/奇幻/冒险,美国/德国/加拿大,2014,85708.8\r\n伤心童话,5,15865,喜剧/爱情,中国大陆,2012,79325\r\n功之怒,7.8,15863,喜剧/动作/科幻/短片/奇幻,瑞典,2015,123731.4\r\n不朽的园丁,8,15862,剧情/悬疑/惊悚,英国/德国,2005,126896\r\n末代独裁,7.9,15860,剧情/传记/历史,英国/德国/德国,2006,125294\r\n初恋的回忆,7.6,15821,剧情/爱情,美国,2002,120239.6\r\n日本沉没 日本沈,6.4,15817,剧情/科幻/冒险/灾难,日本,2006,101228.8\r\n最后的风之子,4.9,15815,动作/家庭/奇幻/冒险,美国,2010,77493.5\r\n猪扒大联盟 豬扒大聯,6.1,15807,喜剧,香港,2002,96422.7\r\n狐狸猎手,7.2,15800,剧情/传记/运动,美国,2014,113760\r\n韩赛尔与格蕾特：女巫猎人,6.1,15788,动作/恐怖/奇幻,德国/美国,2013,96306.8\r\n辅助轮,8.6,15777,喜剧/动画/短片,美国,2013,135682.2\r\n德古拉元年,6.1,15768,剧情/动作/奇幻,美国,2014,96184.8\r\n东京少年 東京少,6.6,15759,爱情/悬疑,日本,2008,104009.4\r\n霹雳贝贝,7.6,15758,剧情/科幻/儿童,中国大陆,1905,119760.8\r\n后窗惊魂,6.5,15758,悬疑/惊悚,美国,2007,102427\r\n老千2：神之,7.1,15756,剧情/犯罪,韩国,2014,111867.6\r\n梦想照进现实,6.5,15742,剧情/爱情,中国大陆,2006,102323\r\n飞天小女警,8,15737,剧情/喜剧/动作/动画/家庭/奇幻/冒险,美国,2002,125896\r\n王子与我,6.6,15729,喜剧/爱情,美国/捷克,2004,103811.4\r\n勇闯16,7.1,15727,剧情/动作/惊悚/犯罪,美国/德国,2007,111661.7\r\n美人,6.6,15722,剧情/情色,韩国,2000,103765.2\r\n魁拔Ⅲ战神崛起,8,15719,动作/动画/奇幻/冒险,中国大陆,2014,125752\r\n听见天堂,8.9,15716,剧情,意大利,2006,139872.4\r\n关于一个男孩,7.4,15692,剧情/喜剧/爱情,英国/美国/法国/德国,2002,116120.8\r\n风中奇缘,7.7,15686,剧情/爱情/动画/歌舞/家庭/历史,美国,1995,120782.2\r\n邻居,7.4,15664,剧情/惊悚,韩国,2012,115913.6\r\n气喘吁吁,4,15660,剧情/喜剧,中国,2009,62640\r\n宾虚,8.5,15658,剧情/动作/历史/战争/冒险,美国,1959,133093\r\n爱神,7.2,15635,剧情/爱情/情色,意大利/香港/美国/法国/卢森堡/英国,2004,112572\r\n盒子怪,7.7,15624,剧情/动画/儿童/奇幻,美国,2014,120304.8\r\n红字,7.4,15622,剧情/悬疑/惊悚/情色,韩国,2004,115602.8\r\n罗马情缘,6.2,15611,喜剧/爱情,美国,2010,96788.2\r\n率性而活,8.2,15605,喜剧,韩国,2007,127961\r\n绑架,6.6,15601,惊悚,中国大陆/香港,2007,102966.6\r\n四十岁的老处男,6.7,15595,喜剧/爱情,美国,2005,104486.5\r\n诡丝 詭,7,15594,剧情/科幻/悬疑/惊悚/恐怖,台湾,2006,109158\r\n故事的故事,7.5,15587,历史/奇幻,意大利/法国/英国,2015,116902.5\r\n东郭先生,7.9,15564,动画/短片/儿童,中国大陆,1905,122955.6\r\n黄飞鸿之西域雄狮 黃飛鴻之西域雄,6.8,15539,动作/历史/西部/冒险/武侠/古装,香港,1997,105665.2\r\n人参娃娃,8.2,15530,动画/短片/儿童,中国大陆,1905,127346\r\n人猿星球,8,15524,科幻/悬疑/冒险,美国,1968,124192\r\n爱的捆绑,7.4,15499,爱情,日本,1994,114692.6\r\n私奔B计,7.4,15498,喜剧/爱情/冒险,法国,2013,114685.2\r\n我心狂野,7.5,15496,爱情/惊悚/犯罪,美国,1990,116220\r\n红玫瑰白玫瑰 紅玫瑰白玫,7.7,15494,剧情,香港/中国/台湾,1994,119303.8\r\n伽利略特别篇 ガリレオ,7.7,15476,剧情/悬疑/犯罪,日本,2008,119165.2\r\n希特勒回来了,7.9,15471,喜剧,德国,2015,122220.9\r\n十七岁的天空 17歲,6.8,15454,喜剧/爱情/同性,台湾,2004,105087.2\r\n凉宫春日的消失 涼宮ハルヒの消,9,15451,喜剧/科幻/动画,日本,2010,139059\r\n鬼马小精灵,8.1,15451,喜剧/奇幻,美国,1995,125153.1\r\n东方快车谋杀案,7.9,15450,剧情/悬疑/犯罪,英国,2010,122055\r\n地心抢险记,6.7,15437,动作/科幻/冒险,美国/英国,2003,103427.9\r\n初雪 初雪の恋～ヴァージン・ス,6.4,15430,爱情,日本/韩国,2007,98752\r\n死亡医生,8.6,15422,剧情/传记,美国,2010,132629.2\r\n密室之不可告人,5.8,15413,悬疑/惊悚,中国大陆,2010,89395.4\r\n荒野大镖客,8.3,15401,动作/西部,意大利/西班牙/西德,1964,127828.3\r\n黑白森林,6.5,15396,剧情/动作/惊悚/犯罪,香港,2003,100074\r\n男才女貌,6.5,15395,爱情,中国大陆/香港,2007,100067.5\r\n赌城风云,8.2,15368,剧情/传记/犯罪,美国/法国,1995,126017.6\r\n窗台上的男人,7.1,15351,惊悚/犯罪,美国,2012,108992.1\r\n西部往事,8.5,15346,剧情/犯罪/西部,意大利/美国,1968,130441\r\n我为玛丽狂,6.9,15342,喜剧/爱情,美国,1998,105859.8\r\n名侦探柯南 真人版 Ⅰ 名探偵コナン10周年記念ドラマスペシャル 工藤新一への挑戦状〜さよ,6.1,15332,剧情/悬疑/犯罪,日本,2006,93525.2\r\n像素入侵,8.6,15324,动作/动画/短片,法国,2010,131786.4\r\n睡美人,7.9,15316,爱情/动画/歌舞/家庭/奇幻,美国,1959,120996.4\r\n严肃的男人,7.3,15307,剧情,美国/英国/法国,2009,111741.1\r\n罗马帝国艳情史,6.3,15303,剧情/情色/历史,意大利/美国,1979,96408.9\r\n人体蜈蚣,5.6,15300,恐怖,英国/美国/荷兰,2011,85680\r\n新乌龙女校,6.9,15298,喜剧,英国,2007,105556.2\r\n骄傲,8.3,15295,剧情/喜剧/同性/历史,英国,2014,126948.5\r\n道熙呀,7.6,15282,剧情,韩国,2014,116143.2\r\n狐狸与我,8.6,15280,剧情/儿童/冒险,法国,2007,131408\r\n罗马的房子 ,7.3,15268,剧情/情色/同性,西班牙,2010,111456.4\r\n人鱼朵朵 人魚朵,7,15265,剧情/爱情/奇幻,台湾,2006,106855\r\n喋血街头 喋血街,8.1,15260,剧情/动作/惊悚/犯罪,香港,1990,123606\r\n45,7.7,15260,剧情/爱情,英国,2015,117502\r\n叶问：终极一战 葉問：終極一,6.2,15230,剧情/动作/传记,中国大陆/香港,2013,94426\r\n绝命航班,3.5,15228,动作/惊悚/灾难,美国/中国大陆,2014,53298\r\n第一诫,6.9,15221,动作/惊悚/恐怖/犯罪,香港/新加坡,2008,105024.9\r\n搭讪的法则,6.4,15218,喜剧/爱情,韩国,2005,97395.2\r\n恋爱中的宝贝,6.2,15215,剧情/爱情/悬疑,中国,2004,94333\r\n周末时光,8,15214,剧情/爱情/同性,英国,2011,121712\r\n宿敌,6.9,15209,悬疑/惊悚,加拿大/西班牙/法国,2013,104942.1\r\n植物学家的中国女孩,6.3,15195,剧情/爱情/同性,法国/加拿大,2006,95728.5\r\n亲爱的，我把孩子缩小了,7.4,15185,喜剧/科幻/家庭/冒险,美国,1989,112369\r\n卡特教练,8.3,15141,剧情/运动,美国/德国,2005,125670.3\r\n杀死汝爱,7.4,15136,剧情/同性/传记,美国,2013,112006.4\r\n世贸中心,6.6,15134,剧情/传记/历史/灾难,美国,2006,99884.4\r\n秘书,7.1,15124,剧情/爱情/情色,美国,2002,107380.4\r\n强迫症患者的血腥臆想,8,15117,短片,法国,2008,120936\r\n神探夏洛克(试播,8.9,15110,剧情/悬疑/犯罪,英国,2010,134479\r\n赛尔号大电影4：圣魔之,4.3,15109,剧情/动画/儿童/冒险,中国大陆,2014,64968.7\r\n不再沉默,7.7,15105,剧情,美国,2005,116308.5\r\n天脉传奇,5.5,15100,动作/爱情/冒险,中国/香港/台湾/日本,2002,83050\r\n兄弟出头天,7.7,15074,喜剧,美国,2012,116069.8\r\n无法无天,7.3,15071,剧情/犯罪/西部,美国,2012,110018.3\r\n迷幻,6.9,15050,剧情/惊悚/犯罪,英国,2013,103845\r\n神战：权力之眼,6.8,15040,动作/奇幻/冒险,美国/澳大利亚,2016,102272\r\n一石二鸟,4.1,15035,喜剧/动作/冒险,中国大陆,2005,61643.5\r\n飞鹰,5.2,15015,动作/冒险,香港,2004,78078\r\n夺命手术,7.3,15002,悬疑/惊悚/犯罪,美国,2007,109514.6\r\n出轨的女人 出軌的女,5.8,14993,剧情/爱情,香港,2011,86959.4\r\n神奇,3.3,14980,剧情/爱情/运动,中国大陆,2013,49434\r\n鲁邦三世VS名侦探柯南 ルパン三世vs名,7.2,14975,动画/悬疑,日本,2009,107820\r\n通灵神探,6.3,14972,科幻/悬疑/惊悚/犯罪,美国,2016,94323.6\r\n猎鹿人,8.4,14966,剧情/战争,美国/英国,1978,125714.4\r\n锈与骨,7.6,14965,剧情,法国/比利时,2012,113734\r\n夺命枪火,7.8,14961,剧情/动作/悬疑/惊悚/犯罪,美国/德国,2006,116695.8\r\n恶之教典 悪の教,7,14946,惊悚,日本,2012,104622\r\n虎兄虎弟 ,8.5,14936,剧情/冒险,法国/英国,2004,126956\r\n女蛹,6.5,14930,悬疑/惊悚,中国大陆,2013,97045\r\n金瓶梅,5.8,14923,剧情/喜剧/情色,香港,2008,86553.4\r\n初恋从打嗝开始,6.2,14905,喜剧,美国/丹麦,2009,92411\r\n爱，简单,8.1,14893,剧情/爱情/同性,巴西,2014,120633.3\r\n摇啊摇，摇到外婆桥,7.1,14887,剧情/犯罪,中国大陆/法国,1995,105697.7\r\n阿基拉,8.3,14876,动作/科幻/动画/悬疑/奇幻,日本,1988,123470.8\r\n爱的成人式 イニシエーション・,7.6,14869,剧情/爱情/悬疑,日本,2015,113004.4\r\n暗夜恐惧,8,14868,剧情/动画/悬疑/恐怖,法国,2008,118944\r\n春逝,7.8,14859,剧情/爱情,韩国/日本/香港,2001,115900.2\r\n不忠,7.4,14838,剧情/惊悚/情色/家庭,美国/德国/法国,2002,109801.2\r\n与玛格丽特的午后 ,8.7,14835,喜剧,法国,2010,129064.5\r\n13骇人,6.8,14822,悬疑/惊悚/犯罪,泰国,2006,100789.6\r\n超胆侠,5.7,14813,动作/惊悚/犯罪/奇幻,美国,2003,84434.1\r\n狮子王,7.8,14812,喜剧/动画/家庭/冒险,澳大利亚/美国,2004,115533.6\r\n弗兰西丝·哈,8.3,14807,剧情/喜剧,美国,2012,122898.1\r\n咕咚来了,7.8,14806,动画/短片/儿童,中国大陆,1905,115486.8\r\n寻找周杰伦 尋找周杰,5,14803,爱情,香港,2003,74015\r\n吸血鬼生活,7.8,14793,喜剧/恐怖/奇幻,新西兰/美国,2014,115385.4\r\n刀,7.9,14774,剧情/动作/武侠,中国大陆/香港,1995,116714.6\r\n撕裂人,5.9,14770,喜剧/科幻/恐怖,加拿大/美国,2006,87143\r\n下女,5.5,14742,惊悚/情色,韩国,2010,81081\r\n潜水艇,7.6,14732,剧情/喜剧,英国/美国,2010,111963.2\r\n星际传奇,7.1,14732,动作/科幻/惊悚,美国,2000,104597.2\r\n蜜桃成熟时33D 蜜,4.4,14718,科幻/情色,香港,2011,64759.2\r\n真实魔鬼游戏 リアル鬼ごっ,5.5,14707,喜剧/惊悚,日本,2015,80888.5\r\n草莓百分百 草,7,14697,剧情/喜剧,中国大陆/香港/台湾/日本,2011,102879\r\n二十,6.9,14680,剧情/喜剧,韩国,2015,101292\r\n罗曼史,6.7,14677,剧情/爱情/情色,法国,1999,98335.9\r\n本能,5.7,14670,悬疑/惊悚/情色/犯罪,美国/德国/英国/西班牙,2006,83619\r\n屠魔战士,5.2,14668,动作/科幻/惊悚/奇幻,美国/澳大利亚,2015,76273.6\r\n方糖,8.1,14664,剧情/爱情,韩国,2006,118778.4\r\n车在囧途,4,14640,喜剧/爱情,中国大陆,2012,58560\r\n蝙蝠,7.2,14639,剧情/爱情/恐怖/奇幻,韩国/美国,2009,105400.8\r\n法老与众神,6.5,14639,剧情/动作/冒险,英国/美国/西班牙,2014,95153.5\r\n倾国之恋,7.8,14636,剧情/爱情/历史,英国,2012,114160.8\r\n绝色神偷,6.3,14636,剧情/动作/爱情/犯罪,香港,2001,92206.8\r\n神奇飞书,8.4,14621,剧情/动画/短片/冒险,美国,2011,122816.4\r\n挽歌,7.7,14619,剧情/爱情,美国,2008,112566.3\r\n粉红色高跟鞋,6.2,14617,剧情/爱情/悬疑/惊悚/恐怖,韩国,2005,90625.4\r\n铁血战士,7.5,14611,动作/科幻/惊悚/冒险,美国,1987,109582.5\r\n荆轲刺秦王,7.4,14601,剧情/历史/古装,中国大陆/日本/法国,1999,108047.4\r\n龙之谷：破晓奇兵,7.4,14601,动画/奇幻/冒险,中国大陆,2014,108047.4\r\n天国的邮递员,7.1,14600,剧情/爱情/奇幻,韩国/日本,2009,103660\r\n情归阿拉巴马,7,14596,喜剧/爱情,美国,2003,102172\r\n警察故事4：简单任务 警察故事4之簡,7.2,14580,剧情/喜剧/动作/惊悚/犯罪/冒险,香港/美国/澳大利亚/俄罗斯,1996,104976\r\n野蛮人罗纳尔,7.1,14579,动作/动画/冒险,丹麦,2011,103510.9\r\n改编剧本,7.5,14575,剧情/喜剧/犯罪,美国,2002,109312.5\r\n魔幻时刻 ザ・マジックア,8.2,14548,喜剧,日本,2008,119293.6\r\n光晕4：航向黎明,6.8,14533,剧情/战争/冒险,美国,2012,98824.4\r\n朋友,7.7,14532,剧情/动作/犯罪,韩国,2001,111896.4\r\n铁拳,5.6,14509,动作,美国/香港,2012,81250.4\r\n阿司匹林,7.2,14500,爱情,中国大陆,2006,104400\r\n打擂台,7.1,14499,剧情/喜剧/动作,香港/中国大陆,2010,102942.9\r\n大象的眼泪,6.6,14498,剧情,美国,2011,95686.8\r\n太平间闹鬼事件,6.9,14495,剧情/惊悚/恐怖,美国,2009,100015.5\r\n鹬蚌相争,8,14487,动画/短片,中国大陆,1984,115896\r\n强我,6,14475,惊悚/情色/犯罪,法国,2000,86850\r\n灰姑娘之舞动奇迹,6.6,14473,喜剧/爱情/歌舞,美国/加拿大,2008,95521.8\r\n暴雨将至 Пред дожд,8.7,14467,剧情/战争,马其顿/法国/英国,1994,125862.9\r\n圣斗士星矢 聖闘士星,6.4,14452,动画,日本,2016,92492.8\r\n收发室惊魂,8.2,14450,喜剧/动画/短片,美国,2013,118490\r\n超市夜未眠(短,8.2,14443,剧情/喜剧/短片,英国,2004,118432.6\r\n巴顿·芬克,8.1,14441,剧情/悬疑/惊悚,美国/英国,1991,116972.1\r\n煎蛋饼,8.7,14440,动画/短片,美国,1905,125628\r\n铁拳,7.2,14430,剧情/动作/运动,美国/中国大陆,2016,103896\r\n星际传奇,6.3,14430,动作/科幻/惊悚,美国/英国,2013,90909\r\n文子的告白 フミコの告,7.7,14429,爱情/动画/短片,日本,2009,111103.3\r\n老狼请客,8.2,14428,动画/短片,中国大陆,1905,118309.6\r\n金鸡,7.2,14421,剧情/喜剧,香港,2003,103831.2\r\n诈欺猎人 映画 クロ,7.1,14421,剧情/惊悚/犯罪,日本,2008,102389.1\r\n六楼后座 六樓後,7.5,14419,剧情/喜剧,香港,2003,108142.5\r\n箭士柳白猿,7.3,14417,剧情/武侠/古装,中国大陆,2016,105244.1\r\n放大,8.4,14404,剧情/悬疑/惊悚,英国/意大利/美国,1966,120993.6\r\n赌王之王,7.4,14399,剧情/犯罪,美国,1998,106552.6\r\n谁的青春不迷茫,6.5,14377,爱情,中国大陆,2016,93450.5\r\n魔女嘉莉,7.3,14370,剧情/恐怖,美国,1976,104901\r\n黑衣女人,5.8,14367,剧情/惊悚/恐怖,英国/加拿大/瑞典,2012,83328.6\r\n跟我的前妻谈恋爱,5.4,14357,剧情/爱情,中国大陆/香港/韩国,2010,77527.8\r\n蒸汽男孩 スチームボー,7.7,14349,动作/科幻/动画/惊悚/家庭/冒险,日本,2004,110487.3\r\n力王,6.8,14348,喜剧/动作/惊悚/犯罪,香港/日本,1991,97566.4\r\n猛龙过江 猛龍過,8.2,14320,剧情/喜剧/动作/惊悚/犯罪,香港,1972,117424\r\n喜羊羊与灰太狼之虎虎生威,6.9,14309,动画/儿童,中国大陆,2010,98732.1\r\n刺杀肯尼迪,8.8,14307,剧情/悬疑/惊悚/传记/历史,美国/法国,1991,125901.6\r\n三城记,6.1,14300,剧情/爱情,中国大陆/香港,2015,87230\r\n粉红豹,7,14298,喜剧/悬疑/犯罪/冒险,美国,2009,100086\r\n厕所女神 トイレの神,8,14267,剧情,日本,2011,114136\r\n钢之炼金术师：香巴拉的征服者 鋼の錬金術師 シャンバラを征,8.3,14260,剧情/动作/动画/冒险,日本,2005,118358\r\n爸爸去哪儿,4.5,14247,喜剧/家庭/儿童,中国大陆,2015,64111.5\r\n滑稽戏,7.9,14242,剧情/爱情/歌舞,美国,2010,112511.8\r\n谍海计中计,7,14240,剧情/动作/惊悚,美国,2003,99680\r\n捕鼠记,7.7,14231,喜剧/动作/家庭,美国,1997,109578.7\r\n观相,7.2,14229,剧情/历史/古装,韩国,2013,102448.8\r\n野兽家园,7,14226,剧情/家庭/奇幻/冒险,美国/德国/澳大利亚,2009,99582\r\n四眼天鸡,6.8,14217,喜剧/科幻/动画/家庭/冒险,美国,2005,96675.6\r\n拳霸,7.8,14209,动作/惊悚/犯罪/冒险,泰国,2004,110830.2\r\n秋刀鱼之味 秋刀魚の,8.7,14203,剧情/家庭,日本,1962,123566.1\r\n国家要案,6.9,14203,剧情/悬疑/惊悚,美国/英国/法国,2009,98000.7\r\n发胶,7.3,14201,喜剧/爱情/歌舞,美国/英国,2007,103667.3\r\n僵尸先生 殭屍先,7.8,14195,喜剧/动作/奇幻,香港,1985,110721\r\n赢家,6.7,14190,剧情,中国大陆,2011,95073\r\n机器纪元 ,6.1,14184,科幻/惊悚,西班牙/保加利亚,2014,86522.4\r\n哈里·布朗,7.7,14181,剧情/惊悚/犯罪,英国,2009,109193.7\r\n火龙对决,6.1,14152,动作/惊悚,香港/中国大陆,2010,86327.2\r\n燃情主厨,6.4,14147,剧情/喜剧,美国,2015,90540.8\r\n深夜前的五分钟,5.8,14147,爱情/悬疑,中国大陆,2014,82052.6\r\nON YOUR MAR,8.5,14136,科幻/动画/短片,日本,1995,120156\r\n邻居大战,6.1,14134,喜剧,美国,2014,86217.4\r\n逃之夭夭,6.9,14129,剧情/爱情/惊悚/犯罪,法国,2005,97490.1\r\n迷恋荷尔蒙,8.5,14127,剧情/爱情/同性/犯罪,美国/加拿大,2003,120079.5\r\n不夜城,8.2,14125,剧情/爱情,香港/日本,1998,115825\r\n绿帽子,7.4,14115,剧情,中国大陆,2005,104451\r\n爱，不爱,6.8,14110,剧情/爱情,韩国,2011,95948\r\n三更,7.3,14101,悬疑/恐怖,香港/韩国/泰国,2002,102937.3\r\n88,6.5,14101,剧情/悬疑/惊悚,德国/美国/加拿大,2007,91656.5\r\n特务迷城,6.4,14098,喜剧/动作/惊悚,香港,2001,90227.2\r\n处女之死,7.6,14097,剧情/爱情/悬疑,美国,1999,107137.2\r\n假面,7.5,14095,剧情/悬疑/惊悚/同性/犯罪,韩国,2007,105712.5\r\n青春失乐园,4,14095,剧情/喜剧/歌舞,中国大陆,2011,56380\r\n在劫难逃,5.7,14094,剧情/动作/悬疑/惊悚,美国,2012,80335.8\r\n舞女纯情,6.9,14083,剧情/喜剧/爱情,韩国,2005,97172.7\r\n花容月貌,7.3,14081,剧情,法国,2013,102791.3\r\n安奈的眼睛,8.3,14079,动画/短片,美国,2009,116855.7\r\n同谋 同,4.9,14073,剧情/悬疑/犯罪,香港/中国大陆,2013,68957.7\r\n致命弯道,6.3,14067,恐怖,美国/德国,2003,88622.1\r\n冰雪公主,7,14063,剧情/喜剧/家庭/运动,美国/加拿大,2005,98441\r\n香奈儿秘密情史,6.6,14058,剧情/爱情,法国,2009,92782.8\r\n偷偷爱着你SP 花ざかりの君たちへ 卒業式&am,7.4,14049,喜剧/爱情,日本,2008,103962.6\r\n恋之风景 戀之風,6.8,14047,剧情/爱情/动画,香港/法国,2003,95519.6\r\n致命呼叫,7.3,14046,惊悚,美国,2013,102535.8\r\n防弹武僧,5.3,14040,喜剧/动作/冒险,美国,2003,74412\r\n分手男女,6.5,14031,剧情/爱情,美国,2006,91201.5\r\n五亿探长雷洛传I雷老,7.6,14015,剧情/动作/爱情/犯罪,香港,1991,106514\r\n鬼镜,6.9,14015,悬疑/惊悚/恐怖,美国/罗马尼亚/德国,2008,96703.5\r\n百万英镑,7.9,14010,喜剧/爱情,英国,1954,110679\r\n最长的一码,7.6,14007,剧情/喜剧/运动,美国,2005,106453.2\r\n名侦探柯南OVA9：十年后的陌生人 名探偵コナン ,7.6,13982,动画,日本,2009,106263.2\r\n安非他命,6.4,13975,剧情/同性,香港,2010,89440\r\n昆虫总动员 ,8,13969,动画/冒险,法国/比利时,2014,111752\r\n道格的特别任务,7.9,13967,动画/短片/家庭/奇幻,美国,2009,110339.3\r\n头朝下的生活,8.3,13966,喜剧/爱情/动画/短片/家庭,英国,2012,115917.8\r\n摩天楼,7.4,13961,剧情/动作/灾难,韩国,2012,103311.4\r\n二子开店,7.5,13943,剧情,中国,1905,104572.5\r\n冠军,8,13939,剧情/运动,韩国,2011,111512\r\n偷香,7.7,13936,剧情/爱情/情色,意大利/法国/英国,1996,107307.2\r\n金色池塘,8.8,13931,剧情/家庭,英国/美国,1982,122592.8\r\n鸭王 鴨,4.6,13931,喜剧/爱情/情色,香港,2015,64082.6\r\nI型起,7.6,13912,剧情/科幻,美国,2014,105731.2\r\n刀剑笑 刀劍,6.4,13907,喜剧/武侠/古装,香港,1994,89004.8\r\n极限空间 ,6.6,13891,悬疑/惊悚,西班牙,2010,91680.6\r\n假发,6,13881,剧情/恐怖,韩国,2005,83286\r\n神秘肌肤,7.8,13880,剧情/同性,美国/荷兰,2004,108264\r\n滑轮女孩,7.3,13878,剧情/喜剧/运动,美国,2009,101309.4\r\n情枭的黎明,8.6,13876,剧情/惊悚/犯罪,美国,1993,119333.6\r\nB型男,6.2,13872,喜剧/爱情,韩国,2005,86006.4\r\n火星任务,7.5,13871,剧情/科幻/惊悚/冒险,美国,2000,104032.5\r\n任逍遥,7.8,13868,剧情/喜剧,中国/法国/日本/韩国,2002,108170.4\r\n耳朵大有福,7.5,13857,喜剧,中国大陆/韩国,2008,103927.5\r\n女孩要什么,6.9,13857,剧情/喜剧/爱情,美国,2003,95613.3\r\n别惹小孩,6.5,13835,喜剧/惊悚/恐怖,美国,2007,89927.5\r\n热情如火,8.7,13811,喜剧,美国,1959,120155.7\r\n八仙饭店之人肉叉烧包 八仙飯店之人肉叉燒,7.1,13785,惊悚/犯罪,香港,1993,97873.5\r\nM就是凶,8.2,13777,剧情/惊悚/犯罪,德国,1931,112971.4\r\n绿色椅子,6.4,13770,剧情/爱情/情色,韩国,2005,88128\r\n爱神,6.6,13758,喜剧/爱情,中国大陆,2013,90802.8\r\n洞,9.2,13757,剧情/惊悚/犯罪,法国/意大利,1960,126564.4\r\n无理之人,7.2,13756,剧情,美国,2015,99043.2\r\n格列佛游记,6,13750,喜剧/冒险,美国,2010,82500\r\n脱轨时代,6.1,13747,喜剧/爱情,中国大陆,2014,83856.7\r\n翻译风波,6.6,13741,剧情/悬疑/惊悚,美国/英国/法国,2005,90690.6\r\n永远的蝙蝠侠,6.6,13734,动作/惊悚/犯罪/奇幻,美国/英国,1995,90644.4\r\n绝美之城,8,13727,剧情,意大利/法国,2013,109816\r\n时间机器,7,13724,动作/科幻/冒险,美国,2002,96068\r\n赌侠大战拉斯维加斯,6.2,13715,喜剧/动作,香港,1999,85033\r\n风柜来的人 風櫃來的,8.3,13708,剧情,台湾,1905,113776.4\r\n圣诞颂歌,7.3,13704,剧情/动画/家庭/奇幻,美国,2009,100039.2\r\n请别相信她,7.1,13696,喜剧/爱情,韩国,2004,97241.6\r\n同心难改,7.7,13694,剧情/爱情/同性,英国,2008,105443.8\r\n恋爱的温度,7.3,13686,剧情/爱情,韩国,2013,99907.8\r\n影子爱人 影子愛,4.1,13673,喜剧/爱情,中国大陆/香港,2012,56059.3\r\n征婚启事 徵婚啟,7.8,13669,剧情/喜剧/爱情,台湾,1998,106618.2\r\n在我入睡前,6.4,13641,悬疑/惊悚,英国,2014,87302.4\r\n邦尼和琼,8.5,13627,剧情/喜剧/爱情,美国,1993,115829.5\r\n非常突然,8,13626,剧情/犯罪,香港,1998,109008\r\n偷穿高跟鞋,6.8,13610,剧情/喜剧/爱情/家庭,美国/德国,2005,92548\r\n功夫熊猫感恩节特辑,7.8,13602,喜剧/动作/动画/短片,美国,2010,106095.6\r\n空中杀手 スカイ・ク,8,13598,剧情/动画/冒险,日本,2008,108784\r\n神枪手之死,7.4,13597,剧情/传记/历史/犯罪/西部,美国/加拿大,2007,100617.8\r\n机器人之恋,6.5,13595,剧情/喜剧/爱情,韩国,2006,88367.5\r\n霹雳火 霹靂,6.7,13581,动作,香港,1995,90992.7\r\nX计,7.1,13559,喜剧,美国,2012,96268.9\r\n死亡录像,6.6,13559,悬疑/惊悚/恐怖,西班牙,2009,89489.4\r\n源氏物语：千年之谜 源氏物語 千年,6.6,13556,剧情/爱情,日本,2011,89469.6\r\n女巫布莱尔,6.4,13542,悬疑/恐怖,美国,1999,86668.8\r\n回到爱开始的地方,6.4,13540,剧情/爱情,中国大陆/台湾,2013,86656\r\n惊曝内幕,8.1,13538,剧情/惊悚/传记,美国,1999,109657.8\r\n深渊,8.1,13533,剧情/科幻/惊悚/冒险,美国,1989,109617.3\r\n伊丽莎白2：黄金时,7.3,13533,剧情/爱情/传记/历史,英国/法国/德国,2007,98790.9\r\n疯狂店员,8.1,13530,喜剧,美国,1994,109593\r\n双旗镇刀客,8,13530,动作/冒险/武侠,中国大陆,1905,108240\r\n每个人都有他自己的电影 Ch,7.8,13507,剧情/喜剧,法国,2007,105354.6\r\n水脑袋,8.6,13496,动画/短片,中国,2009,116065.6\r\n天才一族,8,13496,剧情/喜剧/家庭,美国,2001,107968\r\n大毒枭,7.9,13496,剧情/传记/犯罪,美国,2001,106618.4\r\n四月三周两天,8,13491,剧情,罗马尼亚,2007,107928\r\n盗马记 盜馬,5,13487,喜剧/动作/爱情/悬疑,中国大陆/香港,2014,67435\r\n边缘日记,8,13481,剧情/传记/犯罪/运动,美国,1995,107848\r\n狂蟒之灾,6.3,13480,动作/惊悚/冒险/灾难,美国,2005,84924\r\n断线,8.1,13472,剧情/惊悚,美国,2012,109123.2\r\n海贼王剧场版,8.5,13455,动作/动画/冒险,日本,2012,114367.5\r\n天生爱情狂,8.1,13454,剧情/喜剧/爱情,美国,1994,108977.4\r\n我盛大的希腊婚礼,6.9,13450,喜剧/爱情,美国/加拿大,2002,92805\r\n西洋古董洋果子店,7.1,13430,剧情/喜剧/同性,韩国,2008,95353\r\n青春感恩记《父亲》之《父女篇》,7.5,13415,剧情/短片,中国大陆,2011,100612.5\r\n星际传奇,6.9,13403,动作/科幻/惊悚/冒险,美国,2004,92480.7\r\n法式炒咖啡,7.8,13394,动画/短片,法国,2008,104473.2\r\n二见钟情,7.7,13383,喜剧/爱情,美国,1995,103049.1\r\n婚礼傲客,6.5,13383,喜剧/爱情,美国,2005,86989.5\r\n英雄本色3：夕阳之歌 英雄本色II,7.1,13380,动作/战争,香港,1989,94998\r\n筋疲力尽 ,8.4,13378,剧情/爱情,法国,1960,112375.2\r\n恶人 悪,7.7,13365,剧情,日本,2010,102910.5\r\n大力神,4.8,13359,动作/冒险,美国,2014,64123.2\r\n卡萨诺瓦,7.1,13356,剧情/喜剧/爱情/冒险,美国,2005,94827.6\r\n指甲刀人魔,6.6,13354,剧情/爱情/悬疑,香港,2010,88136.4\r\n深海长眠,8.3,13339,剧情/传记,西班牙/法国/意大利,2004,110713.7\r\n26种,6.5,13327,恐怖,美国/新西兰,2012,86625.5\r\n飞砂风中转 飛砂風中,6.3,13327,喜剧/动作/犯罪,香港,2010,83960.1\r\n超完美男人,6.5,13323,喜剧/爱情/家庭,美国,2005,86599.5\r\n血迷宫,7.9,13319,剧情/惊悚/犯罪,美国,1984,105220.1\r\n花样男子最终章 花より男子ファイナ,7.2,13296,剧情,日本,2008,95731.2\r\nIT狂人特,9.2,13284,喜剧,英国,2013,122212.8\r\n东京奏鸣曲 トウキョウソナ,8.1,13284,剧情,日本/荷兰/香港,2008,107600.4\r\n赏金猎手,6.1,13283,喜剧/动作/爱情/犯罪,美国,2010,81026.3\r\n床伴逐个数,6.4,13282,喜剧/爱情,美国,2011,85004.8\r\n拜见岳父大人,6.3,13282,喜剧,美国,2010,83676.6\r\n追捕 君よ憤怒の河を渉,8.2,13272,剧情/动作/爱情/惊悚/犯罪,日本,1905,108830.4\r\n全面回忆,7.6,13263,动作/科幻/惊悚/冒险,美国,1990,100798.8\r\n女高怪谈4：声音,6.4,13256,剧情/恐怖,韩国,2005,84838.4\r\n我爱的是你爱我,5.4,13255,剧情/爱情,中国大陆,2013,71577\r\n乐与路 ソラニ,7.5,13246,剧情,日本,2010,99345\r\n扑通扑通我的人生,7.1,13243,剧情/家庭,韩国,2015,94025.3\r\n周末同床,6.7,13233,剧情/情色,韩国,2002,88661.1\r\n一个好人 一個好,6.8,13226,喜剧/动作/犯罪,香港,1997,89936.8\r\n历史系男生,8,13225,剧情/喜剧/同性,英国,2006,105800\r\n夜魔,7,13225,惊悚/恐怖/犯罪,美国,2009,92575\r\n切肤之爱 オーディショ,6.8,13214,剧情/悬疑/惊悚,日本,1999,89855.2\r\n无间道(正序,8.7,13210,剧情/犯罪,香港,1905,114927\r\n斯大林格勒 Сталингра,6,13208,动作/战争,俄罗斯,2013,79248\r\n真幌站前多田便利屋 まほろ駅前多田便利,8,13189,剧情,日本,2011,105512\r\n上位,3.5,13179,剧情/爱情,中国大陆,2013,46126.5\r\n女囚尼基塔,7.6,13175,剧情/爱情/惊悚/犯罪,法国/意大利,1993,100130\r\n纽约时刻,6.9,13168,喜剧,美国,2004,90859.2\r\n美人草,6.6,13164,剧情,中国大陆,2004,86882.4\r\n老港正传,7.1,13145,剧情/喜剧,中国大陆/香港,2007,93329.5\r\n东京少女 東京少,7.6,13139,爱情/奇幻,日本,2008,99856.4\r\n有希望的男人 ,7.7,13131,剧情/喜剧,捷克,2011,101108.7\r\n戒烟不戒酒,6.1,13116,剧情/喜剧,中国大陆,2011,80007.6\r\n宝莱坞机器人之恋,7.2,13115,喜剧/动作/科幻/奇幻/冒险,印度,2010,94428\r\n捆着我，绑着我 ,7.6,13111,剧情/喜剧/爱情/情色/犯罪,西班牙,1990,99643.6\r\n玩偶 ドール,7.7,13107,剧情/爱情,日本,2002,100923.9\r\n猛鬼街,7.2,13104,恐怖,美国,1984,94348.8\r\n一路有你,6,13100,剧情/爱情,香港/中国,2010,78600\r\n特工的特别任务,5.9,13098,喜剧/动作/爱情/惊悚,德国/美国,2008,77278.2\r\n惊世狂花,8.2,13093,剧情/惊悚/同性/犯罪,美国,1996,107362.6\r\n情敌复仇战,6.4,13091,喜剧,美国,2014,83782.4\r\n希特勒的男孩 N,8.1,13083,剧情/战争/运动,德国,2004,105972.3\r\n银行匪帮,6.9,13080,动作/惊悚/犯罪,美国,2010,90252\r\n海云台,6.7,13079,剧情/动作/灾难,韩国,2009,87629.3\r\n囧男孩,7.8,13076,剧情,台湾,2008,101992.8\r\n细细的红线,7.8,13074,剧情/动作/战争,美国,1998,101977.2\r\n卡桑德拉大桥,8.2,13068,剧情/动作/惊悚/灾难,意大利/西德/英国,1976,107157.6\r\n甲贺忍法帖,6.8,13040,剧情/动作/爱情/奇幻,日本,2005,88672\r\n大富之家,7.6,13034,喜剧/家庭,香港,1994,99058.4\r\n家有仙妻,6,13032,喜剧/爱情/奇幻,美国,2005,78192\r\n乱战,7.1,13030,剧情/动作/惊悚/犯罪,加拿大/英国/美国,2007,92513\r\n猫在巴黎,7.8,13025,动画/家庭/犯罪,法国/荷兰/瑞士/比利时,2010,101595\r\n冰冷热带鱼 冷たい熱帯,7.5,13020,剧情/惊悚/恐怖,日本,2010,97650\r\n呖咕呖咕新年财,6.2,13007,喜剧,香港,2002,80643.4\r\n卡波特,7.8,13004,剧情/同性/传记/犯罪,加拿大/美国,2005,101431.2\r\n密室之不可靠岸,5.2,13004,剧情/悬疑/惊悚/犯罪,中国大陆,2011,67620.8\r\n付出与收获,6.3,13000,喜剧/动作/犯罪,美国,2013,81900\r\n空之境界 第二章 杀人考察（前） 劇場版 空の境界 第二章 殺,8.6,12972,动画,日本,2007,111559.2\r\n海绵宝宝历险记,8.6,12971,喜剧/动画/冒险,美国,2004,111550.6\r\nGO!,8.2,12964,剧情,日本,2001,106304.8\r\n隔山有眼,6.4,12950,惊悚/恐怖,美国,2007,82880\r\n一条安达鲁狗,8.1,12922,短片/奇幻,法国,1929,104668.2\r\n牛仔和外星人,5.7,12922,动作/科幻/惊悚/西部,美国,2011,73655.4\r\n笑功震武林,4.7,12896,喜剧/动作,中国大陆/香港,2013,60611.2\r\n汽车人总动员,2.3,12892,喜剧/动画/冒险,中国大陆,2015,29651.6\r\n黄昏的清兵卫 たそがれ清兵,8.7,12877,剧情/爱情,日本,2002,112029.9\r\n新步步惊心,4.2,12874,爱情/奇幻/古装,中国大陆,2015,54070.8\r\n香港有个荷里活 香港有個荷里,7.3,12871,剧情,香港/法国/英国/日本,2001,93958.3\r\n养子十五岁,8.1,12869,剧情/喜剧/同性,瑞典,2008,104238.9\r\n蝴蝶飞,5.6,12838,剧情/爱情,香港/中国,2008,71892.8\r\n浮城大亨 浮,7.2,12836,剧情,中国大陆/香港,2012,92419.2\r\n谜情公寓,7.6,12834,剧情/爱情/悬疑/惊悚,美国,2004,97538.4\r\n百货战警,6.2,12823,喜剧/动作/犯罪,美国,2009,79502.6\r\n2012喜上加喜 2,6.1,12823,剧情/喜剧,香港/中国大陆,2012,78220.3\r\n空之境界 第三章 痛觉残留 劇場版 空の境界 第三,8.8,12822,动画,日本,2008,112833.6\r\n十月的天空,8.6,12819,剧情/家庭/传记,美国,1999,110243.4\r\n第25,8,12812,剧情/犯罪,美国,2002,102496\r\n它在身后,6.3,12811,悬疑/恐怖,美国,2015,80709.3\r\n暴力史,7.4,12810,剧情/动作/惊悚/犯罪,美国/德国,2005,94794\r\n奇迹 奇,8.6,12808,剧情,日本,2011,110148.8\r\n杀戮都市,6.7,12807,动作,日本,2011,85806.9\r\n涉足荒野,7.6,12799,剧情/传记,美国,2014,97272.4\r\n夜奔,8,12794,剧情/爱情/同性,台湾/中国大陆,2000,102352\r\n宅男电台,7.2,12785,剧情/短片/同性,中国大陆,2011,92052\r\n实尾岛,8,12781,剧情/动作,韩国,2003,102248\r\n12金鸭,5.2,12753,喜剧,香港,2015,66315.6\r\n灵数,6.5,12727,剧情/悬疑/惊悚,美国,2007,82725.5\r\n超人高校,6.1,12722,喜剧/科幻/家庭/冒险,美国,2005,77604.2\r\n完美逃亡,6.8,12721,动作/悬疑/惊悚,美国,2009,86502.8\r\n举起手来2：追击阿多丸,4.3,12721,喜剧,中国大陆,2010,54700.3\r\n龙之战,4,12718,剧情/动作/惊悚/恐怖/奇幻,韩国,2008,50872\r\n薄荷糖,8.1,12715,剧情,韩国,1999,102991.5\r\n赌侠,6.5,12692,喜剧,香港,1998,82498\r\n文科恋曲,7.4,12691,剧情,美国,2012,93913.4\r\n美姐,7.8,12686,剧情/爱情/家庭,中国大陆,2013,98950.8\r\n阿基里斯与龟 アキレスと,8.2,12683,剧情/喜剧,日本,2008,104000.6\r\n心理游戏 マインド・ゲ,8.9,12673,喜剧/动画/悬疑/冒险,日本,2004,112789.7\r\n第39号,6.8,12671,悬疑/惊悚/恐怖,美国/加拿大,2009,86162.8\r\n我和爸爸,7.4,12665,剧情,中国,2003,93721\r\n怪老头儿,8.8,12661,动画/短片/儿童/奇幻/冒险,中国大陆,1905,111416.8\r\n大梦想家,7.6,12657,剧情/传记,美国/英国/澳大利亚,2013,96193.2\r\n猫女,5.8,12636,动作/犯罪/奇幻,美国/澳大利亚,2004,73288.8\r\n从天“儿”降,3.5,12636,喜剧,中国大陆,2015,44226\r\n田禹治,7.3,12621,喜剧/动作/奇幻/冒险,韩国,2009,92133.3\r\n索多玛12,6.1,12614,剧情/惊悚/情色/犯罪,法国/意大利,1976,76945.4\r\n我们的存在(下) 僕等がい,7.5,12611,剧情/爱情,日本,2012,94582.5\r\n东方的承诺,7.4,12607,剧情/悬疑/惊悚/犯罪,英国/加拿大/美国,2007,93291.8\r\n青春期,3.4,12602,剧情/爱情,中国大陆,2012,42846.8\r\n薰衣草,6.7,12597,爱情/奇幻,香港,2001,84399.9\r\n活在当下,7.6,12595,剧情/爱情,英国,2012,95722\r\n奶奶强盗团,7.7,12591,剧情/喜剧/动作,韩国,2010,96950.7\r\n空之境界 第五章 矛盾螺旋 劇場版 空の境界 第五,9.2,12584,动画,日本,2008,115772.8\r\n九龙冰室,6.5,12572,剧情/动作,香港,2001,81718\r\n我是你爸爸,7.9,12559,剧情/喜剧,中国大陆,2000,99216.1\r\n生命之书,7.6,12555,喜剧/爱情/动画/奇幻/冒险,美国,2014,95418\r\n爱，牵手,8.6,12544,剧情/爱情/短片/同性,巴西,2010,107878.4\r\n阿虎,6.8,12543,剧情/爱情,香港,2000,85292.4\r\n小屁孩日记,7.4,12539,喜剧,美国,2011,92788.6\r\n安娜与国王,6.7,12539,剧情/喜剧/爱情/历史,美国,1999,84011.3\r\n寻找金钟旭,7.3,12537,喜剧/爱情,韩国,2010,91520.1\r\n鱼 ギ,6.6,12528,动画/恐怖,日本,2012,82684.8\r\n科学睡眠 ,7.8,12519,剧情/喜剧/爱情/奇幻,法国/意大利,2006,97648.2\r\n衣柜迷藏,7.8,12519,悬疑/惊悚/短片/同性/儿童,加拿大,2009,97648.2\r\n活死人之地,6.5,12517,科幻/恐怖,美国/法国/加拿大,2005,81360.5\r\n矮仔多情,6.4,12514,喜剧/爱情,香港,2009,80089.6\r\n狼犬丹尼,6.1,12501,剧情/动作/犯罪,法国/美国/英国,2005,76256.1\r\n世界,7.2,12496,剧情,中国大陆/日本/法国,2005,89971.2\r\n神探伽利略XX 内海薰最后的案件 愚弄 ガリレオXX 内海薫,8.1,12483,剧情/悬疑,日本,2013,101112.3\r\n人形师,6.7,12482,恐怖,韩国,2004,83629.4\r\n宝米恰恰 寶米恰,7.1,12474,喜剧/爱情,台湾,2013,88565.4\r\n荒村公寓,4,12474,惊悚,中国大陆/香港,2010,49896\r\n大佬,8.3,12471,剧情/惊悚/犯罪,日本/英国/美国,2000,103509.3\r\n以眼杀人,6.6,12470,喜剧/战争,美国/英国,2009,82302\r\n性瘾日记 ,6.8,12460,剧情/情色,西班牙,2008,84728\r\n幽灵行动阿尔法,8.3,12455,动作/科幻/短片,美国/英国/法国,2012,103376.5\r\n11度青春之《,7.4,12454,短片,中国大陆,2010,92159.6\r\n高度怀疑,7.2,12454,剧情/悬疑/惊悚/犯罪,美国,2010,89668.8\r\n小雪人大行动,7.8,12443,动画/短片,美国,1989,97055.4\r\n城市广场 ,8.1,12436,剧情/爱情/历史/冒险,西班牙,2009,100731.6\r\n父后七日 父後七,7.9,12430,家庭,台湾,2010,98197\r\n友情岁月山鸡故事,7.3,12410,爱情/犯罪,香港,2000,90593\r\n焦土之城,8.6,12406,剧情,加拿大,2010,106691.6\r\n隔绝,6.4,12406,科幻/悬疑/惊悚/灾难,德国/美国/加拿大,2012,79398.4\r\n全城通缉,4.5,12400,剧情/悬疑,中国大陆,2014,55800\r\n光辉岁月,8.6,12395,剧情/传记/运动,美国,2000,106597\r\n小贼、美女和妙探,7.2,12393,喜剧/动作/悬疑/惊悚/犯罪,美国,2005,89229.6\r\n电影就是电影,7.5,12392,剧情/动作,韩国,2008,92940\r\n蝙蝠侠：黑暗骑士归来(,8.6,12390,动作/动画,美国,2013,106554\r\n两天一夜,7.5,12377,剧情,比利时/意大利/法国,2014,92827.5\r\n午夜食人列车,6.2,12370,剧情/悬疑/惊悚/恐怖/犯罪,美国,2008,76694\r\n夏日时光,6.2,12369,剧情/惊悚/情色,韩国,2001,76687.8\r\n神探夏洛克：福至如归,9.1,12366,剧情/短片,英国,2013,112530.6\r\n分屏：一个爱情故事,8.3,12362,短片,美国,1905,102604.6\r\n天然子结构 天然コケッコ,7.6,12357,剧情,日本,2007,93913.2\r\n反恐特警组,6.6,12352,动作/惊悚/犯罪,美国,2004,81523.2\r\n大路,8.9,12349,剧情,意大利,1954,109906.1\r\n捉迷藏,6.8,12340,悬疑/惊悚/犯罪,韩国,2013,83912\r\n宿主,6,12337,动作/爱情/科幻/惊悚,美国,2013,74022\r\n摇滚夏令营,6.5,12332,喜剧/爱情/歌舞/家庭,美国,2008,80158\r\n美好的一年,7.7,12331,剧情/喜剧/爱情,美国/英国,2006,94948.7\r\n小红帽,7.5,12322,喜剧/动画/奇幻,美国,2005,92415\r\n宠物小精灵：超梦的逆袭 劇場版ポケットモンスター ミュウツーの,7.9,12318,动作/科幻/动画/家庭/冒险,日本,1998,97312.2\r\n情谜 情,5.6,12317,剧情/爱情/悬疑,中国大陆/香港,2012,68975.2\r\n单车少年 ,8,12300,剧情,比利时/法国/意大利,2011,98400\r\n呼吸,7.3,12299,剧情,韩国,2007,89782.7\r\n大明猩,5.5,12295,剧情/喜剧/运动,中国大陆/韩国,2013,67622.5\r\n妈咪,8.2,12285,剧情/家庭,加拿大,2014,100737\r\n陀地驱魔人 陀地驅魔,6.4,12285,惊悚/恐怖,香港,2015,78624\r\n非常公寓,8.3,12282,剧情/爱情/悬疑,法国/西班牙/意大利,1996,101940.6\r\n那夜凌晨，我坐上了旺角开往大埔的红VAN 那夜凌晨，我坐上了旺角開往,5.8,12279,悬疑/惊悚,香港/中国大陆,2014,71218.2\r\n金瓶梅2：爱的奴隶 金瓶梅Ⅱ愛的,5.7,12276,剧情/喜剧/情色,香港,2009,69973.2\r\n人约离婚后 人約離婚,6.2,12272,剧情/爱情,香港,2011,76086.4\r\n小马王,8.5,12267,爱情/动画/西部/冒险,美国,2002,104269.5\r\n吉娅,7.9,12267,剧情/爱情/同性/传记,美国,1998,96909.3\r\n龙凤配,7.7,12265,剧情/喜剧/爱情,美国,1954,94440.5\r\n半夜鸡叫,7.8,12259,动画,中国大陆,1905,95620.2\r\n白金数据 プラチナデー,6.8,12249,科幻/犯罪,日本,2013,83293.2\r\n烟花 打ち上げ花火、下から見るか、横から見る,8.1,12238,剧情,日本,1995,99127.8\r\n莱姆酒日记,6.2,12237,剧情/冒险,美国,2011,75869.4\r\n做头,5.3,12227,剧情,中国大陆/香港,2005,64803.1\r\n猎仇者,4.2,12222,悬疑/惊悚/犯罪,中国大陆/香港,2013,51332.4\r\n从心开始,7.8,12221,剧情,美国,2007,95323.8\r\n我唾弃你的坟墓,6,12199,惊悚/恐怖/情色,美国,1978,73194\r\n布鲁诺 ,6.7,12187,喜剧,美国,2009,81652.9\r\n在世界转角遇见爱 Светът е голям и спасение дебне от,8.4,12184,剧情/家庭,保加利亚/德国/斯洛文尼亚/匈牙利,2008,102345.6\r\n情迷拉斯维加斯,6.5,12179,喜剧/爱情,美国,2008,79163.5\r\n烈火情人,7.3,12174,剧情/爱情/情色,英国/法国,1992,88870.2\r\n望夫成龙,6.8,12174,喜剧/爱情,香港,1990,82783.2\r\n熟男，我爱你,7.4,12171,爱情,意大利,2008,90065.4\r\n针孔旅馆,6.1,12168,剧情/悬疑/惊悚/恐怖,美国,2007,74224.8\r\n飞龙再生 飛龍再,5.8,12147,喜剧/动作/惊悚/奇幻,香港/美国,2003,70452.6\r\n废柴特工,6,12144,喜剧/动作,美国/瑞士,2016,72864\r\n淘金记,8.9,12142,喜剧/爱情/家庭/西部/冒险,美国,1925,108063.8\r\n爱君如梦,6.6,12141,爱情,香港,2001,80130.6\r\n辣手警花,6.6,12135,喜剧/动作/犯罪,美国,2013,80091\r\n代号,5.9,12133,动作/惊悚/犯罪,美国,2015,71584.7\r\n名侦探柯南 真人版 Ⅱ 工藤新一の復活! 〜黒の,6.5,12127,剧情,日本,2007,78825.5\r\n铁面人,7.1,12124,剧情/动作/历史/冒险,英国/美国,1998,86080.4\r\n蝴蝶梦：梁山伯与祝英台 蝴蝶夢－梁山伯與祝英,7.1,12103,动画,台湾,2003,85931.3\r\n机动杀人,7,12090,剧情/悬疑/惊悚,美国/澳大利亚/加拿大,2004,84630\r\n草叶,7.5,12072,剧情/喜剧/惊悚/犯罪,美国,2009,90540\r\n非常父女档,7.8,12067,剧情/喜剧/家庭,墨西哥,2013,94122.6\r\n楢山节考 楢山節,8.8,12055,剧情,日本,1983,106084\r\n那家伙的声音,7.4,12051,剧情/惊悚,韩国,2007,89177.4\r\nSPE,7.9,12049,剧情/科幻/悬疑,日本,2013,95187.1\r\n熊出没之夺宝熊兵,6.4,12043,喜剧/动画/家庭/冒险,中国大陆,2014,77075.2\r\n妖夜慌踪,8.1,12040,剧情/悬疑/惊悚/恐怖,法国/美国,1997,97524\r\n罗斯玛丽的婴儿,7.9,12035,剧情/悬疑/恐怖,美国,1968,95076.5\r\n太阳帝国,7.9,12030,剧情/动作/战争,美国,1987,95037\r\n马格瑞姆的神奇玩具店,7,12026,喜剧/家庭/奇幻,美国,2007,84182\r\n幸运数字斯莱文,7.5,12013,惊悚/犯罪,美国/德国,2006,90097.5\r\n局内人,7.5,12006,剧情/犯罪,韩国,2015,90045\r\n穿越时空的少女 時をかける少,6.9,12005,冒险,日本,2010,82834.5\r\n见鬼十法 見,6.4,11998,喜剧/惊悚/恐怖,香港,2005,76787.2\r\n极恶非道2 アウトレイジ ビ,7.5,11995,动作/犯罪,日本,2012,89962.5\r\n海雾,7,11993,剧情/惊悚,韩国,2014,83951\r\n到也门钓鲑鱼,7,11973,剧情/喜剧/爱情,英国,2011,83811\r\n超级无敌掌门狗：面包与死亡事件,8.2,11968,喜剧/动画/短片,英国,2008,98137.6\r\n第八日的蝉 八日目の,8.3,11956,剧情,日本,2011,99234.8\r\n花落花开 ,8.5,11940,剧情/传记/战争,法国/比利时,2008,101490\r\n前往希腊剧院,6.8,11937,喜剧,美国,2010,81171.6\r\n孩子们,7.4,11930,悬疑/惊悚/犯罪,韩国,2011,88282\r\n独立时代 獨立時,8.8,11927,剧情/喜剧,台湾,1994,104957.6\r\n失踪宝贝,7.8,11925,剧情/悬疑/惊悚/犯罪,美国,2007,93015\r\n诗,8.3,11910,剧情,韩国,2010,98853\r\n爱的曝光 愛のむきだ,8.1,11894,剧情/喜剧/动作/爱情,日本,2008,96341.4\r\n谁说我不在乎,7,11893,剧情/喜剧/家庭,中国,2001,83251\r\n雀圣2：自摸天后 雀聖2自,5.9,11891,喜剧,香港,2005,70156.9\r\n暗流 ,7.4,11881,悬疑/惊悚/犯罪,法国,2000,87919.4\r\n水浒传之英雄本色 水滸傳之英雄本,6.9,11876,剧情/动作/武侠/古装,香港/中国大陆,1993,81944.4\r\n苔丝,8,11873,剧情/爱情,法国/英国,1979,94984\r\n我知道你去年夏天干了什么,6.3,11871,悬疑/惊悚/恐怖,美国,1997,74787.3\r\n亡灵,7.4,11863,喜剧/恐怖,美国,2009,87786.2\r\n3D,4.6,11863,喜剧/情色,香港,2014,54569.8\r\n普罗旺斯的夏天,8.2,11860,剧情,法国,2014,97252\r\n恐怖废墟,6.4,11852,惊悚/恐怖,美国/德国/澳大利亚,2008,75852.8\r\n捉迷藏 カクレン,7.9,11851,动画/惊悚/恐怖/短片/奇幻,日本,2005,93622.9\r\n机械心 ,7.9,11840,剧情/动画/冒险,法国,2013,93536\r\n要听神明的话 神さまの言うとお,6.5,11826,惊悚/恐怖,日本,2014,76869\r\n暂告安全,6.2,11823,动作/惊悚/犯罪,美国,2012,73302.6\r\n十分钟年华老去：大提琴篇,8.3,11818,剧情/爱情/科幻/歌舞,英国/德国/法国,2002,98089.4\r\n开罗时间,7.9,11812,剧情/爱情,加拿大/爱尔兰/埃及,2009,93314.8\r\n跛豪,7.9,11806,剧情/传记/犯罪,香港,1991,93267.4\r\n绣花鞋,4.5,11805,剧情/惊悚,中国大陆,2012,53122.5\r\n最佳拍档,7.5,11792,喜剧/动作,香港,1982,88440\r\n水滴,8.7,11786,科幻/短片,中国大陆,2015,102538.2\r\n睡前故事,6.5,11786,喜剧/家庭/奇幻,美国,2008,76609\r\n凯文怎么了,7.6,11784,剧情/惊悚/家庭,英国/美国,2011,89558.4\r\n处刑人,7.1,11782,剧情/动作/惊悚/犯罪,美国,2009,83652.2\r\n忍者刺客,6.1,11782,剧情/动作/惊悚/犯罪,美国,2009,71870.2\r\n朱丽叶与梁山伯,8.3,11781,剧情/爱情,香港,2000,97782.3\r\n爱情万岁 愛情萬,7.7,11765,剧情/同性,台湾,1994,90590.5\r\n黄昏双镖客 ,8.7,11747,西部,意大利/西班牙/西德,1965,102198.9\r\n怪形前传,6.6,11742,科幻/悬疑/惊悚/恐怖,美国/加拿大,2011,77497.2\r\n甜蜜杀机 甜蜜殺,6.1,11741,喜剧/爱情/犯罪,台湾,2014,71620.1\r\n鸡排英雄 雞排英,6.9,11738,剧情/喜剧,台湾,2011,80992.2\r\n菠萝快车,7,11725,喜剧/动作/惊悚/犯罪/冒险,美国,2008,82075\r\n彼德与狼,8,11724,剧情/动画/短片,英国/波兰/挪威/墨西哥,2006,93792\r\n污泥,7.8,11722,剧情,美国,2012,91431.6\r\n同门 同,5.9,11720,动作/惊悚/犯罪,香港,2009,69148\r\n继续活下去的5个故事 ZOO 生きて,7.6,11718,恐怖,日本,2005,89056.8\r\n哆啦A梦：大雄的恐龙 ドラえもん のび太,7.6,11713,动画,日本,2007,89018.8\r\n华颐：吞噬怪物的孩子,7.3,11709,动作/惊悚,韩国,2013,85475.7\r\n尽善尽美,8,11704,剧情/喜剧/爱情,美国,1997,93632\r\n北逃,8.2,11696,剧情,韩国,2008,95907.2\r\n三笑之才子佳人,4,11694,喜剧/古装,中国大陆,2010,46776\r\n倭寇的踪迹,7.1,11688,剧情/动作/武侠/古装,中国大陆,2012,82984.8\r\n蝴蝶君,7.7,11684,剧情/爱情/同性,美国,1993,89966.8\r\n我是女王,4.2,11684,剧情/爱情,中国大陆,2015,49072.8\r\n制服,5,11682,犯罪,中国大陆,2013,58410\r\n精武门 精武,8.4,11670,剧情/动作/爱情/惊悚,香港,1972,98028\r\n虫师 蟲,6.7,11665,奇幻,日本,2007,78155.5\r\n兵人,6.9,11662,剧情/动作/科幻,英国/美国,1998,80467.8\r\n求求你，表扬我,6.7,11661,喜剧,中国大陆,2005,78128.7\r\n风月,7.4,11647,剧情/爱情,香港/中国,1996,86187.8\r\n92黑玫瑰对黑玫瑰 92黑玫,7.4,11646,喜剧/动作/爱情/歌舞,香港,1992,86180.4\r\n流氓医生 流氓醫,7.7,11643,喜剧,香港,1995,89651.1\r\n美国派(番外篇)7：索,5.8,11641,喜剧,美国,2009,67517.8\r\n火线特攻,6.6,11640,剧情/悬疑/犯罪,美国,2010,76824\r\n雌雄莫辨,7.4,11639,剧情/同性,英国/美国,2011,86128.6\r\n幸福时光,6.8,11630,剧情/喜剧,中国大陆,2000,79084\r\n古镜怪谈 怪談之魔,5.7,11629,剧情/爱情/悬疑/恐怖/犯罪,香港,2000,66285.3\r\n基因决定我爱你 基因決定我愛,5.7,11612,喜剧/爱情/科幻,台湾,2007,66188.4\r\n我在路上最爱你,3.4,11601,剧情/爱情,中国大陆/韩国,2014,39443.4\r\n乌鸦,6.6,11600,悬疑/惊悚/犯罪,美国,2012,76560\r\n赌博默示录 カイジ 人生逆転ゲ,7.1,11598,剧情,日本,2009,82345.8\r\n活该你单身,5.1,11595,喜剧/爱情,中国大陆,2010,59134.5\r\n巴黎小情歌,7.5,11591,剧情/爱情/歌舞,法国,2007,86932.5\r\n小倩,8,11587,喜剧/动作/爱情/动画/奇幻,香港,1997,92696\r\n七年之痒,7.4,11587,喜剧/爱情,美国,1955,85743.8\r\n马语者,8.1,11584,剧情/爱情/西部,美国,1998,93830.4\r\n寻子遇仙记,9.1,11581,剧情/喜剧/家庭,美国,1921,105387.1\r\n空之境界 第四章 伽蓝之洞 劇場版 空の境界 第四,8.7,11580,动画,日本,2008,100746\r\n卡廷惨案 ,8.2,11567,剧情/历史/战争,波兰,2007,94849.4\r\n屋顶上的轻骑兵,7.9,11564,剧情/爱情/战争/冒险,法国,1995,91355.6\r\n伊豆的舞女 伊豆の踊,8.4,11558,剧情,日本,1974,97087.2\r\n大都会 メトロポリ,8.3,11550,剧情/动作/爱情/科幻/动画/惊悚/犯罪/冒险,日本,2001,95865\r\n王者之心,7.1,11549,剧情/动作/爱情/冒险/古装,美国/英国/德国/捷克,2007,81997.9\r\n爱你长久,8.2,11546,剧情/悬疑,法国/德国,2008,94677.2\r\n崂山道士,8.5,11526,动画/短片,中国大陆,1905,97971\r\n收件人不详,8.3,11523,剧情/战争,韩国,2001,95640.9\r\n遭遇陌生人,7.3,11500,喜剧/爱情,美国/西班牙,1905,83950\r\n恋爱刺客,6.4,11457,喜剧/爱情,美国/加拿大,2006,73324.8\r\n缘份 緣,7.1,11455,剧情/喜剧/爱情,香港,2016,81330.5\r\n爸妈不在家,7.9,11447,剧情/家庭,新加坡,2013,90431.3\r\n午夜凶铃2：贞子缠身 リ,6.6,11435,恐怖,日本,1999,75471\r\n象人,8.1,11432,剧情/传记/历史,美国,1980,92599.2\r\n鸟人,8.3,11429,剧情/战争,美国,1984,94860.7\r\n小小的白色谎言,8.3,11424,剧情/喜剧,法国,2010,94819.2\r\n蝙蝠侠：黑暗骑士归来(,7.9,11418,动作/动画,美国,2012,90202.2\r\n午夜牛郎,8.2,11415,剧情,美国,1969,93603\r\n小鹿斑比,8.2,11405,剧情/动画,美国,1942,93521\r\n马粥街残酷史,7.6,11402,剧情/历史,韩国,2004,86655.2\r\n天兆,6.5,11400,剧情/科幻/悬疑/惊悚,美国,2002,74100\r\n拜金女郎,6,11398,喜剧/爱情/家庭,美国,2006,68388\r\n对话尼克松,8,11396,剧情/历史,美国/英国/法国,2008,91168\r\n人人都说我爱你,7.3,11396,喜剧/爱情/歌舞,美国,1997,83190.8\r\n新基督山伯爵,7.3,11394,剧情/动作/爱情/惊悚/历史/犯罪/冒险,英国/美国/爱尔兰,2002,83176.2\r\n冰风暴,7.9,11387,剧情/家庭,美国/法国,1997,89957.3\r\n老千,7.4,11362,剧情/犯罪,韩国,2006,84078.8\r\n李碧华鬼魅系列：奇幻夜 李碧華鬼魅系列：奇幻,6.6,11360,恐怖,香港,2013,74976\r\n百家乐翻天 爛賭夫鬥爛賭,5.8,11349,喜剧/爱情,香港,2013,65824.2\r\n匪帮传奇,6.5,11339,剧情/动作/惊悚/犯罪,美国,2013,73703.5\r\n不请自来,6.8,11338,剧情/悬疑/惊悚/恐怖,美国/加拿大/德国,2009,77098.4\r\n洛基恐怖秀,8,11333,喜剧/歌舞,英国/美国,1975,90664\r\n东京！,7.7,11332,剧情/喜剧/奇幻,法国/日本/德国/韩国,2008,87256.4\r\n杀妻总动员,8.2,11316,爱情/悬疑/惊悚/奇幻,日本,2004,92791.2\r\n反基督者,7.1,11313,剧情/惊悚/情色,丹麦/德国/法国/瑞典/意大利/波兰,2009,80322.3\r\n德州电锯杀人狂前传,6.9,11313,惊悚/恐怖,美国,2006,78059.7\r\n总有骄阳,8.2,11311,剧情/爱情,美国,1999,92750.2\r\n身为人母,7.7,11310,剧情/爱情/家庭,美国,2006,87087\r\n另一个女人,7.3,11307,剧情/家庭,美国,2009,82541.1\r\n辛普森一家：托儿所的漫长日,8.3,11306,喜剧/动画/短片,美国,2012,93839.8\r\n珍妮和朱诺,6.9,11292,喜剧,韩国,2005,77914.8\r\n正牌韦小宝之奉旨沟女 正牌韋小寶之奉旨溝,6.1,11284,喜剧/情色/奇幻/古装,香港,1993,68832.4\r\n红眼航班,6.7,11281,惊悚,美国,2005,75582.7\r\n锡铁小兵,7.1,11268,喜剧/动画/短片,美国,1988,80002.8\r\n月球旅行记,8.8,11267,科幻/短片/奇幻/冒险,法国,1902,99149.6\r\n四十七浪人,5.6,11259,剧情/动作/奇幻,美国,2013,63050.4\r\n美人计,7.8,11258,剧情/爱情/惊悚,美国,1946,87812.4\r\n美错,8,11238,剧情,墨西哥/西班牙,2010,89904\r\n太空飞行棋,6.6,11237,喜剧/动作/科幻/家庭/奇幻/冒险,美国,2005,74164.2\r\n曼哈顿,8.2,11220,剧情/喜剧/爱情,美国,1979,92004\r\n寂寞芳心,8.6,11218,剧情/爱情,土耳其,2008,96474.8\r\n太阳浩劫,6.9,11217,剧情/科幻/灾难,英国/美国,2007,77397.3\r\n爱的那点性事,7.3,11215,喜剧/爱情/情色,澳大利亚,2014,81869.5\r\n亲密,6.2,11209,剧情/爱情,香港,2008,69495.8\r\n珠光宝气,5.1,11191,剧情/犯罪,美国/日本/法国/英国/德国,2013,57074.1\r\n儿女一箩筐,7,11188,喜剧/家庭,美国,2004,78316\r\n航班蛇患,6.1,11167,动作/惊悚/灾难,美国/德国/加拿大,2006,68118.7\r\n蓝色吉祥物,7.7,11162,喜剧,美国,2008,85947.4\r\n又一年,7.9,11155,剧情,英国,2010,88124.5\r\n恋爱进行时,7.6,11152,爱情,韩国,2003,84755.2\r\n苹果核战记 アップルシー,7.6,11151,动作/科幻/动画,日本,2004,84747.6\r\n地海传说 ゲド戦,6.2,11141,动画/奇幻/冒险,日本,2006,69074.2\r\n鬼乡,7.4,11134,剧情,韩国,2016,82391.6\r\n天生一对,6.2,11134,剧情/喜剧,中国大陆/香港,2006,69030.8\r\n鬼来电3 着信,6.3,11126,恐怖,日本,2006,70093.8\r\n绿洲,8.4,11125,剧情/爱情,韩国,2002,93450\r\n等待，只为与你相遇 そのときは彼によろし,7.1,11124,爱情,日本,2007,78980.4\r\n回来的路,7.9,11123,剧情/冒险,美国,2010,87871.7\r\n红酒烩鸡,7.8,11116,喜剧/家庭,德国,2011,86704.8\r\n波特小姐,7.7,11102,剧情/传记/奇幻,英国/美国/英国属地曼岛,2007,85485.4\r\n嫌疑人,7.2,11070,动作,韩国,2013,79704\r\n笔仙,4.7,11060,悬疑/恐怖,中国大陆,2012,51982\r\n睡美人,5.5,11057,剧情,澳大利亚,2011,60813.5\r\n有钱男与贫穷女：纽约篇 リッチマン、プアウーマン in ニ,7.6,11052,剧情/爱情,日本,2013,83995.2\r\n明星助理,7.2,11052,喜剧/爱情,英国/美国,2008,79574.4\r\n趣味游戏美国版,6.6,11052,剧情/惊悚/恐怖,美国/法国/英国/奥地利/德国/意大利,2007,72943.2\r\n小飞象,8,11046,动画/歌舞/家庭,美国,1941,88368\r\n余生的第一天,8.5,11031,剧情/家庭,法国,2008,93763.5\r\n诺桑觉寺,7.3,11025,爱情,英国,2007,80482.5\r\n第四类接触,6.8,11021,科幻/悬疑/惊悚/恐怖,美国,2009,74942.8\r\n奔爱,3.6,11015,剧情/爱情,中国大陆,2016,39654\r\n灭顶之灾,6,11013,科幻/悬疑/惊悚/灾难,美国/印度/法国,2008,66078\r\n饥饿,8,10993,剧情/传记/历史,英国/爱尔兰,2008,87944\r\n视线之外,8.6,10984,剧情/动画/短片,台湾,2010,94462.4\r\n人间失格 人間失,6.8,10982,剧情,日本,2010,74677.6\r\n异邦人：无皇刃谭 ストレンヂア 無皇,8.3,10969,动作/动画/冒险,日本,2007,91042.7\r\n奴隶情人,6.5,10953,喜剧/爱情,韩国,2004,71194.5\r\n拖线与鬼火,7.6,10949,动画/短片/家庭,美国,2006,83212.4\r\n爱是妥协,7.5,10944,喜剧/爱情,美国,2003,82080\r\n罪与罚 殺人,6.6,10939,剧情/悬疑/犯罪,香港/美国,2009,72197.4\r\n办公室的故事 Служебный Ром,8.7,10937,喜剧/爱情,苏联,1977,95151.9\r\n冬荫功,7.3,10937,剧情/动作/惊悚/犯罪,泰国,2005,79840.1\r\n宛如天堂,7.2,10931,喜剧/爱情/奇幻,美国,2005,78703.2\r\n怪物,6.4,10928,恐怖,中国大陆/香港,2005,69939.2\r\n别拿自己不当干部,6.9,10925,喜剧,中国大陆,2007,75382.5\r\n爸爸的假期,4.1,10917,喜剧/家庭,中国大陆,2015,44759.7\r\n第601,4.7,10915,剧情,中国大陆,2006,51300.5\r\n海贼王剧场版10：强者,8.7,10913,动画/奇幻,日本,2009,94943.1\r\n空之境界 第七章 杀人考察（后） 劇場版 空の境界 第七章 殺,8.8,10910,剧情/动作/动画,日本,2009,96008\r\n假小子,7.8,10907,剧情,法国,2011,85074.6\r\n惊声尖笑,5.3,10899,喜剧,美国,2013,57764.7\r\n拜访者Q ビジ,6.6,10894,剧情/喜剧/惊悚/恐怖/情色,日本,2001,71900.4\r\n野兽男孩,5.8,10884,剧情/爱情/奇幻,美国,2011,63127.2\r\n北京纽约,4.2,10879,剧情/爱情,中国大陆/英国/美国,2015,45691.8\r\n毕业生生存指南,6.3,10873,喜剧,美国,2009,68499.9\r\n探戈,8.7,10858,动画/短片,波兰,1905,94464.6\r\n特工艾米拉,2.7,10852,动作/悬疑,中国大陆,2014,29300.4\r\n大歌唱家,8.7,10851,动画/短片,匈牙利,2005,94403.7\r\n高地战,8.4,10846,剧情/战争,韩国,2011,91106.4\r\n完美陌生人,6.7,10830,剧情/悬疑/惊悚/犯罪,美国,2007,72561\r\n换精计划,6.5,10822,剧情/喜剧/爱情,美国,2010,70343\r\n天地无伦,6.3,10821,剧情/情色,美国/荷兰/法国,2002,68172.3\r\n情迷六月花,7.6,10814,剧情/情色/传记,美国,1990,82186.4\r\n贝隆夫人,7.7,10813,剧情/歌舞/传记,美国,1996,83260.1\r\n星际牛仔：天国之门 カウボーイビバップ 天国,8.9,10809,剧情/喜剧/动作/科幻/动画/惊悚/犯罪,日本/美国,2001,96200.1\r\n假期历险记,7.1,10799,喜剧/家庭/冒险,美国,2015,76672.9\r\n另一个地球,7.3,10796,剧情/科幻,美国,2011,78810.8\r\n黄飞鸿之四：王者之风 黃飛鴻之四王者之,6.9,10793,动作/武侠/古装,中国大陆/香港,1993,74471.7\r\n樱桃的滋味,7.9,10792,剧情,法国/伊朗,1997,85256.8\r\n预告犯 予告,7.2,10783,悬疑,日本,2015,77637.6\r\n山水情,9.2,10781,动画/短片,中国大陆,1905,99185.2\r\n永远的三丁目的夕阳2 ALWAY,8.7,10774,剧情,日本,2007,93733.8\r\n桂河大桥,8.2,10760,剧情/历史/战争,英国/美国,1957,88232\r\n李碧华鬼魅系列：迷离夜 李碧華鬼魅系列：迷離,6.6,10760,恐怖,香港,2013,71016\r\n漂亮朋友,5.9,10753,剧情,英国/意大利,2012,63442.7\r\n丹麦诗人,8.4,10751,爱情/动画/短片,加拿大/挪威,2006,90308.4\r\n蛋炒饭,6.8,10751,剧情/喜剧,中国大陆,2011,73106.8\r\n室友,5.9,10742,剧情/惊悚,美国,2011,63377.8\r\n美国人,6.5,10727,剧情/惊悚/犯罪,美国,2010,69725.5\r\n卧虎,6,10713,剧情/惊悚/犯罪,中国大陆/香港,2006,64278\r\n基督再临,5.1,10711,动作/惊悚/奇幻,美国,2010,54626.1\r\n红色的梦,7.3,10709,动画/短片/家庭,美国,1905,78175.7\r\n晨曦中的女孩,8.3,10705,剧情,加拿大,2005,88851.5\r\n怪形,7.7,10699,科幻/悬疑/恐怖,美国,1982,82382.3\r\n你好，再见,8.1,10698,剧情/爱情/同性,美国,2008,86653.8\r\n从海底出击,9,10697,剧情/历史/战争/冒险,原西德,1981,96273\r\n我的父亲，我的儿子,9.1,10692,剧情/家庭,土耳其,2005,97297.2\r\n变脸,8.6,10688,剧情,中国大陆/香港,1997,91916.8\r\n桃色公寓,8.7,10683,剧情/喜剧/爱情,美国,1960,92942.1\r\n夺命手机,6.3,10682,动作/悬疑/惊悚/犯罪,美国,2009,67296.6\r\n茶馆,9.2,10678,剧情/历史,中国大陆,1905,98237.6\r\n车四十四,7.8,10677,剧情/短片,香港/美国,2001,83280.6\r\n预言者 ,7.6,10677,剧情/犯罪,法国/意大利,2009,81145.2\r\n鹅毛笔,7.4,10662,剧情/爱情/传记/历史,美国/德国/英国,2000,78898.8\r\n一本漫画闯天涯,6.4,10659,剧情/喜剧/动作,香港,1990,68217.6\r\n鬼娃娃花子 トイレの花子さ,6.2,10657,惊悚,日本,1995,66073.4\r\n唐朝豪放女,7.5,10632,剧情/动作/情色/古装,香港,1984,79740\r\n蜀山：新蜀山剑侠,6.9,10628,动作/恐怖/奇幻/冒险,香港,1983,73333.2\r\n杀人三步曲,7.6,10626,剧情/喜剧/动作/惊悚/犯罪,美国,1995,80757.6\r\n漫画威龙 漫畫威,6.6,10626,喜剧/动作,香港,1992,70131.6\r\n雨之城,8.2,10612,动画/短片/奇幻,日本,2011,87018.4\r\n死亡录像3：创世纪,5.7,10609,喜剧/惊悚/恐怖,西班牙,2012,60471.3\r\n寻找伴郎,7,10603,喜剧/爱情,美国,2009,74221\r\n超级英雄,6.3,10595,喜剧/动作/科幻/惊悚/奇幻,美国,2008,66748.5\r\n三只小猪,7.6,10591,喜剧/动画/短片/歌舞/家庭,美国,1933,80491.6\r\n马克思·佩恩,5.5,10581,剧情/动作/悬疑/惊悚/犯罪,美国/加拿大,2008,58195.5\r\n东京日和 東京日,8.4,10578,剧情,日本,1997,88855.2\r\n过界男女 過,5.6,10578,剧情/爱情,香港,2014,59236.8\r\n第四张画 第四張,7.6,10576,剧情,台湾,2010,80377.6\r\n浪漫鼠德佩罗,6.7,10573,剧情/动画/冒险,英国/美国,2008,70839.1\r\n电风扇和花,8.7,10567,动画/短片,美国,1905,91932.9\r\n阿尔菲,6.9,10565,剧情/喜剧,英国/美国,2004,72898.5\r\n漂浪青春,7.5,10561,剧情/同性,台湾,2008,79207.5\r\n大鸿米店,6.1,10558,剧情/情色,中国大陆,2004,64403.8\r\n盗走达芬奇,7.5,10553,喜剧/犯罪,波兰,2004,79147.5\r\n最后一支歌,7.1,10551,剧情/爱情,美国,2010,74912.1\r\n夺魂索,8,10550,悬疑/惊悚/犯罪,美国,1948,84400\r\n大厨,7.1,10548,喜剧,法国/西班牙,2012,74890.8\r\n江南,6.3,10546,剧情/动作,韩国,2015,66439.8\r\n反抗军,7.1,10536,剧情/动作/惊悚/历史/战争,美国,2008,74805.6\r\n新仙鹤神针 新仙鶴神,7,10531,喜剧/动作/武侠/古装,香港,1993,73717\r\n悬赏 懸,5.9,10521,剧情/喜剧/动作/犯罪,香港,2012,62073.9\r\n回归 Возвращени,8.8,10506,剧情/家庭,俄罗斯,2003,92452.8\r\n熊猫家族 パンダコパン,7.7,10504,动画/短片/家庭,日本,1972,80880.8\r\n变态假面 HK ,6.3,10503,喜剧,日本,2013,66168.9\r\n女伯爵,6.9,10499,剧情/惊悚/历史,法国/德国,2009,72443.1\r\n十月初五的月光,5.5,10476,剧情/爱情,中国大陆/香港,2015,57618\r\n高斯福庄园,7.8,10475,剧情/喜剧/悬疑,英国/美国/意大利,2001,81705\r\n11度青春之《泡芙小姐的金鱼,6.5,10467,动画,中国大陆,2010,68035.5\r\n单亲度假村,7.3,10461,喜剧,美国,2014,76365.3\r\n冬眠,8,10457,剧情,土耳其/法国/德国,2014,83656\r\n登陆之日,7.2,10448,剧情/爱情/战争,韩国,2011,75225.6\r\n二手狮王,8.5,10446,剧情/喜剧/家庭,美国,2003,88791\r\n十二星座离奇事件,3.2,10444,悬疑/惊悚/犯罪,中国大陆,2012,33420.8\r\n美人图,6.7,10439,爱情/情色,韩国,2008,69941.3\r\n爱的面包魂 愛的麵包,5.9,10437,剧情/喜剧/爱情,台湾,2012,61578.3\r\n灵幻夹克,7.3,10429,剧情/科幻/悬疑/惊悚,美国/德国,2005,76131.7\r\n金馆长对金馆长对金馆长,6.3,10429,喜剧/动作,韩国,2007,65702.7\r\n爱情梦幻号,5.7,10429,爱情,中国大陆/香港,1999,59445.3\r\n最后一站,7.6,10406,剧情/爱情/传记,德国/俄罗斯/英国,2010,79085.6\r\n阿基拉和拼字大赛,7.7,10395,剧情,美国,2006,80041.5\r\n对话的维度,9.1,10393,喜剧/动画/短片/奇幻,捷克斯洛伐克,1905,94576.3\r\n极速复仇,6.3,10387,剧情/动作/惊悚/犯罪,美国,2010,65438.1\r\n八星报喜 八星報,7.3,10379,喜剧,香港,1988,75766.7\r\n心中有鬼,5.6,10377,剧情/惊悚/恐怖,中国大陆,2007,58111.2\r\n疯狂农庄,7,10372,喜剧/动画/家庭,德国/美国,2006,72604\r\n不要嘲笑我们的性 人のセックスを笑う,6.8,10365,喜剧,日本,2008,70482\r\n游客,7.4,10364,剧情/家庭,瑞典/法国/挪威/丹麦,2014,76693.6\r\n高手们,6.3,10360,动作/犯罪,韩国,2014,65268\r\n永恒和一日 Μια αιωνιότητα και μι,8.9,10355,剧情,法国/意大利/希腊/德国,1998,92159.5\r\n波西·杰克逊与魔兽之海,5.6,10352,剧情/动作/奇幻/冒险,美国,2013,57971.2\r\n水性杨花,7.5,10351,喜剧/爱情,英国/加拿大,2008,77632.5\r\n奇谋妙计五福星,7.5,10334,喜剧/动作/犯罪,香港,1983,77505\r\n老夫子,5.9,10332,动作/动画,香港,2001,60958.8\r\n麒麟之翼 新参者剧场版 麒麟の翼 劇場版,7.1,10320,剧情/悬疑/犯罪,日本,2012,73272\r\n失控的陪审团,8,10319,剧情/惊悚,美国,2003,82552\r\n咒怨：白老妇 呪怨 白い,5.7,10318,恐怖,日本,2009,58812.6\r\n我的军中情人,7.7,10315,剧情/爱情/同性/战争,以色列,2002,79425.5\r\n破碎的拥抱,7.4,10313,剧情/爱情/惊悚,西班牙,2010,76316.2\r\n转转 転,8.5,10303,喜剧,日本,2007,87575.5\r\n秘密,7.9,10291,剧情/奇幻,日本,1999,81298.9\r\n杀手之王 殺手之,6.6,10289,喜剧/动作,香港,1998,67907.4\r\n鬼夫,7,10286,喜剧/爱情/惊悚,泰国,2013,72002\r\n大野狼和小绵羊的爱情 南方小羊牧,6.6,10285,剧情/爱情,台湾,2013,67881\r\n双城计中计,6.6,10282,剧情/喜剧/动作,中国大陆,2012,67861.2\r\n情色自拍,6,10280,喜剧/爱情,美国,2008,61680\r\n女校风波,6.3,10279,喜剧,美国,2008,64757.7\r\n东京塔 東京タワ,7.6,10271,剧情/爱情,日本,2005,78059.6\r\n致命切割,7.6,10271,悬疑/惊悚/犯罪,泰国,2009,78059.6\r\n罗马浴场 テルマエ・ロ,6.4,10261,喜剧/奇幻,日本,2012,65670.4\r\n现在和相爱的人在一起吗,6.4,10259,剧情/爱情,韩国,2007,65657.6\r\n天狗,8.4,10254,剧情,中国,2006,86133.6\r\n麦克法兰,8.3,10251,剧情/运动,美国,2015,85083.3\r\n公主保护计划,6.3,10250,剧情/喜剧/家庭/儿童,美国,2009,64575\r\n巨蟒与圣杯,8,10248,喜剧/冒险,英国,1975,81984\r\n守夜人 Ночной доз,7,10243,动作/奇幻,俄罗斯,2004,71701\r\n阴阳师2 陰陽,7.7,10237,动作/奇幻,日本,2003,78824.9\r\n茱莉娅的眼睛,6.8,10237,惊悚/恐怖,西班牙,2012,69611.6\r\n亚当斯一家的价值观,8.6,10235,喜剧/惊悚/家庭/奇幻,美国,1993,88021\r\n驱魔,7.5,10225,剧情/惊悚/恐怖/犯罪,美国,2005,76687.5\r\n超级经纪人 超級經理,4.9,10223,喜剧,香港/中国大陆,2013,50092.7\r\n既然青春留不住,4.5,10221,喜剧/爱情,中国大陆,2015,45994.5\r\n自由作家,8.5,10215,剧情/传记/犯罪,美国/德国,2007,86827.5\r\n柔道龙虎榜,7.1,10212,剧情,香港,2004,72505.2\r\n惊声尖叫,6.1,10211,悬疑/恐怖/犯罪,美国,2011,62287.1\r\n危险方法,6.6,10208,剧情/惊悚/传记,英国/德国/加拿大/瑞士,2011,67372.8\r\n阿育王,7.7,10205,剧情/动作/爱情/历史/战争,印度,2001,78578.5\r\n恐龙,7.3,10201,动画/冒险,美国,2000,74467.3\r\n睡在我上铺的兄弟,5.2,10192,剧情/爱情,中国大陆,2016,52998.4\r\n动物总动员,6.6,10190,喜剧/动画/家庭,德国,2011,67254\r\n呼啸山庄,7.7,10187,剧情/爱情,英国,2009,78439.9\r\n自杀房间 S,6.9,10184,剧情/同性,波兰Poland,2011,70269.6\r\n富贵逼人 富貴逼,7.4,10179,喜剧/家庭/奇幻,香港,1987,75324.6\r\n钱学森,6.7,10170,传记,中国大陆,2012,68139\r\n幸福59厘米之,7.1,10166,喜剧/爱情,中国大陆,2011,72178.6\r\n新鲜鳄梨酱,8,10153,动画/短片,美国,2012,81224\r\n小马虎,8,10152,动画/短片,中国大陆,1905,81216\r\n白发魔女2 白髮,6.6,10149,动作/爱情/奇幻,香港,1993,66983.4\r\n星月童话 星月童,7.7,10145,剧情/爱情/惊悚,香港,1999,78116.5\r\n白日美人,7.5,10141,剧情,法国/意大利,1967,76057.5\r\n割腕者的天堂,7.7,10134,剧情/爱情/奇幻,美国/克罗地亚/英国,2007,78031.8\r\n松林外,6.9,10131,剧情/犯罪,美国,2013,69903.9\r\n寻找成龙,3.7,10129,喜剧/家庭/儿童,中国大陆,2009,37477.3\r\n丛林有情狼,6.4,10128,喜剧/动画/家庭/冒险,美国/印度,2011,64819.2\r\n性爱宝典,8,10126,喜剧/情色,美国,1972,81008\r\n狗狗旅馆,7.5,10119,喜剧/家庭,美国/德国,2009,75892.5\r\n小鬼当家,6.8,10115,喜剧/家庭/犯罪,美国,2002,68782\r\n用心棒,8.8,10112,剧情/动作/惊悚/犯罪,日本,1961,88985.6\r\n恶老板,6.1,10112,喜剧,美国,2014,61683.2\r\n记忆中的玛妮 思い出のマーニ,7.6,10111,剧情/动画,日本,2014,76843.6\r\n女人本色,6.2,10106,剧情,香港,2007,62657.2\r\n藏品,6.7,10104,动作/惊悚/恐怖,美国,2012,67696.8\r\n阳光下的罪恶,8.3,10101,悬疑/惊悚/犯罪,英国,1982,83838.3\r\n神圣车行,7.6,10096,剧情/奇幻,法国,2012,76729.6\r\n蛇舌 蛇にピア,6.8,10088,惊悚,日本,2008,68598.4\r\n重力小丑 重力ピエ,8.1,10080,剧情,日本,2009,81648\r\n猪头逛大街,7.3,10078,喜剧/冒险,美国/加拿大/德国,2004,73569.4\r\n秘岸,6.1,10073,剧情,中国大陆,2009,61445.3\r\n三眼神童 悪魔島のプリンス 三つ目がと,8.3,10071,动画,日本,1985,83589.3\r\n地狱解剖,6.4,10069,剧情/情色,法国,2004,64441.6\r\n开心鬼撞鬼 開心鬼撞,6.9,10059,喜剧/奇幻,香港,1986,69407.1\r\n我的超级前女友,5.6,10059,剧情/喜剧/爱情/科幻/惊悚/犯罪,美国,2006,56330.4\r\n侠盗石川,6.8,10050,剧情/动作,日本,2011,68340\r\n印式英语,8.3,10043,剧情/喜剧/家庭,印度,2012,83356.9\r\n好朋友们,7.6,10033,剧情/犯罪,韩国,2014,76250.8\r\n暗夜逐仇,6.7,10032,剧情/动作/悬疑/惊悚/犯罪,美国,2015,67214.4\r\n42号,7.9,10026,剧情/传记/运动,美国,2013,79205.4\r\n致命拜访,6.6,10015,剧情/科幻/惊悚,美国/澳大利亚,2007,66099\r\n桥 Мос,8.8,10013,动作/战争,南斯拉夫,1969,88114.4\r\n向日葵,7.7,10011,剧情/爱情/家庭,香港/中国大陆/荷兰,2005,77084.7\r\n十三刺客 十三人の刺,7.7,9993,动作/古装,日本/英国,2010,76946.1\r\n豪门夜宴 豪門夜,6.7,9991,喜剧,香港,1991,66939.7\r\n险恶,6.4,9990,惊悚/恐怖,美国,2012,63936\r\n后宫：帝王之妾,5.5,9990,剧情/情色/历史,韩国,2012,54945\r\n虫不知,5.8,9987,爱情/歌舞/奇幻,香港,2005,57924.6\r\n惊声尖叫,6.4,9983,悬疑/恐怖/犯罪,美国,1997,63891.2\r\n超完美谋杀案,6.9,9977,惊悚/犯罪,美国,1998,68841.3\r\n龙之吻,6.5,9975,剧情/动作/惊悚/犯罪,法国/美国,2001,64837.5\r\n幸福的面包 しあわせのパ,7.6,9970,剧情,日本,2012,75772\r\n莫比乌斯,5.9,9966,剧情/惊悚/情色/家庭,韩国,2013,58799.4\r\n海瑟,7.2,9962,剧情/家庭,美国,2011,71726.4\r\n米其林情缘,7.1,9952,剧情,美国,2014,70659.2\r\n奥斯汀书会,7.4,9951,剧情/爱情,美国,2007,73637.4\r\n街角的小王子,6.4,9949,剧情,台湾,2010,63673.6\r\n春天不是读书天,7.9,9945,剧情/喜剧,美国,1986,78565.5\r\n春假,5.4,9944,剧情/犯罪,美国,2012,53697.6\r\n遗忘 遺,8.1,9943,剧情,台湾,2012,80538.3\r\n龙在少林 龍在少,6.7,9940,喜剧/动作/儿童,香港/台湾,1996,66598\r\n足迹,7.6,9939,剧情/悬疑/惊悚,美国,2007,75536.4\r\n人面兽心,6.5,9939,喜剧,美国,2001,64603.5\r\n胡桃夹子：魔境冒险,6.3,9936,动作/家庭/奇幻,英国/匈牙利,2012,62596.8\r\n我曾侍候过英国国王 O,8.3,9929,剧情/喜剧/爱情/战争,捷克/斯洛伐克,2006,82410.7\r\n上车走吧,7.9,9926,剧情,中国大陆,2000年,78415.4\r\n谁陷害了兔子罗杰,7.6,9926,喜剧/动画/悬疑/家庭/犯罪/奇幻,美国,1988,75437.6\r\n吉诺密欧与朱丽叶,6.9,9920,爱情/动画/歌舞/家庭/奇幻/冒险,英国/美国,2011,68448\r\n霍金传,8.7,9918,剧情/传记,英国,2004,86286.6\r\n大都会,8.8,9911,剧情/科幻/冒险,德国,1927,87216.8\r\n致命紫罗兰,5.4,9911,动作/科幻,美国,2006,53519.4\r\n一切尽失,7.6,9909,剧情/灾难,美国,2013,75308.4\r\n巴黎谍影,6.5,9873,动作/惊悚/犯罪,法国,2010,64174.5\r\n匿名者,7.9,9869,剧情/悬疑/惊悚,英国/德国,2011,77965.1\r\n从普拉达到纳达,6.2,9869,剧情/喜剧/爱情,美国/墨西哥,2011,61187.8\r\n千禧曼波,7.1,9862,剧情/爱情,台湾/法国,2001,70020.2\r\n冰雪奇缘：生日惊喜,8,9861,动画/短片/奇幻,美国,2015,78888\r\n爱情短片 ,8.8,9858,剧情/爱情,波兰,1988,86750.4\r\n谁和她睡过了,5.6,9857,喜剧,韩国,2006,55199.2\r\n冲浪企鹅,7.2,9856,喜剧/动画/家庭/运动,美国,2007,70963.2\r\n死亡飞车,6.2,9856,动作/科幻/惊悚,南非/德国,2010,61107.2\r\n大丈夫日记 大丈夫日,7.4,9853,喜剧/爱情,香港,1988,72912.2\r\n光荣之路,8.8,9836,剧情/战争,美国/西德,1957,86556.8\r\n不后悔,7.3,9834,剧情/爱情/同性,韩国,2006,71788.2\r\n空之境界 第六章 忘却录音 劇場版 空の境界 第六,8.1,9830,剧情/动作/动画/恐怖,日本,2008,79623\r\n我唾弃你的坟墓,6.1,9829,惊悚/恐怖/犯罪,美国,2013,59956.9\r\n百团大战,4.6,9826,历史/战争,中国大陆,2015,45199.6\r\n杀出狂人镇,6.1,9824,剧情/动作/科幻/悬疑/惊悚/恐怖,美国/阿联酋,2010,59926.4\r\n刀马旦 刀馬,7.6,9821,喜剧/动作,香港,1986,74639.6\r\n恋爱操作团,6.8,9817,喜剧/爱情,韩国,2010,66755.6\r\n我的老婆是大佬,6,9815,剧情/喜剧/动作,韩国/中国大陆,2006,58890\r\n迈阿密风云,5.6,9813,剧情/动作/惊悚/犯罪,美国/德国,2006,54952.8\r\n吓死鬼,7,9812,悬疑/惊悚/恐怖,泰国,2006,68684\r\n解构生活,7.4,9811,剧情/爱情/惊悚/家庭,美国/英国,2006,72601.4\r\n最后的维加斯,7.3,9808,喜剧,美国,2013,71598.4\r\n深藏不露,8.3,9807,短片,美国,2002,81398.1\r\n幻影追凶,6.1,9807,剧情/惊悚/犯罪,美国/法国/加拿大/英国,2012,59822.7\r\n雀圣 雀,5.8,9806,喜剧,香港,2005,56874.8\r\n食人鱼,4.4,9803,喜剧/惊悚/恐怖/灾难,美国,2012,43133.2\r\n大佬爱美丽,6.3,9799,喜剧/动作/同性,香港,2004,61733.7\r\n洗衣日,8.3,9797,喜剧/动画/短片,加拿大,1905,81315.1\r\n本命年,8.2,9776,剧情,中国大陆,1990,80163.2\r\n暴走神探,5.3,9762,喜剧/动作/爱情/悬疑,中国大陆/香港,2015,51738.6\r\n公司职员,6.5,9759,剧情/动作/犯罪,韩国,2012,63433.5\r\n巴黎烟云,7.9,9757,剧情/爱情/战争,英国/加拿大,2004,77080.3\r\n终极斗士3：赎,7.7,9755,剧情/动作/犯罪,美国,1905,75113.5\r\n伤,6.9,9753,剧情/奇幻,日本,2008,67295.7\r\n野蛮秘笈,4.8,9747,喜剧/动作/奇幻,中国大陆/香港,2006,46785.6\r\n妹妹恋人 僕は妹に恋をす,5.7,9745,爱情,日本,2007,55546.5\r\n永恒,7.3,9738,剧情,泰国,2010,71087.4\r\n暖,7.9,9719,剧情/爱情,中国大陆,2004,76780.1\r\n活色生香 ,7.7,9713,剧情/爱情/惊悚/情色,西班牙/法国,1997,74790.1\r\n想起了你,8.3,9711,动画/短片,美国,1905,80601.3\r\n百万巨鳄,5.1,9710,喜剧/惊悚/灾难,中国大陆,2012,49521\r\n惊声尖叫,6.3,9703,悬疑/恐怖/犯罪,美国,2000,61128.9\r\n双重赔偿,8.5,9700,惊悚/犯罪/黑色电影,美国,1944,82450\r\n亲密治疗,7.5,9698,剧情,美国,2012,72735\r\n甜蜜十一月,7.2,9698,剧情/爱情,美国,2001,69825.6\r\n关于史蒂夫的一切,6.4,9696,喜剧,美国,2009,62054.4\r\n超时空要爱,7.1,9695,喜剧/动作/犯罪/奇幻,香港,1998,68834.5\r\n夺帅 奪,5.9,9695,动作/犯罪,香港,2008,57200.5\r\n埃及艳后的任务 As,7.2,9693,喜剧/家庭/奇幻/冒险,法国/德国,2002,69789.6\r\n骨碎龙传说,7.7,9688,动画/短片/奇幻,美国,2010,74597.6\r\n月亮上的男人,7.8,9686,剧情/喜剧/传记,英国/德国/日本/美国,1999,75550.8\r\n最佳女婿,6.4,9681,喜剧,香港,1988,61958.4\r\n青少年,6.8,9660,剧情/喜剧,美国,2011,65688\r\n阿修罗 アシュ,8,9651,动画/恐怖/历史,日本,2012,77208\r\n鬼伎回忆录 インプリント　～ぼっけえ、きょうてえ,7.2,9645,恐怖,美国/日本,2006,69444\r\n致命礼物,6.7,9642,悬疑/惊悚,澳大利亚/美国/中国大陆,2015,64601.4\r\n三十极夜,6.3,9639,惊悚/恐怖,美国/新西兰,2007,60725.7\r\n超级妈妈,6.8,9637,喜剧/动作/犯罪,美国/德国,2000,65531.6\r\n拯救小兔,6.6,9634,喜剧/动画/家庭,美国,2011,63584.4\r\n危楼愚夫 Дура,8.5,9626,剧情,俄罗斯,2014,81821\r\n灵魂冲浪人,8.2,9625,剧情/传记/运动,美国,2011,78925\r\n邮差,8.7,9619,剧情/喜剧/爱情/传记,意大利/法国/比利时,1994,83685.3\r\n无价之宝,3.7,9614,喜剧,中国大陆/香港,2011,35571.8\r\n爆裂刑警,7.7,9606,动作/爱情/犯罪,香港,1999,73966.2\r\n李可乐寻人记,5.9,9604,喜剧/爱情,中国大陆,2014,56663.6\r\n鲁邦三世：卡里奥斯特罗城 ルパン三世 カリオストロ,8,9598,爱情/动画/悬疑/犯罪/冒险,日本,1979,76784\r\n红鳉鱼 赤めだ,9.1,9593,剧情/传记,日本,2015,87296.3\r\n黄真伊,6.1,9590,剧情/爱情/传记/历史,韩国,2007,58499\r\n企鹅帮圣诞恶搞历险记,8.5,9583,喜剧/动画/短片,美国,2005,81455.5\r\n马拉松,8.2,9583,剧情,韩国,2005,78580.6\r\n11度青春之《李雷和韩梅,5.7,9583,短片,中国大陆,2010,54623.1\r\n机器人9号短,7.8,9571,动画/惊悚/短片/奇幻,美国,1905,74653.8\r\n魔屋,6.6,9568,剧情/惊悚/犯罪,美国,2009,63148.8\r\n时光驻留,8.1,9567,剧情/同性,法国,2005,77492.7\r\n电影,6.3,9560,喜剧,美国,2013,60228\r\n极度恐慌,7.6,9553,剧情/科幻/惊悚/灾难,美国,1995,72602.8\r\n新丧尸出笼,6.4,9553,惊悚/恐怖,美国,2008,61139.2\r\n完美无瑕,7.5,9536,剧情/惊悚/犯罪,英国/卢森堡,2007,71520\r\n双龙出手,6.5,9531,剧情/动作/犯罪,美国,2013,61951.5\r\n一公升的眼泪 1リットル,7.8,9527,剧情,日本,2005,74310.6\r\n杀戮都市,6.7,9525,动作,日本,2011,63817.5\r\n10,7,9514,喜剧/家庭,美国/英国,2000,66598\r\n饮食男女-好远又好,5.4,9493,剧情/喜剧/爱情,中国大陆/台湾,2012,51262.2\r\n巴黎假期,5.6,9491,喜剧/爱情,中国大陆/香港,2015,53149.6\r\n最终幻想,6.8,9484,动作/科幻/动画/惊悚/奇幻/冒险,美国/日本,2001,64491.2\r\n拯救大明星,5.8,9483,喜剧/动画/家庭/奇幻/冒险,英国/美国,2014,55001.4\r\n小公主,8.6,9481,剧情/奇幻,美国,1995,81536.6\r\n无声言证,8,9481,悬疑/惊悚/犯罪,俄罗斯/英国/德国,1994,75848\r\n不能说的夏天 寒蟬效,6.9,9472,剧情,台湾/中国大陆,2014,65356.8\r\n潜伏,5.9,9472,恐怖,美国/加拿大,2015,55884.8\r\n食梦者 バクマン,7.8,9469,喜剧,日本,2015,73858.2\r\n大奥,7.6,9451,历史,日本,2006,71827.6\r\n神探飞机头,7,9444,喜剧/动作/悬疑/冒险,美国,1995,66108\r\n上海正午2：上海骑,6.4,9435,喜剧/动作/西部/冒险,美国/英国/捷克,2003,60384\r\n史崔特先生的故事,8.6,9430,剧情/传记/冒险,法国/英国/美国,1999,81098\r\n热血高校3 クロ,4.8,9430,剧情/动作,日本,2014,45264\r\n仪式,6.7,9422,剧情/惊悚/恐怖,美国/匈牙利/意大利,2011,63127.4\r\n美人鱼,7.4,9421,喜剧/爱情/奇幻,美国,1984,69715.4\r\n芳心终结者,6.9,9421,喜剧/爱情,法国/摩纳哥,2010,65004.9\r\n两个只能活一个,7.8,9417,剧情/犯罪,香港,1997,73452.6\r\n驯龙骑士,5.8,9409,动画/冒险,西班牙,2014,54572.2\r\n禁运品,6.5,9405,剧情/动作/惊悚/犯罪,美国/英国/法国,2012,61132.5\r\n真人版 乱马1/,6.1,9405,喜剧/爱情/奇幻,日本,2011,57370.5\r\n所有美好的东西,6.8,9400,剧情/悬疑/惊悚,美国,2010,63920\r\n异种,6.4,9399,动作/科幻/恐怖,美国,1995,60153.6\r\n变相黑侠 K-20 怪,6.4,9397,剧情/动作/犯罪/冒险,日本,2010,60140.8\r\n太阳之歌 タイヨウのう,7.8,9396,剧情/爱情,日本,2006,73288.8\r\n惩罚者,6.4,9392,剧情/动作/惊悚/犯罪,美国/德国,2004,60108.8\r\n猫：看见死亡的双眼,6.1,9389,惊悚/恐怖,韩国,2011,57272.9\r\n佐罗,8,9382,喜剧/动作/西部/冒险,法国/意大利,1975,75056\r\n缺席的人,8.3,9369,剧情/犯罪,英国/美国,2001,77762.7\r\n大师,7,9368,剧情,美国,2012,65576\r\n小飞侠：幻梦启航,6.2,9359,奇幻/冒险,美国/英国/澳大利亚,2015,58025.8\r\n魂断威尼斯,8.2,9358,剧情/同性,意大利/法国,1971,76735.6\r\n新猛鬼街,6,9350,悬疑/惊悚/恐怖,美国,2010,56100\r\n新扎师兄 新紮師,6.5,9348,动作,香港,2004,60762\r\n龙兄虎弟 龍兄虎,6.9,9347,喜剧/动作/冒险,香港/南斯拉夫,1987,64494.3\r\n悲梦,7,9325,剧情/爱情/悬疑/奇幻,韩国,2008,65275\r\n龙争虎斗,8.1,9321,剧情/动作/惊悚/犯罪,美国/香港,1973,75500.1\r\n夏日之王,7.4,9315,剧情/喜剧,美国,2013,68931\r\n法国中尉的女人,7.9,9312,剧情/爱情,英国,1981,73564.8\r\n少女哪吒,6.5,9312,剧情,中国大陆,2015,60528\r\n不羁夜,7.4,9305,剧情/情色,美国,1997,68857\r\n嫁个100,4.1,9299,喜剧/爱情,中国大陆/香港,2012,38125.9\r\n离魂异客,8.2,9292,剧情/西部/奇幻,美国/德国/日本,1995,76194.4\r\n51号,6.8,9291,喜剧/科幻/动画/家庭/奇幻/冒险,西班牙/英国/美国,2009,63178.8\r\n海南鸡饭,7.2,9284,剧情/喜剧/同性/家庭,新加坡/香港/澳大利亚,2004,66844.8\r\n超级无敌掌门狗：引鹅入室,8.8,9276,喜剧/动画/短片,英国,1993,81628.8\r\n海洋深处,7.2,9271,剧情/动作/冒险,美国,2015,66751.2\r\n花,6.7,9256,剧情/爱情/情色,法国/中国大陆,2011,62015.2\r\n诡镇,3.5,9254,剧情/悬疑/惊悚,中国大陆,2014,32389\r\n致命弯道,6.4,9246,动作/惊悚/恐怖,美国,2007,59174.4\r\n破碎之花,7.8,9243,剧情/喜剧/悬疑,美国/法国,2005,72095.4\r\n哈布洛先生,7.8,9238,动画/短片/奇幻,卢森堡/法国,2013,72056.4\r\n花腰新娘,6.8,9232,爱情,中国大陆,2005,62777.6\r\n长大,7.9,9227,喜剧/爱情/奇幻,美国,1988,72893.3\r\n马路天使,8.5,9224,剧情/喜剧/歌舞,中国,1905,78404\r\n过年,8.4,9221,剧情/家庭,中国大陆,1991,77456.4\r\n鬼来电,6.6,9211,悬疑/恐怖,日本,2005,60792.6\r\n狼人,5.7,9192,剧情/惊悚/恐怖,英国/美国,2010,52394.4\r\n连体阴,6.4,9188,剧情/惊悚/恐怖,泰国,2007,58803.2\r\n神奇海盗团,6.9,9186,喜剧/动画/家庭/冒险,英国/美国,2012,63383.4\r\n疯狂72,4.6,9181,喜剧,中国大陆,2014,42232.6\r\n帮帮我，爱神 幫幫我，愛,5.8,9177,剧情/情色,台湾,2008,53226.6\r\n台北飘雪,5.5,9166,剧情,中国大陆/日本/香港/台湾,2012,50413\r\n柳如是,6.8,9163,剧情/爱情/传记/古装,中国大陆,2012,62308.4\r\n五路追杀令,6.9,9160,剧情/动作/惊悚/犯罪,美国/英国/法国,2006,63204\r\n非常小特务,6.3,9155,喜剧/动作/科幻/家庭/冒险,美国,2001,57676.5\r\n跨国银行,6.4,9140,动作/悬疑/惊悚/犯罪,美国/德国/英国,2009,58496\r\n黑道快餐店 J&,8.3,9136,剧情/喜剧/犯罪,法国,2008,75828.8\r\n午夜守门人,7.3,9134,剧情/爱情/情色/犯罪,意大利,1974,66678.2\r\n奇迹 奇,7.6,9130,剧情/喜剧/动作/犯罪,香港,1989,69388\r\n傲慢与偏见,8.2,9128,剧情/爱情,美国,1940,74849.6\r\n霹雳五号,8.7,9123,喜剧/科幻/家庭,美国,1986,79370.1\r\n僵尸胡安,7.3,9120,喜剧/恐怖,西班牙/古巴,2011,66576\r\n与女人们的对话,8,9116,剧情/喜剧/爱情,英国/美国,2005,72928\r\n军鸡 軍,6.1,9116,动作,香港/日本,2007,55607.6\r\n夏威夷男孩 ホノカアボー,8.1,9108,剧情,日本,2009,73774.8\r\n窈窕奶爸,7.7,9104,剧情/喜剧/家庭,美国,1993,70100.8\r\n青春之旅 アオハライ,6.4,9100,爱情,日本,2014,58240\r\n硅谷传奇,7.6,9091,剧情/传记,美国,1999,69091.6\r\n非狐外传,3.2,9070,爱情/惊悚/奇幻/古装,中国大陆/香港,2014,29024\r\n无主之地,8.5,9064,剧情/喜剧/战争,波黑/斯洛文尼亚/意大利/法国/英国/比利时,2001,77044\r\n年鉴计划,6.6,9056,科幻/惊悚,美国,2014,59769.6\r\n二流警探,6.1,9048,喜剧/动作/犯罪,美国,2010,55192.8\r\n最后的舞者,8,9040,剧情,澳大利亚,2009,72320\r\n漂亮妈妈,7.2,9037,剧情,中国大陆,2000,65066.4\r\n恋爱学分,6.7,9037,剧情/喜剧/爱情,英国/美国,2006,60547.9\r\n白幽灵传奇之绝命逃亡,4,9037,动作/古装,中国大陆/加拿大/美国,2015,36148\r\n少年黄飞鸿之铁马骝,7.4,9030,喜剧/动作/犯罪/武侠/古装,香港,1993,66822\r\n冥王星早餐,8.4,9026,剧情/喜剧,爱尔兰/英国,2005,75818.4\r\n双面情人,7.6,9020,剧情/喜剧/爱情,英国/美国,1998,68552\r\n偷偷爱你 偷偷愛,7.9,9017,剧情/喜剧/爱情,香港,1996,71234.3\r\n西蒙妮,7.2,9013,剧情/喜剧/科幻/奇幻,美国,2002,64893.6\r\n幻想之爱,7.6,9009,剧情/爱情/同性,加拿大,2010,68468.4\r\n狗脸的岁月,8.5,9007,剧情/喜剧,瑞典,1985,76559.5\r\n密爱,6.2,9001,剧情/爱情/情色,韩国,2002,55806.2\r\n三十九级台阶,7.8,8999,悬疑/惊悚/犯罪,英国,1935,70192.2\r\n爆笑角斗士 勁抽福祿,6.4,8996,喜剧,香港,2011,57574.4\r\n六天七夜,6.7,8994,动作/爱情/冒险,美国,1998,60259.8\r\n纯情漫画,7.3,8992,爱情,韩国,2008,65641.6\r\n超级英雄,6.7,8992,剧情/喜剧/动作,美国,2011,60246.4\r\n开心鬼放暑假 開心鬼放暑,7,8989,喜剧/奇幻,香港,1985,62923\r\n进化危机,6.7,8985,喜剧/科幻,美国,2001,60199.5\r\n身后事,6.9,8977,剧情/悬疑/惊悚,美国,2009,61941.3\r\n神探驾到 浮華,4.3,8977,喜剧/爱情/悬疑/奇幻,香港/中国大陆,2015,38601.1\r\n开心魔法,4.3,8974,喜剧/奇幻,中国大陆/香港,2011,38588.2\r\n伊万的童年 Иваново детст,8.6,8972,剧情/战争,苏联,1962,77159.2\r\n怎么又是你,6.5,8971,喜剧,美国,2010,58311.5\r\n监狱风云2：逃犯 監獄風雲,7.5,8967,动作,香港,1991,67252.5\r\n郁金香芳芳,6.6,8961,喜剧/爱情/冒险,法国,2004,59142.6\r\n死路,7.2,8956,喜剧/悬疑/惊悚/恐怖,法国/美国,2003,64483.2\r\n鬼域,6.4,8952,悬疑/惊悚/恐怖/奇幻,香港/泰国,2006,57292.8\r\n梦宅诡影,6.3,8950,剧情/悬疑/惊悚,美国,2011,56385\r\n兵临城下之决战要塞 Брестская Крепос,7.6,8947,剧情/动作/历史/战争,俄罗斯/白俄罗斯,2012,67997.2\r\n复仇者之死 復仇者之,6.9,8935,惊悚,香港,2010,61651.5\r\n你和我 キミとボ,8.3,8933,剧情,日本,2011,74143.9\r\n好命先生,4,8931,喜剧/爱情,中国大陆,2014,35724\r\n魔力女战士,5.6,8928,动作/科幻/冒险,美国,2005,49996.8\r\n花魁杜十娘 Mi,5.2,8922,喜剧,香港,2003,46394.4\r\n轻轻摇晃,7.2,8919,剧情/同性,英国,2014,64216.8\r\n唇唇欲动,3.7,8909,喜剧/爱情,中国大陆,2013,32963.3\r\n完美盗贼,7.6,8908,剧情/喜剧/爱情/犯罪,美国,2001,67700.8\r\n多罗罗 どろ,6.8,8902,动作/恐怖/奇幻,日本,2007,60533.6\r\n警察游戏,6.5,8897,喜剧/动作,美国,2014,57830.5\r\n紧急救命 新春特别篇 コード・ブルー -ドクターヘリ緊急救命- ,8.2,8896,剧情,日本,2009,72947.2\r\n奎迪,7.4,8894,剧情/运动,美国,2015,65815.6\r\n在某处,6.5,8893,剧情,美国/英国/意大利/日本,2010,57804.5\r\n大空港,8.4,8879,剧情/喜剧,日本,2013,74583.6\r\n困惑的浪漫,6.2,8878,恐怖/情色,西德,1905,55043.6\r\n天下第二,6,8877,剧情/喜剧/动作/古装,中国大陆,2007,53262\r\n鲁邦三世 ルパン三,6.1,8866,动作,日本,2014,54082.6\r\n盲视,7.4,8863,剧情,挪威,2014,65586.2\r\n咏春小龙,3,8861,剧情/动作,中国大陆,2013,26583\r\n温柔杀戮,6,8859,剧情/惊悚/犯罪,美国,2012,53154\r\n全城高考,5.1,8854,剧情,中国大陆,2013,45155.4\r\n人皮客栈,5.4,8853,恐怖,美国,2011,47806.2\r\n战舰波将金号 Броненосец Потёмк,8.5,8835,剧情/历史/战争,前苏联,1925,75097.5\r\n拜见罗宾逊一家,7.6,8835,喜剧/科幻/动画/家庭/冒险,美国,2007,67146\r\n监狱生活,7.7,8834,剧情/犯罪,美国,2008,68021.8\r\n我们的精神角落,7.4,8821,剧情/短片,中国大陆,2016,65275.4\r\n新流星蝴蝶剑,6.8,8819,爱情/武侠/古装,香港/台湾,1993,59969.2\r\n小胖妞,8.2,8814,动作/动画/短片,中国大陆,2010,72274.8\r\n钢铁巨人,8.5,8813,喜剧/科幻/动画/冒险,美国,1999,74910.5\r\n瓶中信,7.5,8809,剧情/爱情,美国,1999,66067.5\r\n爸爸的好儿子,6.8,8792,喜剧,美国,2012,59785.6\r\n梵高：画语人生,8.6,8790,剧情,英国,2010,75594\r\n蔚蓝深海,7.1,8789,剧情,英国,2011,62401.9\r\n动物园看守,6.3,8779,喜剧/爱情/家庭,美国,2011,55307.7\r\n王子与公主,8.6,8775,剧情/动画,法国,2000,75465\r\n黑色弥撒,6.4,8772,剧情/传记/犯罪,美国,2015,56140.8\r\n乡愁 Ностальги,8.9,8769,剧情,苏联/意大利,1983,78044.1\r\n浪人,7.5,8767,动作/惊悚/犯罪,美国/英国,1998,65752.5\r\n正午,8.3,8746,剧情/西部,美国,1952,72591.8\r\n冰封之地,6.3,8742,剧情/惊悚,美国,2013,55074.6\r\n夺命追踪,5.9,8742,剧情/悬疑/惊悚,美国,2013,51577.8\r\n出水芙蓉,5.1,8742,喜剧/运动,香港/中国大陆,2010,44584.2\r\n亚瑟和他的迷你王国,6.2,8741,动画,法国,2009,54194.2\r\n中毒,7.1,8740,剧情/爱情/悬疑/惊悚,韩国,2004,62054\r\n午宴之歌,8.6,8735,剧情,英国,2010,75121\r\n等到永远,7.1,8735,剧情/爱情,美国,2011,62018.5\r\n南茜的早晨,7.6,8727,动画/短片,中国大陆,1905,66325.2\r\n寒枝雀静,7.7,8725,剧情/喜剧,瑞典/德国/挪威/法国,2014,67182.5\r\n世界上最疼我的那个人去了,8.5,8719,剧情/家庭,中国大陆,2002,74111.5\r\n紫色,8.4,8713,剧情,美国,1985,73189.2\r\n爱情维修站,5.7,8707,剧情,中国大陆,2010,49629.9\r\n灰姑娘,6.3,8690,剧情/悬疑/惊悚/恐怖,韩国,2006,54747\r\n两个月亮,6.7,8688,恐怖,韩国,2012,58209.6\r\n人生访客,8,8679,剧情,美国,2007,69432\r\n穿越时空的思念 犬夜叉 時代を越える,8.3,8678,动作/爱情/动画/冒险,日本,2001,72027.4\r\n樱桃小丸子 真人版1 ちびまる子,8.4,8675,喜剧,日本,2006,72870\r\n女人们,6.9,8675,剧情/喜剧,美国,2008,59857.5\r\n来电惊魂,6,8674,惊悚/恐怖,美国,2006,52044\r\n不准掉头,8,8665,剧情/惊悚/犯罪,法国/美国,1997,69320\r\n恐怖分子 恐怖份,8.6,8660,剧情,台湾,1986,74476\r\n恐怖故事,6.8,8660,恐怖,韩国,2012,58888\r\n妙想天开,8.2,8659,剧情/科幻/奇幻,英国,1985,71003.8\r\n冷冻,6.2,8650,剧情/惊悚/灾难,美国,2010,53630\r\n前女友们的幽灵,6.1,8644,喜剧/爱情/奇幻,美国,2009,52728.4\r\n雏妓,7.4,8634,剧情/情色,韩国,1998,63891.6\r\n我不是王毛,7.7,8627,喜剧/战争,中国大陆,2016,66427.9\r\n破坏者,5.6,8627,剧情/动作/惊悚/犯罪,美国,2015,48311.2\r\n玩大的,7.4,8626,剧情/短片,中国大陆,2011,63832.4\r\n错爱 塚,6,8621,恐怖,香港,2007,51726\r\n笨人晚宴,6.8,8620,喜剧,美国,2010,58616\r\n到阜阳六百里,7.8,8618,剧情,中国大陆/台湾,2011,67220.4\r\n王者之剑,5.3,8615,动作/奇幻/冒险,美国,2012,45659.5\r\n希区柯克,6.7,8614,剧情/传记,美国,2012,57713.8\r\n夏日时光机 サマータイムマシン・ブル,8,8613,喜剧/科幻,日本,2005,68904\r\n天下霸道之剑 犬夜叉 天下覇道,8.3,8609,动画/奇幻,日本,2003,71454.7\r\n厄运葬礼,7.8,8600,动画/短片,英国,2008,67080\r\n谁都有秘密,6.4,8599,喜剧/爱情,韩国,2004,55033.6\r\n镜子面具,7.5,8590,剧情/家庭/奇幻/冒险,英国/美国,2005,64425\r\n无懈可击,7.6,8589,悬疑/惊悚,美国,1999,65276.4\r\n厨房,6.7,8586,剧情/爱情,韩国,2009,57526.2\r\n迈克尔·克莱顿,7.1,8581,剧情/悬疑/惊悚/犯罪,美国,2007,60925.1\r\nSPEC：结 前篇 劇場版,6.7,8577,剧情,日本,2013,57465.9\r\n末日侵袭,6.1,8574,动作/科幻/惊悚,英国/美国/南非/德国,2008,52301.4\r\n高跟鞋先生,5.2,8574,喜剧/爱情,中国大陆,2016,44584.8\r\n南海十三郎,8.9,8573,剧情/爱情/传记,香港,1997,76299.7\r\n暗恋99天 等,5.7,8573,喜剧/爱情,香港,2013,48866.1\r\n杀手乔,6.5,8569,惊悚/犯罪,美国,2012,55698.5\r\n小小的家 小さいおう,8.1,8568,剧情/爱情/家庭/传记/历史,日本,2014,69400.8\r\n一球成名2：梦想成,6.2,8559,剧情/运动,英国,2007,53065.8\r\n鸡皮疙瘩,6.1,8558,喜剧/奇幻/冒险,美国/澳大利亚,2015,52203.8\r\n攻壳机动队2.0 攻,8.9,8554,剧情/动作/科幻/动画/犯罪,日本,2008,76130.6\r\n韩公主,7.5,8552,剧情,韩国,2013,64140\r\n世界上最伟大的父亲,7.4,8551,剧情/喜剧,美国,2009,63277.4\r\n绝命派对 絕命派,5.1,8544,悬疑/惊悚/恐怖/犯罪,台湾,2009,43574.4\r\n偷心贼,6.3,8540,喜剧/爱情/犯罪,韩国,2013,53802\r\n绝命反击,6.5,8536,动作/悬疑/惊悚/犯罪/冒险,美国,2010,55484\r\n新难兄难弟,7.9,8531,剧情/喜剧,香港,1993,67394.9\r\n理查二世,8.7,8529,剧情/历史,英国,2012,74202.3\r\n臭屁王 蠟筆小小,7.3,8529,剧情/喜剧/动作,香港/台湾,1995,62261.7\r\n卡比利亚之夜,9,8527,剧情/爱情,意大利/法国,1957,76743\r\n大眼睛,6.9,8522,剧情/传记,美国,2014,58801.8\r\n特务风云,7.3,8519,剧情/惊悚,美国,2006,62188.7\r\n惩罚者2：战争特,6.6,8512,剧情/动作/惊悚/犯罪,美国/加拿大/德国,2008,56179.2\r\n8号房,8.2,8507,科幻/短片,英国/波兰,2013,69757.4\r\n欧罗巴报告,6.8,8499,科幻/惊悚,美国,2013,57793.2\r\n小亲亲 小親,6.8,8497,喜剧/爱情,香港,2000,57779.6\r\n律政英雄,8.1,8493,剧情,日本,2007,68793.3\r\n爱情故事,8,8493,剧情/爱情,美国,1970,67944\r\n庸才 ヒミ,7.5,8493,剧情,日本,2012,63697.5\r\n藏獒多吉,7.7,8492,动画,中国大陆/日本,2011,65388.4\r\n兄弟情人,7.2,8490,剧情/同性,巴西,2009,61128\r\n优雅的谎言,7.5,8488,剧情/悬疑,韩国,2014,63660\r\n火影忍者剧场版：大活剧！雪姬忍法帖！ 劇場版 NARUTO -ナルト- 大,6.8,8480,喜剧/动作/动画/冒险,日本,2004,57664\r\n2012,4.7,8478,动作/灾难,美国,2008,39846.6\r\n怒火青春,8.2,8477,剧情/犯罪,法国,1995,69511.4\r\n不善之举,5,8476,喜剧,美国,2014,42380\r\n阿黛尔·雨果的故事 ,8.2,8473,剧情/传记/历史,法国,1975,69478.6\r\n你的老鼠朋友,8.2,8463,动画/短片/家庭,美国,2007,69396.6\r\n扎职 紮,6.1,8463,犯罪,香港,2012-11-15（中国香港）,51624.3\r\n同窗,6.6,8460,剧情/动作,韩国,2013,55836\r\n极地恋人 ,8.4,8450,剧情/爱情/悬疑,西班牙/法国,1998,70980\r\n再生号 再生,6.6,8447,剧情/奇幻,香港,2009,55750.2\r\n缘，妙不可言,5.3,8442,剧情/爱情,中国大陆/香港,1999,44742.6\r\n日瓦戈医生,8.5,8435,剧情/爱情/战争,美国/意大利,1965,71697.5\r\n痛症,7,8435,剧情/爱情,韩国,2011,59045\r\n第三类接触,7.3,8427,剧情/科幻/冒险,美国,1977,61517.1\r\n温柔地杀我,6.3,8421,剧情/爱情/悬疑/惊悚/情色,美国/英国,2002,53052.3\r\n转轮手枪,7.1,8419,剧情/悬疑/惊悚/犯罪,法国/英国,2005,59774.9\r\n神偷艳贼,6.2,8416,喜剧/犯罪,美国,2012,52179.2\r\n国王与小鸟,8.6,8401,爱情/动画/奇幻,法国,1980,72248.6\r\n江湖论剑实录,5.5,8395,喜剧/古装,中国大陆,2014,46172.5\r\n长腿叔叔,6.7,8391,剧情/喜剧/爱情,韩国,2005,56219.7\r\n食物 ,9.1,8390,动画/短片/奇幻,捷克斯洛伐克/英国,1993,76349\r\n鬼玩人,6.4,8387,惊悚/恐怖,美国,2013,53676.8\r\n巴里·林登,8.6,8382,剧情/爱情/战争,美国/英国,1975,72085.2\r\n我的左脚,8.4,8380,剧情/传记,爱尔兰/英国,1989,70392\r\n红犬历险记,8.4,8376,剧情/喜剧,澳大利亚,2011,70358.4\r\n虎！虎！虎！,8.1,8373,剧情/动作/历史/战争/冒险,美国/日本,1970,67821.3\r\n花木兰,6.4,8372,喜剧/动画/家庭,美国,2004,53580.8\r\n2077日本锁国 ベクシ,7.2,8370,动作/科幻/动画,日本,2007,60264\r\n一公升的眼泪追忆篇 １リットルの涙　特別編～追憶,7.8,8368,剧情/爱情,日本,2007,65270.4\r\n爱情公寓,7.5,8361,剧情/爱情,乌克兰,2007,62707.5\r\n英雄之战,3,8359,动作/爱情,中国大陆,2014,25077\r\n我为相亲狂,4.1,8358,喜剧/爱情,中国大陆,2013,34267.8\r\n新古惑仔之少年激斗篇,6.5,8357,剧情/动作,香港,1998,54320.5\r\n史努比：花生大电影,7.3,8354,喜剧/动画/冒险,美国,2015,60984.2\r\n女高怪谈2：交换日,6.4,8354,剧情/爱情/恐怖,韩国,1999,53465.6\r\n我是球迷,5.8,8354,剧情/短片,中国大陆,2013,48453.2\r\n针尖上的天使 針尖上的天,7.5,8348,恐怖/短片,台湾,2009,62610\r\n绝代双骄 絕代雙,6.3,8348,喜剧/武侠/古装,香港,1992,52592.4\r\n威尼斯商人,7.6,8334,剧情,美国/意大利/卢森堡/英国,2004,63338.4\r\n跳出去,5.3,8332,剧情/喜剧,香港/中国,2009,44159.6\r\n熊的故事,8.4,8329,剧情/动画/短片/冒险,智利,2014,69963.6\r\n超人,7.5,8322,动作/科幻/惊悚/冒险,英国/美国,1978,62415\r\n美国战队：世界警察,7.8,8317,喜剧/动作/动画/冒险,美国/德国,2004,64872.6\r\n天外来菌,6.8,8316,剧情/科幻/灾难,美国,2008,56548.8\r\n开罗紫玫瑰,8.7,8311,喜剧/爱情/奇幻,美国,1985,72305.7\r\n贱女孩,5.8,8311,喜剧,美国,1905,48203.8\r\n火车怪客,7.8,8307,惊悚/犯罪/黑色电影,美国,1951,64794.6\r\n奥罗拉公主,7.2,8306,剧情/悬疑/犯罪,韩国,2005,59803.2\r\n少年不戴花,7.2,8294,剧情/同性,台湾,1905,59716.8\r\n永久居留,7.4,8293,剧情/爱情/同性,香港,2009,61368.2\r\n五年之约,6.8,8291,喜剧/爱情,美国,2012,56378.8\r\n街头霸王: 春丽,4.6,8288,动作/惊悚/犯罪/奇幻,加拿大/英国/美国/日本,2009,38124.8\r\n切腹,9.1,8283,剧情,日本,1962,75375.3\r\n地心营救,7.3,8283,剧情/传记/历史,美国/智利,2016,60465.9\r\n安娜贝尔,5.4,8281,恐怖,美国,2014,44717.4\r\n像男人一样思考,6.8,8263,喜剧/爱情,美国,2012,56188.4\r\n花与蛇 花と,6.4,8262,剧情/惊悚/情色,日本,2004,52876.8\r\n萤之光 电影版 ホタルノヒ,6.4,8262,剧情,日本,2012,52876.8\r\n鲁冰花 魯冰,8.8,8260,剧情/家庭,台湾,1989,72688\r\n飙风战警,6.7,8256,喜剧/动作/科幻/西部,美国,1999,55315.2\r\n笑之大学 笑の大,8.6,8250,剧情/喜剧,日本,2004,70950\r\n奇趣马戏团：吸血鬼的助手,6.1,8249,动作/惊悚/奇幻/冒险,美国,2009,50318.9\r\n如果我留下,6.2,8233,剧情/爱情,美国,2014,51044.6\r\n一夜未了情,5.1,8230,剧情/爱情,中国大陆,2011,41973\r\n十加十,7.3,8226,剧情,台湾,2011,60049.8\r\n狗牙 Κυνόδον,7.6,8223,剧情,希腊,2009,62494.8\r\n贱精先生 賤精先,6.3,8222,喜剧/爱情/奇幻,香港,2002,51798.6\r\n记忆传授人,6.5,8219,剧情/科幻,美国,2014,53423.5\r\n真情假爱,6.4,8219,喜剧/爱情/犯罪,美国,2003,52601.6\r\n过年好,5,8214,喜剧,中国大陆,2016,41070\r\n爱我生活,7.2,8213,爱情/同性,日本,2006,59133.6\r\n富贵吉娃娃,6.9,8207,剧情/喜剧/爱情/家庭/冒险,美国,2008,56628.3\r\n猫的梦想,8.1,8205,动画/短片,法国,1905,66460.5\r\n某人的目光 だれかのまなざ,8.3,8204,动画/短片,日本,2013,68093.2\r\n穿越苍穹,7.8,8204,剧情/爱情/歌舞/冒险,美国,2007,63991.2\r\n唐山大兄,7.7,8203,剧情/动作/惊悚/犯罪,香港,1971,63163.1\r\n风云决,6,8200,动作/动画/武侠,中国/香港,2008,49200\r\n幸运符,6.6,8189,剧情/爱情,美国,2012,54047.4\r\n非法入侵,5.7,8189,剧情/惊悚/犯罪,美国,2011,46677.3\r\n亚瑟·圣诞,7.5,8188,剧情/喜剧/动画,英国/美国,2011,61410\r\n乳房与月亮,7.2,8185,剧情/喜剧/情色,西班牙/法国,1994,58932\r\n电锯女仆,8.2,8179,动画,日本,2007,67067.8\r\n贴身情人,6.8,8173,喜剧/爱情,美国/澳大利亚,2002,55576.4\r\n杀死比尔整个血腥事件,8.4,8172,动作/爱情/动画/犯罪/冒险/武侠/黑色电影,美国,2012,68644.8\r\n蒙特卡洛,6.4,8162,喜剧/爱情/冒险,美国,2011,52236.8\r\n生活大爆炸 未播出首,6.3,8161,喜剧,美国,2006,51414.3\r\n花 フラワー,7.6,8159,剧情/家庭,日本,2010,62008.4\r\n奋斗的乔伊,6.6,8157,剧情/喜剧/传记,美国,2015,53836.2\r\n骇战 BBS鄉,6.1,8155,爱情/科幻/悬疑,台湾,2013,49745.5\r\n新年前夜,6.5,8148,喜剧/爱情,美国,2011,52962\r\n终极快递,6.5,8143,喜剧,法国,2011,52929.5\r\n有情饮水饱,6.3,8142,喜剧/爱情,香港,2001,51294.6\r\n假如我是武松,8.2,8135,动画/短片,中国大陆,1905,66707\r\n盂兰神功 盂蘭神,5.4,8129,惊悚/恐怖,香港/马来西亚,2014,43896.6\r\n工厂女孩,7.7,8127,剧情/传记,美国,2006,62577.9\r\n这一刻，爱吧2013 這,6.8,8126,爱情/短片,台湾,2013,55256.8\r\n地狱为何恶劣 地獄でなぜ悪,7.5,8118,剧情,日本,2013,60885\r\n渴望 渇き,6.3,8118,悬疑,日本,2014,51143.4\r\n野马,7.9,8117,剧情,土耳其/法国/卡塔尔/德国,2015,64124.3\r\n笨贼妙探,7.5,8113,喜剧/动作/惊悚/犯罪,美国/德国,1999,60847.5\r\n情敌蜜月,4.7,8112,喜剧/爱情,中国大陆,2015,38126.4\r\n危险性游戏,6.6,8111,剧情/爱情/惊悚,美国,1999,53532.6\r\n四兄弟,7.1,8110,剧情/动作/悬疑/惊悚/犯罪,美国,2005,57581\r\n玉女添丁,6,8107,喜剧,香港,2001,48642\r\n误杀瞒天记,8.1,8102,剧情/悬疑/惊悚,印度,2015,65626.2\r\n半斤八两,8.2,8098,喜剧,香港,1976,66403.6\r\n奇怪的国家——日本,8.4,8095,动画/短片,日本,1905,67998\r\n星河战队3：掠夺,5.2,8091,动作/科幻/冒险,美国/南非/德国,2008,42073.2\r\n五亿探长雷洛传2：父子情仇 五億探長雷洛傳II之,7.2,8088,剧情/犯罪,香港,1991,58233.6\r\n坏机器人,7.6,8085,科幻/恐怖/短片,美国/爱尔兰,2011,61446\r\n十三,6.4,8081,剧情/惊悚,美国,1905,51718.4\r\n新女友,7.5,8072,剧情/悬疑/同性,法国,2014,60540\r\n第三人,8.2,8068,悬疑/惊悚/黑色电影,英国,1949,66157.6\r\n变相怪杰2：面具之,5.9,8055,喜剧/家庭/奇幻/冒险,美国/德国,2005,47524.5\r\n黑洞表面,6.7,8054,科幻/悬疑/恐怖,英国/美国,1997,53961.8\r\n烈焰焚币,8.5,8053,剧情/爱情/惊悚/同性/犯罪,阿根廷/西班牙/乌拉圭,2000,68450.5\r\n葫芦兄弟,7.8,8053,动画,中国,2008,62813.4\r\n小公主,8.4,8052,剧情/喜剧/歌舞/家庭,美国,1939,67636.8\r\n美国甜心,6.4,8052,喜剧/爱情,美国,2001,51532.8\r\n义兄弟,7.2,8050,剧情/惊悚,韩国,2010,57960\r\n我在这儿,8.3,8049,剧情/短片,美国,2010,66806.7\r\n夜间飞行,7.9,8046,剧情/爱情/同性,韩国,2014,63563.4\r\n双重人格,7,8043,剧情/惊悚,英国,2013,56301\r\n我的,8,8042,剧情/传记/历史,中国大陆,1999,64336\r\n白狐,3.3,8037,动作/爱情/奇幻/古装,中国大陆,2013,26522.1\r\n斯坦福监狱实验,7.2,8033,剧情/惊悚,美国,2015,57837.6\r\n杀人锦标赛,6.1,8027,动作/惊悚,英国,1905,48964.7\r\n你逃我也逃,9.1,8023,喜剧/战争,美国,1942,73009.3\r\n独行杀手,8.4,8022,剧情/悬疑/惊悚/犯罪,法国/意大利,1967,67384.8\r\n红莲之蓬莱岛 犬夜叉 紅蓮の蓬,7.8,8016,喜剧/动作/动画/冒险,日本,2004,62524.8\r\n大买卖,7,8007,动作/惊悚/犯罪,德国/美国,2001,56049\r\n坐火车的女人,7.8,8006,动画/短片/奇幻,加拿大,2007,62446.8\r\n我们曾经是战士,7.5,8005,剧情/动作/历史/战争,美国/德国,2002,60037.5\r\n判我有罪,7.9,8004,剧情/喜剧/犯罪,美国/德国,2006,63231.6\r\n哪一天我们会飞 哪一天我們會,7.2,8004,剧情/爱情,香港,2016,57628.8\r\n算计：七天的死亡游戏 インシテミル 7日间のデス,5.6,8003,惊悚/恐怖,日本,2010,44816.8\r\n小曼哈顿,8.2,8000,喜剧/爱情,美国,2005,65600\r\n玩尽杀绝,7,8000,悬疑/惊悚/犯罪,美国,1998,56000\r\n骄傲的将军,8.1,7999,剧情/动画/短片,中国大陆,1956年,64791.9\r\n火影忍者剧场版：终章,6.8,7998,喜剧/动作/动画/冒险,日本,2014,54386.4\r\n傲慢与偏见与僵尸,5.5,7996,动作/爱情/恐怖,美国/英国,2016,43978\r\n少年菀得,8,7992,剧情/动作/运动,韩国,2011,63936\r\n逍遥骑士,8.4,7984,剧情,美国,1969,67065.6\r\n猎神：冬日之战,5.6,7984,剧情/动作/奇幻/冒险,美国,2016,44710.4\r\n九人禁闭室,6,7983,剧情/悬疑/惊悚/恐怖,英国/罗马尼亚/德国/法国,2004,47898\r\n人参果,8.1,7981,动画/奇幻/冒险,中国大陆,1905,64646.1\r\n爱情限时恋未尽,7.7,7978,剧情/喜剧/爱情,美国,2015,61430.6\r\n芭萨提的颜色,8.8,7973,剧情/喜剧/动作/历史,印度,2006,70162.4\r\n负重前行,8.6,7966,惊悚/短片,澳大利亚,2013,68507.6\r\nO记三合会档,7.3,7964,动作/犯罪,香港,1999,58137.2\r\n厨师、大盗、他的太太和她的情人,7.6,7952,剧情/情色,法国/英国,1989,60435.2\r\n毒品网络,7.6,7948,剧情/惊悚/犯罪,美国/德国,2000,60404.8\r\n幸福,7.3,7946,剧情/爱情,韩国,2007,58005.8\r\n皇室风流史,6.9,7943,剧情/爱情/传记/历史,丹麦,2012,54806.7\r\n猫狗大战：珍珠猫复仇,6.5,7942,喜剧/动作/家庭,美国/澳大利亚Australia,2010,51623\r\n惊魂半小时,6.3,7939,喜剧/动作/犯罪/冒险,美国,2011,50015.7\r\n特种部队 ,6.6,7931,剧情/动作/冒险,法国,2011,52344.6\r\n猎杀红色十月,7.7,7926,动作/惊悚/冒险,美国,1990,61030.2\r\n男人如衣服,5.1,7924,喜剧/爱情,香港/中国大陆,2012,40412.4\r\n将错就错,3.9,7918,喜剧/爱情,中国大陆,2015,30880.2\r\n只有你听见 きみにしか聞こえな,7.5,7917,剧情,日本,2007,59377.5\r\n拉芙蕾丝,6.4,7913,传记,美国,2013,50643.2\r\n破浪,8.1,7912,剧情/爱情,丹麦/瑞典/法国/荷兰/挪威/冰岛/西班牙,1996,64087.2\r\n饥饿的地鼠,7.6,7910,喜剧/动画/短片,美国,1905,60116\r\n定罪,7.9,7907,剧情/传记,美国,2010,62465.3\r\n新碧血剑 新碧血,6.7,7903,喜剧/动作/爱情/武侠/古装,香港,1994,52950.1\r\n生之欲 生き,9,7901,剧情,日本,1952,71109\r\n弯刀杀戮,5.7,7893,动作/惊悚/犯罪,美国/俄罗斯,2013,44990.1\r\n大陆之所以漂移,8.7,7887,喜剧/动画/短片,美国,2010,68616.9\r\n闪亮的日子,7.6,7884,剧情/喜剧/爱情/同性,美国,2003,59918.4\r\n水中仙,7.3,7880,剧情/爱情,爱尔兰/美国,2010,57524\r\n无人生还,6.2,7878,惊悚/恐怖,美国,2012,48843.6\r\n天启四骑士,5.3,7878,剧情/悬疑/惊悚/犯罪,加拿大/美国,2009,41753.4\r\n特工佳丽2：武力巾,6.2,7875,喜剧/动作/犯罪,美国/澳大利亚,2005,48825\r\n攻壳机动队SSS 攻,8.9,7867,动作/科幻/动画,日本,2006,70016.3\r\n人生不再重来,8.2,7863,剧情,印度,2011,64476.6\r\n三轮车夫,7.6,7860,剧情/犯罪,越南/法国/香港,1995,59736\r\n庐山恋,4.9,7851,剧情/爱情,中国大陆,2010,38469.9\r\n蚁蛉,7.7,7850,悬疑/短片/奇幻,英国,2003,60445\r\n口是心非,6.3,7848,爱情/惊悚,美国/德国,2009,49442.4\r\n色戒,7,7845,剧情/爱情/情色/冒险,意大利/法国/印度/德国/瑞士,2002,54915\r\n虎豹小霸王,8.7,7842,剧情/犯罪/西部/冒险,美国,1969,68225.4\r\n进化简史,8.4,7842,动画/短片/历史,英国,1905,65872.8\r\n财神到 財神,5.6,7839,喜剧,中国大陆/香港,2010,43898.4\r\n一路顺疯,5.3,7836,喜剧,中国大陆,2013,41530.8\r\n新郎不是我,6.5,7833,喜剧/爱情,美国/英国,2008,50914.5\r\nSPEC：结 后篇 劇場版,7.2,7832,剧情,日本,2013,56390.4\r\n查令十字街8,8.7,7831,剧情/爱情/传记,英国/美国,1987,68129.7\r\n天堂的颜色,8.7,7823,剧情/家庭,伊朗,1999,68060.1\r\n天空上尉与明日世界,6.6,7823,动作/科幻/悬疑/冒险,美国/英国/意大利,2004,51631.8\r\n蠢蛋搞怪秀,7.9,7822,喜剧,美国,2002,61793.8\r\n机器人大爷 ロボジ,7.6,7815,剧情/喜剧,日本,2012,59394\r\n守日人 Дневной доз,7.4,7813,动作/惊悚/奇幻,俄罗斯,2006,57816.2\r\n好家伙、坏家伙、怪家伙,6.7,7809,动作/西部/冒险,韩国,2008,52320.3\r\n蒸发的摩根夫妇,6.2,7809,喜剧/爱情/犯罪,美国,2009,48415.8\r\n喜爱夜蒲3 喜愛,4.4,7809,剧情/情色,香港,2014,34359.6\r\n赌神3之少年赌神 賭神3之少,6.7,7808,剧情/喜剧/动作,香港,1996,52313.6\r\n美梦成真,7.9,7803,剧情/爱情/奇幻,美国/新西兰,1998,61643.7\r\n不死劫,6.7,7795,剧情/悬疑/惊悚/奇幻,美国,2000,52226.5\r\n恋爱情结 ラブ★コ,7.4,7792,喜剧/爱情,日本,2006,57660.8\r\n见习黑玫瑰,5.6,7790,喜剧/动作,香港,2003,43624\r\n告密者,7.7,7789,剧情/传记/犯罪,德国/加拿大/美国,2010,59975.3\r\n冒牌老爸,7.4,7789,剧情/喜剧/家庭,美国,1999,57638.6\r\n迷踪：第九鹰团,6.3,7786,剧情,美国,2011,49051.8\r\n艾玛好色,6.5,7785,喜剧,挪威,2011,50602.5\r\n正义联盟：闪点悖论,8.1,7784,动作/科幻/动画/奇幻/冒险,美国,2013,63050.4\r\n不怕贼惦记,4.3,7783,剧情/喜剧/悬疑,中国大陆,2011,33466.9\r\n当爱来的时候 當愛來的時,7.4,7781,剧情/家庭,台湾,2010,57579.4\r\n桃色,5.3,7775,剧情/爱情/情色,香港,2004,41207.5\r\n西班牙公寓,8,7766,剧情/喜剧/爱情,法国/西班牙,2002,62128\r\n晚娘2,4.9,7766,剧情/情色,泰国,2012,38053.4\r\n本,8.1,7764,剧情,比利时/荷兰,2007,62888.4\r\n信任,7.2,7763,剧情,美国,2011,55893.6\r\n真心话大冒险,5.1,7760,喜剧/爱情,中国大陆,2012,39576\r\n复制娇妻,6.1,7757,喜剧/科幻/惊悚,美国,2004,47317.7\r\n小妇人,8,7756,剧情/爱情/家庭,美国/加拿大,1994,62048\r\n卡珊德拉之梦,7.1,7756,剧情/爱情/惊悚/犯罪,美国/英国/法国,2007,55067.6\r\n微妙爱情 ,6.9,7754,喜剧/爱情,法国,2011,53502.6\r\n性书大亨,7.9,7741,剧情/情色/传记,美国,1996,61153.9\r\n七天爱上你,5.7,7738,剧情/喜剧/爱情,中国,2009,44106.6\r\n巴黎,7.6,7731,剧情/喜剧/爱情,法国,2008,58755.6\r\n铁面无私,7.7,7730,剧情/惊悚/历史/犯罪,美国,1987,59521\r\n蜜糖与调味：风味绝佳 シュガー＆スパイス ～風味絶,6.9,7727,剧情/爱情,日本,2006,53316.3\r\n利维坦 Левиафа,7.7,7725,剧情,俄罗斯,2014,59482.5\r\n咒怨2(,6.3,7724,悬疑/恐怖,美国,2006,48661.2\r\n年轻时候,6.7,7722,剧情/喜剧,美国,2014,51737.4\r\n六年之痒,6.9,7721,爱情,韩国,2008,53274.9\r\n鬼娃回魂,6.8,7720,悬疑/惊悚/恐怖,美国,1988,52496\r\n龙珠Z：神与神 ドラゴンボールZ,7.2,7715,动画,日本,2013,55548\r\n有顶天酒店 THE 有,7.9,7714,剧情/喜剧/爱情,日本,2006,60940.6\r\n电影往事,7.8,7712,剧情/家庭/儿童,中国大陆,2005,60153.6\r\n乱马OVA：邪恶之鬼 らんま,8.4,7710,剧情/动画,日本,1995,64764\r\n玉子爱情故事 たまこラブストーリ,8.4,7708,喜剧/爱情/动画,日本,2014,64747.2\r\n跟踪孔令学,6.5,7707,喜剧/悬疑,中国大陆,2011,50095.5\r\n谈谈情跳跳舞 Sh,8.2,7706,剧情/喜剧/爱情/歌舞,日本,1996,63189.2\r\n光荣的愤怒,7.9,7706,剧情,中国大陆,2007,60877.4\r\n永远的三丁目的夕阳之1964 A,8.2,7705,剧情,日本,2012,63181\r\n爱恋,6.4,7705,剧情/爱情/情色,法国/比利时,2015,49312\r\n水啸雾都,5.5,7704,动作/灾难,英国/南非/加拿大,2007,42372\r\n华丽的假期,8.3,7701,剧情,韩国,2007,63918.3\r\n野兽刑警,7.6,7701,剧情/动作/悬疑/犯罪,香港,1998,58527.6\r\n超级无敌掌门狗：剃刀边缘,8.8,7700,喜剧/动画/短片,英国,1995,67760\r\n翡翠明珠,5.3,7699,剧情/爱情/古装,香港/中国大陆,2010,40804.7\r\n致亲爱的你 あなた,8.2,7689,剧情,日本,2012,63049.8\r\n爱的边缘,7,7687,剧情/爱情/传记/战争,英国,2008,53809\r\n大而不倒,8.2,7684,剧情,美国,2011,63008.8\r\n秋喜,5.8,7684,剧情/悬疑/惊悚,中国大陆,2009,44567.2\r\n红色恋人,6.9,7680,剧情/爱情,中国大陆,1998,52992\r\n鸡犬不宁,6.6,7666,剧情/喜剧,中国大陆,2006,50595.6\r\n金田一少年事件簿 香港九龙财宝杀人事件 金田一少年の事件簿 香港九龍財宝殺,4.8,7666,剧情/悬疑,日本,2013,36796.8\r\n鬼哭神嚎,6.4,7665,剧情/悬疑/惊悚/恐怖,美国,2005,49056\r\n济公斗蟋蟀,8.1,7660,动画/短片,中国大陆,1905,62046\r\n菊花香,7.3,7658,剧情/爱情,韩国,2003,55903.4\r\n赞鸟历险记,6.6,7658,喜剧/动画/家庭/冒险,南非,2014,50542.8\r\n快乐到死,6.8,7657,剧情/爱情/情色,韩国,1999,52067.6\r\n梦精记,5.9,7656,喜剧/情色,韩国,2002,45170.4\r\n魔鬼山历险记,5.6,7653,科幻/惊悚/家庭/奇幻/冒险,美国,2009,42856.8\r\n天堂回信,9.1,7652,剧情/儿童,中国大陆,1994,69633.2\r\n门,5,7650,惊悚,中国大陆,2007,38250\r\n狼灾记,4.3,7648,剧情,中国大陆/日本/香港/美国/新加坡,2009,32886.4\r\n伴你高飞,8.8,7645,剧情/家庭/冒险,美国,1996,67276\r\n人山人海,6.7,7644,剧情/悬疑/犯罪,中国大陆,2012,51214.8\r\n小猪宝贝,8,7642,家庭/奇幻/冒险,澳大利亚/美国,1995,61136\r\n洛克王国2：圣龙的心,5.6,7641,动画/奇幻/冒险,中国大陆,2013,42789.6\r\n顺流逆流,7.5,7640,剧情/动作/惊悚/犯罪,香港,2000,57300\r\n冰刀双人组,6.7,7640,喜剧/运动,美国,2007,51188\r\n珍爱泉源,7,7630,剧情/爱情/科幻,美国,2006,53410\r\n穿越美国,8.2,7629,剧情/喜剧/冒险,美国,2005,62557.8\r\n咒怨：黑少女 呪怨 黒い,5.2,7626,恐怖,日本,2009,39655.2\r\n师兄撞鬼,6.6,7618,喜剧/动作/奇幻,香港,1990,50278.8\r\n鸭子和野鸭子的投币式自动存放柜 アヒルと鴨のコインロッカ,8,7616,剧情,日本,2007,60928\r\n生死新纪元,5.2,7615,动作/科幻/惊悚/冒险,美国/法国/英国,2008,39598\r\n东京糖衣巧克力 東京マーブルチョコレー,7.9,7614,动画,日本,2008,60150.6\r\n幻体：续命游戏,6.4,7609,科幻/悬疑/惊悚,美国,2016,48697.6\r\n处女泉,8.3,7608,剧情/犯罪,瑞典,1960,63146.4\r\n一切都好,6.5,7601,剧情/家庭,中国大陆,2016,49406.5\r\n贞子3D,3.6,7599,恐怖,日本,2012,27356.4\r\n无敌反斗星,7.3,7594,喜剧/冒险,台湾/香港,1905,55436.2\r\n第十九层空间,4.2,7593,惊悚,香港,2007,31890.6\r\n叛谍追击,6,7583,动作/惊悚,美国/加拿大/比利时,2012,45498\r\n黑白道,6.8,7580,剧情/犯罪,香港,2006,51544\r\n死亡之雪,7,7577,喜剧/动作/恐怖,挪威/冰岛,2014,53039\r\n阿嫂,5.3,7577,剧情/犯罪,香港,2005,40158.1\r\n劝导,7.7,7576,剧情/爱情,英国/美国,2007,58335.2\r\n007之,7.1,7572,动作/惊悚/冒险,英国,1964,53761.2\r\n诈欺游戏 -再生- ライアーゲ,6.5,7571,剧情,日本,2012,49211.5\r\n去年烟花特别多,8,7569,剧情,香港,1998,60552\r\n痴情男孩,8.1,7566,剧情/喜剧/爱情/短片,美国,2010,61284.6\r\n过猴山,8.1,7564,剧情/动画/短片,中国,1905,61268.4\r\n青少年哪吒,7.8,7563,剧情,台湾,1992,58991.4\r\n彩虹老人院 メゾン・ド・,7.9,7558,剧情/同性,日本,2005,59708.2\r\n抓住外国佬,7.4,7550,剧情/动作/犯罪,美国,2012,55870\r\n意大利人在俄罗斯的奇遇 Невероятные приключения итальянцев в Р,8.6,7547,喜剧/冒险,意大利/苏联,1974,64904.2\r\n最终兵器：弓,7,7547,动作/历史,韩国,2011,52829\r\n喜马拉雅,8.6,7537,剧情/冒险,法国/瑞士/英国/尼泊尔,1999,64818.2\r\n芳香之旅,7,7534,剧情,中国,2006,52738\r\n三分之一 サンブンノイ,7.8,7533,剧情/喜剧,日本,2014,58757.4\r\n白头神探,7.7,7532,喜剧/动作/爱情/犯罪,美国,1988,57996.4\r\n王子殿下,6,7530,喜剧/奇幻/冒险,美国,2011,45180\r\n2012年第30届伦敦奥运会开幕,7.5,7526,运动,英国,2012,56445\r\n戏王之王 戲王之,6.1,7517,喜剧,香港,2007,45853.7\r\nA面,5.7,7512,剧情/喜剧,中国大陆,2010,42818.4\r\n日落之后,6.6,7511,剧情/喜剧/动作/犯罪,美国,2004,49572.6\r\n烈日当空 烈日當,7.5,7507,剧情,香港,2008,56302.5\r\n不朽,6.9,7496,动作/惊悚/犯罪,法国,2010,51722.4\r\n爱情储蓄罐,6.6,7493,喜剧/爱情,韩国,2011,49453.8\r\n人狼,8.6,7491,剧情/动画/惊悚/奇幻,日本,1999,64422.6\r\n萧红,6.4,7482,剧情/传记,中国大陆,2013,47884.8\r\n地球之夜,8.3,7477,剧情/喜剧,法国/英国/德国/美国/日本,1991,62059.1\r\n女高怪谈1：死亡教,6.2,7477,剧情/恐怖,韩国,1998,46357.4\r\n细路祥 細路,8.4,7474,剧情,香港,2000,62781.6\r\n梅奇知道什么,8.2,7471,剧情,美国,2012,61262.2\r\n生死格斗,5.2,7460,动作/冒险,美国/德国/英国,2006,38792\r\n缩水情人,8.4,7458,剧情/爱情/短片/情色,西班牙,1905,62647.2\r\n鞋匠人生,6.5,7458,剧情/喜剧/奇幻,美国,2014,48477\r\n勿忘蛛 わすれなぐ,7.6,7452,剧情/动画,日本,2012,56635.2\r\n情动假日,7.7,7451,剧情/爱情,美国,2013,57372.7\r\n德州电锯杀人狂,7.1,7446,悬疑/恐怖,美国,1974,52866.6\r\n告密者,6.9,7446,剧情/喜剧/惊悚,美国,2009,51377.4\r\n悭钱家族,6.1,7446,喜剧,香港,2002,45420.6\r\n简爱,8,7441,剧情/爱情,法国/意大利/英国/美国,1996,59528\r\n婚纱照,7.5,7441,剧情/喜剧/爱情/短片,中国大陆,2013,55807.5\r\n丛林奇兵,6.8,7441,喜剧/动作/惊悚/冒险,美国,2004,50598.8\r\n杀戒,5.2,7437,爱情/悬疑,中国大陆,2013,38672.4\r\n长发公主番外篇：麻烦不断,8.3,7428,喜剧/动画/短片,美国,2012,61652.4\r\n情不自禁,8.4,7425,剧情,中国大陆,1905,62370\r\n开心鬼上错身 開心鬼上錯,6.7,7425,喜剧,香港,1905,49747.5\r\n恋恋三季,8.3,7423,剧情,越南/美国,1999,61610.9\r\n四头狮子,7.7,7417,剧情/喜剧,英国,2010,57110.9\r\n巴尼的人生,8.3,7416,剧情,加拿大/意大利,2010,61552.8\r\n弟弟 おとう,8.1,7410,剧情,日本,2010,60021\r\n老妇杀手,7.1,7391,喜剧/惊悚/犯罪,美国,2004,52476.1\r\n这里的黎明静悄悄 А зори здесь т,7.6,7390,剧情/战争,俄罗斯,2015,56164\r\n朋友,6.5,7389,动作,韩国,2013,48028.5\r\n苏菲的抉择,8.3,7380,剧情/爱情,英国/美国,1982,61254\r\n不存在的女儿,7.7,7380,剧情/家庭,美国,2008,56826\r\n海月姬 海月,7,7380,喜剧,日本,2014,51660\r\n恋之罪 恋の,6.6,7369,剧情/惊悚/情色/犯罪,日本,2011,48635.4\r\n空前绝后满天飞,7.4,7366,喜剧,美国,1980,54508.4\r\n将军的女儿,7.2,7365,剧情/悬疑/惊悚/战争/犯罪,美国/德国,1999,53028\r\n佛兰德斯的狗 フランダースの,8.9,7363,剧情/爱情/动画,日本/美国,1997,65530.7\r\n一万年以后,5.2,7363,动作/动画/奇幻,中国大陆,2015,38287.6\r\n最高通缉犯,6.9,7356,惊悚,美国/英国/德国,2014,50756.4\r\n四月一日灵异事件簿剧场版：仲夏夜之梦 劇場版xxxHO,8.5,7354,动画,日本,2005,62509\r\n荒村客栈,4,7353,悬疑/惊悚/恐怖,中国大陆,2008,29412\r\n旺角监狱,6.3,7345,剧情/犯罪,香港,2009,46273.5\r\n毁灭战士,6,7345,动作/科幻/惊悚/恐怖/冒险,英国/捷克/德国/美国,2005,44070\r\n盖章,8.5,7342,喜剧/爱情/短片,美国,1905,62407\r\n风筝,7.6,7341,动作/爱情/惊悚,印度,2010,55791.6\r\n黑暗边缘,6.8,7339,剧情/惊悚/犯罪,美国/英国,2010,49905.2\r\n枕边书,6.7,7333,剧情/爱情/情色,法国/英国/荷兰/卢森堡,1997-02-20/1996-06-06,49131.1\r\n心理医师,7.2,7330,剧情,美国,2009,52776\r\n神秘村,6.9,7330,悬疑/惊悚,美国,2004,50577\r\n浪客剑心：星霜篇 るろうに剣心 -明治剣客浪漫譚,8,7329,剧情/动作/爱情/动画,日本,2001,58632\r\n神偷谍影 神偷諜,6.8,7323,剧情/动作,香港,1997,49796.4\r\n大叔，我爱你,5.5,7323,喜剧/爱情,中国大陆,2013,40276.5\r\n今天,7.5,7320,剧情,韩国,2011,54900\r\n电车男 電車,6.8,7319,喜剧/爱情,日本,2005,49769.2\r\n名侦探柯南：江户川柯南失踪事件～史上最惨的两天～ 名探偵コナン 江戸川コナン失踪事件～史上最悪の二日,6.8,7319,剧情/动画,日本,2014,49769.2\r\n三毛流浪记,8.1,7317,喜剧,中国大陆,1949,59267.7\r\n呼啸山庄,6.6,7316,剧情/爱情,英国,2011,48285.6\r\n甜蜜的生活,8.6,7314,剧情,意大利/法国,1960,62900.4\r\n街区大作战,6.2,7309,喜剧/动作/科幻,英国/法国,2011,45315.8\r\n镜中的梦幻城 犬夜叉 鏡の中の夢,8,7307,喜剧/动作/爱情/动画,日本,2002,58456\r\n粉红色的火烈鸟,5.4,7304,喜剧/恐怖/情色/犯罪,美国,1972,39441.6\r\n桃色交易,7.4,7295,剧情/爱情,美国,1993,53983\r\n荒野大飚客,7,7295,喜剧/动作/冒险,美国,2007,51065\r\n卧底肥妈,6.8,7294,喜剧/动作/惊悚,美国,2006,49599.2\r\n魔兽战场,5.8,7292,动作/科幻/冒险,美国/德国,2008,42293.6\r\n猛男诞生记,5.6,7292,喜剧/情色/奇幻,韩国,2008,40835.2\r\n定制伴郎,7.1,7287,喜剧,美国,2015,51737.7\r\n机器人与弗兰克,7.5,7285,剧情/喜剧/科幻,美国,2012,54637.5\r\n十区车站,8.6,7283,爱情/短片,法国/德国,2004,62633.8\r\n拆散专家,3.5,7283,喜剧/爱情,中国大陆/新加坡,2014,25490.5\r\n大婚告急,6.5,7281,剧情/喜剧/爱情,美国,2011,47326.5\r\n检察官外传,7,7276,喜剧/犯罪,韩国,2016,50932\r\n鬼遮眼,6.6,7275,恐怖,美国,2014,48015\r\n怪医杜立德,6.8,7271,喜剧/家庭,美国,1998,49442.8\r\n奇迹世界,7.7,7270,短片,中国,1905,55979\r\n陵园路口,7.7,7262,剧情,英国,2010,55917.4\r\n唐顿庄园：2013圣,8.2,7261,剧情/爱情/家庭,英国,2013,59540.2\r\n勇敢的人,7.3,7255,剧情/惊悚/犯罪,美国/澳大利亚,2007,52961.5\r\n致命弯道4：血腥起,5.3,7254,恐怖,美国,2011,38446.2\r\n钢之炼金术师：叹息之丘的圣星 鋼の錬金術師 嘆きの丘の聖な,7.3,7250,剧情/动作/动画/奇幻/冒险,日本,2011,52925\r\n星际之门,7.2,7243,动作/科幻/奇幻/冒险,法国/美国,1994,52149.6\r\n叛国者,7.1,7243,剧情/惊悚/犯罪,美国,2008,51425.3\r\n绢,6.9,7236,剧情/爱情,加拿大/法国/意大利/英国/日本,2007,49928.4\r\n瓦尔特保卫萨拉热窝,8.6,7230,战争,南斯拉夫,1972,62178\r\n我的青春期,5.9,7230,剧情/爱情,中国大陆,2015,42657\r\n逃学威凤,6.6,7228,喜剧/爱情/犯罪,韩国,2005,47704.8\r\n哈拉十诫,6.5,7219,喜剧,美国,2007,46923.5\r\n皮帕李的私生活,6.9,7215,剧情/喜剧/爱情,美国,2009,49783.5\r\n蒙羞之旅,6.3,7211,喜剧,美国,2014,45429.3\r\n世界奇妙物语 2012年秋之特別篇 世にも奇妙な物,7.5,7209,悬疑/恐怖,日本,2012,54067.5\r\n图书馆战争 図書館戦,7,7209,剧情/动作/科幻,日本,2013,50463\r\n莫斯科不相信眼泪 Москва слезам не в,8.5,7208,剧情/喜剧/爱情,苏联,1980,61268\r\n27个遗失,7.8,7205,剧情/喜剧/爱情,英国/法国/德国/格鲁吉亚,2001,56199\r\n疯狂的兔子,6.5,7205,科幻/惊悚/儿童,中国大陆,1905,46832.5\r\n街头之王,6.5,7203,剧情/动作/惊悚/犯罪,美国,2008,46819.5\r\n伊波拉病毒,7.1,7200,喜剧/恐怖,香港,1996,51120\r\n老师不是人,6.8,7199,科幻/悬疑/惊悚/恐怖,美国,1998,48953.2\r\n你是下一个,6.5,7191,惊悚/恐怖,美国,2011,46741.5\r\n白昼冷光,4.9,7190,动作/惊悚,美国/西班牙,2012,35231\r\n咖啡时光 珈琲時,7.5,7188,剧情,日本/台湾,2003,53910\r\n冬冬的假期,8.4,7180,剧情,台湾,1905,60312\r\n甜蜜幼儿园,7.2,7172,喜剧/爱情,德国,2007,51638.4\r\n花美男连锁恐怖事件,6.2,7168,剧情,韩国,2007,44441.6\r\n抢劫坚果店,6.3,7166,喜剧/动画/冒险,加拿大/韩国/美国,2014,45145.8\r\n喜羊羊与灰太狼之兔年顶呱呱,6.3,7150,喜剧/动画,中国大陆,2011,45045\r\n星际旅行2：可汗怒,7.7,7148,动作/科幻/惊悚/冒险,美国,1982,55039.6\r\n塞巴斯蒂安的巫毒,8,7146,动画/恐怖/短片,美国,2008,57168\r\n地狱医院,7,7146,悬疑/惊悚,美国,2014,50022\r\n鬼水怪谈 仄暗い水の底か,6.8,7146,剧情/悬疑/惊悚/恐怖,日本,2002,48592.8\r\n蜘蛛巢城 蜘蛛巣,8.4,7144,剧情/动作/惊悚/战争/奇幻,日本,1957,60009.6\r\n迷途追凶 報,5.8,7140,惊悚/犯罪,香港,2011,41412\r\n青魇,6.1,7139,剧情/悬疑/恐怖,中国大陆/香港,2012,43547.9\r\n自由坠落,7.5,7137,剧情/爱情/同性,德国,2013,53527.5\r\n出租车,8,7135,剧情/喜剧,伊朗,2015,57080\r\n怒火保镖,5.2,7131,剧情/动作/犯罪,美国,2015,37081.2\r\n夏日福星,7.1,7124,喜剧/动作,香港,1985,50580.4\r\n你妈妈也一样 Y,7.5,7109,剧情/情色,墨西哥,2001,53317.5\r\n古惑仔激情篇之洪兴大飞哥 古惑仔激情篇洪興大飛,6.4,7109,剧情,香港,1999,45497.6\r\n星际旅行1：无限太,7.4,7107,科幻/悬疑/奇幻/冒险,美国,1979,52591.8\r\n超级无敌掌门狗：月球野餐记,8.6,7098,喜剧/动画/短片/家庭/冒险,英国,1905,61042.8\r\n棒子老虎鸡,4.7,7096,喜剧/爱情,中国大陆,2007,33351.2\r\n亚特兰蒂斯：失落的帝国,7.4,7092,科幻/动画/家庭/冒险,美国,2001,52480.8\r\n一九八四,7.7,7086,剧情/爱情/科幻/惊悚,英国,1984,54562.2\r\n吴清源,6.8,7082,剧情/爱情/传记,中国大陆/日本,2007,48157.6\r\n想要拥抱你 抱きしめたい -真実,7.2,7077,剧情/爱情,日本,2014,50954.4\r\n三日刺杀,6.4,7077,剧情/动作/犯罪,美国/法国/希腊/俄罗斯,2014,45292.8\r\n灵动：鬼影实录,6,7077,惊悚/恐怖,美国,2010,42462\r\n致命弯道,5.9,7077,惊悚/恐怖/犯罪,美国,2009,41754.3\r\n激战运钞车,5.7,7076,动作/惊悚/犯罪,美国,2011,40333.2\r\n最后一周,8,7074,剧情/冒险,加拿大,2009,56592\r\n爱情银行,6,7068,剧情/爱情,中国大陆,2013,42408\r\n嘿咻卡,5.9,7064,喜剧,美国,2011,41677.6\r\n彗星美人,8.5,7063,剧情,美国,1950,60035.5\r\nJose与虎与鱼们 ジョゼと,8.3,7063,剧情/爱情,日本,2003,58622.9\r\n西部慢调,7.4,7063,动作/西部,英国/新西兰,2015,52266.2\r\n摇椅,8.6,7056,剧情/动画/短片/家庭/历史,加拿大,1905,60681.6\r\n梅子鸡之味,7.9,7054,剧情/喜剧,法国/德国,2011,55726.6\r\n奥兰多,8.1,7050,剧情/爱情,英国/俄罗斯/法国/意大利/荷兰,1992,57105\r\n像鸡毛一样飞,7.7,7048,剧情,中国大陆,2002,54269.6\r\n再见金华站,8.7,7046,剧情/短片,中国大陆,2011,61300.2\r\n幸存的女孩,6.6,7046,喜剧/恐怖,美国,2015,46503.6\r\n天行者,6.3,7043,剧情/动作/犯罪,香港/中国,2006,44370.9\r\n重见天日,7.5,7041,剧情/动作/传记/战争/冒险,美国,2006,52807.5\r\n暗杀教室 暗殺教,6.3,7040,剧情/动作,日本,2015,44352\r\n暴走吧，女人,4.4,7040,剧情/冒险,中国大陆,2013,30976\r\n头七 頭,6.2,7039,恐怖,香港,2009,43641.8\r\n生于七月四日,7.7,7032,剧情/传记/战争,美国,1989,54146.4\r\n加油站袭击事件,7.6,7029,喜剧,韩国,1999,53420.4\r\n小熊维尼历险记,8.1,7025,动画/歌舞/奇幻,美国,1977,56902.5\r\n蠢蛋进化论,6.5,7022,喜剧/科幻/惊悚/冒险,美国,2006,45643\r\n谍影特工,6.3,7022,惊悚,美国,2016,44238.6\r\n晚春 晩,8.7,7021,剧情/家庭,日本,1949,61082.7\r\n两个情人,6.8,7014,剧情/爱情,美国,2008,47695.2\r\n巴菲的奇妙命运,8.4,7009,剧情/喜剧/爱情,印度,2012,58875.6\r\n觉醒,6.8,7009,悬疑/惊悚/恐怖,英国,2011,47661.2\r\n撕票风云 撕票風,6,7009,动作/惊悚,香港,2010,42054\r\n性爱狂想曲 みんな～やってる,7.2,7007,喜剧,日本,1995,50450.4\r\n再爱一次好不好,3,6999,喜剧/爱情,中国大陆,2014,20997\r\n爸...你好吗？ 爸,8.2,6995,剧情,台湾,2009,57359\r\n灵犬雪莉 ,8.2,6990,剧情/冒险,法国,2013,57318\r\n龙三和他的七人党 龍三と七人の子分た,7.5,6990,喜剧/动作,日本,2015,52425\r\n爱丽丝梦游仙境,8.1,6989,剧情/奇幻/冒险,美国,1933,56610.9\r\n曾是超人的男子,7.3,6989,剧情/喜剧,韩国,2008,51019.7\r\n幻影车神：魔盗激情,7,6989,动作/惊悚/犯罪,印度,2014,48923\r\n乌龟意外之速游 亀は意外と速く泳,7.5,6981,喜剧,日本,2005,52357.5\r\n追凶,4.3,6977,悬疑/惊悚/犯罪,香港,2012,30001.1\r\n神女,8.9,6976,剧情,中国大陆,1905,62086.4\r\n当男人爱上女人,7.7,6976,剧情/爱情,美国,1994,53715.2\r\n活火熔城,6.9,6974,剧情/动作/灾难,美国,1997,48120.6\r\n初恋未满,6.3,6969,剧情/爱情,中国大陆,2013,43904.7\r\n公寓,6.3,6967,恐怖,韩国,2006,43892.1\r\n神经刀与飞天猫 神經刀與飛天,6.6,6966,喜剧/奇幻/武侠/古装,香港,1993,45975.6\r\n风吹麦浪,7.9,6957,剧情/历史/战争,爱尔兰/英国/德国/意大利/西班牙/法国/比利时/瑞典,2006,54960.3\r\n新乌龙女校2：弗里顿的黄金的传,6.4,6957,喜剧/冒险,英国,2009,44524.8\r\n青春年少,8,6946,剧情/喜剧,美国,1999,55568\r\n怕怕不怕,8.4,6945,动画/短片,中国大陆,2010,58338\r\n看不见的世界,7.9,6944,剧情/同性,南非/英国,2007,54857.6\r\n银行舞蹈,7.8,6944,短片,美国,1905,54163.2\r\n高压电,7,6943,剧情/惊悚/恐怖,法国,2003,48601\r\n世界第一初恋：小野寺律的场合 世界一初恋 OVA 小,8.7,6940,动画,日本,2011,60378\r\n谎言的诞生,6.7,6939,喜剧/爱情/奇幻,美国,2009,46491.3\r\n死亡飞车3：地狱烈,5.8,6937,动作,美国,2012,40234.6\r\n富贵再逼人,7.2,6936,喜剧,香港,1988,49939.2\r\n哈维的最后机会,7.4,6931,剧情/爱情,美国/英国,2008,51289.4\r\n分手再说我爱你,6.5,6929,喜剧/爱情,中国大陆/香港,2015,45038.5\r\n极品基老伴：2013,9.2,6928,喜剧,英国,2013,63737.6\r\n身份窃贼,6.1,6928,喜剧/犯罪,美国,2013,42260.8\r\n玩叛游戏,6.5,6925,剧情/悬疑/惊悚/犯罪,美国,2008,45012.5\r\n机动部队—同袍,6.3,6924,剧情/动作/犯罪,香港,2009,43621.2\r\n0.5毫,8.1,6923,剧情,日本,2014,56076.3\r\n盲流感,7.3,6923,剧情/悬疑/惊悚/灾难,加拿大/巴西/日本,2008,50537.9\r\n焦糖,7.8,6919,剧情/喜剧/爱情,黎巴嫩/法国,2007,53968.2\r\n两个婚礼一个葬礼,6.4,6919,喜剧/爱情/同性,韩国,2012,44281.6\r\n美国女孩的秘密,7.9,6916,剧情/家庭,美国/加拿大,2008,54636.4\r\n老男孩,6.4,6913,剧情/动作/悬疑/惊悚,美国,2013,44243.2\r\n午夜凶铃3：贞相大白 リング0 バ,6.6,6912,剧情/恐怖,日本,2000,45619.2\r\n留级之王,6.7,6909,喜剧/爱情,德国/美国,2002,46290.3\r\n曲线难题,7.3,6899,剧情/运动,美国,2012,50362.7\r\n她爱上了我的谎 カノジョは嘘を愛しすぎて,7.2,6899,剧情/爱情,日本,2013,49672.8\r\n最佳嫌疑人,5.9,6899,喜剧/爱情/悬疑,中国大陆,2014,40704.1\r\n一代骄马,8,6897,剧情/历史/运动,美国,2010,55176\r\n安因冈,7.3,6896,剧情/科幻/短片,美国,2013,50340.8\r\n精装追女仔 精裝追女,6.7,6895,喜剧/爱情,香港,1987,46196.5\r\n真心英雄,7.7,6893,剧情/动作/犯罪,香港,1998,53076.1\r\n理发师,6.3,6892,剧情/爱情/战争,中国大陆,2006,43419.6\r\n亲密,6.4,6890,剧情/情色,法国/英国/德国/西班牙,2001,44096\r\n青春大反抗,6.4,6880,剧情/喜剧/爱情,美国,2010,44032\r\n时光钟摆 振り,8.7,6876,剧情/动画/短片,日本,2012,59821.2\r\n不可分割,7.9,6874,剧情/短片,英国,2007,54304.6\r\n大鼻子情圣,7.8,6873,剧情/喜剧/爱情/历史,法国,1990,53609.4\r\n科学怪人,7.8,6871,剧情/爱情/科幻/恐怖,美国/日本,1994,53593.8\r\n我的野蛮女友,3.9,6871,喜剧/爱情,中国大陆,2010,26796.9\r\n王牌,4.5,6855,剧情/悬疑,中国大陆,2014,30847.5\r\n花月佳期,7.8,6854,喜剧/爱情,香港,1995,53461.2\r\n无头男人 ,8,6853,爱情/短片/奇幻,法国/阿根廷,2003,54824\r\n性工作者2：我不卖身，我卖子宫 性工作者2 我不賣身·,6.9,6852,剧情,香港,2008,47278.8\r\n13骇人,6.5,6850,惊悚/恐怖,美国,2014,44525\r\n爱别离,4.6,6849,剧情/爱情,中国大陆/台湾,2013,31505.4\r\n经过 經,6.9,6846,剧情,台湾,2005,47237.4\r\n总统千金欧游记,6.5,6846,喜剧/爱情,美国/英国,2004,44499\r\n猪头逛大街,7.1,6845,喜剧/冒险,美国,2008,48599.5\r\n诡拼车,4.5,6845,悬疑/惊悚,中国大陆,2013,30802.5\r\n倾城之恋 傾城之,6.7,6843,剧情/爱情/战争,香港,1984,45848.1\r\n椿三十郎,8.6,6839,剧情/动作/惊悚,日本,1962,58815.4\r\n冲锋队之怒火街头 衝鋒隊之怒火街,7.9,6839,动作/犯罪,香港,1996,54028.1\r\n有一天,6.6,6839,剧情/爱情/科幻,台湾,1905,45137.4\r\n新婚告急,6.4,6836,喜剧/爱情,美国/德国,2003,43750.4\r\n侦探拍档,6.3,6835,喜剧/动作/犯罪,美国,2010,43060.5\r\n破处之旅,6.4,6825,喜剧/爱情/冒险,美国,2008,43680\r\n修女艾达,7.7,6810,剧情,波兰/丹麦/法国/英国,2013,52437\r\n宝莱坞生死恋,8.3,6807,剧情/爱情/歌舞,印度,2002,56498.1\r\n你还可爱么 你還可愛,8.3,6805,短片,香港,2011,56481.5\r\n错爱,7.6,6803,剧情/短片/同性,美国,2005,51702.8\r\n早餐俱乐部,8.2,6801,剧情/喜剧,美国,1985,55768.2\r\n侠盗魅影,6.7,6801,喜剧/动作/犯罪/西部,法国/墨西哥/美国,2006,45566.7\r\n一碌蔗,6.7,6799,剧情/喜剧/爱情,香港,2002,45553.3\r\n李小龙我的兄弟,6.4,6797,剧情/动作/爱情/传记,中国大陆/香港,2010,43500.8\r\n锡尔斯玛利亚,7.7,6796,剧情,法国/瑞士/德国/美国/比利时,2014,52329.2\r\n危险关系,7.4,6780,剧情/惊悚/犯罪,美国,1997,50172\r\n福星高照,7.1,6778,喜剧/动作,香港,1985,48123.8\r\n淘气少女求爱记,6.4,6778,剧情/喜剧/爱情,韩国,2003,43379.2\r\n穿越火线 Август. Восьм,6.7,6777,剧情/动作/科幻/战争,俄罗斯,2013,45405.9\r\n罪孽,7.3,6775,剧情/惊悚,美国,2010,49457.5\r\n幽灵世界,7.9,6774,剧情/喜剧,美国/英国/德国,2001,53514.6\r\n间谍游戏,7,6772,动作/惊悚/犯罪,美国/德国/日本/法国,2001,47404\r\n上锁的房间SP 鍵のかかった部屋 ス,7.7,6770,剧情,日本,2014,52129\r\n乌鸦,7.4,6765,动作/惊悚/犯罪/奇幻,美国,1994,50061\r\n谢利 ,7.3,6764,剧情/喜剧/爱情,英国/法国/德国,2009,49377.2\r\n维多利亚的秘密201,8.3,6762,真人秀,美国,2012,56124.6\r\n敲开天堂的门,8.6,6759,剧情/喜剧/动作/犯罪,德国/比利时,1997,58127.4\r\n开心鬼救开心鬼,6.9,6756,喜剧/动画/恐怖/奇幻,香港,1905,46616.4\r\n爱的就是你,7.3,6751,爱情/科幻/惊悚,美国,2014,49282.3\r\n护送钱斯,8.1,6750,剧情/战争,美国,2009,54675\r\n四个房间,7.2,6749,喜剧,美国,1995,48592.8\r\n亚飞与亚基,7.6,6747,喜剧,香港,1992,51277.2\r\n花与蛇2：巴黎/静子 花と蛇2,6.8,6743,情色,日本,2005,45852.4\r\n自豪与荣耀,7,6737,剧情/惊悚/犯罪,美国/德国,2008,47159\r\n名利场,6.8,6737,剧情/爱情,英国/美国,2004,45811.6\r\n血溅13号,6.8,6737,剧情/动作/惊悚/犯罪,法国/美国,2005,45811.6\r\n世界奇妙物语 2014年春之特别篇 世にも奇妙な物,6.6,6736,悬疑/惊悚/恐怖/奇幻,日本,2014,44457.6\r\n猛龙 猛,5.8,6735,动作/犯罪,香港,2005,39063\r\n透明人,5.7,6735,动作/科幻/惊悚/恐怖,美国,2006,38389.5\r\n恩娇,6.6,6733,爱情,韩国,2012,44437.8\r\n山顶小屋咚咚摇,8,6729,喜剧/动画/短片/家庭,法国,1905,53832\r\n咒怨 录像带版 呪怨 ビデオオリジ,7.7,6727,悬疑/恐怖,日本,2000,51797.9\r\n龙在江湖,6.8,6722,剧情/动作/犯罪,香港,1998,45709.6\r\n镜子 Зеркал,8.9,6720,剧情/传记/历史/战争,苏联,1975,59808\r\n街舞少年,7.3,6720,剧情/爱情/歌舞,美国,2007,49056\r\n深入敌后,7.3,6719,剧情/动作/惊悚/战争,美国,2001,49048.7\r\n伊夫圣罗兰传,6.6,6716,爱情/同性/传记,法国,2014,44325.6\r\n剑风传奇 黄金时代篇1：霸王之卵 ベルセルク 黄金時代篇,8.2,6715,剧情/动作/动画/战争,日本,2012,55063\r\n同居蜜友,6.5,6714,爱情,香港,2001,43641\r\n妇女参政论者,8,6711,剧情/传记/历史,英国,2015,53688\r\n怪谈新耳袋 电影版 怪談新耳袋劇,7,6711,恐怖,日本,2004,46977\r\n狱前教育,6.4,6707,喜剧,美国,2015,42924.8\r\n来历不明,3.8,6703,科幻/悬疑,中国大陆,2013,25471.4\r\n命运之夜剧场版 劇場,7.1,6701,动画,日本,2010,47577.1\r\n真幌站前狂想曲 まほろ駅前狂騒,7.5,6700,剧情,日本,2014,50250\r\n致命罗密欧,5.9,6698,剧情/动作/爱情/惊悚/犯罪,美国,2000,39518.2\r\n坏姐姐之拆婚联盟,4.6,6694,喜剧/爱情,中国大陆/韩国,2014,30792.4\r\n圣人文森特,7.6,6692,剧情/喜剧,美国,2014,50859.2\r\n我们约会吧,4.7,6691,剧情/爱情,中国大陆,2011,31447.7\r\n查理·威尔森的战争,6.6,6690,剧情/喜剧/传记,美国,2007,44154\r\n拖延症,8,6685,动画/短片,英国,2007,53480\r\n银魂：白夜叉降诞预告 劇場版 銀魂 〜白夜叉降,9.6,6684,剧情/喜剧/动画/短片,日本,2008,64166.4\r\n蒙古王,6.8,6684,剧情/爱情/传记/战争,哈萨克斯坦/俄罗斯/蒙古/德国,2007,45451.2\r\n九个女仔一只鬼 9個女仔,6.2,6679,喜剧,香港,1905,41409.8\r\n机器战警,6.9,6674,动作/科幻/惊悚/犯罪,美国,1990,46050.6\r\n我爱贝克汉姆,6.5,6674,剧情/喜剧/爱情/运动,德国/英国/美国,2002,43381\r\n红颜,7.9,6673,剧情,中国/法国,2005,52716.7\r\n古畑任三郎之复苏之死 古畑任三郎ファイナル 今、甦,9.1,6672,悬疑/犯罪,日本,2006,60715.2\r\n狼族盟约,6.7,6669,动作/悬疑/恐怖/历史,法国,2001,44682.3\r\n生死谍变,7.4,6666,剧情/动作/爱情/悬疑/惊悚/犯罪,韩国,1999,49328.4\r\n董存瑞,7.1,6662,剧情/传记/战争,中国大陆,1905,47300.2\r\n神汉流氓,7.1,6660,喜剧/犯罪,韩国,2013,47286\r\n小胖妞,8.7,6658,动作/动画/短片,中国大陆,2011,57924.6\r\n去年在马里昂巴德 L&,8.2,6657,剧情/爱情/悬疑,法国/意大利,1961,54587.4\r\n怪谈 怪,8.2,6652,恐怖/奇幻,日本,1964,54546.4\r\n皇家刺青,4.8,6645,剧情/悬疑/武侠/古装,中国,2009,31896\r\n20世纪少年 20世紀少年 第1章,6.8,6644,科幻/悬疑/奇幻/冒险,日本,2008,45179.2\r\n最后的吸血鬼,7.7,6636,动作/动画/恐怖,日本,2000,51097.2\r\n百夫长,6.3,6633,剧情/动作/惊悚/历史/战争/冒险,英国,2010,41787.9\r\n三更,7.1,6632,恐怖,香港/日本/韩国,2004,47087.2\r\n造雨人,8.1,6629,剧情/惊悚/犯罪,美国,1997,53694.9\r\n雷霆战警,5.8,6629,动作,香港,2000,38448.2\r\n投靠女与出走男 駆込み女と駆出し,8.2,6626,剧情/喜剧,日本,2015,54333.2\r\n杀手悲歌,7.5,6617,剧情/动作/惊悚/犯罪,墨西哥/美国,1992,49627.5\r\n胡狼来了,5.4,6617,剧情/喜剧/犯罪,韩国,2012,35731.8\r\n尼罗河上的惨案,8.5,6610,剧情/悬疑/犯罪,英国,2004,56185\r\n玩具总动员之惊魂夜,8.1,6606,喜剧/动画/短片,美国,2013,53508.6\r\n生命之门,8.5,6605,动画/短片,法国,2010,56142.5\r\n轮回 輪,6.7,6605,悬疑/恐怖,日本,2005,44253.5\r\n约会～恋爱究竟是什么呢～ 2015夏季SP 秘密温泉 デート～恋とはどんな,8.4,6604,剧情/喜剧,日本,2015,55473.6\r\n北京杂种,6.6,6603,剧情,中国大陆,1993,43579.8\r\n感官游戏,7.1,6599,科幻/惊悚/冒险,加拿大/英国,1999,46852.9\r\n女孩 ガー,7.2,6593,剧情/爱情,日本,2012,47469.6\r\n沉睡者,7.8,6591,剧情/惊悚/犯罪,美国,1996,51409.8\r\n春心荡漾,7.3,6584,剧情/喜剧/爱情,美国,2005,48063.2\r\n再生门 ,7.3,6582,悬疑/惊悚,德国,2009,48048.6\r\n真爱满行囊,8.3,6580,剧情,法国,2006,54614\r\n疯狂店员,7.3,6579,喜剧,美国,2006,48026.7\r\n亚瑟3：终极对,6.5,6579,动画/家庭/奇幻/冒险,法国,2011,42763.5\r\n烈火战车,7.8,6576,剧情/历史/运动,英国,1981,51292.8\r\n鼠国流浪记,7.1,6575,喜剧/动画/家庭/冒险,英国/美国,2006,46682.5\r\n长大成人,6.3,6574,喜剧,美国,2013,41416.2\r\n纽约提喻法,7.9,6572,剧情,美国,2008,51918.8\r\n唯神能恕,5.5,6571,剧情/惊悚/犯罪,法国/泰国/美国/瑞典,2013,36140.5\r\n蛇眼,6.9,6567,悬疑/惊悚/犯罪,美国,1998,45312.3\r\n愈快乐愈堕落 愈快樂愈墮,7.3,6563,剧情/爱情/同性,香港,1998,47909.9\r\n安娜与贝拉,8.1,6560,剧情/喜剧/动画/短片,荷兰,1984,53136\r\n苹果核战记2 エクスマ,7.6,6558,动作/科幻/动画/惊悚,日本,2007,49840.8\r\n预言,6.7,6550,剧情/悬疑/惊悚/奇幻,美国,2007,43885\r\n传奇,6.5,6548,剧情/传记/犯罪,英国,2015,42562\r\n克隆丈夫,6.9,6546,剧情/爱情/科幻,德国/匈牙利/法国,2011,45167.4\r\n抚养亚利桑纳,7.5,6544,喜剧/悬疑/犯罪/冒险,美国,1987,49080\r\n情定巴黎,7.5,6540,喜剧/爱情,英国/美国,1995,49050\r\n十七岁 5月,6.7,6537,爱情,台湾,2015,43797.9\r\n瓶子,8.3,6530,剧情/爱情/动画/短片/冒险,美国,1905,54199\r\n科洛弗道1,7.1,6527,动作/科幻/悬疑/惊悚,美国,2016,46341.7\r\n空战英豪,7.4,6522,剧情/动作/爱情/历史/战争/冒险,美国,2006,48262.8\r\n不速之客,6.3,6514,动作/悬疑/惊悚,美国,2014,41038.2\r\n今天的恋爱,5.9,6514,喜剧/爱情,韩国,2015,38432.6\r\n星爸客,7.4,6513,喜剧,加拿大,2013,48196.2\r\n橡皮头,8,6509,恐怖/奇幻,美国,1977,52072\r\n被拒人生,7.5,6507,剧情/同性/传记,美国,2015,48802.5\r\n鸡毛信,7.3,6507,战争,中国大陆,1905,47501.1\r\n格莫拉,7.4,6506,剧情/犯罪,意大利,2008,48144.4\r\n武士的一分 武士の一,7.8,6503,剧情/爱情,日本,2006,50723.4\r\n最后的吸血鬼,5,6501,动作/惊悚/恐怖,香港/法国/中国大陆,2009,32505\r\n深海之战,5.2,6500,动作/科幻/悬疑/惊悚,韩国,2011,33800\r\n我和妻子的1778个故事 僕と,7.5,6494,剧情,日本,2011,48705\r\n我去世的吃醋女友,5.9,6494,喜剧/爱情/奇幻,美国,2008,38314.6\r\n理发师的情人,7.6,6493,剧情/喜剧/爱情,法国,1990,49346.8\r\n超强台风,4.1,6493,喜剧/科幻/灾难,中国大陆,2008,26621.3\r\n无处可逃,7.1,6489,动作/惊悚,美国,2015,46071.9\r\n性爱录像带,5.5,6486,喜剧,美国,2014,35673\r\n初恋,7.3,6485,剧情/爱情/犯罪,日本,2006,47340.5\r\n邻居同居,5.6,6484,爱情,日本,2014,36310.4\r\n咒怨(美,6.2,6483,悬疑/恐怖,美国/日本/德国,2004,40194.6\r\n初吻,7.4,6477,喜剧/爱情,法国,1982,47929.8\r\n搭错车,8.3,6474,剧情,香港/台湾,1905,53734.2\r\n悸动的心,7.3,6473,剧情,美国,2011,47252.9\r\n双面劳伦斯,7.8,6463,剧情/爱情,加拿大,2012,50411.4\r\n愈爱愈美丽,8.2,6462,剧情/喜剧/爱情/同性,英国,1996,52988.4\r\n布拉芙夫人,5.8,6457,爱情/惊悚/情色,韩国,2014,37450.6\r\n狼牙山五壮士,7.2,6452,战争,中国大陆,1905,46454.4\r\n情定日落桥,8.3,6449,喜剧/爱情,法国/美国,1979,53526.7\r\n最后的莫希干人,7.6,6449,爱情/战争/冒险,美国,1992,49012.4\r\n抽象画中的越南少女,6,6445,恐怖,韩国/越南,2007,38670\r\n午夜狂奔,8.5,6442,喜剧/动作/惊悚/犯罪/冒险,美国,1988,54757\r\n公主的诱惑,3.2,6442,喜剧/爱情,中国大陆,2013,20614.4\r\n蠢蛋搞怪秀,8,6440,喜剧,美国,2006,51520\r\n真相禁区,4.5,6436,悬疑/犯罪,中国大陆,2016,28962\r\n所罗门王凯恩,5.8,6432,动作/奇幻/冒险,France/CzechRepublic/UK,2009,37305.6\r\n黑马王子 黑馬王,6,6431,剧情/爱情,香港,1999,38586\r\n黄飞鸿之五：龙城歼霸 黃飛鴻之五龍城殲,6.7,6426,动作,香港,1994,43054.2\r\n少女灵异日记,3.5,6425,惊悚/恐怖,中国大陆,2013,22487.5\r\n影子大亨,7.7,6418,剧情/喜剧/爱情/奇幻,英国/德国/美国,1994,49418.6\r\n烈日灼人 Утомлённые солнц,8.7,6415,剧情/历史,俄罗斯/法国,1994,55810.5\r\n午夜出租车,3.5,6412,爱情/惊悚,中国大陆,2009,22442\r\n我家乐翻天,7.9,6411,喜剧/家庭,泰国,2010,50646.9\r\n摇滚新乐团,7.7,6409,剧情,日本,2010,49349.3\r\n为子搬迁,7.6,6409,剧情/喜剧/家庭,美国/英国,2009,48708.4\r\nX档案：我要相,5.8,6408,剧情/科幻/悬疑/惊悚,美国/加拿大,2008,37166.4\r\n冒险乐园,6.7,6407,剧情/喜剧/爱情,美国,2009,42926.9\r\n虫师：蚀日之翳 蟲師 日蝕,9.3,6405,动画,日本,2014,59566.5\r\n鼹鼠之歌 土竜の唄 潜入捜,6.8,6402,喜剧/动作,日本,2013,43533.6\r\n火鸡总动员,6,6398,喜剧/动画/冒险,美国,2014,38388\r\n布鲁克林警察,7.4,6393,剧情/动作/惊悚/犯罪,美国,2010,47308.2\r\n笔仙,4.2,6393,悬疑/惊悚,中国大陆,2014,26850.6\r\n委托人,7.2,6391,剧情/惊悚/犯罪,韩国,2011,46015.2\r\n性爱之后,6.8,6390,剧情/喜剧/同性,美国,2007,43452\r\n孪生密码,2.9,6390,动作/悬疑,中国大陆,2013,18531\r\n谋杀似水年华,3.8,6389,爱情/悬疑,中国大陆/香港,2016,24278.2\r\n没有青春的青春,7.6,6385,剧情/爱情/悬疑/惊悚/奇幻,美国/德国/意大利/法国,2007,48526\r\n20岁的差,6.8,6377,喜剧/爱情,法国,2013,43363.6\r\n再见，孩子们,8.5,6371,剧情/战争,法国/意大利/西德,1987,54153.5\r\n观鸟大年,7.5,6371,喜剧,美国,2011,47782.5\r\n蜗牛餐厅 食堂かたつむ,7.3,6371,剧情,日本,2010,46508.3\r\n好景当前,6.8,6362,剧情/喜剧/爱情,美国,2013,43261.6\r\n丑女也有春天,6,6357,喜剧,美国,2015,38142\r\n乔治和,8,6356,喜剧/动画/短片,美国,2009,50848\r\n我只是还没有全力以赴 俺はまだ本気出してないだ,7.4,6355,剧情/喜剧,日本,2013,47027\r\n真实罗曼史,8.2,6351,爱情/惊悚/犯罪,美国/法国,1993,52078.2\r\n苏默斯小镇,8,6348,剧情/喜剧,英国,2008,50784\r\n寻找午夜之吻,7.4,6347,喜剧/爱情,美国,2007,46967.8\r\n星河战队2：联邦英,5,6346,动作/科幻/恐怖/冒险,美国,2004,31730\r\n果酱短片集,7.7,6345,剧情/喜剧/科幻/奇幻,日本,2002,48856.5\r\n这里有情况,7.3,6339,剧情/喜剧/爱情,中国大陆,2011,46274.7\r\n消失爱人,4.7,6335,爱情/悬疑,中国大陆,2016,29774.5\r\n家在水草丰茂的地方,7.9,6332,剧情/儿童,中国大陆,2015,50022.8\r\n德州电锯杀人狂,5.5,6332,惊悚/恐怖,美国,2013,34826\r\n亡命夺宝,7.7,6331,喜剧/冒险,加拿大/美国,2001,48748.7\r\n拳皇,3,6329,动作/科幻/冒险,日本/台湾/德国/加拿大/美国/英国,2012,18987\r\n亲密如贼,6.1,6325,惊悚/犯罪,美国/德国,2009,38582.5\r\n巴啦啦小魔仙,3.5,6324,儿童/奇幻/冒险,中国大陆,2013,22134\r\n流星语 流星,8.5,6322,剧情/喜剧,香港,1999,53737\r\n无极限之危情速递,2.8,6319,喜剧/动作/爱情/冒险,中国大陆,2011,17693.2\r\n大奥 永远 右卫门佐·纲吉篇 大奥～永遠～[右衛門,6.9,6313,剧情/古装,日本,2012,43559.7\r\n睁开你的双眼,8.2,6306,剧情/爱情/科幻/悬疑/惊悚,西班牙/法国/意大利,1997,51709.2\r\n无穷动,6.3,6304,剧情,中国,2005,39715.2\r\n最长的旅程,7.2,6302,剧情/爱情,美国,2015,45374.4\r\n行过死荫之地,6.3,6300,剧情/悬疑/犯罪,美国,2014,39690\r\n谁说我们不会爱,3.7,6299,爱情,中国大陆,2014,23306.3\r\n极速赛车手,6.1,6290,动作/家庭/运动,美国/澳大利亚/德国,2008,38369\r\n无境之兽,7.8,6286,剧情/战争,美国,2015,49030.8\r\n欢乐树的朋友们：第一滴血,9,6280,喜剧/动画,美国/英国,2002,56520\r\n房车之旅,7.2,6280,喜剧/家庭/冒险,英国/德国/美国,2006,45216\r\n火影忍者疾风传剧场版：鸣人之死 劇場版 NARU,7.1,6280,动作/动画/家庭/奇幻/冒险,日本,2007,44588\r\n狼来了,7.9,6272,动画/短片,中国大陆,1905,49548.8\r\nK-19：寡,7.6,6272,剧情/惊悚/历史,英国/德国/美国/加拿大,2002,47667.2\r\n美人依旧,6.2,6271,剧情,中国大陆/美国/香港,2005,38880.2\r\n方子传,5.8,6265,情色/历史,韩国,2010,36337\r\n爱在那一天,4.2,6262,剧情/爱情,中国大陆,2012,26300.4\r\n阳阳 陽,6.7,6261,剧情,台湾,2009,41948.7\r\n谜中谜,8,6245,喜剧/爱情/悬疑/惊悚,美国,1963,49960\r\n杰克与吉尔,5.9,6244,喜剧/家庭,美国,2011,36839.6\r\n切尔诺贝利日记,5.6,6243,恐怖,美国,2012,34960.8\r\n金田一少年事件簿：吸血鬼传说杀人事件 金田一少年の事件簿 吸血鬼伝説殺人,6.9,6241,悬疑,日本,2005,43062.9\r\n世界奇妙物语 2012年春之特別篇 世にも奇妙な物,6.9,6241,悬疑/恐怖,日本,2012,43062.9\r\n烈火战车,6.7,6241,剧情/动作,香港,1995,41814.7\r\n歇斯底里,7.1,6239,喜剧/爱情,英国/法国/德国/卢森堡,2011,44296.9\r\n鬼铃,6.7,6237,剧情/科幻/悬疑/惊悚/恐怖,韩国,2002,41787.9\r\n我的野蛮同学,6,6237,喜剧/动作,香港,2001,37422\r\n007之,7,6236,动作/惊悚/冒险,英国,1962,43652\r\n爱你如诗美丽,8.1,6235,剧情/喜剧/爱情,意大利,2005,50503.5\r\n千子 センコロー,8.3,6232,动画/短片/奇幻,日本,2009,51725.6\r\n呼喊与细语,8.7,6231,剧情/爱情,瑞典,1972,54209.7\r\n校墓处 校墓,5.5,6224,恐怖,香港,2007,34232\r\n蚀,8.4,6223,剧情/爱情,法国/意大利,1962,52273.2\r\n十三猛鬼,6.4,6220,悬疑/惊悚/恐怖,美国/加拿大,2001,39808\r\n男孩与世界,8.7,6217,剧情/动画,巴西,2013,54087.9\r\n迷途知返,7.6,6214,剧情/喜剧/家庭,美国,2013,47226.4\r\n这个夏天有异性 這個夏天有異,6.1,6214,喜剧/爱情,香港,2002,37905.4\r\n随风而逝,6.7,6213,喜剧/动作,韩国,2012,41627.1\r\n晚安，好运,7.9,6209,剧情/历史,美国/英国/法国/日本,2005,49051.1\r\n醉拳3 醉,6.3,6206,动作,香港/中国大陆,1994,39097.8\r\n即使这样也不是我做的 それでもボクはやってな,8.3,6201,剧情,日本,2006,51468.3\r\n秦颂,7.3,6201,剧情,中国/香港,1996,45267.3\r\n死亡密码 ,7.5,6198,剧情/科幻/惊悚,美国,1998,46485\r\n极道鲜师电影版 ごくせ,6.6,6196,剧情/喜剧/动作,日本,2009,40893.6\r\n极道鲜师电影版 ごくせ,6.6,6195,剧情/喜剧/动作,日本,2009,40887\r\n疯狂的麦克斯,6.1,6194,动作/科幻/惊悚/冒险,澳大利亚,1979,37783.4\r\n反斗神鹰,7.4,6192,喜剧/动作/战争,美国,1991,45820.8\r\n倾城佳话,7.5,6191,剧情/喜剧/爱情,美国,1994,46432.5\r\n紧急迫降,6.2,6188,动作/灾难,中国,1905,38365.6\r\n午夜凶铃(美,6.3,6187,悬疑/恐怖,美国/日本,2002,38978.1\r\n公主新娘,6.9,6185,喜剧/爱情/家庭/奇幻/冒险,美国,1987,42676.5\r\n和尚与飞鱼,8.1,6183,喜剧/动画/短片/歌舞,法国,1905,50082.3\r\n好人寥寥,7.9,6181,剧情/悬疑/惊悚/犯罪,美国,1992,48829.9\r\n小孩不笨,8.3,6180,剧情/喜剧/家庭,新加坡,2006,51294\r\n梦想合伙人,4,6175,剧情/爱情,中国大陆,2016,24700\r\n假面,8.6,6170,剧情,瑞典,1966,53062\r\n恐怖解剖室,6.3,6168,惊悚/犯罪,美国,2008,38858.4\r\n套利交易,6.8,6166,剧情/惊悚,美国,2012,41928.8\r\n业余小偷,7.4,6159,喜剧/犯罪,美国,2000,45576.6\r\n纽约客@上,6.4,6158,剧情/喜剧/爱情,美国/中国大陆,2012,39411.2\r\n流言蜚语,6.4,6155,喜剧/爱情,美国/澳大利亚,2005,39392\r\n夹心蛋糕,7.2,6153,剧情/犯罪,英国,2004,44301.6\r\n雨月物语 雨月物,8.5,6152,剧情/悬疑/奇幻,日本,1953,52292\r\n鬼镇,7,6149,喜剧/爱情/奇幻,美国,2008,43043\r\n墨西哥人,7,6145,喜剧/动作/爱情/犯罪/冒险,美国,2001,43015\r\n蛇形刁手,6.8,6144,喜剧/动作,香港,1978,41779.2\r\n人性污点,7.2,6143,剧情/爱情/惊悚,美国/德国/法国,2004,44229.6\r\n至暗之时,5.4,6140,剧情/动作/科幻/惊悚,美国,2011,33156\r\n陆小凤传奇之陆小凤前传,7.7,6135,剧情/动作/武侠/古装,中国大陆,2007,47239.5\r\n红手指 新春ドラマSP 赤い指～「新参者」加賀恭一,7.9,6133,犯罪,日本,2011,48450.7\r\n长寿商会,7.8,6130,喜剧/爱情/家庭,韩国,2015,47814\r\n质数的孤独,7,6129,剧情,意大利/德国/法国,2010,42903\r\n亚利桑纳之梦,8.1,6128,剧情/喜剧/爱情/奇幻,美国/法国,1993,49636.8\r\n前任,7.7,6127,喜剧/爱情,意大利/法国,2009,47177.9\r\n生命最后一个月的新娘 余命1ヶ月の,7.1,6127,剧情,日本,2009,43501.7\r\n海岸线,7.4,6121,剧情/动作/战争,韩国,2002,45295.4\r\n亚瑟,6.2,6120,喜剧,美国,2011,37944\r\n子弹横飞百老汇,8.3,6119,喜剧/犯罪,美国,1994,50787.7\r\n我们与驻在先生的700日战争 ぼくたちと駐在さん,8.3,6117,喜剧,日本,2008,50771.1\r\n深海狂鲨,7.1,6117,动作/科幻/惊悚/灾难,美国/澳大利亚,1999,43430.7\r\n巨额交易,4.8,6116,剧情/喜剧/爱情/奇幻/冒险,中国大陆,2011,29356.8\r\n改朝换代,7.1,6113,剧情/动作/惊悚,美国/德国,2007,43402.3\r\n军官与男孩,8,6112,剧情/爱情/同性/战争,荷兰,1992,48896\r\n码头风云,7.9,6112,剧情/爱情/犯罪,美国,1954,48284.8\r\n浅坟,7.8,6109,惊悚/犯罪,英国,1995,47650.2\r\n芬妮与亚历山大,8.7,6107,剧情/悬疑/奇幻,法国/瑞典/西德,1982,53130.9\r\n艳舞女郎,6.8,6105,剧情/情色,法国/美国,1995,41514\r\n维多利亚,7.1,6101,剧情/惊悚/犯罪,德国,2015,43317.1\r\n父子老爷车,7.1,6098,喜剧,中国大陆,1905,43295.8\r\n考死2：教学实,5.5,6097,恐怖,韩国,2010,33533.5\r\n哈姆雷特,8.2,6095,剧情,英国,1948,49979\r\n爱不胜防,6.2,6095,剧情/爱情,美国/加拿大/英国,2009,37789\r\n赤警威龙,5.8,6095,动作/惊悚/犯罪,美国,2013,35351\r\n庐山恋,7.6,6094,剧情/爱情,中国大陆,1905,46314.4\r\n新熟女时代 女たちは二度遊,7.5,6092,剧情,日本,2010,45690\r\n今天开始恋爱吧 今日、恋をはじめま,5.7,6088,喜剧/爱情,日本,2012,34701.6\r\n切·格瓦拉传：阿根廷,7.6,6087,剧情/传记/历史/战争,法国/西班牙/美国,2008,46261.2\r\n灵动：鬼影实录,6.6,6086,惊悚/恐怖,美国,2011,40167.6\r\n非法制裁,7.2,6081,剧情/动作/惊悚/犯罪,美国,2007,43783.2\r\n鲁邦三世VS名侦探柯南 剧场版 ルパン三世vs,7.2,6077,动画,日本,2013,43754.4\r\n川岛芳子 川島芳,7,6076,剧情/动作/爱情/战争/犯罪,香港,1990,42532\r\n圣战骑士,7.3,6074,动作/爱情,美国,2001,44340.2\r\nX档案：征服未,6.9,6073,科幻/悬疑/惊悚/恐怖/犯罪,加拿大/美国,1998,41903.7\r\n龙在边缘,6.8,6068,惊悚,香港,1999,41262.4\r\n捉鬼敢死队,6.7,6068,喜剧/科幻/奇幻,美国,1984,40655.6\r\n小偷阿星,6.3,6068,剧情/喜剧,香港,1990,38228.4\r\n你那边几点 你那邊幾,7.7,6061,剧情/爱情,法国/台湾,2001,46669.7\r\n群盗：民乱的时代,6.4,6058,动作/古装,韩国,2014,38771.2\r\n欲望号快车,6.8,6057,剧情/惊悚/情色,加拿大/英国,1996,41187.6\r\n狂舞派,7.4,6056,剧情/爱情/歌舞,香港,2013,44814.4\r\n儿子的房间,7.9,6054,剧情/悬疑/家庭,法国/意大利,2001,47826.6\r\n最长的一天,8.4,6053,剧情/动作/历史/战争,美国,1962,50845.2\r\n泰若星球,7,6052,动作/科幻/动画/惊悚/战争/冒险,美国,2010,42364\r\n小慈善,7,6043,剧情,中国大陆,2014,42301\r\n黑金杀机,5,6041,剧情/惊悚/犯罪,美国/英国,2013,30205\r\n面对巨人,8.1,6040,剧情/运动,美国,2006,48924\r\n养鬼吃人,7.3,6039,恐怖,英国,1987,44084.7\r\n火烧圆明园,7.3,6037,历史/古装,香港/中国,1983,44070.1\r\n我说啊，我说,7.9,6035,动画/短片,台湾,2009,47676.5\r\n黑暗扫描仪,7.1,6034,剧情/科幻/动画/悬疑/惊悚/犯罪,美国,2006,42841.4\r\n阁楼,7,6030,剧情/爱情/悬疑/惊悚/犯罪,比利时,2008,42210\r\n广播时间 ラヂオの時,8.5,6029,喜剧,日本,1997,51246.5\r\n东风破 東風,7.7,6029,剧情,香港,2010,46423.3\r\n妈咪,4.9,6029,剧情/爱情,中国大陆,2013,29542.1\r\n恋情告急 戀情告,5.9,6026,喜剧/爱情,香港,2004,35553.4\r\n与龙共舞 與龍共,7,6023,剧情/喜剧/爱情,香港,1991,42161\r\n黄色的眼泪 黄色い,8.1,6021,剧情,日本,2007,48770.1\r\n应许之地,6.9,6019,剧情,美国,2012,41531.1\r\n旅行终点,7.6,6016,剧情,美国,2015,45721.6\r\n纸之月 紙の,7.2,6014,剧情/犯罪,日本,2014,43300.8\r\n呼啸山庄,7.8,6012,剧情/爱情,美国,1939,46893.6\r\n地雷区,8.4,6011,剧情/历史/战争,丹麦/德国,2015,50492.4\r\n世界奇妙物语 2009秋之特别篇 世にも奇妙な物,7.6,6011,悬疑/恐怖,日本,2009,45683.6\r\n丛林大反攻,6.8,6011,喜剧/动画/家庭/冒险,美国,2008,40874.8\r\n死魂盒,5.9,6004,惊悚/恐怖,美国/加拿大,2012,35423.6\r\n洛克,7.5,6003,剧情,美国/英国,2013,45022.5\r\n现代豪侠传 現代豪俠,7.2,6002,喜剧/动作/科幻,香港,1993,43214.4\r\n我们仍未知道那天所看见的花的名字 剧场版 劇場版 あの日見た花の名前を僕達はまだ知ら,8.1,5995,动画,日本,2013,48559.5\r\n末日病毒,6.4,5994,剧情/惊悚/灾难,美国,2009,38361.6\r\n约书亚,7.1,5989,剧情/惊悚/恐怖,美国,2007,42521.9\r\n幸存者,5.8,5985,动作/惊悚,英国/美国,2015,34713\r\n嚎叫,7.4,5982,剧情/同性/传记,美国,2010,44266.8\r\n头山 頭,8.4,5981,喜剧/动画/短片/奇幻,日本,2002,50240.4\r\n秋之白华,6.6,5979,剧情/爱情/传记/历史,中国大陆,2011,39461.4\r\n稻草狗,7.6,5978,剧情/惊悚,英国/美国,1971,45432.8\r\n校花我爱你,5.6,5976,喜剧/爱情,加拿大/美国,2009,33465.6\r\n46亿年之恋 4,7.2,5975,剧情/同性,日本,2006,43020\r\n火腿，火腿 J,6.7,5975,剧情/喜剧/爱情/情色,西班牙,1992,40032.5\r\n男孩们回来了,8,5971,剧情/家庭,澳大利亚/英国,2009,47768\r\n遇见波莉,6.4,5969,喜剧/爱情,美国,2004,38201.6\r\n阿呆与阿瓜,6.2,5969,喜剧,美国,2014,37007.8\r\n雀圣3自摸三百番 雀聖3自摸,5.7,5966,喜剧,香港,2007,34006.2\r\n雪宝的鼻子,8.7,5964,喜剧/动画/短片,美国,2013,51886.8\r\n着魔,7.7,5962,剧情/恐怖,法国/西德,1981,45907.4\r\n佛莱迪大战杰森,6.2,5959,惊悚/恐怖,美国/加拿大/意大利,2003,36945.8\r\n告密者,6,5959,剧情/动作/惊悚,美国,2013,35754\r\n裸,5.8,5956,情色/传记,日本,2010,34544.8\r\n绝世好宾 絕世好,6.1,5953,喜剧/爱情,香港,2004,36313.3\r\n非礼勿视,6.1,5953,惊悚/恐怖,美国,2006,36313.3\r\n魔侠传之唐吉可德,4.3,5947,剧情/喜剧/动作/爱情/武侠/古装,中国大陆,2010,25572.1\r\n爱情进化论,4.4,5946,喜剧/爱情,中国大陆,2014,26162.4\r\n心灵点滴,8.5,5945,剧情/喜剧/传记,美国,1998,50532.5\r\n金玉盟,8.4,5945,剧情/喜剧/爱情,美国,1957,49938\r\n圣诞怪杰,6.7,5945,喜剧/家庭/奇幻,美国/德国,2000,39831.5\r\n何处是我朋友的家,8.5,5941,剧情,伊朗,1905,50498.5\r\n午夜邂逅,6.9,5934,剧情/喜剧/爱情,美国,2014,40944.6\r\n万世魔星,8.1,5928,喜剧,英国,1979,48016.8\r\n鬼娃新娘,6.7,5927,喜剧/惊悚/恐怖,美国/加拿大,1998,39710.9\r\n军犬麦克斯,7.1,5921,剧情/冒险,美国,2015,42039.1\r\n暗物质,6.8,5921,剧情,美国,2007,40262.8\r\n西线无战事,8.5,5920,剧情/动作/历史/战争,美国,1930,50320\r\n逃亡鳄鱼岛,5.7,5919,动作/惊悚/恐怖/冒险,澳大利亚/美国,2009,33738.3\r\n屋顶上的童年时光,8.4,5916,剧情/家庭,意大利,2006,49694.4\r\n十字路口 クロスロー,8.1,5913,剧情/动画/短片,日本,2014,47895.3\r\n精装难兄难弟,7.7,5911,喜剧,香港,1997,45514.7\r\n摇滚年代,5.7,5908,剧情/喜剧/歌舞,美国,2012,33675.6\r\n迷情站台,8.4,5904,剧情/同性,英国,2007,49593.6\r\n阿Q正,7.9,5904,剧情,中国大陆,1905,46641.6\r\n飞机总动员,6.4,5903,喜剧/动画/冒险,美国,2013,37779.2\r\n困在爱中,7.4,5899,剧情/喜剧,美国,2012,43652.6\r\n中央舞台,8.2,5897,剧情/歌舞,美国,2000,48355.4\r\n在屋顶上流浪,7.8,5896,剧情/爱情/悬疑,英国,2007,45988.8\r\n百鸟朝凤,8.4,5895,剧情,中国大陆,2016,49518\r\n我和春天有个约会,8.1,5895,剧情/歌舞,香港,1994,47749.5\r\n邋遢大王奇遇记,8,5895,动画/儿童,中国大陆,2012,47160\r\nO的故,6.5,5895,剧情/情色,法国/西德/加拿大,1975,38317.5\r\n猫咪又回来了,7.8,5880,喜剧/动画/短片/歌舞/家庭,加拿大,1988,45864\r\n甜姐儿,7.5,5865,喜剧/爱情/歌舞,美国,1957,43987.5\r\n争钱斗爱,7,5865,喜剧/爱情,泰国,2012,41055\r\n狱中豪杰,6.8,5861,喜剧/动作,美国,2007,39854.8\r\n星银岛,7.7,5859,爱情/科幻/动画/家庭/冒险,美国,2002,45114.3\r\n我们都是坏孩子,3.8,5859,剧情,中国大陆,2013,22264.2\r\n枕边人,8.2,5858,爱情/短片/同性,美国,1905,48035.6\r\n床的另一边,6.9,5855,喜剧,法国,2009,40399.5\r\n非常小特工之时间大盗,5.6,5853,喜剧/动作/科幻/家庭/冒险,美国,2012,32776.8\r\n王牌情敌 2013我,5.5,5850,喜剧/爱情,香港,2013,32175\r\n富贵再三逼人,7,5848,喜剧/家庭,香港,1989,40936\r\n阴阳路 陰陽,6.6,5846,恐怖,香港,1997,38583.6\r\n逃出熔炉,6.3,5846,剧情/惊悚/犯罪,美国/英国,2013,36829.8\r\n茗记：,8,5839,动画/短片,中国大陆,2007,46712\r\n潮性办公室,4.6,5836,剧情/喜剧,香港,2011,26845.6\r\n寻求正义,6.4,5835,剧情/惊悚,美国,2011,37344\r\n北壁,8.5,5834,剧情/历史/冒险/运动,德国/奥地利/瑞士,2008,49589\r\n向日葵与幼犬的7天 ひまわりと子犬の,7.6,5834,剧情,日本,2013,44338.4\r\n偷天游戏,7.1,5833,爱情/惊悚/犯罪,美国,1999,41414.3\r\n孕期完全指导,6.4,5831,剧情/喜剧/爱情,美国,2012,37318.4\r\n东之伊甸剧场版1：伊甸之王 東のエデン ,7.1,5830,动画/悬疑,日本,2009,41393\r\n亨利四世：第一部分,8.7,5819,剧情/历史,英国/美国,2012,50625.3\r\n印度支那,8.1,5817,剧情/爱情,法国/越南,1992,47117.7\r\n四月一日灵异事件簿：春梦记 前篇 xxx,8.7,5815,剧情/动画/悬疑,日本,2009,50590.5\r\n偷龙转凤,8.1,5815,喜剧/爱情/犯罪,美国,1966,47101.5\r\n火龙帝国,6,5813,动作/科幻/惊悚/奇幻/灾难,英国/爱尔兰/美国,2002,34878\r\n第十三层,8.4,5812,科幻/悬疑/惊悚,澳大利亚,1988,48820.8\r\n远离尘嚣,6.8,5811,剧情/爱情,英国/美国,2015,39514.8\r\n这里的黎明静悄悄 А зори здесь т,8.6,5808,剧情/历史/战争,苏联,1972,49948.8\r\n金衣女人,7.8,5806,剧情/传记/历史/战争,美国/英国,2015,45286.8\r\n鱿鱼和鲸,7.7,5804,剧情/喜剧/家庭,美国,2005,44690.8\r\n哆啦A梦：大雄与绿巨人传 映画ドラえもん のび太と緑の,7.1,5804,动画,日本,2008,41208.4\r\n赌霸 賭,6.4,5803,喜剧/动作/爱情,香港,1991,37139.2\r\n跟我结婚,8.1,5802,短片,澳大利亚,2008,46996.2\r\n世界奇妙物语 2009春之特别篇 世にも奇妙な物語 豪華キャストで,7.8,5802,悬疑/恐怖,日本,2009,45255.6\r\n命运石之门剧场版：负荷领域的既视感 劇場版 STEINS;,8.7,5798,动画,日本,2013,50442.6\r\n鸳鸯蝴蝶,7.1,5795,剧情/爱情,中国大陆,2005,41144.5\r\n一眉道人,7.2,5794,喜剧/动作/恐怖/奇幻,香港,1989,41716.8\r\n魔窟,6.1,5793,动作/惊悚/恐怖/冒险,美国/德国,2005,35337.3\r\n殉难者,6.9,5786,剧情/惊悚/恐怖,法国/加拿大,2008,39923.4\r\n睡美人,8,5785,喜剧/动画/短片,加拿大,2007,46280\r\n资产阶级的审慎魅力,8.2,5780,剧情/喜剧/奇幻,法国/西班牙/意大利,1972,47396\r\n长大成人,7.9,5778,剧情,中国大陆,1997,45646.2\r\n英雄儿女,7.7,5777,剧情/战争,中国大陆,1905,44482.9\r\n海贼王剧场版1：黄金岛冒险 O,7.7,5776,喜剧/动作/动画/奇幻/冒险,日本,2000,44475.2\r\n意,8,5775,剧情,澳大利亚/新加坡,2007,46200\r\n奇谈,6.9,5774,剧情/恐怖,韩国,2007,39840.6\r\n危狱惊情,5.8,5774,剧情/惊悚,美国,2010,33489.2\r\n准时,7.8,5773,剧情/短片,德国,2008,45029.4\r\n双面君王,7.3,5772,剧情/历史/古装,韩国,2012,42135.6\r\n共犯,6.5,5771,惊悚/犯罪,韩国,2013,37511.5\r\n时光倒流的话,7.2,5770,爱情,香港,1905,41544\r\n烟飞烟灭 煙飛煙,8.1,5769,剧情/短片,香港,2000,46728.9\r\n双城故事 雙城故,7.8,5769,剧情/爱情,香港,1991,44998.2\r\n无限复活,6.8,5768,剧情/爱情/科幻/奇幻,香港,2002,39222.4\r\n猛鬼毕业典礼 ,7.1,5764,喜剧/奇幻/冒险,西班牙,2012,40924.4\r\n地下墓穴,6.6,5763,惊悚/恐怖,美国,2014,38035.8\r\n红气球之旅,7.5,5761,剧情/家庭,法国/台湾,2007,43207.5\r\n深喉,5.3,5757,喜剧/情色,美国,1972,30512.1\r\n过年回家,7.2,5753,剧情,中国/意大利,2000,41421.6\r\n犹大之吻,6.8,5750,剧情/科幻/同性,美国,2011,39100\r\n名侦探柯南特典：新一与小兰·麻将牌与七夕的回忆 名探偵コナン MAGIC FILE3 ,7.3,5747,动画,日本,2009,41953.1\r\n飞鹰艾迪,8.1,5746,剧情/喜剧/传记/运动,英国/美国/德国,2016,46542.6\r\n危机解密,6.5,5745,剧情/传记,美国/比利时,2013,37342.5\r\n超级魔术师,6,5745,喜剧,美国,2013,34470\r\n超级杯奶爸,7.2,5742,喜剧/家庭/运动,美国,2007,41342.4\r\n四十而惑,6.6,5741,喜剧,美国,2012,37890.6\r\n乌鸦的拇指 カラスの親,7.7,5740,剧情/悬疑,日本,2012,44198\r\n死囚大逃杀,6.2,5737,动作/惊悚/犯罪,美国,2007,35569.4\r\n安娜情欲史,6.2,5736,剧情/爱情/情色,丹麦,2005,35563.2\r\n记忆提取,7.1,5733,剧情/科幻,美国,2012,40704.3\r\n股疯,7.4,5730,剧情/喜剧,中国大陆/香港,1994,42402\r\n愤怒管理,6.7,5725,喜剧,美国,2003,38357.5\r\n防火墙,6,5725,惊悚/犯罪,美国/澳大利亚,2006,34350\r\n亨利的罪行,6.5,5722,剧情/喜剧/爱情/犯罪,美国,2010,37193\r\n棺木,5.5,5722,惊悚/恐怖,泰国/韩国/新加坡/美国,2008,31471\r\n怪兽,6.1,5721,剧情/爱情/科幻,英国,2010,34898.1\r\n唇上之歌 くちびるに歌,7.5,5719,剧情,日本,2015,42892.5\r\n卡里加里博士的小屋,8.6,5712,悬疑/恐怖/犯罪,德国,1920,49123.2\r\n兔子和鹿,8.9,5707,动画/短片,匈牙利,2013,50792.3\r\n鬼玩人,7,5707,恐怖,美国,1981,39949\r\n寻找心中的你 王家,7.4,5704,剧情/爱情,香港,2016,42209.6\r\n麻辣宝贝,7,5704,剧情/喜剧/爱情,美国,2003,39928\r\n曼联重生,8.6,5703,剧情,英国,2011,49045.8\r\n月朗星稀夜,7.9,5702,动画/短片,美国,1905,45045.8\r\n幸福中转栈,4.4,5702,剧情/喜剧,中国大陆,2014,25088.8\r\n情欲写真 L,7.1,5700,剧情,法国/葡萄牙,2000,40470\r\n陆小凤传奇之大金鹏王,7.4,5699,动作/武侠/古装,中国大陆,2007,42172.6\r\n女尸谜案,7.4,5697,惊悚,西班牙,2012,42157.8\r\n半梦半醒的人生,8.2,5693,剧情/动画/悬疑/奇幻,美国,2001,46682.6\r\n海盗,6.5,5693,动作/冒险,韩国,2014,37004.5\r\n曼谷之恋,6.8,5691,剧情/同性,泰国,2007,38698.8\r\n铁血战士,6.4,5687,动作/科幻/惊悚,美国,1990,36396.8\r\n第八日 ,8.5,5685,剧情/喜剧,比利时/法国/英国,1996,48322.5\r\n宝岛双雄 寶島雙,4.4,5681,喜剧/动作/爱情,中国大陆/台湾,2012,24996.4\r\n晚餐游戏,7.9,5677,喜剧,法国,1998,44848.3\r\n泪王子 淚王,6.4,5675,剧情,香港/台湾,2009,36320\r\n茶花女,8.2,5674,剧情/爱情,美国,1936,46526.8\r\n背靠背，脸对脸,9,5673,剧情,中国大陆/香港,1994,51057\r\n霸王花,6.6,5671,动作,香港,1988,37428.6\r\n飞一般爱情小说,8,5667,剧情/喜剧/爱情,香港,1905,45336\r\n三只猴子 ,7.6,5662,剧情,土耳其/法国/意大利,2008,43031.2\r\n会更好的,7.7,5661,剧情/爱情/同性,泰国,2012,43589.7\r\n小叮当,7.7,5658,动画/家庭/奇幻/冒险,美国,2008,43566.6\r\n高潮艺术,7.5,5658,剧情/爱情/同性,加拿大/美国,1998,42435\r\n熊出没之雪岭熊风,7.2,5656,喜剧/动画/家庭/冒险,中国大陆,2015,40723.2\r\n冬之蝉 冬の,8.7,5652,剧情/动画/同性,日本,2007,49172.4\r\n原始星球 ,8.6,5651,科幻/动画,法国/捷克斯洛伐克,1973,48598.6\r\n恐色症,8.3,5651,喜剧/动画/短片,比利时,1905,46903.3\r\n屋顶的公寓 屋上のあるアパー,7.3,5646,剧情,日本,2011,41215.8\r\n时尚先生,4.8,5646,剧情/喜剧/爱情,中国,2008,27100.8\r\n扒手,8.4,5644,剧情/犯罪,法国,1959,47409.6\r\n人生七部曲,8.2,5641,喜剧/歌舞,英国,1983,46256.2\r\n黑色闪电 Черная Молн,6.3,5639,动作/科幻/惊悚,俄罗斯,2009,35525.7\r\n海边旅店 シーサイドモーテ,7.2,5638,剧情/喜剧,日本,2010,40593.6\r\n致命弯道,4.8,5636,惊悚/恐怖,美国,2012,27052.8\r\n暗流2：末日天使,6.7,5634,动作/惊悚/犯罪,法国/意大利/英国,2004,37747.8\r\n生活残骸,6.4,5634,喜剧,美国,2015,36057.6\r\n魔法教师,6.4,5626,喜剧/科幻,英国/美国,2015,36006.4\r\n小飞侠 小飛,6.5,5623,喜剧,香港,1995,36549.5\r\n解剖学教室,5.9,5623,惊悚/恐怖,韩国,2007,33175.7\r\n浪荡子,7.5,5622,剧情/历史,英国/澳大利亚,2005,42165\r\n拉里·克劳,6.6,5621,剧情/喜剧,美国,2011,37098.6\r\n吻我,7.2,5620,剧情/爱情/同性/家庭,瑞典,2011,40464\r\n八面玲珑的申小姐,6.3,5620,喜剧/爱情,韩国,2007,35406\r\n吮拇指的人,7.2,5619,剧情/喜剧,美国,2005,40456.8\r\n秋天的故事,8.3,5615,剧情/爱情,法国,1998,46604.5\r\n恐怖角,7.3,5615,剧情/惊悚/犯罪,美国,1991,40989.5\r\n情归新泽西,7.5,5614,剧情/喜剧/爱情,美国,2004,42105\r\n少许灰烬,7.2,5610,剧情/同性/传记,英国,2008,40392\r\n幸福的黄手帕 幸福の黄色いハンカ,8.1,5609,剧情/喜剧,日本,1977,45432.9\r\n拳霸,6.2,5607,动作,泰国,2008,34763.4\r\n堤 ,8.8,5599,剧情/爱情/科幻/短片,法国,1962,49271.2\r\n黑衣人：异形入侵,8.2,5597,动作/科幻/短片,美国,1905,45895.4\r\n狂人皮埃罗,8.2,5596,剧情/喜剧/爱情/歌舞/犯罪,法国/意大利,1965,45887.2\r\n阿马尔菲：女神的报酬 アマルフィ 女神の,6.9,5595,剧情,日本,2009,38605.5\r\n告别有情天,8.3,5590,剧情/爱情,英国/美国,1993,46397\r\n新邻里联防,6.1,5589,喜剧/科幻,美国,2012,34092.9\r\n宝葫芦的秘密,6,5588,剧情/家庭,中国/美国,2007,33528\r\n小孩不笨,8,5586,剧情/喜剧,新加坡,2002,44688\r\n世界奇妙物语 2008秋之特别篇 世にも奇妙な物,7.8,5584,剧情/悬疑/恐怖,日本,2008,43555.2\r\n深海圆疑,7,5584,科幻/悬疑/惊悚/恐怖,美国,1998,39088\r\n同窗之爱,7.8,5583,剧情/爱情/同性/传记,英国,1984,43547.4\r\n坏小子特攻 B,6,5582,剧情/喜剧/动作/爱情,香港,2000,33492\r\n世界奇妙物语 2008春之特别篇 世にも奇妙な物,7.7,5580,悬疑/恐怖,日本,2008,42966\r\n陆小凤传奇之铁鞋传奇,7.6,5580,动作/武侠/古装,中国大陆,2007,42408\r\n非强力春药,7.6,5577,喜剧/爱情/奇幻,美国,1995,42385.2\r\n阴间大法师,7.8,5575,喜剧/奇幻,美国,1988,43485\r\n闪灵侠,5.4,5575,动作/惊悚/犯罪/奇幻,美国,2008,30105\r\n水中生活,7.9,5572,剧情/喜剧/冒险,美国,2004,44018.8\r\n圣诞传说,7.7,5571,剧情/家庭/奇幻,芬兰,2007,42896.7\r\n无须多言,7.4,5571,剧情/爱情,美国,2013,41225.4\r\n决战以拉谷,7.6,5564,剧情/悬疑/惊悚/犯罪,美国,2007,42286.4\r\n的士飚花,6.5,5560,喜剧/动作/惊悚/犯罪,美国/法国,2005,36140\r\n工作女郎,6.5,5560,喜剧,韩国,2015,36140\r\n哈特的战争,7.5,5556,剧情/战争,美国,2002,41670\r\n午夜心跳,3.3,5555,恐怖,中国大陆,2010,18331.5\r\n加州之王,7.6,5552,剧情/喜剧,美国,2007,42195.2\r\n草原英雄小姐妹,7.5,5551,动画,中国大陆,1905,41632.5\r\n血色孤语,7.1,5549,喜剧/惊悚/犯罪,美国/德国,2014,39397.9\r\n永远的0 永,7.6,5548,战争,日本,2013,42164.8\r\n常在我心,7.6,5545,爱情,香港,2001,42142\r\n肥佬教授,6.3,5545,喜剧/爱情/科幻,美国,1996,34933.5\r\n与外婆同行,7.7,5544,剧情/喜剧/同性/家庭,美国,2015,42688.8\r\n美国情人,7.1,5544,喜剧,美国,2015,39362.4\r\n心魔,6.3,5539,剧情/惊悚/家庭/犯罪,香港/马来西亚/韩国,2009,34895.7\r\n潘金莲之前世今生 潘金蓮之前世今,6.6,5537,剧情/悬疑/奇幻,香港,1989,36544.2\r\n僵尸叔叔,7.4,5536,恐怖,香港,1988,40966.4\r\n中间人,7.3,5536,剧情/喜剧/犯罪,美国,2010,40412.8\r\n童军手册之僵尸启示录,6.6,5535,喜剧/恐怖,美国,2015,36531\r\n母亲 母べ,8.6,5534,剧情/家庭,日本,2008,47592.4\r\n同窗的爱,7.7,5533,剧情/喜剧/爱情/同性,瑞典/丹麦,1999,42604.1\r\n大胃王,3.7,5532,喜剧,中国大陆,2010,20468.4\r\n送报男孩,6.2,5530,惊悚,美国,2012,34286\r\n大地雄心,7.8,5529,剧情/爱情/西部/冒险,美国,1992,43126.2\r\n总铺师 總舖,7.2,5518,剧情/喜剧,台湾,2013,39729.6\r\n逃学外传 逃學外,6.7,5518,剧情/喜剧,香港/台湾,1992,36970.6\r\n网球王子 テニスの王子,6.4,5518,动作,日本,2006,35315.2\r\n最后一班地铁 ,7.8,5517,剧情/爱情,法国,1980,43032.6\r\n疯狂的麦克斯,7.2,5516,动作/科幻/惊悚/冒险,澳大利亚,1981,39715.2\r\n神秘马戏团 奇妙なサーカ,7.2,5513,剧情/悬疑/恐怖,日本,2005,39693.6\r\n闪电奇迹,8.3,5512,剧情/科幻/悬疑/惊悚/奇幻,美国,1995,45749.6\r\n女人公敌,3.5,5509,喜剧,中国大陆,2013,19281.5\r\n颠倒的帕特玛 サカサマのパテ,7.9,5504,动画,日本,2013,43481.6\r\n弗鲁特韦尔车站,7.4,5501,剧情/传记,美国,2013,40707.4\r\n碧海追踪,6.7,5500,动作/惊悚/犯罪/冒险,美国,2005,36850\r\n骆驼祥子,7.8,5499,剧情,中国大陆,1905,42892.2\r\n黑帮暴徒,7.4,5499,剧情/犯罪,南非/英国,2005,40692.6\r\n赤桥下的暖流 赤い橋の下のぬるい,6.8,5499,剧情/爱情/情色,日本/法国,2001,37393.2\r\n黑暗乡村,6.5,5499,悬疑/惊悚/犯罪,美国,2009,35743.5\r\n棋王,7.8,5498,剧情,香港,1991,42884.4\r\n男孩,8,5490,爱情/同性,荷兰,2014,43920\r\n怒犯天条,7.1,5490,喜剧/奇幻/冒险,美国,2000,38979\r\n害虫,7,5484,剧情,日本,2002,38388\r\n前任女友,6,5481,喜剧/爱情,德国/美国/加拿大,2005,32886\r\n大都会,5.1,5481,剧情,加拿大/法国/葡萄牙/意大利,2012,27953.1\r\n突然变异,6.2,5479,喜剧,韩国,2015,33969.8\r\n失常,7.4,5474,喜剧/动画/奇幻,美国,2015,40507.6\r\n阿嬷的梦中情人 阿嬤的夢中情,7.2,5473,喜剧/爱情,台湾,2013,39405.6\r\n当尼采哭泣,7.6,5468,剧情,美国,2007,41556.8\r\n黄飞鸿&#39;92之龙行天下 ,6.6,5466,动作,香港,1992,36075.6\r\n艾玛,7.5,5464,喜剧/爱情,英国/美国,1996,40980\r\n滑稽人物,6.5,5464,剧情/喜剧,美国,2009,35516\r\n兔侠传奇,5.9,5460,喜剧/动作/动画/冒险/武侠,中国大陆,2011,32214\r\n隐藏的恋情 ,8.6,5451,剧情/爱情/同性,法国,2005,46878.6\r\n巴霍巴利王(,7.1,5447,动作/历史/冒险,印度,2016,38673.7\r\n大玩家,4.7,5447,喜剧,中国大陆,2010,25600.9\r\n癫佬正传 癲佬正,8.3,5443,剧情,香港,1986,45176.9\r\n死神剧场版：钻石星尘的反叛 另一个冰轮丸 劇場版 BLEACH ブリ,7.2,5442,动作/动画/惊悚/恐怖,日本,2007,39182.4\r\n绝命岛,3.2,5439,喜剧,中国大陆,2010,17404.8\r\n猫的集会 猫の集,8.7,5438,动画/短片/奇幻,日本,2007,47310.6\r\n怒海潜将,8.2,5438,剧情/传记,美国,2000,44591.6\r\n夜莺,6.5,5437,剧情/家庭,中国大陆/法国,2014,35340.5\r\n少女日记,7,5436,剧情,美国,2015,38052\r\n小心为上,6.7,5435,剧情/惊悚/犯罪,美国,2007,36414.5\r\n伤心小号曲,7.7,5430,剧情/战争,西班牙/法国,2010,41811\r\n穿越西伯利亚,6.8,5429,剧情/悬疑/惊悚/犯罪,英国/德国/西班牙/立陶宛,2008,36917.2\r\n四月一日灵异事件簿·笼 ,8.9,5428,动画/恐怖/短片,日本,2010,48309.2\r\n保卫者,7.5,5424,剧情/喜剧/犯罪,加拿大/美国/英国,1905,40680\r\n鬼肢解,6.9,5424,惊悚,泰国,2007,37425.6\r\n室友 ルームメイ,6,5424,恐怖,日本,2013,32544\r\n007之俄罗,7.2,5420,动作/爱情/惊悚/冒险,英国,1963,39024\r\n火影忍者疾风传剧场版：羁绊 劇場版 NARUT,7,5419,动作/动画/奇幻,日本,2008,37933\r\n索尔之子,7.4,5417,剧情/惊悚/战争,匈牙利,2015,40085.8\r\n夺樽,3.5,5413,剧情/动作,中国大陆,2014,18945.5\r\n似是故人来,7.9,5408,剧情/爱情/悬疑,美国/法国,1993,42723.2\r\n胖男孩快跑,7.1,5408,喜剧/爱情/运动,英国,2007,38396.8\r\n感染,6.8,5408,剧情/恐怖,日本,2004,36774.4\r\n新街口,6.4,5408,剧情,中国,2006,34611.2\r\n火山高校,5.9,5408,动作/奇幻,韩国,2001,31907.2\r\n剑风传奇 黄金时代篇3：降临 ベルセルク 黄金時,8.6,5406,剧情/动作/动画/战争,日本,2013,46491.6\r\n龙虎风云,7.5,5406,剧情/动作/惊悚/犯罪,香港,1987,40545\r\n今晚带我回家,6.3,5398,剧情/喜剧,美国/德国,2011,34007.4\r\n蓝色青春 青い,7.9,5397,剧情,日本,2001,42636.3\r\n南国再见，南国 南國再見，南,7.9,5394,剧情/犯罪,台湾,1996,42612.6\r\n原样复制,7.7,5394,剧情,法国/意大利/比利时/伊朗,2010,41533.8\r\n恶魔,8.5,5391,剧情/悬疑/惊悚/犯罪,法国,1955,45823.5\r\n惊天核网,6.8,5390,剧情/动作/惊悚,美国/德国,2002,36652\r\n樱花盛开 ,8.6,5389,剧情/爱情,德国,2008,46345.4\r\n最佳拍档3：女皇密,7,5389,喜剧/动作,香港,1984,37723\r\n我的新野蛮女友,3.6,5388,喜剧/爱情,韩国/中国大陆,2016,19396.8\r\n黑色星期五,5.8,5384,恐怖,美国,2009,31227.2\r\n国民警卫队,7.6,5383,喜剧/犯罪,爱尔兰,2011,40910.8\r\n追踪长尾豹马修,7.5,5383,喜剧/科幻/冒险,法国/比利时,2013,40372.5\r\n共谋者,7.1,5379,惊悚/犯罪,韩国,2012,38190.9\r\n一八九四·甲午大海战,5.3,5379,剧情/历史/战争,中国大陆,2012,28508.7\r\n天堂之日,7.8,5371,剧情/爱情,美国,1978,41893.8\r\n心底的逆流,8.3,5368,剧情/同性,秘鲁/哥伦比亚/法国/德国,2010,44554.4\r\n星河战队：入侵,6.7,5366,动作/科幻/动画,美国/日本,2012,35952.2\r\n米勒的十字路口,8,5361,剧情/惊悚/犯罪,美国,1990,42888\r\n月色撩人,7.5,5361,剧情/喜剧/爱情,美国,1988,40207.5\r\n2015年中央电视台春节,4.4,5360,真人秀,中国大陆,2015,23584\r\n末日迷踪,4,5358,动作/科幻/惊悚,美国/加拿大,2016,21432\r\n亚特兰蒂斯之心,8.2,5352,剧情/悬疑/惊悚,美国/澳大利亚,2001,43886.4\r\n美丽,6.3,5351,剧情,韩国,2008,33711.3\r\n剑风传奇 黄金时代篇2：多尔多雷攻略 ベルセルク 黄金時代篇II ,8.5,5349,剧情/动作/动画/战争,日本,2012,45466.5\r\n咏春 詠,6.8,5343,剧情/动作,香港,1994,36332.4\r\n牙仙,6.3,5343,喜剧/家庭/奇幻,美国/加拿大,2010,33660.9\r\n我的女友是腐女 腐女子彼女,5.4,5343,剧情,日本,2009,28852.2\r\n剃头匠,9.1,5342,剧情/传记,中国,2006,48612.2\r\n绿头苍蝇,8.1,5341,剧情/犯罪,韩国,2009,43262.1\r\n杀掉那个爱尔兰人,7.6,5340,动作/犯罪,美国,2011,40584\r\n大撒把,7.7,5339,爱情,中国大陆,1905,41110.3\r\n黑太阳731,7.3,5338,剧情/恐怖/历史/战争,香港/中国大陆,1988,38967.4\r\n勇敢的兔八哥,8.8,5336,喜剧/动画/短片/家庭,美国,1942,46956.8\r\n火车,6.8,5336,剧情/悬疑/恐怖,韩国,2012,36284.8\r\n恋物,4.7,5333,惊悚,美国/韩国,2010,25065.1\r\n教师日记,7.8,5332,喜剧/爱情,泰国,2014,41589.6\r\n格林奶奶的睡美人,6.7,5329,动画/短片,爱尔兰,1905,35704.3\r\nG型神,6.3,5328,喜剧/动作/家庭/冒险,美国,1999,33566.4\r\n伯尔尼的奇迹,8.2,5323,剧情/喜剧/运动,德国,2003,43648.6\r\n安娜玛德莲娜 安娜瑪德蓮,7.3,5322,喜剧/爱情,香港,1998,38850.6\r\n解冻,6.2,5318,科幻/惊悚/灾难,美国/加拿大,1905,32971.6\r\n海贼王剧场版5：被诅咒的圣剑 ONE ,7.8,5310,动画,日本,2004,41418\r\n中国最后一个太监,7,5310,剧情,香港,1988,37170\r\n古畑任三郎对SMAP ,8.7,5309,剧情/悬疑/犯罪,日本,1999,46188.3\r\n爱情小说,6.7,5308,爱情,韩国,2012,35563.6\r\n得买新鞋了 新しい靴を買わなくち,7.1,5304,剧情,日本,2012,37658.4\r\n爷爷的煤油灯 おぢいさんのラン,8.3,5303,动画/家庭/儿童,日本,2011,44014.9\r\n橘色,7.4,5302,剧情/喜剧/同性,美国,2015,39234.8\r\n疯狂金车,6.7,5300,喜剧/爱情/家庭/奇幻/冒险/运动,美国,2005,35510\r\n大片,4.7,5300,剧情/喜剧,中国大陆,2013,24910\r\n星际旅行4：抢救未,8,5299,喜剧/科幻/冒险,美国,1986,42392\r\n逆转裁判 逆転裁,6.3,5299,喜剧/悬疑/犯罪,日本,2012,33383.7\r\n杀手,8.5,5292,惊悚/犯罪/黑色电影,美国,1956,44982\r\n神偷次世代,5.9,5292,动作,香港,2000,31222.8\r\n斯巴达克斯,7.9,5291,剧情/动作/传记/历史/冒险,美国,1960,41798.9\r\n新宿天鹅 新宿スワ,6.2,5291,喜剧/动作,日本,2015,32804.2\r\n眼镜 めが,8,5289,剧情/喜剧,日本,2007,42312\r\n上海异人娼馆,6.6,5284,剧情/情色,法国/日本,1981,34874.4\r\n野蛮人,6.1,5283,剧情/惊悚/犯罪,美国,2012,32226.3\r\n向着炮火,6.9,5278,战争,韩国,2010,36418.2\r\n亨利五世,8.8,5276,剧情/历史/战争,英国,2012,46428.8\r\n道歉大师 謝罪の王,7.2,5273,喜剧,日本,2013,37965.6\r\n豪情,6.4,5272,剧情/喜剧,香港,2003,33740.8\r\n催眠,7.2,5271,惊悚/恐怖/奇幻,日本,1999,37951.2\r\n见鬼,6.2,5270,剧情/惊悚/恐怖/奇幻,香港/泰国,2004,32674\r\n当男人恋爱时,7.3,5268,爱情,韩国,2014,38456.4\r\n星球大战：克隆战争,7.7,5267,动作/科幻/动画/惊悚/冒险,美国,2008,40555.9\r\n花季雨季,6.9,5266,剧情,中国大陆,1905,36335.4\r\n初缠恋后的2人世,7.7,5264,剧情,香港,1998,40532.8\r\n再见阿郎 再見阿,7.8,5263,剧情/动作/惊悚,香港,1999,41051.4\r\n心动的感觉 ,7.5,5260,喜剧/爱情,法国/意大利,1988,39450\r\n死囚越狱 Un ,8.6,5258,剧情/惊悚/战争,法国,1956,45218.8\r\n麦克白,7.2,5258,剧情/历史,英国/法国/美国,2015,37857.6\r\n雾气蒙蒙,7.1,5258,悬疑/惊悚/奇幻,英国/美国,2004,37331.8\r\n海贼王剧场版4：死亡尽头的冒险 ONE PIE,8.2,5253,喜剧/动作/动画/奇幻/冒险,日本,2003,43074.6\r\n冰山上的来客,7.8,5251,剧情/悬疑/战争,中国大陆,1905,40957.8\r\n赖家王老五,6.1,5245,喜剧/爱情,美国,2006,31994.5\r\n波浪预报,6.5,5244,爱情,韩国,2005,34086\r\n洛奇,8,5241,剧情/运动,美国,1979,41928\r\n五朵金花,7.9,5241,爱情/歌舞,中国大陆,1959,41403.9\r\n选秀日,7.8,5241,剧情/运动,美国,2014,40879.8\r\n双雄,5.8,5237,动作/惊悚/犯罪/冒险,英国/美国,2013,30374.6\r\n第八页,7.1,5236,剧情/惊悚,英国,2011,37175.6\r\n妻子结婚了,6.2,5235,喜剧/爱情,韩国,2008,32457\r\n小屁孩日记,6.7,5231,喜剧/家庭,美国/加拿大,2012,35047.7\r\n戴夫号飞船,6.5,5230,喜剧/爱情/科幻/家庭/冒险,美国,2008,33995\r\n只要你说你爱我 好きっていいなよ,5.1,5230,爱情,日本,2014,26673\r\n爱情真可怕,6,5228,喜剧/爱情,韩国,2012,31368\r\n潜龙风云 大茶,5.4,5224,剧情/爱情/犯罪,香港/中国大陆,2014,28209.6\r\n狗镇之主,8.3,5222,剧情/传记/运动,美国/德国,2005,43342.6\r\n妄想,6.2,5222,惊悚/恐怖,香港,2006,32376.4\r\n夜幕下的故事,8.1,5219,动画/奇幻,法国,2011,42273.9\r\n特警判官,6.5,5218,动作/科幻/惊悚/犯罪,美国,1995,33917\r\n大人物拿破仑,7.6,5215,剧情/喜剧/爱情,美国,2004,39634\r\n焦裕禄,6.9,5215,剧情/传记,中国大陆,1905,35983.5\r\n少女杀手阿墨 あず,6.5,5215,剧情/动作/惊悚/奇幻/冒险,日本,2003,33897.5\r\n辛瑞那,7.3,5214,剧情/惊悚,美国,2005,38062.2\r\n蝎子王2：勇士的崛,5.7,5212,动作/奇幻/冒险,美国/南非/德国,2008,29708.4\r\n情迷高跟鞋,7.9,5211,剧情/喜剧/爱情,西班牙/法国,1991,41166.9\r\n追男仔,7,5208,喜剧,香港,1993,36456\r\n机器战警,6.7,5208,剧情/动作/科幻/惊悚/犯罪,美国,1993,34893.6\r\n龙少爷 龍少,6.5,5206,喜剧/动作/运动,香港,1982,33839\r\n夏威夷,8.3,5203,剧情/同性,阿根廷,2013,43184.9\r\n莎拉的钥匙,8.1,5199,剧情,法国,2010,42111.9\r\n双层公寓,6.7,5199,喜剧,美国/德国,2006,34833.3\r\n元年,5.8,5198,喜剧/冒险,美国,2009,30148.4\r\n神笔马良,5.6,5197,动画/奇幻,中国大陆,2014,29103.2\r\n布鲁姆兄弟,7,5194,剧情/喜剧/爱情/冒险,美国,2008,36358\r\n摩登如来神掌,6.2,5194,喜剧,香港,1990,32202.8\r\n马耳他之鹰,7.6,5190,悬疑/犯罪/黑色电影,美国,1941,39444\r\n裸体哈维闯人生,8.2,5189,剧情/喜剧/动画/短片,澳大利亚,2003,42549.8\r\nB区,2.3,5187,剧情/惊悚/恐怖,中国大陆,2011,11930.1\r\n霍顿与无名氏,7.9,5185,喜剧/动画/短片,美国,1905,40961.5\r\n秘密花园,8.4,5184,剧情/家庭/奇幻,美国,1993,43545.6\r\n鳗鱼 うな,7.9,5184,剧情,日本,1997,40953.6\r\n菜鸟评审员 ジャッジ,6.8,5183,喜剧,日本,2014,35244.4\r\n很黄很暴力,8.2,5179,喜剧/动画/短片,美国,1905,42467.8\r\n无尽,8.7,5178,动画/短片,法国,1905,45048.6\r\n洛奇6：永远的拳,8.2,5178,剧情/运动,美国,2006,42459.6\r\n马永贞 馬永,6.8,5178,剧情/动作,香港,1997,35210.4\r\n海贼王剧场版7：机关城的机械巨兵 ONE PIEC,7.8,5176,喜剧/动作/科幻/动画/奇幻,日本,2006,40372.8\r\n爱丽丝梦游仙境,8.4,5173,动画/歌舞/奇幻/冒险,美国,1951,43453.2\r\n伴侣度假村,6.1,5173,喜剧,美国,2009,31555.3\r\n小小飞虎队,3.6,5173,喜剧/动作/儿童/战争,中国大陆,2013,18622.8\r\n投奔怒海,8.5,5169,剧情,香港,1982,43936.5\r\n成年女性的动画时间：滑过河面的风 大人女子のアニメタイム 川面を滑,8.2,5168,剧情/动画/短片,日本,2011,42377.6\r\n侠女 俠,8.4,5164,剧情/动作/武侠/古装,台湾/香港,1970,43377.6\r\n龙在天涯,6.3,5164,动作,香港,1989,32533.2\r\n推理要在晚餐后SP 謎解きはディナーのあとで ス,6.9,5161,悬疑,日本,2012,35610.9\r\n僵尸家族 殭屍家,6.8,5161,恐怖,香港,1986,35094.8\r\n记我的母亲 わが母の,8.6,5160,剧情,日本,2012,44376\r\n变身国王,7.9,5160,喜剧/动画/家庭/奇幻/冒险,美国,2000,40764\r\n十日谈,7.4,5157,剧情/喜剧/情色,意大利/法国/原西德,1971,38161.8\r\n海贼王剧场版2：发条岛的冒险 ONE PI,7.7,5154,喜剧/动画/奇幻/冒险,日本,2001,39685.8\r\n里昂黑帮,7.5,5153,剧情/犯罪,法国/比利时,2011,38647.5\r\n海贼王特别篇：强者世界前传,8.7,5148,动画,日本,2010年,44787.6\r\n玉蒲团之玉女心经 玉蒲團之玉女心,6.4,5146,剧情/惊悚/情色,香港,1996,32934.4\r\n维克多·弗兰肯斯坦,6,5138,剧情/科幻/恐怖,美国,2015,30828\r\n女招待,7.3,5137,剧情/喜剧/爱情,美国,2007,37500.1\r\n太空运输,6.4,5136,科幻/悬疑/惊悚/冒险,瑞士,2009,32870.4\r\n无声风铃,7.6,5134,剧情/同性,香港/瑞士/中国,2009,39018.4\r\n预言 予,6.7,5134,恐怖,日本,2004,34397.8\r\n阿波罗1,6,5133,科幻/惊悚/恐怖,美国/加拿大,2011,30798\r\n九十九,7.7,5131,动画/短片,日本,1905,39508.7\r\n在黑暗中等待相遇 暗いところで待ち合わ,7.4,5127,剧情/爱情/惊悚,日本,2006,37939.8\r\n幽浮目击者,7,5127,喜剧/科幻/悬疑/短片,中国大陆,2013,35889\r\n大亨游戏,7.9,5126,剧情,美国,1992,40495.4\r\n幸福59,6.5,5119,短片,中国大陆,2011,33273.5\r\n危情24,6.1,5117,剧情/惊悚/犯罪,英国/加拿大/美国,2008,31213.7\r\n在人生的另一边,8.3,5114,剧情,德国/土耳其/意大利,2007,42446.2\r\n男孩们和吉约姆 ,7.2,5111,喜剧/同性,法国,2013,36799.2\r\n安妮·李斯特的秘密日记,7.6,5109,剧情/爱情/同性/传记,英国,2010,38828.4\r\n足球流氓,8.1,5102,剧情/犯罪/运动,美国/英国,2005,41326.2\r\n有一天,7.4,5101,剧情/儿童,中国大陆,2014,37747.4\r\n死亡之雪,5.8,5101,喜剧/恐怖,挪威,2009,29585.8\r\n下弦之月 下弦の月〜ラスト・クォ,6.9,5099,剧情/爱情,日本,2004,35183.1\r\n九星报喜 九星報,6.9,5097,喜剧/爱情/古装,香港,1998,35169.3\r\n神枪手与智多星,5.7,5092,喜剧/动作/犯罪,香港/中国,2007,29024.4\r\n周围的事 ぐるりのこと,8.4,5090,剧情/家庭,日本,2008,42756\r\n最后的约定 最後の約,7.3,5089,剧情,日本,2010,37149.7\r\n消失在第七街,5.4,5089,悬疑/惊悚/恐怖,美国,2011,27480.6\r\n幸运七人组特别篇 ラッキーセブン スペシ,7.6,5087,剧情/喜剧,日本,2013,38661.2\r\n时差 ,6.9,5084,喜剧/爱情,法国/英国,2002,35079.6\r\n童梦失魂夜 ,8,5075,剧情/喜剧/科幻/奇幻/冒险,法国/德国/西班牙,1995,40600\r\n杀人短片 ,8.5,5073,剧情/犯罪,波兰,1988,43120.5\r\n飞侠小白龙 飛俠小白,5.7,5072,动作/爱情/奇幻/冒险,香港,2004,28910.4\r\n陆军野战医院,7.9,5071,剧情/喜剧/战争,美国,1970,40060.9\r\n娜塔莉,4.7,5071,爱情/情色,韩国,2010,23833.7\r\n生命中不能承受之情,8.1,5069,剧情/同性/历史/战争,英国/日本,1997,41058.9\r\n断箭,7.9,5069,剧情,韩国,2012,40045.1\r\n蓝与白形成的蔚蓝色 青と白で水,7.2,5069,剧情,日本,2001,36496.8\r\n无忧无虑,7.2,5067,剧情/喜剧,英国,2008,36482.4\r\n遍地狼烟,6,5067,动作/爱情/战争,中国大陆,2011,30402\r\n吃蛋糕的人,7.3,5066,剧情/爱情,美国,2007,36981.8\r\n超级维纳斯,8.2,5064,剧情/短片,法国,2014,41524.8\r\n省港旗兵,7.7,5064,动作/犯罪,香港,1984,38992.8\r\nLittle DJ 小小恋爱,7.8,5061,爱情,日本,2007,39475.8\r\n画皮之阴阳法王 畫皮之陰陽法,6.4,5060,动作/恐怖/古装,香港/中国大陆,1905,32384\r\n龙的心 龍的,6.8,5059,剧情/喜剧/动作/惊悚/犯罪,香港,1985,34401.2\r\n我的九月,8.9,5058,剧情/儿童,中国大陆,1905,45016.2\r\n威震八方,6.3,5058,剧情/喜剧/动作/惊悚/传记/犯罪,美国,2004,31865.4\r\n恶魔的艺术3：鬼影随,6.8,5056,恐怖,泰国,2008,34380.8\r\n抢钱大作战,7.5,5046,剧情/惊悚/犯罪,美国,2000,37845\r\n月光游侠,7.1,5044,剧情/动作/科幻,日本,2003,35812.4\r\n春风物语 タクミくんシリーズ そして春風にささや,5.8,5042,剧情/同性,日本,2007,29243.6\r\n心战 第,4.3,5042,悬疑/惊悚/犯罪,香港,2013,21680.6\r\n叶塞尼亚,8.2,5039,剧情/爱情,墨西哥,1971,41319.8\r\n孩子王,7.9,5033,剧情,中国大陆,1905,39760.7\r\n了不起的大盗奶奶,7.3,5033,剧情/喜剧/家庭,英国,2013,36740.9\r\n怪谈协会 怪談協,7.2,5033,喜剧/恐怖,香港,1996,36237.6\r\n字典情人,7,5031,剧情/爱情,美国,2003,35217\r\n伦文叙老点柳先开 倫文敘老點柳先,6.6,5029,喜剧/动作/武侠/古装,香港,1905,33191.4\r\n友谊我和你,6.3,5027,爱情,泰国,2008,31670.1\r\n枕边的男人,7.6,5024,剧情,法国,2009,38182.4\r\n不法之徒,8.3,5022,剧情/喜剧/犯罪,美国/西德,1986,41682.6\r\n海贼王剧场版9：冬季绽放的奇迹之樱 ONE PIECE エピソード オブ チョッ,8.7,5021,剧情/喜剧/动作/动画/奇幻,日本,2008,43682.7\r\n火影忍者剧场版：忍者之路,7.5,5020,剧情/动作/科幻/动画/奇幻,日本,2012,37650\r\n姊妹情色 ,6.5,5018,剧情/情色,法国/意大利,2001,32617\r\n神迹,8.7,5014,剧情/传记,美国,2004,43621.8\r\n光荣战役,8,5014,剧情/历史/战争,美国,1989,40112\r\n挑战者联盟,6.9,5013,动画/冒险/运动,西班牙/阿根廷/印度/美国,2014,34589.7\r\n火线反攻,5.4,5013,剧情/动作/犯罪,美国,2014,27070.2\r\n盛大婚礼,6,5012,喜剧,美国,2013,30072\r\n都灵之马 A,8.1,5011,剧情,匈牙利/法国/德国/瑞士,2011,40589.1\r\n消防犬,7.6,5006,喜剧/动作/家庭,美国/加拿大,2007,38045.6\r\n超时空救兵,5.1,5006,喜剧/动作/科幻,中国大陆,2012,25530.6\r\n天使禁猎区 天使禁猟,7.6,5005,剧情/爱情/动画/短片/奇幻,日本,2000,38038\r\n望乡 サンダカン八番娼館 ,8.6,5004,剧情/历史/战争,日本,1974,43034.4\r\n美食家,8.3,5003,喜剧,法国,1976,41524.9\r\n性本恶,6.7,5002,剧情/喜剧/犯罪,美国,2014,33513.4\r\n如沐爱河,7.4,5001,剧情,法国/日本,2012,37007.4\r\n时空访客,7.1,5001,喜剧/奇幻,法国/美国,2001,35507.1\r\n贝拉的魔法,7.5,5000,剧情/喜剧,美国,2012,37500\r\n怪房客,8,4999,剧情/悬疑/惊悚,法国,1976,39992\r\n畸形人,7.9,4998,剧情/恐怖,美国,1932,39484.2\r\n蹩脚英语,7.2,4997,剧情/喜剧/爱情,美国,2007,35978.4\r\n死囚漫步,8,4996,剧情/犯罪,英国/美国,1995,39968\r\n天使爱过界 ,7.8,4995,爱情/惊悚,法国,2002,38961\r\n47号,6.3,4989,剧情/喜剧/科幻/短片/犯罪,美国,2012,31430.7\r\n召唤恶魔阿萨谢尔OAD：泣牛篇 よんでますよ、アザゼルさん。,9,4977,动画/短片,日本,2010,44793\r\n恶魔的艺术,6.4,4977,悬疑/恐怖,泰国,2004,31852.8\r\n艾丽卡,5.5,4976,动作/奇幻/冒险,加拿大/美国,2005,27368\r\n隐藏摄像机 ,7.6,4972,剧情/悬疑/惊悚,法国/奥地利/德国/意大利/美国,2005,37787.2\r\n卧底肥妈,6.5,4968,喜剧,美国,2011,32292\r\nS日,7,4967,喜剧/爱情,韩国,2004,34769\r\n让爱传出去,8.2,4963,剧情/爱情,美国,2000,40696.6\r\n深蓝即是黑,7.9,4962,剧情,西班牙,2006,39199.8\r\n烛台背后,6.8,4959,剧情/爱情/同性/传记,美国,2013,33721.2\r\n时差7小,4.8,4956,喜剧/爱情,英国/中国大陆,2004,23788.8\r\n男神时代,3.5,4955,喜剧/爱情,中国大陆,2015,17342.5\r\n紫宅,3.4,4955,爱情/悬疑/惊悚,中国大陆/香港,2011,16847\r\n灾难大电影,4.9,4954,喜剧,美国,2008,24274.6\r\n正义联盟：毁灭,7.4,4953,动画,美国,2012,36652.2\r\n爱情3,5.1,4952,喜剧/爱情,中国大陆,2010,25255.2\r\n奸情,6.5,4949,剧情/情色,意大利,2006,32168.5\r\n儿女一箩筐,6.9,4944,喜剧/家庭/冒险,美国/加拿大,2005,34113.6\r\n古城荆棘王 いばらの,7.6,4942,科幻/动画/悬疑,日本,2010,37559.2\r\n上甘岭 上甘,7.6,4938,剧情/战争,中国大陆,1905,37528.8\r\n绿卡,7.6,4937,剧情/喜剧/爱情,澳大利亚/法国/美国,1990,37521.2\r\n世界奇妙物语 电影特别篇 世にも奇妙な物語 映画の,8.3,4936,喜剧/爱情/恐怖/奇幻,日本,2000,40968.8\r\n画魂,7,4934,剧情/爱情/传记,中国大陆/法国/台湾,1994,34538\r\n圣歌 ,7.3,4930,悬疑/恐怖/奇幻,法国,2002,35989\r\n男生日记,7.2,4928,短片,中国大陆,2012,35481.6\r\n谁动了我的梦想,3.6,4927,剧情/喜剧/爱情,中国大陆,2014,17737.2\r\n诱惑十七岁,6.9,4926,剧情/喜剧/爱情/同性,美国,1999,33989.4\r\n空想新子和千年的魔法 マイマイ新子と千年の魔,7.6,4925,剧情/动画/奇幻,日本,2009,37430\r\n我要进前十,8.1,4923,剧情/短片,中国大陆,2013,39876.3\r\n蜜桃成熟时 蜜桃成熟,6.8,4922,情色,香港,1993,33469.6\r\n电视台风云,8.4,4921,剧情,美国,1976,41336.4\r\n怨灵,3.7,4921,惊悚/恐怖,中国大陆/韩国,2014,18207.7\r\n自娱自乐,5.8,4919,喜剧,中国,2004,28530.2\r\n红色娘子军,7.3,4918,战争,中国大陆,1905,35901.4\r\n稻草之盾 藁の,6.8,4917,惊悚,日本,2013,33435.6\r\n地下铁,7.9,4916,剧情/喜剧/爱情/惊悚/犯罪,法国,1985,38836.4\r\n警察有约,7.4,4916,喜剧/爱情,中国大陆,2003,36378.4\r\n蓝色粉末,7.4,4914,剧情,美国,2009,36363.6\r\n水中刀 ,8.1,4913,剧情,波兰,1962,39795.3\r\n阿修罗城之瞳 阿修羅城の,6.9,4911,动作/奇幻,日本,2005,33885.9\r\n古堡之吻,3.5,4910,爱情,中国大陆/美国,2014,17185\r\n啄木鸟和雨 キツツキと,7.7,4909,喜剧,日本,2012,37799.3\r\n熊的传说,7.7,4903,动画/家庭/奇幻/冒险,美国,2003,37753.1\r\n黄沙武士,5.3,4903,动作/西部/奇幻,新西兰/韩国,2011,25985.9\r\n盗版猫,4.3,4903,喜剧,中国,2009,21082.9\r\n求爱大作战 溝女不離3,4.3,4901,剧情/喜剧/爱情,香港,2014,21074.3\r\n大三元,7.2,4898,喜剧/爱情,香港,1996,35265.6\r\n非法入境,8.3,4896,剧情,法国,2009,40636.8\r\n甜言蜜语,8.3,4896,爱情,香港,1999,40636.8\r\n爱疯狂,8.1,4895,剧情/同性/家庭,加拿大,2005,39649.5\r\n灵通人士,7.5,4892,剧情,英国,2009,36690\r\n挨饿游戏,5.4,4892,喜剧,美国,2013,26416.8\r\n世界奇妙物语 2014年秋之特别篇 世にも奇妙な物,6.7,4891,剧情/科幻/悬疑/惊悚/奇幻,日本,2014,32769.7\r\n雪场女孩,6.9,4887,喜剧,英国,2011,33720.3\r\n永远的莉莉亚,8.2,4886,剧情/犯罪,瑞典/丹麦,2004,40065.2\r\n剧场版魔法少女小圆 新篇 叛逆的故事 劇場版 魔法少女まどか☆マギカ [新,8.8,4885,动画,日本,2013,42988\r\n人体雕像,8.1,4885,剧情,匈牙利/奥地利/法国,2006,39568.5\r\n女生宿舍,4,4885,悬疑/惊悚,中国大陆,2014,19540\r\n那个男人的书1,6.8,4883,剧情/爱情,韩国,2008,33204.4\r\n鬼汤,7.6,4879,剧情,日本,1905,37080.4\r\n少年阿虎,6,4879,剧情/动作/爱情,香港/韩国,2004,29274\r\n半个尼尔森,7.6,4878,剧情,美国,2006,37072.8\r\n男国少年梦,7.4,4878,剧情/同性,美国,2006,36097.2\r\n名侦探柯南 给工藤新一的挑战书～怪鸟传说之谜～ 名探偵コナン ドラマスペシャル 工藤新一への挑戦状～怪鳥伝,5.6,4878,剧情,日本,2011,27316.8\r\n艾草,8.4,4876,剧情/同性/家庭,台湾,2008,40958.4\r\n欢迎来到利雷家,7.4,4876,剧情/家庭,英国/美国,2010,36082.4\r\n太后吉祥,6.7,4876,喜剧,中国大陆,1905,32669.2\r\n背起爸爸上学,7.3,4875,剧情,中国大陆,1998,35587.5\r\n海贼王剧场版3：珍兽岛的乔巴王国 ONE PIECE,7.8,4874,喜剧/动作/动画/奇幻/冒险,日本,2002,38017.2\r\n恰卜恰布,7.5,4874,喜剧/科幻/动画/短片/家庭,美国,1905,36555\r\n千年狐,7.3,4871,剧情/动画/奇幻,韩国,2007,35558.3\r\n龙凤茶楼,6.4,4869,剧情,香港,1990,31161.6\r\n铁道员 鉄道,8.3,4867,剧情/家庭,日本,1999,40396.1\r\n雪地巴迪,7.7,4867,家庭/冒险,美国,2008,37475.9\r\n怖偶,2.8,4867,悬疑/惊悚,中国大陆,2014,13627.6\r\n婴灵恶泣,5.5,4861,悬疑/惊悚/恐怖,美国,2009,26735.5\r\n王牌大贱谍,6.3,4860,喜剧/动作/犯罪/冒险,美国/德国,1997,30618\r\n真假李逵,7.9,4858,动画/短片,中国,1905,38378.2\r\n老井,7.7,4855,剧情/爱情,中国,1905,37383.5\r\n纸镇,6.1,4855,剧情/爱情/悬疑,美国,2015,29615.5\r\n唐顿庄园：2014圣,8.9,4854,剧情,英国,2014,43200.6\r\n人体蜈蚣,3.8,4854,恐怖,美国,2015,18445.2\r\n自虐之诗 自虐の,8,4852,剧情/喜剧/爱情,日本,2007,38816\r\n天雷勾动地火,7.6,4848,喜剧/爱情/同性,美国,1999,36844.8\r\n魔鬼司令,7,4848,喜剧/动作/惊悚/冒险,美国,1985,33936\r\n惊恐小镇,7.9,4847,动画,比利时/卢森堡/法国,2009,38291.3\r\n猪八戒吃西瓜,7.6,4847,动画/短片,中国大陆,1905,36837.2\r\n电话亭,8.3,4844,恐怖/短片,西班牙,1972,40205.2\r\n早见，晚爱,4.4,4844,剧情/爱情,中国大陆,2013,21313.6\r\n将军号,8.9,4842,喜剧/动作/爱情/战争,美国,1926,43093.8\r\n鬼三惊,6.1,4840,恐怖,泰国,2012,29524\r\n韩塞尔与葛雷特,7.1,4834,剧情/悬疑/恐怖/奇幻,韩国,2007,34321.4\r\n蝙蝠侠：红影迷踪,8.1,4833,动作/动画/惊悚/犯罪,美国,2010,39147.3\r\n金赛性学教授,7.7,4832,剧情/传记,美国/德国,2004,37206.4\r\n梦游夏威夷 夢遊夏威,7.4,4827,喜剧,台湾,2004,35719.8\r\n史诗电影,5,4827,喜剧/冒险,美国,2007,24135\r\n妃子笑,4.9,4827,喜剧,中国大陆/香港,2005,23652.3\r\n我的老婆是大佬,6.1,4825,喜剧/动作/犯罪,韩国,2003,29432.5\r\n下流女孩,6.7,4822,剧情,美国,2011,32307.4\r\n小叮当与失去的宝藏,7.9,4821,喜剧/动画/家庭/儿童/奇幻,美国,2009,38085.9\r\n绝色武器,4,4820,动作/爱情,香港,2012,19280\r\n小飞龙 海のトリト,8,4818,动画/奇幻/冒险,日本/加拿大,1979,38544\r\n屏息,6.5,4816,爱情/运动,韩国,2013,31304\r\n豹,8.7,4815,剧情/爱情/历史/战争,意大利/法国,1963,41890.5\r\n我的路,7.5,4815,剧情/短片,香港,2012,36112.5\r\n冰河追凶,5.7,4814,动作/悬疑/犯罪,中国大陆,2016,27439.8\r\n推理要在晚餐后 电影版 映画 謎解きはディナーの,6.7,4811,悬疑,日本,2013,32233.7\r\n鬼影人,6.5,4811,悬疑/惊悚/恐怖,美国,2003,31271.5\r\n嘘！禁止想象！,5.4,4806,喜剧/情色,韩国,2015,25952.4\r\n潘多拉：永恒的生命 パンドラ～永遠の命,7.3,4803,剧情/犯罪,日本,2014,35061.9\r\n太空异种,6.3,4803,剧情/科幻/惊悚,美国,1999,30258.9\r\n父亲,8.5,4800,剧情/动画/短片,韩国,1905,40800\r\n铁达尼号沉没记,8.8,4796,剧情/动作/爱情/历史/灾难,加拿大/美国,1996,42204.8\r\n车警官,6.2,4795,喜剧/爱情,韩国,2012,29729\r\n天若有情3烽火佳人 天若有情Ⅲ烽火,6.9,4794,剧情,香港,1996,33078.6\r\n最佳损友,6.6,4794,喜剧,香港,1988,31640.4\r\n优雅的世界,7.5,4788,喜剧/家庭,韩国,2007,35910\r\n潜行者 Сталке,8.7,4787,剧情/科幻/悬疑,苏联,1979,41646.9\r\n重案组,6.8,4787,剧情/动作/犯罪,香港,1993,32551.6\r\n红色沙漠,8.1,4786,剧情,法国/意大利,1964,38766.6\r\n异度见鬼,6.2,4785,剧情/惊悚/恐怖,美国,2008,29667\r\n灵偶契约,6.1,4780,惊悚/恐怖,美国,2016,29158\r\n高校痞子田中 アフロ田,6.5,4769,喜剧,日本,2012,30998.5\r\n星图,6.2,4769,剧情,加拿大/美国/德国/法国,2014,29567.8\r\n死亡游戏,7.7,4767,剧情/动作/惊悚/犯罪,香港/美国,1978,36705.9\r\n恶战 惡,6.2,4764,剧情/动作,香港/中国大陆,2014,29536.8\r\n飞天,2.9,4764,剧情,中国大陆,2011,13815.6\r\n山村老尸II色之恶鬼 山村老尸 ,5.7,4763,恐怖,香港,2000,27149.1\r\n木头美人,8.1,4761,喜剧/爱情/奇幻,美国,1991,38564.1\r\n完美假妻,4.9,4756,喜剧/爱情/悬疑,中国大陆,2014,23304.4\r\n非常男女,5.9,4754,喜剧,美国,2001,28048.6\r\n夏目友人帐：曾几何时下雪之日 夏目友人帳 いつかゆきの,9.1,4752,剧情/动画,日本,2014,43243.2\r\n白色严冬,8.2,4752,剧情/动作/历史/战争,挪威Norway/瑞典Sweden,2012,38966.4\r\n安娜与安娜,5.9,4751,剧情/爱情/惊悚,香港/新加坡/中国,2007,28030.9\r\n惊涛大冒险,7.5,4750,剧情/动作/冒险/灾难,美国,2006,35625\r\n神之一手,6.6,4750,动作/犯罪,韩国,2014,31350\r\n死亡论文,7.6,4747,悬疑/惊悚,西班牙,1996,36077.2\r\n记忆月台,8.6,4746,剧情/爱情/短片,台湾,2013,40815.6\r\n庇护所,6.5,4746,悬疑/惊悚/恐怖,美国,2010,30849\r\n最游记：给落选者的镇魂歌 幻想魔伝最遊記Requiem選ばれざ,7.9,4745,动画,日本,2001,37485.5\r\n黑金,7.4,4745,剧情,法国/意大利/卡塔尔/突尼斯,2012,35113\r\n我们是夜晚,6.5,4745,剧情/爱情/恐怖/奇幻,德国,2010,30842.5\r\n姐妹联谊会惊魂,5.5,4745,惊悚/恐怖,美国,2009,26097.5\r\n天才嘉年华,8.8,4744,动画,日本,2007,41747.2\r\n天堂陌影,8.6,4743,剧情/喜剧,美国/西德,1984,40789.8\r\n天使的一份,7.5,4743,剧情/喜剧,英国/法国/比利时/意大利,2012,35572.5\r\n我仍然知道你去年夏天干了什么,6,4743,悬疑/惊悚/恐怖,美国,1998,28458\r\n命运化妆师 命運化妝,6.9,4741,爱情/悬疑/同性,台湾,2011,32712.9\r\n对风说爱你 風中家,6.5,4741,剧情/爱情,台湾/中国大陆,2015,30816.5\r\n亲亲老爸,7.2,4740,剧情/喜剧/爱情/家庭,美国,2007,34128\r\n美丽的人,7.4,4739,剧情,法国,2008,35068.6\r\n人证 人間の証,8.1,4737,剧情/犯罪,日本/美国,1977,38369.7\r\n简单西蒙,8.3,4736,剧情/喜剧/爱情,瑞典,2010,39308.8\r\n所罗门的伪证前篇：事件 ソロモンの偽証 前篇,6.6,4729,惊悚,日本,2015,31211.4\r\n阵头 陣,7.3,4727,剧情/喜剧,台湾,2012,34507.1\r\n十万火急,7.3,4726,动作/惊悚,香港,1997,34499.8\r\n爱在微博蔓延时,6.4,4726,剧情/爱情/短片,中国大陆,2010,30246.4\r\n天黑请闭眼,4.7,4726,恐怖,中国大陆,2004,22212.2\r\n僵尸脱衣舞娘,5.3,4721,喜剧/恐怖/情色,美国,2008,25021.3\r\n生存游戏,6.4,4719,惊悚/恐怖,美国,2006,30201.6\r\n兔,8.3,4716,动画/短片,英国,2005,39142.8\r\n举报者,7.3,4715,剧情,韩国,2014,34419.5\r\n紫蝴蝶,6.4,4715,剧情/历史/战争,中国大陆/法国,2003,30176\r\n探访惊魂,6.3,4708,惊悚/恐怖,美国,2015,29660.4\r\n惊心食人族,5.9,4708,悬疑/恐怖,美国/德国,2001,27777.2\r\n教皇诞生,7.5,4707,剧情,意大利/法国,2011,35302.5\r\n黑楼孤魂,7,4707,剧情/悬疑/惊悚/恐怖,中国大陆,1905,32949\r\n末日情缘,6.4,4707,喜剧/爱情,美国,2012,30124.8\r\n生死时速2：海上惊,5.8,4707,动作/爱情/惊悚,美国,1997,27300.6\r\n狗狗心事 いぬのえい,8,4705,家庭,日本,2005,37640\r\n征婚广告,6.7,4705,喜剧/爱情,美国,2005,31523.5\r\n大丈夫,6.2,4705,剧情/喜剧,香港,2006,29171\r\n红潮风暴,7.8,4703,剧情/动作/惊悚,美国,1995,36683.4\r\n幸存的希德,7.6,4701,动画/短片,美国,2008,35727.6\r\n笔仙惊魂,3.4,4701,悬疑/惊悚/恐怖,中国大陆,2012,15983.4\r\n同居牢友,7.4,4699,喜剧/同性/犯罪,美国,2006,34772.6\r\n狙击职业杀手,6.8,4699,动作/惊悚/犯罪/冒险,美国/英国/法国/德国/日本,1997,31953.2\r\n鬼书,6.2,4699,惊悚/恐怖,澳大利亚,2014,29133.8\r\n幸运星OVA ら,8.9,4697,动画,日本,2008,41803.3\r\n鲸骑士,8.1,4695,剧情/家庭,新西兰/德国,2003,38029.5\r\n透纳先生,7.3,4695,剧情/传记,英国/法国/德国,2014,34273.5\r\n天涯海角,8,4694,剧情/爱情,香港,1996,37552\r\n九一神雕侠侣 九一神雕俠,6.3,4693,剧情/动作/爱情/科幻/奇幻,香港,1991,29565.9\r\n鳄鱼波鞋走天涯,9.1,4692,剧情,美国,1995,42697.2\r\n乌龟也会飞,8.8,4692,剧情/战争,伊朗/法国/伊拉克,2004,41289.6\r\n西力传,8.9,4690,喜剧/奇幻,美国,1983,41741\r\n世界奇妙物语 25周年春季特别篇 人气漫画家竞演篇 世にも奇妙な物語 25周年スペシャル・春～人,6.6,4689,悬疑/恐怖,日本,2015,30947.4\r\n色欲迷墙 聴かれた,5.9,4689,剧情/爱情/情色,日本,2007,27665.1\r\n逆转王牌,5.2,4686,剧情/惊悚/犯罪,美国,2013,24367.2\r\n守坝员,8.2,4684,剧情/动画/短片/家庭/奇幻,美国,2015,38408.8\r\n蜡笔小新 超时空！呼风唤雨的我的新娘 クレヨンしんちゃん 超時空！嵐を呼ぶオラ,7.6,4684,动画,日本,2010,35598.4\r\n古惑仔：江湖新秩序,3.9,4684,剧情/动作/犯罪,香港,2013,18267.6\r\n海狸,6.9,4683,剧情/喜剧/家庭,美国,2011,32312.7\r\n天崩地裂,6.8,4683,动作/冒险/灾难,美国,1997,31844.4\r\n哆啦A梦07剧场版：大雄的新魔界大冒险之7个魔法师 ドラえもん のび太の新魔界大冒険,7.8,4681,科幻/动画/冒险,日本,2007,36511.8\r\n新天师斗僵尸,6,4681,喜剧/恐怖,美国,2011,28086\r\n我是爱,7.6,4679,剧情,意大利,2009,35560.4\r\n巧奔妙逃,7.6,4678,剧情/喜剧,中国大陆,1905,35552.8\r\n离婚不分手,7.1,4678,剧情/喜剧/爱情,美国,2012,33213.8\r\n我的唯一,8,4677,剧情/喜剧/家庭,美国,2009,37416\r\n人咬狗 C,8.1,4672,剧情/喜剧/惊悚/犯罪,比利时,1992,37843.2\r\n狗舍,6.6,4672,喜剧/恐怖,英国,2009,30835.2\r\n一级谋杀,8.6,4670,剧情/惊悚,法国/美国,1995,40162\r\n纯净脆弱的心 潔く柔,6.6,4668,剧情/爱情,日本,2013,30808.8\r\n阪急电车 单程15分的奇迹 阪急電車 片,7.9,4666,喜剧,日本,2011,36861.4\r\n俄罗斯方舟 Русский ковч,7.6,4665,剧情/历史/奇幻,德国/俄罗斯,2002,35454\r\n美味关系,7.2,4664,剧情/喜剧/爱情,德国/意大利/奥地利/瑞士,2001,33580.8\r\n这时对那时错,7.4,4663,剧情,韩国,2015,34506.2\r\n性感女特工,6.5,4661,喜剧/动作,美国,2011,30296.5\r\n面包店的女孩 ,8.1,4660,爱情/短片,法国,1905,37746\r\n大教堂,7.8,4660,剧情/科幻/动画/短片,波兰,2002,36348\r\n镜子,7.5,4652,短片/家庭,瑞士,2010,34890\r\n变异编年史,5.2,4652,动作/科幻/恐怖/冒险,美国,2008,24190.4\r\n大力士,7.8,4650,喜剧/爱情/动画/歌舞/奇幻/冒险,美国,1997,36270\r\n马文的房间,7.8,4645,剧情/家庭,美国,1996,36231\r\n遁入虚无,7.6,4642,剧情/惊悚,法国/德国/意大利,2010,35279.2\r\n最佳拍档2：大显神,7.3,4640,喜剧/动作,香港,1983,33872\r\n土耳其狂欢,7.4,4639,剧情/爱情/情色,荷兰,1973,34328.6\r\n妖兽都市 妖獸都,6,4639,动作/科幻,香港,1992,27834\r\n式日,7.5,4637,剧情,日本,2001,34777.5\r\n乐高蝙蝠侠大电影：DC英雄,8,4633,动画/冒险,美国/英国,2013,37064\r\n凶间雪山,3.7,4633,惊悚/恐怖,中国大陆,2012,17142.1\r\n反恐疑云,7.1,4631,剧情/惊悚/战争,美国,2007,32880.1\r\n飞吧，爸爸,6.8,4630,剧情,韩国,2006,31484\r\n自己的葬礼,7.3,4628,剧情/悬疑,美国/德国/波兰,2010,33784.4\r\n火线对峙,6.7,4628,剧情/动作/惊悚/犯罪,美国/德国,2005,31007.6\r\n鬼影,6.3,4628,悬疑/惊悚/恐怖,美国,2008,29156.4\r\n超狗任务,6.4,4627,喜剧/动作/科幻/家庭/奇幻/冒险,美国,2007,29612.8\r\n四重唱,8.1,4626,剧情/喜剧,英国,2012,37470.6\r\n变身西装 ハンサム★スー,6.8,4619,喜剧,日本,2008,31409.2\r\n战争与和平,7.6,4616,剧情/爱情/战争,意大利/美国,1956,35081.6\r\n婚礼,5.5,4615,剧情,中国,2008,25382.5\r\n甲午风云,7.6,4614,历史/战争,中国大陆,1905,35066.4\r\n尘封笔记本 クローズド・ノ,7.3,4614,剧情,日本,2007,33682.2\r\n恋爱行星,6.9,4614,剧情/爱情/奇幻,香港,2002,31836.6\r\n亨利四世：第二部分,8.6,4611,剧情/历史,英国,2012,39654.6\r\n追爱,6.1,4609,喜剧/爱情,中国大陆/台湾,2011,28114.9\r\n心灵厨房,7.5,4603,剧情/喜剧,德国,2009,34522.5\r\n结婚证书,6.6,4603,喜剧/爱情,美国/澳大利亚,2007,30379.8\r\n007之,6.9,4602,动作/科幻/惊悚/冒险,英国/美国,1979,31753.8\r\n想飞 想,6.7,4602,爱情/科幻,香港/台湾,2002,30833.4\r\n一起飞,4.9,4602,喜剧/爱情/奇幻/冒险,中国大陆,2012,22549.8\r\n迷城,5.9,4601,剧情,中国大陆,2010,27145.9\r\n明星之恋,6.1,4594,喜剧/爱情,美国,2010,28023.4\r\n保姆奇遇记,6,4594,喜剧,美国,2011,27564\r\n海贼王剧场版8：沙漠公主与海盗们 ONE PIECE エピソードオブアラバ,8.1,4589,剧情/喜剧/动作/动画/冒险,日本,2007,37170.9\r\n一吻定江山,6.6,4589,剧情/喜剧/爱情,美国,1999,30287.4\r\n爱很大,6.5,4587,爱情,泰国,2011,29815.5\r\n七日地狱,7.2,4582,喜剧/短片/运动,美国,2015,32990.4\r\n在床上,6.8,4581,剧情/情色,智利/德国,2006,31150.8\r\n简·奥斯丁的遗憾,8,4580,剧情/传记,美国/英国,2008,36640\r\n潮涨海岸,7.3,4579,剧情/惊悚/奇幻,加拿大/英国,2006,33426.7\r\n富贵兵团 富貴兵,6.7,4578,喜剧/动作,香港,1990,30672.6\r\n猪头逛大街,6.5,4578,喜剧/冒险,美国,2011,29757\r\n蜥蜴,7.1,4577,爱情,韩国,2006,32496.7\r\n逃离地球,6.6,4577,喜剧/动画/冒险,美国/加拿大,2013,30208.2\r\n烟雾魔法师,7.9,4575,动画/短片/传记,西班牙,2012,36142.5\r\n凯撒万岁,6.5,4575,喜剧/悬疑/歌舞,英国/美国,2016,29737.5\r\n春雪 春の,7.2,4574,剧情/爱情/历史,日本,2005,32932.8\r\n语词，语词，语词,8.7,4571,动画/短片,捷克斯洛伐克,1991,39767.7\r\n浪漫岛屿,7,4571,剧情/喜剧/爱情,韩国,2008,31997\r\n命运石之门：横行跋扈的浪荡之徒 STEINS;GAT,9.1,4569,科幻/动画/短片,日本,2012,41577.9\r\n隐形人,6.5,4568,剧情/悬疑/惊悚/犯罪/奇幻,美国/加拿大,2007,29692\r\n立体悲剧,7.8,4567,喜剧/动画/短片,台湾,1905,35622.6\r\n格蕾丝,5.6,4567,剧情/惊悚/恐怖,美国/加拿大,2009,25575.2\r\n电子世界争霸战,7.3,4565,动作/科幻/冒险,美国,1982,33324.5\r\n蚁哥正传,7,4565,喜剧/动画/家庭/冒险,美国,1998,31955\r\n野鹅敢死队,8,4563,剧情/动作/战争/冒险,英国/瑞士,1986,36504\r\n电击女孩,7.8,4562,剧情/喜剧,泰国,2015,35583.6\r\n赎金,7.3,4562,惊悚/犯罪,美国,1996,33302.6\r\n女狙击手 Битва за Севастоп,7.3,4559,剧情/爱情/传记/战争,俄罗斯/乌克兰,2015,33280.7\r\n龙潭虎穴,6.2,4555,剧情/动作/惊悚/犯罪,美国,2003,28241\r\n法国贩毒网,7.6,4554,动作/惊悚/犯罪,美国,1971,34610.4\r\n伴郎,7.7,4553,剧情/短片/同性,美国,2007,35058.1\r\n十二怒汉,8.8,4551,剧情/犯罪,美国,1997,40048.8\r\n罗塞塔,8.1,4551,剧情,比利时/法国,1999,36863.1\r\n寻找雷神锤子路上发生的趣事,7.8,4550,科幻/短片,美国,2011,35490\r\n皮毛,6.9,4548,剧情/爱情/悬疑/传记,美国,2006,31381.2\r\n喜羊羊与灰太狼之开心闯龙年,5.4,4548,喜剧/动画/儿童/冒险,中国大陆,2012,24559.2\r\n后备甜心,6.3,4545,爱情,香港/中国,2005,28633.5\r\n煎炸三宝 煎釀三,5.6,4544,喜剧,香港,2004,25446.4\r\n制胜一击,5.1,4540,动作/惊悚,美国/爱尔兰,2011,23154\r\n4B青年之,4.4,4540,喜剧/爱情,中国大陆,2013,19976\r\n国家利益,6.7,4539,剧情/动作/惊悚,瑞典,2016,30411.3\r\n女座头市,6.5,4538,动作,日本,2008,29497\r\n大闹天宫,6.6,4537,动画,中国大陆,2012,29944.2\r\n超级计划 超級計,7,4534,喜剧/动作/惊悚/犯罪,香港,1993,31738\r\n单刀直入 ,6.7,4534,动作/惊悚/犯罪,法国,2012,30377.8\r\n惊叫大电影,6.5,4532,喜剧/动作/科幻/恐怖/歌舞,美国,2011,29458\r\n爱情避风港,6.6,4531,剧情/爱情/悬疑,美国,2013,29904.6\r\n团子大家族：另一个世界 智代篇 もうひとつの世界 ,8.5,4529,动画/短片,日本,2008,38496.5\r\n明月守护者,8.4,4529,动画,法国,2014,38043.6\r\n第二滴血,7.8,4528,剧情/喜剧/儿童,英国/法国/德国,2007,35318.4\r\n我们假期做了什么,7.8,4526,剧情/喜剧,英国,2014,35302.8\r\n危险关系,7.7,4525,剧情/爱情,美国/英国,1988,34842.5\r\n垂帘听政,7.4,4525,历史/古装,香港/中国,1983,33485\r\n青苔,6.5,4525,剧情/犯罪,香港,2008,29412.5\r\n第一次的亲密接触,5.4,4521,剧情/爱情,台湾/中国大陆,2001,24413.4\r\n情迷大话王 情迷大話,6,4520,喜剧/爱情,香港,2001,27120\r\n布偶大电影,6.8,4517,喜剧/家庭,美国,2011,30715.6\r\n捕鼠者,8.2,4513,剧情,英国/法国,1999,37006.6\r\n关人七事 關人,6.8,4513,剧情/惊悚/犯罪,香港,2009,30688.4\r\n下流祖父,6.3,4513,喜剧,美国,2016,28431.9\r\n芭比,6.8,4512,剧情,韩国,2012,30681.6\r\n我们都是超能力者！电影版 映画 みんな！エスパーだ,5,4512,剧情/喜剧/悬疑,日本,2015,22560\r\n葬礼上的死亡,6.6,4511,喜剧,美国,2010,29772.6\r\n永远十六岁,6.3,4509,喜剧,美国,2014,28406.7\r\n美娜的文具店,7,4506,剧情/喜剧,韩国,2013,31542\r\n机关枪牧师,6.9,4505,动作/传记,美国,1905,31084.5\r\n这个阿爸真爆炸,6.1,4502,喜剧,香港,2004,27462.2\r\n无夜不漫长,7.7,4501,剧情/悬疑/惊悚/同性/犯罪,英国/加拿大,2002,34657.7\r\n爱的盛宴,7,4501,剧情/爱情,美国,2007,31507\r\n墓地邂逅,6.5,4501,悬疑/恐怖,加拿大,2011,29256.5\r\n女汉子真爱公式,4.7,4500,喜剧/爱情,中国大陆,2016,21150\r\n哼唱,6.9,4497,剧情/爱情/奇幻,韩国,2008,31029.3\r\n维多利亚的秘密201,8.7,4495,真人秀,美国,2011,39106.5\r\n五月魔女,6.8,4492,剧情/悬疑/惊悚/恐怖,美国,2002,30545.6\r\n月亮坪的秘密,6.2,4492,爱情/家庭/奇幻/冒险,匈牙利/英国/法国,2008,27850.4\r\n剃刀边缘,7.5,4489,悬疑/惊悚,美国,1980,33667.5\r\n尼姆岛,6.8,4488,喜剧/奇幻/冒险,美国,2008,30518.4\r\n金田一少年事件簿 狱门塾杀人事件 金田一少年の事件簿 獄門塾殺,6.2,4487,剧情/喜剧/悬疑/惊悚,日本,2014,27819.4\r\n情牵一线 愛，斷了,6.4,4486,爱情,香港,2003,28710.4\r\n东京朋友 电影版 東京フレ,6.9,4485,剧情,日本,2006,30946.5\r\n破晓之时,8,4484,剧情/动画/短片,加拿大,1999,35872\r\n生死劫,7.7,4482,剧情,中国,2005,34511.4\r\n地下理想国,7.1,4479,科幻/动画/惊悚,瑞典/丹麦/挪威/芬兰,2009,31800.9\r\n夺命心跳,5.2,4478,悬疑/惊悚,中国大陆,2011,23285.6\r\n在魔鬼知道你死前,6.9,4474,剧情/惊悚/犯罪,美国/英国,2008,30870.6\r\n我是,9.1,4473,剧情,波兰,2005,40704.3\r\n鬼打墙,7.4,4473,悬疑/惊悚,美国,2011,33100.2\r\n远山的呼唤 遥かなる山の呼び,8.5,4472,剧情,日本,1980,38012\r\n幽灵人间,6,4469,悬疑/恐怖/奇幻,香港,2001,26814\r\n野·良犬,7.3,4467,剧情,香港,2007,32609.1\r\n世界奇妙物语 06秋之特别篇 世にも奇妙な物語 ,8.3,4466,剧情/悬疑/短片/奇幻,日本,2006,37067.8\r\n不需要爱情,6.6,4464,爱情,韩国,2006,29462.4\r\n鬼玩人,7.2,4463,喜剧/恐怖,美国,1987,32133.6\r\n城市岛屿,7.7,4461,剧情/喜剧/家庭,美国,2009,34349.7\r\n疾走天堂,8.1,4460,剧情/爱情/惊悚/犯罪,德国/意大利/美国/法国/英国,2002,36126\r\n做次有钱人,5.4,4460,喜剧/爱情,中国大陆,2012,24084\r\n再也不诱拐了 もう誘拐なんてしな,6.9,4457,剧情,日本,2012,30753.3\r\n毒气风暴,6.5,4456,剧情/惊悚,日本,2009,28964\r\n异种,5.9,4456,动作/科幻/恐怖,美国,1998,26290.4\r\n绿光,8.2,4455,剧情/爱情,法国,1986,36531\r\n一件幸福的事 U,7.9,4455,剧情/喜剧/爱情/家庭,法国,2011,35194.5\r\n猛鬼差馆 猛鬼差,6.9,4454,喜剧/恐怖,香港,1987,30732.6\r\n我们的傻老哥,7,4452,剧情/喜剧/家庭,美国,2011,31164\r\n冲锋陷阵 重案黐,6.2,4449,剧情/动作/犯罪,香港,2004,27583.8\r\n新僵尸先生,7.1,4447,恐怖,香港,1992,31573.7\r\n女巫,6.8,4445,悬疑/恐怖,美国/英国/加拿大/巴西,2015,30226\r\n龙门客栈 龍門客,8,4444,动作/冒险/武侠/古装,台湾,1967,35552\r\n棋魂·通往北斗杯之路 ヒカルの碁スペシャル 北斗杯へ,8.9,4440,剧情/动画,日本,2004,39516\r\n生活艰难但是快乐 ピカ☆ンチ L,8.7,4440,剧情,日本,2002,38628\r\n野良犬,8.2,4436,剧情/惊悚/犯罪,日本,1949,36375.2\r\n火烧岛,6.6,4435,剧情/动作/犯罪,台湾,1905,29271\r\n晚娘,6.3,4434,情色,泰国,2004,27934.2\r\n冬荫功2：拳霸天,5.4,4431,动作/犯罪,泰国,2014,23927.4\r\n密码疑云 Код апокалипси,6.2,4430,动作/冒险,俄罗斯,2008,27466\r\n擒爱记,5,4429,喜剧/爱情,中国大陆,2012,22145\r\n我要做,5.7,4428,喜剧,香港,2004,25239.6\r\n十二,6,4427,剧情/惊悚,美国/法国,2010,26562\r\n机动部队—警例,6.7,4426,动作/惊悚/犯罪,香港,2008,29654.2\r\n革命往事 ,9,4425,战争/西部/冒险,意大利,1971,39825\r\n弹．道,6.4,4423,动作/惊悚,香港/台湾,2008,28307.2\r\n白头神探2½：恐怖的,7.6,4417,喜剧/动作/犯罪,美国,1991,33569.2\r\n飓风,8.5,4414,剧情/传记/运动,美国,1999,37519\r\n恐怖故事,5.8,4413,恐怖,韩国,2013,25595.4\r\n至暴之年,6.8,4411,剧情/动作/惊悚/犯罪,美国,2014,29994.8\r\n雷雨,7.7,4410,剧情/家庭,中国大陆,1905,33957\r\n满清十大酷刑 滿清十大酷,6.3,4410,剧情/喜剧/情色/犯罪,香港,1994,27783\r\n倒数第二次恋爱 2012秋SP 最後,9.1,4409,剧情/喜剧/爱情,日本,2012,40121.9\r\n森林泰山,7,4408,喜剧/动作/爱情/家庭/冒险,美国,1997,30856\r\n好景在望,7.4,4407,喜剧/动作,美国,2012,32611.8\r\n潜龙轰天,6.9,4407,动作/惊悚/犯罪,法国/美国,1992,30408.3\r\n塘鹅暗杀令,7.2,4405,剧情/爱情/悬疑/惊悚/犯罪,美国,1993,31716\r\n回马枪,4.1,4405,喜剧/犯罪,中国大陆,2011,18060.5\r\n心中的杀手,6.4,4402,剧情/惊悚/犯罪,美国,2010,28172.8\r\n刺,6,4402,剧情/科幻/惊悚/恐怖,美国,2008,26412\r\n远大前程,7.8,4400,剧情/爱情,美国,1998,34320\r\n死神剧场版：无人的回忆 劇場版 BL,6.9,4398,动作/动画/恐怖/奇幻/冒险,日本,2006,30346.2\r\n网络杀机,6.7,4398,剧情/惊悚/犯罪,美国,2008,29466.6\r\n青春感恩记《父亲》之《父子篇》,6.3,4398,短片/歌舞,中国大陆,2012,27707.4\r\n少年收容所,7.8,4397,剧情,美国,2013,34296.6\r\n临终囧事,5.4,4396,喜剧/恐怖,中国大陆,2013,23738.4\r\n大卫·科波菲尔,8.2,4394,剧情,英国,1999,36030.8\r\n无畏之心,7.7,4392,剧情/惊悚,印度,2012,33818.4\r\n爱的蹦极,7.5,4392,剧情/爱情/同性,韩国,2003,32940\r\n阴风阵阵,7.2,4391,恐怖,意大利,1977,31615.2\r\n弹簧刀,8.2,4390,剧情,美国,1996,35998\r\n突然有一天之,6.4,4390,恐怖,韩国,2006,28096\r\n天使在人间,7.6,4389,喜剧/爱情/奇幻,美国,1987,33356.4\r\n西区故事,7.7,4386,剧情/爱情/歌舞/犯罪,美国,1961,33772.2\r\n赵先生,7.5,4386,剧情,香港/中国大陆,1999,32895\r\n闪烁的爱情 ストロボ・エ,5.2,4384,剧情/爱情,日本,2015,22796.8\r\n花神咖啡馆的情人们,7.6,4383,剧情/传记,法国,2006-04-16（法国）,33310.8\r\n先婚后友,6.2,4382,喜剧/爱情,美国,2006,27168.4\r\n趣味游戏,7.4,4381,剧情/悬疑/惊悚/犯罪,奥地利,1997,32419.4\r\n金太狼的幸福生活,6.2,4380,喜剧,中国大陆,2013,27156\r\n房不剩防,5.9,4378,喜剧/爱情,中国大陆,2011,25830.2\r\n白头神探,7.4,4376,喜剧/动作/犯罪,美国,1994,32382.4\r\n一级戒备,6.2,4376,动作/惊悚/犯罪,美国,2006,27131.2\r\n1980年,6.3,4375,爱情,中国大陆,2015,27562.5\r\n身在其中 À,6.6,4373,惊悚/恐怖,法国,2007,28861.8\r\n新家法,6.3,4373,犯罪,香港,1999,27549.9\r\n奏鸣曲 ソナチ,8.2,4368,剧情/动作/惊悚/犯罪,日本,1993,35817.6\r\n红灯,7,4368,剧情/悬疑/惊悚,美国/西班牙,2012,30576\r\n床上关系,6.3,4368,剧情/爱情/短片,中国大陆,2012,27518.4\r\n悲惨世界 ,8.7,4366,剧情,法国/EastGermany/意大利,1958,37984.2\r\n僵尸来袭,6.4,4365,动作/恐怖,澳大利亚,2015,27936\r\n盲女72小时 盲,6.3,4365,惊悚,香港,1993,27499.5\r\n青春,6.5,4363,剧情/爱情/情色,韩国,2000,28359.5\r\n母女情深,8.1,4361,剧情/喜剧/爱情/家庭,美国,1983,35324.1\r\n神探南茜,6.7,4361,喜剧/悬疑/惊悚/家庭/犯罪/冒险,美国,2007,29218.7\r\n瞧这一家子,7.9,4360,剧情,中国,1905,34444\r\n一酷到底,6.9,4360,喜剧/犯罪,美国,2005,30084\r\n辣手回春,6,4360,喜剧,香港,2000,26160\r\n女王的教室特别篇 女王の教室スペシャル エピソード1,8.5,4358,剧情,日本,2006,37043\r\n我的老婆是赌圣 我老婆係賭,4.6,4358,喜剧,香港,2008,20046.8\r\n德州，北海,7.3,4354,剧情/同性,比利时,2011,31784.2\r\n怪兽婆婆,6.3,4354,喜剧/爱情/家庭,德国/美国,2005,27430.2\r\n拳王阿里,7.3,4351,剧情/传记/运动,美国,2001,31762.3\r\n情人眼里出西施,7,4351,剧情/喜剧/爱情/奇幻,美国/德国,2001,30457\r\n楼上的外星人,6.5,4351,科幻/家庭/奇幻/冒险,美国/加拿大,2009,28281.5\r\n史酷比,6,4351,喜剧/悬疑/家庭/冒险,美国/澳大利亚,2002,26106\r\n帝国秘符,3,4351,动作/冒险,中国大陆,2013,13053\r\n遇人不熟 運命じゃない,8.2,4350,剧情/喜剧/爱情,日本,2005,35670\r\n课室风云,7.6,4350,剧情,法国,2008,33060\r\n世上最快的印地安摩托,8.9,4348,剧情/传记/运动,新西兰/美国/瑞士/日本,2005,38697.2\r\n最后的绞刑师,7.8,4348,剧情,英国,2005,33914.4\r\n山炮进城,3.9,4348,喜剧,中国大陆,2015,16957.2\r\n基地疑云,6.9,4346,剧情/悬疑/惊悚/犯罪,美国/德国,2003,29987.4\r\n想幸福的人,6.9,4346,剧情/短片/同性,台湾,2012,29987.4\r\n绝种铁金刚,5.6,4346,喜剧,香港,2003,24337.6\r\n替身：因果 A,7.6,4345,动画/悬疑/惊悚/恐怖,日本,2012,33022\r\n功夫兔系列3：菜包狗大反,8.8,4341,喜剧/动画/短片,中国,1905,38200.8\r\n早安越南,8,4340,剧情/喜剧/战争,美国,1988,34720\r\n大逃亡,8.4,4339,剧情/历史/冒险,美国,1963,36447.6\r\n子狐物语 子ぎつねヘレ,8,4334,剧情/家庭,日本,2006,34672\r\n一年之痒,6.4,4334,喜剧/爱情,英国,2013,27737.6\r\n魔界契约,5.4,4334,动作/惊悚/恐怖,美国,2006,23403.6\r\n女生日记,6.9,4333,短片,中国大陆,2011,29897.7\r\n亡命地中海,5.9,4333,惊悚,英国/法国/美国,2015,25564.7\r\n长江7号爱地,5.9,4333,动画,中国大陆/香港,2010,25564.7\r\n赛琳娜,5.6,4333,剧情,美国/捷克,2014,24264.8\r\n世界奇妙物语 2007秋之特别篇 世にも奇妙な物,8.1,4332,剧情,日本,2007,35089.2\r\n一路向前,3.6,4331,喜剧,中国大陆,2015,15591.6\r\n火影忍者疾风传剧场版：失落之塔 劇場版 NARUTO -ナルト,6.5,4327,动画,日本,2010,28125.5\r\n新龙凤配,7.4,4325,剧情/喜剧/爱情,德国/美国,1995,32005\r\n东北偏北,6.3,4325,剧情/喜剧/悬疑,中国大陆,2015,27247.5\r\n留级之王,6.1,4325,喜剧/爱情,美国,2006,26382.5\r\n空中杀阵,7,4318,动作/冒险,法国,2005,30226\r\n突然有一天之2月,6.3,4317,恐怖,韩国,2006,27197.1\r\n毕加索的奇异旅程,8.7,4315,喜剧,瑞典,1978,37540.5\r\n单身部落 單身部,6.2,4315,喜剧/爱情,香港,2007,26753\r\n汉娜姐妹,8.1,4312,剧情/喜剧/爱情,美国,1986,34927.2\r\n电锯惊魂：重生,8,4312,动画/惊悚/短片/犯罪,美国,2005,34496\r\n床下有人,2.8,4309,悬疑/惊悚,中国大陆,2011,12065.2\r\n翠西碎片,7.2,4307,剧情,加拿大,2007,31010.4\r\n失落的大陆,5.5,4306,喜剧/科幻/惊悚/冒险,美国,2009,23683\r\n冰雪女王,7.5,4303,剧情/动作/家庭/奇幻/冒险,美国/德国/加拿大,2002,32272.5\r\n茶之味 茶の,8.2,4301,剧情/喜剧,日本,2004,35268.2\r\n零的焦点 ゼロの焦,7.2,4301,剧情,日本,2009,30967.2\r\n信号,6,4301,科幻/惊悚,美国,2014,25806\r\n银魂：无论什么事开始虽然重要但伸个懒腰的话也不错 銀魂 〜何事も最初が肝心なので多少背伸びするくらいが丁,9.5,4300,剧情/动画/短片,日本,2005,40850\r\nU,4.2,4299,剧情/喜剧,中国大陆,2014,18055.8\r\n最后一次驱魔,6.2,4298,惊悚/恐怖,美国,2010,26647.6\r\n飞向太空 Соляри,8.4,4297,剧情/科幻/悬疑,苏联,1972,36094.8\r\n隐秘,8.1,4294,剧情/悬疑/惊悚,意大利,2006,34781.4\r\n妈妈别哭,5.9,4294,剧情,韩国,2012,25334.6\r\n夏日风暴,7.5,4293,剧情/喜剧/爱情/同性/运动,德国,2004,32197.5\r\n突然有一天之第四层,6.4,4293,恐怖,韩国,2006,27475.2\r\n大公司小老板,6.7,4291,剧情/喜剧/爱情,美国,2004,28749.7\r\n旺角揸f,7.4,4290,动作,香港,1996,31746\r\n怪宴,8.3,4289,喜剧/悬疑/惊悚/犯罪,美国,1976,35598.7\r\n天堂失格 スクラップ・ヘ,7.5,4289,剧情,日本,2005,32167.5\r\n月光光心慌慌,6.5,4289,悬疑/恐怖,美国,1978,27878.5\r\n柠檬时期 檸檬のこ,6.6,4288,剧情/爱情,日本,2007,28300.8\r\n大人物乔,7.8,4285,剧情/喜剧/爱情,美国,2001,33423\r\n迪亚特洛夫事件,6.7,4284,惊悚,美国/英国/俄罗斯,2013,28702.8\r\n贵妇失踪记,8,4283,喜剧/悬疑/惊悚,英国,1938,34264\r\n剧场版 机动战士高达00 先驱者的醒觉 劇場版 機動,7,4283,科幻/动画/战争,日本,2010,29981\r\n模范家庭,6.9,4282,剧情/喜剧/家庭,美国,2010,29545.8\r\n分手专家,5.8,4281,喜剧/爱情,美国,1905,24829.8\r\n蒸发太平洋,3.1,4279,剧情/科幻/冒险,中国大陆/美国,2016,13264.9\r\n一江春水向东流,8.4,4277,剧情,中国,1905,35926.8\r\n白色夹竹桃,8.1,4276,剧情,美国/德国,2002,34635.6\r\n斯大林格勒战役,8.1,4275,剧情/战争,德国,1993,34627.5\r\n汉城大劫案,7.3,4275,动作/犯罪,韩国,2004,31207.5\r\n花为眉,5.2,4275,剧情/爱情/情色/同性,中国大陆/法国/美国,2011,22230\r\n摩登保镖,8,4274,喜剧,香港,1981,34192\r\n初见,6.7,4274,爱情/短片,中国大陆,2013,28635.8\r\n第五波,4.5,4271,动作/科幻/惊悚/冒险,美国,2016,19219.5\r\n海贼王3D电影版：追寻草帽 ONE ,7.7,4270,动画,日本,2011,32879\r\n忘了去懂你,6.5,4268,剧情/家庭,中国大陆,2014,27742\r\n女拳霸,6.8,4267,剧情/动作,泰国,2008,29015.6\r\n继父,5.8,4267,悬疑/惊悚,美国,2009,24748.6\r\n苔藓,6.9,4263,悬疑,韩国,2010,29414.7\r\n世界奇妙物语 15周年特别篇 世にも奇妙な物語 1,8,4262,剧情/悬疑/惊悚/奇幻,日本,2006,34096\r\n裸体午餐,7.5,4262,剧情/奇幻,加拿大/英国/日本,1991,31965\r\n花痕 花のあ,7.3,4262,剧情,日本,2010,31112.6\r\n为你钟情 為你鍾,6,4261,爱情/奇幻,香港,2010,25566\r\n大唐玄奘,4.9,4261,历史,中国大陆,2016,20878.9\r\n橱柜童子 たんすわらし,8.2,4257,动画/短片,日本,2011,34907.4\r\n老人,8.2,4257,喜剧/动作/科幻/动画,日本,1991,34907.4\r\n戈雅之魂,7.4,4257,剧情/传记/战争,美国/西班牙,2006,31501.8\r\n啊，男孩,7.8,4256,剧情,德国,2012,33196.8\r\n唐顿庄园：2015圣,9.5,4254,剧情/家庭,英国,2015,40413\r\n心碎度蜜月,6.1,4253,喜剧/爱情,美国,2007,25943.3\r\n一个男人和一个女人,8.4,4252,剧情/爱情,法国,1966,35716.8\r\n愤怒的小孩,6.2,4252,喜剧/儿童,中国大陆,2013,26362.4\r\n霍华德庄园,7.6,4251,剧情/爱情,英国/日本,1992,32307.6\r\n温布尔登,6.8,4251,剧情/喜剧/爱情/运动,英国/法国,2004,28906.8\r\n泽西女孩,7.2,4249,剧情/喜剧/爱情,美国,2004,30592.8\r\n清须会议 清須会,7.1,4248,喜剧/历史/古装,日本,2013,30160.8\r\n爱爱囧事,3.5,4248,喜剧/爱情,中国大陆,2013,14868\r\n黑暗楼层,5.8,4247,恐怖/奇幻,芬兰/冰岛,2008,24632.6\r\n慢放镜头,6.7,4246,剧情,韩国,2014,28448.2\r\n汤姆的农场旅行 ,7.5,4244,剧情/惊悚,加拿大/法国,2013,31830\r\n欲孽迷宫,6.3,4240,剧情,西班牙/美国/法国,2007,26712\r\n合伙人,7.1,4239,剧情,英国/美国,2011,30096.9\r\n完美搭档,5.8,4236,喜剧/情色,韩国,2011,24568.8\r\n星际旅行10：复仇,6.9,4232,动作/科幻/惊悚,美国,2002,29200.8\r\n安德鲁和威利冒险记 ,6.1,4228,动画/短片/家庭,美国,1984,25790.8\r\n窈窕淑男,7.9,4227,喜剧/爱情,美国,1982,33393.3\r\n裂口女 口裂け,5.1,4227,恐怖,日本,2007,21557.7\r\n进击的巨人真人版：后篇·世界终结 進撃の巨人 ATTACK O,4.4,4227,动作/科幻,日本,2015,18598.8\r\n没有我的日子,8.1,4226,剧情/爱情,加拿大/西班牙,2003,34230.6\r\n小熊维尼,7.6,4226,动画,美国,2011,32117.6\r\n异灵灵异,6.7,4225,喜剧/爱情/科幻/恐怖,香港,2001,28307.5\r\n再见歌舞伎町 さよなら歌舞伎,7.4,4223,剧情/爱情,日本,2014,31250.2\r\n临时特工,6.6,4222,喜剧/动作/惊悚/冒险,美国/捷克,2002,27865.2\r\n小城之春,7.2,4219,剧情/爱情,中国/法国/香港,2002,30376.8\r\n寻龙夺宝,3.8,4218,动作/家庭/奇幻/冒险,澳大利亚,2011,16028.4\r\n巴比龙,8.7,4217,剧情/传记/犯罪,美国/法国,1973,36687.9\r\n死囚之舞,7.4,4217,剧情/爱情,美国/加拿大,2002,31205.8\r\n红色机尾,6.4,4217,剧情/动作/历史/战争/冒险,美国,1905,26988.8\r\n爱情攻略 小姐誘,5.9,4216,喜剧/爱情,香港,2015,24874.4\r\n寿喜烧西部片 スキヤキ ウェスタン ジ,7.2,4215,动作/西部,日本,2007,30348\r\n美眉校探 电影,6.6,4215,剧情/喜剧/犯罪,美国,2014,27819\r\n007之,6.8,4214,动作/科幻/惊悚/冒险,英国,1971,28655.2\r\n骗徒臭事多,8.3,4213,喜剧/犯罪,美国,1988,34967.9\r\n疯狗强尼,7.1,4213,剧情/战争,法国/比利时/利比里亚,2008,29912.3\r\n正·青春,4.6,4212,剧情,中国大陆,2011,19375.2\r\n五感图,5.5,4210,剧情/爱情/情色,韩国,2009,23155\r\n恐惧的代价,8.7,4208,剧情/惊悚/冒险,法国/意大利,1953,36609.6\r\n恐怖热线之大头怪婴,6.5,4204,恐怖,香港,2001,27326\r\n双面女友,6.4,4202,剧情/喜剧/爱情,韩国,2007,26892.8\r\n世界奇妙物语 2007春之特别篇 世にも奇妙な物,8,4201,剧情/悬疑/奇幻,日本,2007,33608\r\n职场求爱记,5.6,4200,喜剧/爱情,美国,2010,23520\r\n规则改变,7.8,4199,剧情/历史,美国,2012,32752.2\r\n爱很怪,7.8,4196,剧情/爱情/同性,美国/法国/巴西/希腊,2014,32728.8\r\n孩子,7.8,4196,剧情/爱情/犯罪,比利时/法国,2005,32728.8\r\n妻子小姐,7.3,4195,喜剧,韩国,2015,30623.5\r\n通往仙境,6.4,4195,剧情/爱情,美国,2012,26848\r\n恶狗帮,7.6,4194,剧情,法国/加拿大/英国,2010,31874.4\r\n穷街陋巷,7.6,4194,剧情/犯罪,美国,1973,31874.4\r\n街尾之宅,5.9,4194,惊悚/恐怖,美国/加拿大,2012,24744.6\r\n不一样的本能,7.5,4190,剧情/爱情/奇幻,美国,1996,31425\r\n乘列车前行 僕達急行-A列車で,7.4,4190,剧情,日本,2012,31006\r\n水中女妖,5.6,4190,喜剧/悬疑/惊悚/奇幻,美国,2006,23464\r\n能召回前世的布米叔叔,6.6,4188,剧情/奇幻,泰国/英国/法国/德国/西班牙,2010,27640.8\r\n国王班底,7.2,4187,剧情/惊悚,德国/美国,2006,30146.4\r\n沙丘,6.4,4187,动作/科幻/冒险,美国,1984,26796.8\r\n智齿,6.2,4184,剧情/爱情,韩国,2005,25940.8\r\n我的播音系女友,3.6,4184,喜剧/爱情,中国大陆,2014,15062.4\r\n丑小鸭,8.1,4183,喜剧/动画/短片/家庭,美国,1939,33882.3\r\n醉画仙,7.5,4183,剧情/传记,韩国,2002,31372.5\r\n恐惧拉斯维加斯,7.3,4181,剧情/奇幻,美国,1998,30521.3\r\n光阴的故事 光陰的故,7.8,4179,剧情,台湾,1982,32596.2\r\n夏日的冲绳 チェケラッチ,7.7,4179,剧情/歌舞,日本,2006,32178.3\r\n洛奇,7.9,4178,剧情/动作/运动,美国,1982,33006.2\r\n宇宙战舰大和号 SP,6.3,4178,剧情/动作/科幻/冒险,日本,2010,26321.4\r\n年轻的亚当,7.2,4176,剧情/惊悚/情色/犯罪,英国/法国,2003,30067.2\r\n回溯迷踪 ,5.5,4175,剧情/悬疑/犯罪,西班牙/加拿大/美国,2015,22962.5\r\n灵异咒 ノロ,7.1,4170,恐怖,日本,2005,29607\r\n侠盗高飞 俠盜高,6.8,4167,剧情/动作/惊悚/犯罪,香港,1992,28335.6\r\n博士之日,8.8,4166,科幻,英国,2013,36660.8\r\n名侦探柯南OVA4：柯南、基德和水晶之母 名探偵コナン コナンとキッドとクリ,7.6,4165,动画,日本,1905,31654\r\n飞龙猛将 飛龍猛,7,4165,喜剧/动作/爱情,香港,1988,29155\r\n鬼打鬼,6.9,4164,喜剧/动作/恐怖/奇幻,香港,1980,28731.6\r\n读心术,6,4164,剧情/悬疑/惊悚,韩国,2013,24984\r\n外出就餐,6.8,4163,喜剧/爱情/同性,美国,2006,28308.4\r\n最后一吻,7.3,4162,剧情/喜剧/爱情,美国,2006,30382.6\r\n穿越国境,7.5,4161,剧情,美国,2009,31207.5\r\n天使之卵 天使の,6.6,4159,剧情,日本,2006,27449.4\r\n那些最伟大的比赛,8.1,4157,剧情,美国,2005,33671.7\r\n落跑吧爱情 落跑吧愛,5.7,4157,爱情,台湾/香港,2015,23694.9\r\n鸡同鸭讲 雞同鴨,7.6,4155,喜剧,香港,1988,31578\r\n疯狂神父,6.8,4155,喜剧/家庭/运动,德国/美国,2006,28254\r\n做我的奴隶 私の奴隷になりなさ,5.6,4152,情色/犯罪,日本,2012,23251.2\r\n欢乐树的朋友们：赶尽杀绝,9.2,4151,喜剧/动画,美国,2005,38189.2\r\n宅男总动员,3.7,4150,喜剧/爱情,中国大陆,2011,15355\r\n超时空要塞：可曾记得爱 超時空要塞マクロス 愛・おぼえてい,8.9,4149,爱情/科幻/动画,日本,1984,36926.1\r\n半熟少女,6.1,4145,剧情/爱情/歌舞,中国大陆,2013,25284.5\r\n恐怖爆发 エクス,5.8,4145,恐怖,日本,2007,24041\r\n我的哥哥,7.7,4141,剧情/家庭,韩国,2004,31885.7\r\n凯特的外遇日记,6.3,4141,剧情/喜剧/家庭,美国,2011,26088.3\r\n对不起，我爱你 對不起，我愛,6.3,4140,剧情/爱情,台湾,2009,26082\r\n黑执事 黒執,5.1,4139,悬疑/惊悚,日本,2014,21108.9\r\n史密斯先生到华盛顿,8.8,4138,剧情,美国,1939,36414.4\r\n奇异的恩典,8.2,4138,剧情/爱情/传记/历史,英国/美国,2006,33931.6\r\n船长哈洛克 キャプテンハーロッ,6.9,4137,科幻/动画,日本,2013,28545.3\r\n星际旅行3：石破天,7.2,4133,动作/科幻/惊悚/冒险,美国,1984,29757.6\r\n在七月,8.1,4132,喜剧/爱情,德国,2000,33469.2\r\n护士,4.8,4131,惊悚/恐怖,美国,2013,19828.8\r\n玛奇丝,6.7,4127,剧情/喜剧,法国/意大利/西班牙/瑞士,1997,27650.9\r\n严肃的月光,6.7,4123,喜剧/爱情/犯罪,美国,2009,27624.1\r\n解除好友,6.5,4123,惊悚/恐怖,美国,2014,26799.5\r\n辣身舞,7.9,4122,剧情/爱情,美国,1987,32563.8\r\n律政英雄 特别篇 H,7.8,4122,剧情,日本,2006,32151.6\r\n十六个愿望,6.3,4122,家庭/奇幻,美国/加拿大,2010,25968.6\r\n蝙蝠侠：哥谭骑士,7.4,4120,动作/科幻/动画/惊悚/犯罪,美国/日本/韩国,2008,30488\r\n逆鳞,6.4,4120,剧情/历史,韩国,2014,26368\r\n我的血腥情人节,5.8,4120,悬疑/惊悚/恐怖/犯罪,美国,2009,23896\r\n老大靠边闪,7.3,4119,喜剧/犯罪,美国/澳大利亚,1999,30068.7\r\n棒球英豪 タッ,6.8,4118,剧情/爱情/运动,日本,2005,28002.4\r\n不知不觉诱惑你,6.5,4117,喜剧/情色,意大利,1998,26760.5\r\n幻影特攻,5.9,4116,惊悚,香港,1998,24284.4\r\n哆啦A梦：大雄的人鱼大海战 映画ドラえもん のび太の人魚,6.9,4114,剧情/动画/冒险,日本,2010,28386.6\r\n边城,7.8,4113,剧情,中国大陆,1992,32081.4\r\n我们这样的人,7.2,4113,剧情,美国,2012,29613.6\r\n雪盲,5.9,4112,动作/悬疑/惊悚/犯罪,美国/加拿大/法国,2009,24260.8\r\n重返中世纪,6.4,4111,动作/科幻/冒险,美国,2003,26310.4\r\n惊爆点,7.4,4110,动作/惊悚/犯罪,美国/日本,1991,30414\r\n整十码,6.4,4110,喜剧/惊悚/犯罪,美国,2004,26304\r\n我很好，谢谢，我爱你,7.3,4108,喜剧/爱情,泰国,2014,29988.4\r\n欢迎来到隔离病房 クワイエットルームにようこ,7.3,4108,剧情,日本,2007,29988.4\r\n危险藏匿,6.3,4107,剧情/犯罪,美国,2014,25874.1\r\n导演万岁！ 監督・ばん,7.1,4100,剧情/喜剧,日本,2007,29110\r\n光之塔,8.1,4098,动画/短片/家庭/奇幻,台湾,1905,33193.8\r\n冰球坏小子,7.5,4097,喜剧/运动,美国/加拿大,2011,30727.5\r\n永不放弃 DOOR TO DOOR〜僕は,8.7,4096,剧情,日本,2009,35635.2\r\n007之女,6.6,4092,动作/爱情/惊悚/冒险,英国,1969,27007.2\r\n爱我多深,6.2,4092,剧情/喜剧/爱情,意大利/法国,2005,25370.4\r\n地铁大逃杀,7.1,4090,动作/动画/惊悚/恐怖/短片,中国大陆,2012,29039\r\n爱情万岁 愛情萬,6.7,4090,爱情,香港,2008,27403\r\n爱情导师,5.1,4090,喜剧/爱情/运动,美国/英国/德国,2008,20859\r\n辛巴达七海传奇,7.3,4089,动画/家庭/奇幻/冒险,美国,2003,29849.7\r\n敲敲门,4.7,4089,惊悚/恐怖,智利/美国,2015,19218.3\r\n黑暗天际,5.9,4088,科幻/惊悚/恐怖,美国,2013,24119.2\r\n神秘博士特别篇：时间尽头(,9.4,4087,剧情/科幻,英国,2010,38417.8\r\n辣手摧花,7.5,4086,剧情/悬疑/犯罪,美国,1943,30645\r\n拥抱春天的罗曼史 春を抱いてい,7.6,4085,动画/同性,日本,2005,31046\r\nX射线营,7.1,4085,剧情,美国,2014,29003.5\r\n咒怨：终结的开始 呪怨 終わりの始,5.5,4081,恐怖,日本,2014,22445.5\r\n分离 ,8,4073,剧情/动画/恐怖/短片,英国,2004,32584\r\n夺金三王,7,4072,剧情/喜剧/动作/战争/冒险,美国/澳大利亚,1999,28504\r\n单身汉,6.5,4072,喜剧/爱情,美国,1999,26468\r\n我的意外老公,6,4069,喜剧/爱情,英国/美国,2008,24414\r\n两个人的车站 Вокзал для дв,8.6,4068,爱情,苏联,1983,34984.8\r\n非常小王子,8.3,4068,动画/短片/家庭,法国,2003,33764.4\r\n画之国,8.4,4067,动画/奇幻,法国,2011,34162.8\r\n我的小公主,7.1,4067,剧情,法国,2011,28875.7\r\n糖果,7.7,4066,剧情/爱情,澳大利亚,2006,31308.2\r\n吉星拱照,7.4,4066,喜剧,香港,1990,30088.4\r\n不再说分手 分手,5.7,4066,爱情,香港/中国大陆,2014,23176.2\r\n偷狗的完美方法,7.3,4065,剧情/家庭,韩国,2014,29674.5\r\n伦敦佬对抗活死人,6.2,4065,剧情/喜剧/惊悚/恐怖/冒险,英国,2012,25203\r\n嚎叫,6.6,4063,惊悚,韩国,2012,26815.8\r\n水浒笑传 水滸笑,6.3,4063,喜剧,香港/新加坡,1993,25596.9\r\n所罗门的伪证后篇：审判 ソロモンの偽証 後篇,6,4063,剧情/惊悚,日本,2015,24378\r\n伊丽莎白一世,8,4062,剧情/爱情/传记/历史,美国/英国,2005,32496\r\n咒乐园 咒樂,5.6,4061,剧情/恐怖,香港/泰国,2003,22741.6\r\n阿玛柯德,8.7,4058,剧情/喜剧,意大利/法国,1973,35304.6\r\n古畑任三郎，生涯最初的事件 古畑中学生~ 古畑任三郎、生涯最初,7,4058,悬疑/犯罪,日本,2008,28406\r\n企业战士,7.1,4055,剧情/动作/犯罪,法国,2001,28790.5\r\n十诫,8.1,4054,剧情/历史/冒险,美国,1956,32837.4\r\n自杀热线,7.6,4052,剧情/短片,英国,2013,30795.2\r\n吉屋出租,8.2,4051,剧情/爱情/歌舞,美国,2005,33218.2\r\n新灵犬莱西,8.5,4050,剧情/儿童/冒险,英国/法国/爱尔兰/美国,2005,34425\r\n真实 R,7.4,4050,喜剧,法国/比利时,2014,29970\r\n婴尸,5.7,4050,惊悚/恐怖,泰国,2011,23085\r\n驱魔警察,7.3,4049,恐怖,香港,1990,29557.7\r\n死神 剧场版3 黑色褪去 呼唤君之名 劇場版BLEAC,7,4049,动画,日本,2008,28343\r\n蝙蝠侠：突袭阿卡姆,7.8,4048,动作/动画/犯罪,美国,2014,31574.4\r\n施陶芬贝格,7.1,4048,剧情/历史/战争,德国,2004年,28740.8\r\n黑岩射手 ブラック★ロックシュータ,6.7,4048,剧情/动作/动画,日本,2010,27121.6\r\n白兰,7.3,4043,剧情/爱情,韩国,2001,29513.9\r\n南北少林,6.9,4043,动作,中国大陆/香港,1986,27896.7\r\n熊猫回家路,6.8,4041,家庭,中国大陆,2009,27478.8\r\n亚人1：冲动 亜人 第,8.7,4040,剧情/动画/悬疑/惊悚,日本,2015,35148\r\n夏威夷假期,7.8,4040,喜剧/动画/短片,美国,2011,31512\r\n青春漫画,6.5,4039,喜剧/爱情,韩国,2006,26253.5\r\n搭车人,5.9,4039,动作/惊悚/犯罪,美国,2007,23830.1\r\n小亚细亚往事,7.4,4038,剧情,土耳其/波黑,2011,29881.2\r\n重返大海,5.2,4038,动画/家庭/冒险,中国大陆/美国/加拿大,2012,20997.6\r\n共犯,7.7,4037,剧情,美国,2011,31084.9\r\n疯魔美女,5.7,4037,恐怖/犯罪,泰国,2007,23010.9\r\n金田一少年事件簿之上海人鱼传说 金田一少年の事件簿 上海魚人,7.7,4036,喜剧/悬疑/恐怖/犯罪,日本,1997,31077.2\r\n血与骨,6.5,4033,剧情/动作,美国,2009,26214.5\r\n亲爱的 親愛,6.4,4033,惊悚,香港,2008,25811.2\r\n我的尴尬性之旅,5.8,4033,喜剧/爱情,加拿大,2012,23391.4\r\n我爱芳邻 ラ,6.8,4032,爱情/运动,日本,2006,27417.6\r\n地铁惊魂,5.9,4030,悬疑/惊悚/恐怖,英国/德国,2005,23777\r\n冬天的故事,8.3,4028,剧情,法国,1992,33432.4\r\n逝纸 イキガ,7.9,4028,剧情,日本,2008,31821.2\r\n富贵逼人来,8.2,4027,剧情/喜剧,美国,1979,33021.4\r\n最佳拍档4：千里救差,6.8,4027,喜剧/动作,香港,1986,27383.6\r\n罗密欧和朱丽叶,8.7,4026,剧情/爱情,英国/意大利,1968,35026.2\r\n千言万语 千言萬,8.1,4024,剧情,香港/中国大陆,1999,32594.4\r\n电影人生,8,4023,剧情/爱情,美国/澳大利亚,2001,32184\r\n女人步上楼梯时 女が階段を上る,9,4022,剧情,日本,1960,36198\r\n黑气球,7.6,4021,剧情,澳大利亚/英国,2008,30559.6\r\n城市英雄,8,4019,剧情/惊悚/犯罪,美国/法国/英国,1993,32152\r\n猎艳 獵,5.9,4018,剧情/情色,台湾,2010,23706.2\r\n追爱自由行,6.4,4017,剧情/喜剧/爱情,美国,2009,25708.8\r\n男友从军记,6.3,4017,喜剧/爱情,韩国,2008,25307.1\r\n拾荒少年,7.7,4016,剧情/短片,中国大陆,2012,30923.2\r\n陆小凤传奇之凤舞九天,7.2,4011,动作/武侠/古装,中国大陆,2006,28879.2\r\n过往 ,7.3,4010,剧情,法国/意大利/伊朗,2013,29273\r\n陆小凤传奇之幽灵山庄,7.2,4010,剧情/动作/冒险/武侠/古装,中国,2007,28872\r\n马戏团,9,4003,喜剧/爱情,美国,1928,36027\r\n燃烧的平原,7.7,4003,剧情/爱情/犯罪,美国/阿根廷,2008,30823.1\r\n痴男怨女,8,4002,剧情/喜剧/爱情,西班牙/意大利/英国/卢森堡/美国,2004,32016\r\n不知不觉爱上你,7.2,4002,喜剧/爱情,美国,1997,28814.4\r\n舞梦成真,6.7,4001,剧情,美国,2008,26806.7\r\n裸体切割,5.8,4001,爱情/悬疑/惊悚,美国/澳大利亚/英国,2003,23205.8\r\n苍蝇 ,7.7,3999,喜剧/动画/短片,匈牙利,1905,30792.3\r\n甜心巧克力,5.2,3998,爱情,中国大陆/日本,2013,20789.6\r\n了不起的盖茨比,7.5,3997,剧情/爱情,美国,1974,29977.5\r\n纽约两日情,6.7,3997,喜剧/爱情,法国/德国/比利时,2012,26779.9\r\n中国龙 中國,6.7,3996,喜剧/动作/爱情/犯罪,香港,1905,26773.2\r\n恋爱部屋 恋するマド,6.4,3996,剧情/爱情,日本,2007,25574.4\r\n20世纪少年：第二部 最后的希望 20世紀少年 ,6.7,3995,剧情,日本,2009,26766.5\r\n双面特工,6.8,3991,剧情/悬疑/惊悚/犯罪,美国,2007,27138.8\r\n黑猫警长之翡翠之星,5.2,3991,喜剧/动作/科幻/动画,中国大陆,2015,20753.2\r\n少爷 坊っちゃ,8.6,3990,剧情,日本,2016,34314\r\n斗茶 闘,5,3989,剧情,台湾/日本,2008,19945\r\n致命弯道6：终极审,4.5,3989,惊悚/恐怖,美国,2014,17950.5\r\n校花诡异事件,3.1,3989,惊悚/恐怖,中国大陆,2013,12365.9\r\n醉·生梦死,7.1,3987,剧情/同性/家庭,台湾,2015,28307.7\r\n家族荣誉,6.4,3986,喜剧/爱情/犯罪,韩国,2002,25510.4\r\n梦精记,5.6,3986,喜剧,韩国,2005,22321.6\r\n卓别林,8.3,3985,剧情/传记,英国/美国/法国/意大利,1992,33075.5\r\n初吻,6.2,3983,剧情/爱情,泰国,2012,24694.6\r\n十三岁,7.1,3982,剧情,美国,2003,28272.2\r\n007之黎,7,3981,动作/惊悚/冒险,英国/美国,1987,27867\r\n东京残酷警察 東京残酷警,5.8,3981,动作/科幻/恐怖,日本/美国,2008,23089.8\r\n淘金俏冤家,5.8,3981,喜剧/爱情/惊悚/冒险,美国,2008,23089.8\r\n偷窥,6.3,3980,爱情/惊悚/情色,美国,1993,25074\r\n超级礼物,7.4,3979,剧情,美国,2006,29444.6\r\n泳池情杀案,7.3,3979,剧情/悬疑/惊悚/犯罪,法国/英国,2003,29046.7\r\n不道德的审判,8.2,3978,剧情/悬疑/惊悚,英国/美国/法国,1994,32619.6\r\n宇宙兄弟,7.2,3978,喜剧,日本,2012,28641.6\r\n战·鼓 戰·,6.3,3978,剧情/犯罪,香港/台湾/德国,2007,25061.4\r\n愤怒的葡萄,8.4,3976,剧情,美国,1940,33398.4\r\n青蛙的预言 ,8.1,3976,动画/家庭,法国,2003,32205.6\r\n警察学校,7.9,3976,喜剧/犯罪,美国,1984,31410.4\r\n桃色血案,8.2,3974,剧情/动作/悬疑,美国,1959,32586.8\r\n赤裸天使,6.1,3974,剧情/情色,香港/台湾,1905,24241.4\r\n京都球侠,6.6,3973,喜剧/古装,中国大陆,1987,26221.8\r\n蓝,8.5,3970,剧情/同性/传记,英国/日本,1993,33745\r\n已经开始想你,7.5,3970,剧情/喜剧/爱情,英国,2015,29775\r\n石器时代之百万大侦探,3.3,3968,喜剧/奇幻,中国大陆/香港,2013,13094.4\r\n我生命中的男人,8,3967,剧情/同性,法国,2006,31736\r\n007之最,7,3966,动作/惊悚/冒险,英国/美国,1981,27762\r\n牧马人,7.9,3962,剧情/爱情,中国,1905,31299.8\r\n父与子,7.5,3961,喜剧,中国大陆,1905,29707.5\r\n塞尔玛,7.2,3959,剧情/传记/历史,英国/美国,2014,28504.8\r\n捉贼记,7.1,3958,爱情/悬疑/惊悚/犯罪,美国,1955,28101.8\r\n阿娘,6.5,3957,爱情/悬疑/恐怖,韩国,2006,25720.5\r\n水仙花开,6.7,3955,剧情/同性,法国,2007,26498.5\r\n替身杀手,5.8,3954,剧情/动作/惊悚/犯罪,美国,1998,22933.2\r\n灭门 滅,4.2,3954,动作/惊悚,香港,2010,16606.8\r\n热泪伤痕,8.5,3952,剧情/悬疑/惊悚,美国,1996,33592\r\n是我是我 俺,6.7,3951,喜剧,日本,2013,26471.7\r\n但丁的地狱之旅,6.6,3951,动作/动画/奇幻,日本/美国/韩国/新加坡,2010,26076.6\r\n骇客交锋,4,3948,剧情/动作/悬疑/惊悚/犯罪,美国,2015,15792\r\n龙珠Z：复活的F ドラゴンボール,5.9,3947,动画,日本,2015,23287.3\r\n小好、小麻、佐和子 すーちゃん まいちゃん さわ,7.8,3946,剧情,日本,2013,30778.8\r\n尘雾家园,7.9,3944,剧情,美国,2003,31157.6\r\n爱的言灵 愛の言,7,3944,剧情/爱情/同性,日本,2007,27608\r\n车库惊魂,6,3943,惊悚,美国,2007,23658\r\n团圆,7.6,3942,剧情/家庭,中国大陆,2013,29959.2\r\n活死人黎明,7.3,3942,动作/恐怖,意大利/美国,1978,28776.6\r\n康定情歌,6.5,3942,剧情/战争/冒险,中国大陆,2010,25623\r\n分手达人,2.7,3937,喜剧/爱情,中国大陆,2014,10629.9\r\n有时可能是列车 電車かもしれな,8.4,3936,动画/短片,日本,2008,33062.4\r\n涉外大饭店,6.8,3936,剧情/喜剧,美国/英国/阿联酋,2015,26764.8\r\n亚历山大和他最糟糕的一天,6.5,3936,喜剧/家庭,美国,2014,25584\r\n机关枪少女 片腕マシンガー,4.9,3935,喜剧/动作/惊悚/恐怖/犯罪,日本/美国,2008,19281.5\r\n短暂和平,7.9,3932,动画,日本,2013,31062.8\r\n无法触碰的爱 どうしても触れたくな,6.4,3932,剧情/同性,日本,2014,25164.8\r\n诺斯费拉图,8.3,3931,恐怖/奇幻,德国,1922,32627.3\r\n亲爱的，我把我们缩小了,7.3,3929,喜剧/动作/科幻/家庭/冒险,美国,1997,28681.7\r\n时空急转弯,7.2,3928,喜剧/奇幻,法国,1993,28281.6\r\n老家伙,6.4,3926,喜剧/家庭,美国,2009,25126.4\r\n银河铁道之夜 銀河鉄道の,8.5,3923,剧情/动画,日本,2006,33345.5\r\n黎巴嫩,7.2,3923,剧情/战争,以色列/德国/法国/黎巴嫩,2009,28245.6\r\n黄飞鸿对黄飞鸿 黃飛鴻對黃飛,6.1,3923,喜剧/动作,香港,1993,23930.3\r\n火影忍者剧场版：大激突！幻之地底遗迹 劇場版 NARUTO -ナルト- 大激,6.5,3921,剧情/喜剧/动画/奇幻/冒险,日本,2005,25486.5\r\n臆想成病,7,3918,喜剧,法国/比利时,2014,27426\r\n少女大盗,6.8,3918,喜剧/犯罪,美国,2009,26642.4\r\n科学小怪蛋,6.6,3916,喜剧/动画/家庭/奇幻,美国/法国,2008,25845.6\r\n海豹六队：突袭奥萨马本拉登,6.3,3916,剧情/动作/犯罪,美国,2012,24670.8\r\n暴龙,7.6,3915,剧情,英国,2011,29754\r\n越轨追击,7,3915,剧情/惊悚,美国/英国,2005,27405\r\n长短脚之恋 長短腳之,6.7,3912,喜剧/爱情,香港,1988,26210.4\r\n凶暴的男人 その男、凶暴につ,7.7,3910,剧情/动作/惊悚/犯罪,日本,1989,30107\r\n和平战士,8.4,3909,剧情/爱情/运动,德国/美国,2006,32835.6\r\n魔法阿妈 魔法阿,8.8,3907,喜剧/动画/奇幻,台湾,2000,34381.6\r\n绝岭雄风,7.5,3907,动作/惊悚/冒险,美国/意大利/法国,1993,29302.5\r\n007之,6.8,3907,动作/惊悚/冒险,英国,1974,26567.6\r\n历劫俏佳人,5.8,3907,剧情/犯罪,美国/德国,2005,22660.6\r\n致命录像带,6.3,3905,惊悚/恐怖,美国,2012,24601.5\r\n拜占庭,5.9,3905,剧情/惊悚/奇幻,英国/美国/爱尔兰,2012,23039.5\r\n整九码,7,3904,剧情/喜剧/爱情/犯罪/冒险,美国,2000,27328\r\n疯狂的蠢贼,4.2,3900,喜剧/犯罪,中国大陆,2012,16380\r\n火星的孩子,7.7,3896,剧情/家庭,美国,2007,29999.2\r\n火影忍者剧场版：大兴奋！三日月岛的动物骚动 劇場版 NARUTO -ナルト- 大興奮!みかづき,6.4,3896,动作/动画/冒险,日本,2006,24934.4\r\n高度戒备 高度戒,7.2,3895,剧情/动作,香港,1997,28044\r\n妓院里的回忆,6.7,3894,剧情/情色,法国,2011,26089.8\r\n狂野大自然,6.7,3893,喜剧/动画/家庭/冒险,加拿大/美国,2006,26083.1\r\n思维空间,6.7,3893,惊悚,美国/西班牙/法国,2013,26083.1\r\n头号公敌,7.5,3892,剧情/动作/惊悚/传记/犯罪,法国/加拿大/意大利,2008,29190\r\n致命玩笑,6.8,3891,惊悚/犯罪,美国,2001,26458.8\r\n舞蹈皇后,7.4,3890,剧情/喜剧/家庭,韩国,2012,28786\r\n唐伯虎冲上云霄 唐伯虎衝上雲,3.7,3886,喜剧,香港,2014,14378.2\r\n青春残酷物语 青春残酷物,7.3,3884,剧情,日本,1960,28353.2\r\n这就是我,7.8,3883,喜剧,美国,2011,30287.4\r\n陆小凤传奇之绣花大盗,7.4,3882,动作/武侠/古装,中国大陆/香港,2007,28726.8\r\n江湖最后一个大佬,6.2,3882,剧情/犯罪,香港,1990,24068.4\r\n只在那里发光 そこのみにて光輝,7.1,3881,剧情,日本,2014,27555.1\r\n2B青年的不醉,6.3,3881,喜剧,中国大陆,2012,24450.3\r\n病院惊魂,6.2,3881,惊悚/恐怖,美国,2010,24062.2\r\n猛男滚死队,4.4,3881,喜剧,香港,1905,17076.4\r\n再见古惑仔 黑勢,6,3875,动作,香港,2008,23250\r\n洛克王国3：圣龙的守,4.6,3874,动画/奇幻/冒险,中国大陆,2014,17820.4\r\n反斗神鹰,7.7,3871,喜剧/动作/战争,美国,1993,29806.7\r\n非常小特务,6.2,3871,喜剧/动作/科幻/家庭/冒险,美国,2002,24000.2\r\n凯撒必须死,7.8,3868,剧情,意大利,2012,30170.4\r\n铁拳：血之复仇 鉄拳　ブラッド・ベンジェ,6.8,3867,动画,日本,2011,26295.6\r\n有人赞美聪慧，有人则不,7.8,3865,剧情/家庭/儿童,中国大陆/韩国,2013,30147\r\n平原游击队,7.5,3865,剧情/战争,中国大陆,1905,28987.5\r\n真心话大冒险,5.8,3863,惊悚/恐怖,英国,2012,22405.4\r\n迷雾中的小刺猬 Ёжик в  ту,8.6,3861,动画/短片/奇幻,苏联,1905,33204.6\r\n机遇之歌,8.5,3861,剧情,波兰,1987,32818.5\r\n神的病历簿 神様のカル,7.7,3859,剧情,日本,2011,29714.3\r\n我的野蛮初恋,6.4,3859,剧情/喜剧/爱情,韩国,2003,24697.6\r\n海豚的故事,8,3854,剧情/家庭,美国,2011,30832\r\n不可告人 ,7.2,3854,剧情/悬疑/惊悚/犯罪,法国,2006,27748.8\r\n午餐盒,7.9,3853,剧情/爱情,印度/法国/德国/美国,2013,30438.7\r\n双赢,7.5,3853,剧情/喜剧/家庭,美国,2011,28897.5\r\n芭芭拉,7.3,3852,剧情,德国,2012,28119.6\r\n亲爱的，我把孩子放大了,6.9,3851,喜剧/科幻/家庭/冒险,美国,1992,26571.9\r\n风暴突击者,5.9,3851,动作/惊悚/家庭/冒险,德国/美国/英国,2007,22720.9\r\n相见恨晚,7.9,3850,剧情/爱情,英国,1945,30415\r\n坚强的心,7.5,3850,剧情/惊悚/传记/历史/战争,美国/英国,2007,28875\r\n白色：诅咒的旋律,6.1,3849,恐怖,韩国,2011,23478.9\r\n师弟出马 師弟出,6.8,3848,喜剧/动作,香港,1980,26166.4\r\n霹雳先锋 霹靂先,6.7,3847,喜剧/动作/犯罪,香港,1988,25774.9\r\n在人海中遇见你,7.6,3846,剧情/喜剧,阿根廷/西班牙/德国,2011,29229.6\r\nSP女探员 美之祭品 SPウーマ,4.1,3845,动作/悬疑/情色,日本,2012,15764.5\r\n爱情是什么,7.4,3843,动画/短片,英国,1995,28438.2\r\n洛奇,7.4,3843,剧情/动作/运动,美国,1985,28438.2\r\n秋日奏鸣曲,8.6,3839,剧情,瑞典/原西德/法国,1978,33015.4\r\n酷毙了,7.1,3838,剧情/喜剧/犯罪,美国,2015,27249.8\r\n死神傻了,5.9,3838,喜剧,香港,2009,22644.2\r\n美丽新世界,7.5,3837,剧情/喜剧,中国大陆/台湾,1999,28777.5\r\n巴黎两日情,7.1,3837,剧情/喜剧/爱情,法国/德国,2007,27242.7\r\n伟大的历史动画,8.6,3836,喜剧/动画/短片/历史/战争,意大利,1991,32989.6\r\n活跳尸,7.2,3836,喜剧/科幻/恐怖,美国,1985,27619.2\r\n蔓延,6.4,3833,剧情/喜剧/爱情,美国,2009,24531.2\r\n世界是平的,7.3,3829,剧情/喜剧/爱情,美国,2006,27951.7\r\n极度寒冷,7.2,3829,剧情,中国,1905,27568.8\r\n异形魔怪,7,3829,喜剧/动作/科幻/惊悚/恐怖,美国,1990,26803\r\n疯狂的麦克斯,6.4,3829,动作/科幻/惊悚/冒险,澳大利亚,1985,24505.6\r\n英国人在纽约,8.3,3827,剧情/同性,英国,1905,31764.1\r\n樱桃,5.7,3827,剧情,美国,2012,21813.9\r\n脑内中毒大作战 脳内ポイズンベリ,6.6,3826,剧情/喜剧,日本,2015,25251.6\r\n告诉他们，我乘白鹤去了,7.5,3825,剧情,中国大陆,2012,28687.5\r\n午后的迷惘,8.6,3823,短片,美国,1905,32877.8\r\n与魔鬼同行,6.6,3823,剧情/惊悚/犯罪,美国,1997,25231.8\r\n爱很烂 愛很,4.4,3823,剧情/爱情/情色/同性,香港,2012,16821.2\r\n棕兔夫人,7.1,3821,喜剧/动画/短片/家庭/奇幻,美国,1905,27129.1\r\n哭泣的游戏,7.9,3820,剧情/惊悚/同性,英国/日本,1992,30178\r\n地下幻灯剧画 少女椿 地下幻燈劇画 ,7.7,3820,剧情/爱情/动画/恐怖,日本,1992,29414\r\n24小时：,7.7,3817,剧情/动作/惊悚/战争,美国,2008,29390.9\r\n公平游戏,6.9,3817,剧情/动作/惊悚/传记,美国/UnitedArabEmirates,2010,26337.3\r\n疯羊,5.7,3817,喜剧/恐怖,新西兰,2007,21756.9\r\n佐贺的超级阿嬷 佐賀のがばいばあちゃ,8.3,3815,剧情/家庭,日本,2006,31664.5\r\n卖梦的两人 夢売るふた,7,3814,剧情/犯罪,日本,2012,26698\r\n鬼来电,5.8,3813,悬疑/惊悚/恐怖,美国/日本/德国,2008,22115.4\r\n兽餐,6.2,3811,喜剧/动作/惊悚/恐怖,美国,2005,23628.2\r\n神秘感染,5.6,3811,剧情/惊悚/恐怖,美国,2013,21341.6\r\n恋慕,8.3,3810,剧情/短片,香港/韩国,2014,31623\r\n洪兴仔之江湖大风暴,6.4,3810,剧情/动作,香港,1996,24384\r\n十三号星期五,6.4,3810,悬疑/惊悚/恐怖,美国,1980,24384\r\n欢乐树的朋友们：第二发球,9.2,3809,喜剧/动画,美国,1905,35042.8\r\n大狗民,8,3808,喜剧/爱情/奇幻,泰国,2004,30464\r\n未竟一生,7.8,3807,剧情,美国/德国,2005,29694.6\r\n聪明人,6.8,3807,剧情/喜剧/爱情/家庭,美国,2008,25887.6\r\n明天记得爱上我 明天記得愛上,6.4,3807,剧情/同性,台湾,2013,24364.8\r\n留级之王,6.1,3807,喜剧,美国,2009,23222.7\r\n惊爆银河系,7.8,3805,喜剧/动作/科幻/冒险,美国,1999,29679\r\n关键一票,7.3,3805,剧情/喜剧,美国,2008,27776.5\r\n岁月风云之上海皇帝 歲月風雲之上海皇,7.8,3803,剧情/悬疑/犯罪,香港,1993,29663.4\r\n简爱,8.1,3802,剧情,英国/美国,1971,30796.2\r\n帕高与魔法绘本 パコと魔法の絵,7.4,3801,家庭,日本,2008,28127.4\r\n胜利大逃亡,7.7,3793,剧情/运动,美国,1981,29206.1\r\n蓝盐,6.1,3793,剧情/犯罪,韩国,2011,23137.3\r\n帽子梦魇,8.5,3792,动画/短片,加拿大,1905,32232\r\n圣安娜奇迹,7.6,3792,剧情/动作/惊悚/战争/犯罪,美国/意大利,2008,28819.2\r\n烈火战车2：极速传说 烈火戰車2極,6.5,3790,动作/惊悚,香港,1999,24635\r\n贪吃树 ,7.9,3789,剧情/喜剧/惊悚/奇幻,捷克/日本/英国,2000,29933.1\r\n沼泽地 ,7.3,3789,剧情/悬疑/惊悚/犯罪,西班牙,2014,27659.7\r\n离别七日情,6.8,3788,剧情/喜剧,美国,2014,25758.4\r\n海天盛宴·韦口,2.9,3788,情色,中国大陆,2013,10985.2\r\n依巴拉度～时间篇 イバラード時,8.4,3786,动画/短片/奇幻,日本,2007,31802.4\r\n一级重罪,6.9,3782,剧情/悬疑/惊悚/犯罪,美国,2002,26095.8\r\n无声婚礼,8.7,3781,剧情/喜剧,罗马尼亚/Luxembourg/法国,2008,32894.7\r\n稻草狗,6.4,3781,惊悚,美国,2011,24198.4\r\n尴尬时刻,5.8,3781,喜剧/爱情,美国,2014,21929.8\r\n金钱之味,5.2,3780,剧情,韩国,2012,19656\r\n金玉良缘红楼梦 金玉良緣紅樓,7.5,3778,爱情/歌舞,香港/台湾,1977,28335\r\n汉娜·阿伦特,7.9,3776,传记,德国/卢森堡/法国,2012,29830.4\r\n春之觉醒 Моя любо,8.9,3774,剧情/动画/短片,俄罗斯,2006,33588.6\r\n007之杀,6.8,3772,动作/惊悚/冒险,英国/美国,1989,25649.6\r\n感染列岛 感染列,6.3,3772,剧情/科幻/惊悚/灾难,日本,2009,23763.6\r\n撒哈拉,6.5,3768,喜剧/动作/惊悚/冒险,英国/西班牙/德国/美国,2005,24492\r\n太阳马戏团：遥远的世界,8,3766,奇幻,美国,2012,30128\r\n冬春的日子,7.5,3766,剧情/爱情,中国大陆,1994,28245\r\n外出就餐3:饕餮,6.6,3766,喜剧/爱情/同性,美国,2009,24855.6\r\n何处是我家,8.3,3765,剧情/传记,德国,2001,31249.5\r\n江湖情,7,3765,剧情/动作/惊悚/犯罪,香港,1987,26355\r\n安全没有保障,6.5,3765,喜剧/科幻,美国,2012,24472.5\r\n摇摆 ゆれ,7.7,3764,剧情,日本,2006,28982.8\r\n隔离区,6.4,3764,悬疑/惊悚/恐怖,美国,2008,24089.6\r\n勒阿弗尔,7.8,3763,剧情,芬兰/法国/德国,2011,29351.4\r\n多米诺,6.8,3763,剧情/动作/惊悚/传记/犯罪,法国/美国/英国,2005,25588.4\r\n乔治亚法则,7,3762,剧情/喜剧/爱情,美国,2007,26334\r\n初来乍到,6.2,3761,喜剧/爱情,美国/加拿大,2009,23318.2\r\n名侦探柯南OVA6：追踪失踪的钻石，柯南、平次VS基德 名探偵コナン 消えたダイヤを追え,7.6,3760,动画,日本,1905,28576\r\n孝子贤孙伺候着,7.9,3758,喜剧,中国大陆,1905,29688.2\r\n巫山云雨,7,3756,剧情,中国大陆,1905,26292\r\n日落黄沙,8.4,3754,动作/西部,美国,1969,31533.6\r\n死不张扬离奇失魂事件,7.3,3754,剧情/喜剧/悬疑,韩国,1998,27404.2\r\n信使,7.4,3753,剧情/爱情/战争,美国,2009,27772.2\r\n陆小凤传奇之银钩赌坊,7.3,3751,动作/武侠/古装,中国大陆,2007,27382.3\r\n剽悍少年 ドロッ,7.2,3751,喜剧,日本,2009,27007.2\r\n辣身舞2：情迷哈瓦,8.1,3750,剧情/爱情,美国,2004,30375\r\n深夜调频,6.3,3750,惊悚,韩国,2010,23625\r\n无限富江 富江　アンリミテッ,4.4,3749,恐怖,日本,2011-05-14（日本）,16495.6\r\n第44条,4.5,3748,剧情/惊悚/犯罪/西部,美国,2011,16866\r\n尸骨无存,5.9,3747,惊悚/恐怖,美国,2002,22107.3\r\n破碎之城,5.7,3747,剧情/惊悚/犯罪,美国,2013,21357.9\r\n万万没想到：千钧一发,6.6,3746,喜剧,中国大陆,2015,24723.6\r\n美好的一天 ,7.7,3745,剧情,西班牙,2015,28836.5\r\n终极斗士,7.1,3744,剧情/动作/犯罪/运动,美国,2006,26582.4\r\n超级名模,5.9,3743,喜剧,美国/德国,2001,22083.7\r\n伯尼,7.2,3740,剧情/喜剧/犯罪,美国,2012,26928\r\n双面玛莎,6.3,3740,剧情,美国,2011,23562\r\n哥哥我爱你,8.3,3736,剧情,韩国,2005,31008.8\r\n新独臂刀 新獨臂,8,3735,动作/武侠/古装,香港,1971,29880\r\n青蛙公主,5.7,3735,喜剧,泰国,2010,21289.5\r\n邂逅幸福,7,3732,喜剧/爱情,法国,2012,26124\r\n诚实国度的爱丽丝,7.5,3731,剧情,韩国,2015,27982.5\r\n007之,6.8,3726,动作/惊悚/冒险,英国,1965,25336.8\r\n生活艰难所以快乐 ピカ☆☆ンチ L,8.7,3723,剧情,日本,2004,32390.1\r\n幻之光 幻の,8.4,3723,剧情,日本,1995,31273.2\r\n瑟堡的雨伞,7.9,3718,剧情/爱情/歌舞,法国/西德,1964,29372.2\r\n星际旅行8：第一类接,7.7,3718,动作/科幻/惊悚/冒险,美国,1996,28628.6\r\n刺痛我,7.6,3718,动画,中国大陆,2010,28256.8\r\n爱你一万年,5.8,3717,喜剧/爱情,台湾,2010,21558.6\r\n胜利之光,8.3,3714,剧情/动作/运动,美国,2004,30826.2\r\n幻影英雄,7.3,3714,喜剧/动作/奇幻/冒险,美国,1993,27112.2\r\n定时拍摄,7,3714,科幻/惊悚,美国,2014,25998\r\n黑炮事件,8.2,3713,喜剧,中国大陆,1905,30446.6\r\n一年到头,8.2,3712,喜剧,中国大陆,2008,30438.4\r\n正义联盟：战争,7.6,3708,动作/科幻/动画/奇幻/冒险,美国,2014,28180.8\r\n东方,6.5,3708,剧情/惊悚,美国/英国,2013,24102\r\n火影忍者剧场版：血狱 劇場版 NARUTO -ナ,6.4,3708,动画,日本,2011,23731.2\r\n北漂鱼,4.8,3708,喜剧,中国大陆,2013,17798.4\r\n机动部队—绝路,6.4,3707,剧情/惊悚/犯罪,香港,1905,23724.8\r\n驱魔警探,5.6,3707,动作/惊悚/恐怖/犯罪,美国,2014,20759.2\r\n福尔摩斯二世,9.3,3706,喜剧/奇幻,美国,1924,34465.8\r\n苹果核战记：阿尔法,6.6,3706,动作/科幻/动画,日本/美国,2014,24459.6\r\n麦秋 麥,8.8,3704,剧情/家庭,日本,1951,32595.2\r\n查理的生与死,6.7,3704,剧情/爱情,美国,2010,24816.8\r\n阿尔法狗,6.9,3702,剧情/犯罪,美国,2006,25543.8\r\n大尾鲈鳗 大尾鱸,5.9,3702,喜剧,台湾,2013,21841.8\r\n魔卡少女樱剧场版：被封印的卡片 劇場版カードキャプターさくら 封印されたカ,8.6,3701,喜剧/爱情/动画/奇幻/冒险,日本,2000,31828.6\r\n证人,7.2,3701,剧情/爱情/惊悚,美国,1985,26647.2\r\n非洲和尚,6.9,3701,喜剧/奇幻,香港,1991,25536.9\r\n父子迷情 Отец и ,7.4,3700,剧情/同性,俄罗斯/德国/意大利/荷兰,2003,27380\r\n冰雪勇士,7.2,3699,剧情/动作/战争/冒险,美国,2003,26632.8\r\n007之,6.8,3699,动作/惊悚/冒险,英国/美国,1983,25153.2\r\n模范贱兄弟,6.3,3699,喜剧,美国/德国,2008,23303.7\r\n恐怖鸡 恐怖,7.3,3698,恐怖,香港,1997,26995.4\r\n零点定理,5.8,3693,剧情/科幻,英国/罗马尼亚/美国/法国,2013,21419.4\r\n玩乐时间,8.6,3690,喜剧,法国/意大利,1967,31734\r\n烂滚夫斗烂滚妻 爛滾夫鬥爛滾,5.1,3690,喜剧,香港,2013,18819\r\n雁南飞 Летят журав,8.5,3689,剧情/爱情/战争,前苏联,1957,31356.5\r\n家族荣誉4：家门的受,6.8,3689,剧情/喜剧/犯罪,韩国,2011,25085.2\r\n附身,6.5,3689,悬疑/惊悚/恐怖,加拿大/法国,2013,23978.5\r\n表姐，你好嘢！ 表姐，妳好嘢,7.7,3687,剧情/喜剧/动作,香港,1990,28389.9\r\n为你钟情,8.2,3686,剧情/爱情/同性,美国,2000,30225.2\r\n鬼童院,7.2,3686,悬疑/惊悚/恐怖/奇幻,西班牙/墨西哥,2001,26539.2\r\n战略高手,6.4,3684,喜剧/爱情/惊悚/犯罪,美国,1998,23577.6\r\n光荣岁月 ,7.8,3682,剧情/动作/战争,阿尔及利亚/法国/摩洛哥/比利时,2006,28719.6\r\n历劫佳人,8.2,3678,惊悚/犯罪/黑色电影,美国,1958,30159.6\r\n百岁老人跷家去,7.9,3678,喜剧/冒险,瑞典,2013,29056.2\r\n创造者,8.4,3677,动画/短片/家庭/奇幻,澳大利亚,2011,30886.8\r\n乱青春 亂青,5,3677,剧情/爱情,台湾,2009,18385\r\n蠢蛋搞怪秀4：坏外,6.4,3676,剧情/喜剧,美国,2013,23526.4\r\n赌博默示录2 カイジ2 人生奪,6.6,3675,剧情/悬疑/惊悚/恐怖,日本,2011,24255\r\n华丽的外出,5.5,3674,剧情,韩国,2013,20207\r\n五路追杀令2：刺客舞,6.1,3673,喜剧/动作/悬疑/惊悚/犯罪,美国/加拿大,2010,22405.3\r\n中国益智游戏 ,7.6,3672,剧情/喜剧/爱情,法国,2013,27907.2\r\n新扎师妹3 新紮,4.8,3672,喜剧,香港,2006,17625.6\r\n我的男男男男朋友,3.7,3672,喜剧/爱情,中国大陆,2013,13586.4\r\n无因的反叛,8.1,3671,剧情/爱情,美国,1955,29735.1\r\n卖猪,7.7,3671,喜剧/动画/短片,中国大陆,2012,28266.7\r\n不是闹着玩的,7.3,3670,喜剧,中国大陆,2010,26791\r\n远大前程,6.7,3670,剧情,英国/美国,2012,24589\r\n目露凶光,7.2,3667,惊悚/恐怖,香港,1999,26402.4\r\n欲望酒店,6.9,3667,短片/情色,德国,2011,25302.3\r\n四月一日灵异事件簿：春梦记 后篇 xxx,8.8,3666,剧情/动画/悬疑,日本,2009,32260.8\r\n秘密花园,5.2,3663,喜剧/爱情/奇幻,中国大陆,2012,19047.6\r\n围城 圍。,7.3,3662,剧情,香港,2008,26732.6\r\n名侦探柯南OVA10：怪盗基德孤岛决战 ,7.8,3661,动画,日本,2010,28555.8\r\n小美人鱼2：重返大,7,3658,动画/歌舞/家庭/奇幻,美国/加拿大/澳大利亚,2000,25606\r\n重振球风,7.8,3653,剧情/犯罪/运动,美国,2006,28493.4\r\n3,6.6,3651,剧情/犯罪,德国,2013,24096.6\r\n曾经安静的男人,7.6,3645,剧情/爱情/惊悚,美国,2007,27702\r\n菲比梦游奇境,7.4,3645,剧情/喜剧/家庭/奇幻/冒险,美国,2008,26973\r\n永不消逝的电波,7.7,3643,战争,中国大陆,1905,28051.1\r\n最佳福星,6.8,3643,剧情/喜剧,香港,1986,24772.4\r\n悲恋三人行,6.8,3642,剧情/爱情,泰国,2008,24765.6\r\n魅力四射,6.9,3640,喜剧/运动,美国,2000,25116\r\n异度公寓,2.7,3639,惊悚,中国大陆,2010,9825.3\r\n每天爱你8小时 每天爱您,7.1,3638,剧情/爱情,香港,1998,25829.8\r\n空之境界 未来福音 劇場版 空の境界 ,9.1,3637,剧情/动画/悬疑/惊悚/恐怖/犯罪/奇幻,日本,2013,33096.7\r\n乒乓 ピンポ,7.6,3637,剧情/喜剧/运动,日本,2002,27641.2\r\n名侦探柯南OVA2：16人的嫌疑犯 名探偵コ,7.5,3637,喜剧/动画/悬疑/短片,日本,1905,27277.5\r\n陆小凤传奇之剑神一笑,7.2,3637,动作/悬疑/武侠/古装,中国大陆,2007,26186.4\r\n诡替身,3.2,3637,惊悚/恐怖,中国大陆,2014,11638.4\r\n法外情,7.3,3636,犯罪,香港,1985,26542.8\r\n僵尸管家,6.8,3636,喜剧/恐怖,加拿大,2007,24724.8\r\n关于施密特,7.9,3635,剧情/喜剧,美国,2002,28716.5\r\n母亲，爱情的限度 ,5.9,3635,剧情/情色,法国/葡萄牙/奥地利/西班牙,2004,21446.5\r\n奇遇,8.5,3632,剧情/悬疑,意大利/法国,1960,30872\r\n崭新的生活,7.9,3631,剧情,韩国/法国,2009,28684.9\r\n007之你,6.7,3631,动作/惊悚/冒险,英国,1973,24327.7\r\n别惹德州,5.4,3631,喜剧/动作,美国,2015,19607.4\r\n日出,8.8,3630,剧情/爱情,美国,1927,31944\r\n爱封了,5.3,3628,喜剧/爱情,中国大陆/德国,2011,19228.4\r\n刺杀游戏,6.4,3626,动作/惊悚,美国,2011,23206.4\r\n大菩萨岭 大菩薩,8.5,3625,剧情/动作,日本,1966,30812.5\r\n生死豪情,7.4,3625,动作/悬疑/战争,美国,1996,26825\r\n刺客聂隐娘前传,7.7,3624,动作/动画/短片/武侠/古装,中国大陆/台湾,2015,27904.8\r\n大丹麦狗马默杜克,6.7,3624,喜剧/家庭,美国,2010,24280.8\r\n侠盗王子罗宾汉,7.1,3623,剧情/动作/冒险,美国,1991,25723.3\r\n超级肥皂,8.7,3622,喜剧/动画/短片,中国大陆,1905,31511.4\r\n七小罗汉,5,3620,喜剧/动作,中国大陆,2010,18100\r\n小偷 Во,8.7,3618,剧情,俄罗斯/法国,1997,31476.6\r\n灯具,8.3,3618,动画/短片/家庭,阿根廷,2011,30029.4\r\n今天是再见的日子 今日の日はさような,8.2,3618,剧情,日本,2013,29667.6\r\n邮差,7.4,3617,剧情/动作/科幻/冒险,美国,1997,26765.8\r\n东之伊甸剧场版2：失乐园 東のエデン ,6.5,3616,动画/悬疑,日本,2010,23504\r\n牧笛,8.8,3609,动画/短片/奇幻,中国大陆,1905,31759.2\r\n超能力者,5.8,3609,科幻,韩国,1905,20932.2\r\n鬼娃回魂,6.6,3608,惊悚/恐怖,美国,1990,23812.8\r\n凶案清理员,6.2,3608,惊悚/犯罪,美国,2008,22369.6\r\n死者田园祭 田園に死,8.8,3607,剧情,日本,1974,31741.6\r\n苍之茧 ペイル・コク,8,3607,剧情/动画/短片,日本,1905,28856\r\n灵,6.8,3606,恐怖,韩国,2004,24520.8\r\n血与骨 血と,8,3603,剧情,日本,2004,28824\r\n天王流氓,7.7,3603,剧情/惊悚/犯罪,德国/爱尔兰/英国,2000,27743.1\r\n慈禧秘密生活,6.4,3602,剧情/情色,香港,1997,23052.8\r\n现金,7,3601,喜剧/惊悚/犯罪,美国,2010,25207\r\n灵幻先生 靈幻先,7.1,3600,恐怖,香港,1987,25560\r\n切·格瓦拉传：游击队,7.7,3598,剧情/传记/历史/战争,西班牙/法国/美国,2008,27704.6\r\n中天,5.8,3598,剧情/动作/爱情/奇幻/冒险,韩国,2006,20868.4\r\n尸家重地 屍家重,7,3597,喜剧/恐怖,香港,1990,25179\r\n午夜凶铃：凶铃再现 らせ,5.9,3597,悬疑/恐怖,日本,1998,21222.3\r\n没有影子的人,8.2,3596,剧情/动画/短片,加拿大/瑞士,2004,29487.2\r\n四喜临门,6.1,3596,剧情/喜剧/爱情,美国/德国,2008,21935.6\r\n王牌大贱谍,6.3,3594,喜剧/动作/犯罪/冒险,美国,2002,22642.2\r\n爷儿俩开歌厅,7,3593,喜剧,中国大陆,1905,25151\r\n灵动：鬼影实录,5.2,3593,恐怖,美国,2012,18683.6\r\n类似爱情,5.1,3593,剧情/同性,中国大陆,2014,18324.3\r\n我们这一家 剧场版 映画 あた,8.1,3592,动画,日本,2003,29095.2\r\n再见雨天,7.9,3592,动画/短片/奇幻,中国大陆,2012,28376.8\r\n诱拐,7.6,3590,惊悚,日本,2003,27284\r\nZ-10,3.5,3590,动作/惊悚/恐怖,台湾,2012,12565\r\n律政俏佳人,7.3,3589,歌舞,美国,2007,26199.7\r\n圣哥传 聖☆おにいさ,8.6,3585,剧情/动画/奇幻,日本,2013,30831\r\n恐惧吞噬灵魂,8.4,3584,剧情/爱情,西德,1974,30105.6\r\n那年夏天,7.2,3584,剧情/爱情,韩国,2006,25804.8\r\n自杀四人组,6.6,3584,剧情/喜剧,英国,2014,23654.4\r\n玫瑰之名,7.9,3582,剧情/悬疑/惊悚/犯罪,西德/意大利/法国,1986,28297.8\r\n危险人物,7.2,3581,剧情/动作/惊悚/犯罪,美国,1999,25783.2\r\n游戏规则 ,8.4,3580,剧情/喜剧,法国,1939,30072\r\n洋芋片 ポテ,7.6,3580,剧情/喜剧,日本,2012,27208\r\n凤凰劫,6.5,3579,剧情/动作/惊悚/冒险,美国,2005,23263.5\r\n高个夜魔,6.5,3579,悬疑/惊悚/恐怖,美国/加拿大,2012,23263.5\r\n老友有钱,6.5,3579,剧情/爱情,美国,2006,23263.5\r\n捕梦网,6.4,3577,科幻/惊悚/恐怖/奇幻,美国/加拿大/澳大利亚,2003,22892.8\r\n蝶变 蝶,7.4,3576,动作/悬疑/武侠/古装,香港,1979,26462.4\r\n绝代双娇 絕代雙,6.3,3574,喜剧,香港,2008,22516.2\r\n无防备都市,6.4,3573,动作/犯罪,韩国,2008,22867.2\r\n老枪,8.2,3572,剧情/惊悚/战争,法国/西德,1975,29290.4\r\n迷失天堂 Ho,7.6,3572,剧情/同性,越南,2011,27147.2\r\n古怪因子,7.5,3572,剧情/喜剧,美国,2008,26790\r\n小布什传,6.5,3572,剧情/传记/历史,美国/澳大利亚/香港/瑞士/中国大陆,2008,23218\r\n鬼使神差,6.1,3572,剧情/惊悚/恐怖,美国,2007,21789.2\r\n瑜伽学院,4.8,3570,恐怖,韩国,2009,17136\r\n夏天的故事 C,8.2,3569,剧情/爱情,法国,1996,29265.8\r\n44号,6.6,3569,剧情/悬疑/历史,美国,2015,23555.4\r\n永恒记忆,8.6,3567,剧情/传记,瑞典/芬兰/挪威/丹麦/德国,2008,30676.2\r\n猎人之夜,8,3567,惊悚/犯罪/黑色电影,美国,1955,28536\r\n香魂女,7.9,3567,剧情,中国大陆,1993,28179.3\r\n压路机和小提琴 Каток и скри,8.5,3565,剧情,苏联,1961,30302.5\r\n生死倒数,7,3565,剧情/灾难,美国,2013,24955\r\n野兽之瞳,6.5,3565,剧情/动作,香港,2001,23172.5\r\n势不两立,7.9,3564,剧情/动作/惊悚/冒险,美国,1997,28155.6\r\n速成沼泽 インスタント,7.8,3562,喜剧,日本,2009,27783.6\r\n双面北野武,7.2,3559,剧情/喜剧,日本,2005,25624.8\r\n解构爱情狂,8.4,3558,剧情/喜剧/爱情/奇幻,美国,1997,29887.2\r\n富兰克林,6.7,3558,剧情/惊悚/奇幻,法国/英国,2008,23838.6\r\n东瀛鬼咒 日本のこわい,6.5,3556,惊悚/恐怖,日本,2004,23114\r\n命中雷霆,7.2,3554,喜剧,美国,2012,25588.8\r\n007之,7,3554,动作/惊悚/冒险,英国,1977,24878\r\n少年故事,8.9,3551,科幻/动画/短片,美国,2003,31603.9\r\n星际宝贝2：史迪,7.8,3550,喜剧/科幻/动画/家庭,美国,2005,27690\r\n世界纪录,9.1,3548,科幻/动画/短片,美国,2003,32286.8\r\n神秘列车,8.1,3546,剧情/喜剧/犯罪,日本/美国,1989,28722.6\r\n动物王国,6.8,3545,剧情/犯罪,澳大利亚,2010,24106\r\n满洲候选人,6.8,3544,剧情/悬疑/惊悚,美国,2004,24099.2\r\n世界奇妙物语 25周年秋季特别篇 杰作再现篇 世にも奇妙な物語 25周年記念！秋の2週,6.8,3543,剧情,日本,2015,24092.4\r\n疑神疑鬼,5.2,3543,恐怖,中国大陆,2005,18423.6\r\n史前怪兽,3,3543,动作/惊悚/冒险,英国/中国大陆,2014,10629\r\n内陆帝国,7.4,3542,剧情/悬疑/惊悚,法国/波兰/美国,2006,26210.8\r\n旧日噩梦,7.1,3542,悬疑/惊悚/犯罪,美国,2007,25148.2\r\n单车上路,6.4,3541,剧情/运动,台湾,2006,22662.4\r\n非常小特务,5.8,3541,喜剧/动作/科幻/家庭/冒险,美国,2003,20537.8\r\n魔幻迷宫,7.2,3538,歌舞/家庭/奇幻/冒险,美国/英国,1986,25473.6\r\n犀照,6,3538,剧情/悬疑/惊悚,香港,2006,21228\r\n千尸屋,6.4,3535,恐怖,美国,2003,22624\r\n007之,6.9,3534,动作/科幻/惊悚/冒险,英国,1967,24384.6\r\n草莓之夜 ストロベリーナイ,6.8,3533,惊悚,日本,2013,24024.4\r\n天黑．夏午．阖家观赏,7.2,3532,剧情,台湾,2008,25430.4\r\n阴阳路2：我在你左,6.5,3531,喜剧/惊悚/恐怖,香港,1997,22951.5\r\n恶魔的手球歌 悪魔の手毬,7.6,3530,剧情/悬疑/惊悚/恐怖/犯罪,日本,2009,26828\r\n人民公厕,6.4,3530,剧情,韩国/香港/日本,2003,22592\r\n小叮当：羽翼之谜,7.8,3529,动画/家庭/奇幻,美国,2012,27526.2\r\n我的夜晚比你的白天更美,6.2,3529,剧情/爱情,法国,1989,21879.8\r\n鱼的故事 フィッシュストーリ,8.1,3527,喜剧,日本,2009,28568.7\r\n铁血娇娃,3.5,3527,动作/惊悚/冒险,中国大陆,2013,12344.5\r\n客途秋恨,8.4,3526,剧情,香港/台湾,1990,29618.4\r\n冰人,6.4,3525,剧情/惊悚/犯罪,美国,2012,22560\r\n同班同学 同班同,4.7,3525,剧情/喜剧/爱情,香港,2015,16567.5\r\n玩偶的脸,7.4,3523,动画/短片/奇幻,美国,1905,26070.2\r\n冲锋战警 衝鋒戰,4.1,3523,动作/犯罪,香港/中国大陆,2013,14444.3\r\n指环王,8.7,3521,剧情/动画/奇幻/冒险,美国,1978,30632.7\r\n基督最后的诱惑,7.8,3521,剧情,美国,1988,27463.8\r\n萨米大冒险,6.9,3521,动画/冒险,比利时,2012,24294.9\r\n太行山上,6.3,3520,历史/战争,中国大陆,2005,22176\r\n直到遇见你 ,7.1,3519,喜剧/爱情,法国/加拿大,2009,24984.9\r\n白雪公主之矮人力量,3.5,3518,喜剧/动画/奇幻/冒险,中国大陆,2014,12313\r\n春天的故事,8.1,3516,剧情/喜剧/爱情,法国,1990,28479.6\r\n夺命感应,7.2,3516,剧情/惊悚/犯罪/奇幻,美国,1998,25315.2\r\n一天,6.7,3516,爱情/短片,韩国,2010,23557.2\r\n重口味,5,3516,喜剧,香港,2013,17580\r\n魂断蓝桥,8.7,3515,剧情/战争,美国,1931,30580.5\r\n记住,7.9,3515,剧情/惊悚,加拿大/德国,2015,27768.5\r\n再吻我一次,7,3515,剧情/爱情,意大利/法国,2011,24605\r\n自由之丘,7.2,3513,剧情,韩国,2014,25293.6\r\n那些五脊六兽的日子,6.6,3513,喜剧/奇幻,中国大陆,2013,23185.8\r\n同栖生活 パレー,7.8,3510,剧情,日本,2009,27378\r\n红颜祸水,7.5,3509,剧情/爱情/传记,美国,1998,26317.5\r\n与魔鬼共骑,7.5,3509,剧情/爱情/战争/西部,美国,1999,26317.5\r\n仲夏夜魔法,7.4,3509,动画/歌舞/家庭/奇幻,美国,2015,25966.6\r\n神鞭,6.8,3507,冒险,中国,1905,23847.6\r\n第三颗星,8.2,3506,剧情,英国,2010,28749.2\r\n极地重生,8.4,3505,剧情/战争,德国,2001,29442\r\n百年婚纱店,6.8,3505,剧情/惊悚/短片/奇幻,中国大陆,2012,23834\r\n蝙蝠侠：元年,8,3503,剧情/动作/动画/犯罪,美国,2011,28024\r\n凯蒂夫人,6.4,3500,剧情/情色,意大利/德国/法国,1976,22400\r\n终极细胞战,7.8,3498,喜剧/动作/动画/惊悚/犯罪/奇幻/冒险,美国,2001,27284.4\r\n杀手公司,7.3,3498,剧情/喜剧/动作,韩国,2002,25535.4\r\n机智问答,7.9,3497,剧情/历史,美国,1994,27626.3\r\n只是朋友,7.1,3497,剧情/爱情/同性,韩国,2009,24828.7\r\n巨乳排球 おっぱいバレ,6.1,3496,喜剧,日本,2009,21325.6\r\n四三二一,6.1,3496,惊悚/犯罪,英国,2010,21325.6\r\n不是任何人女儿的海媛,6.7,3495,剧情/爱情,韩国,2013,23416.5\r\n矮子当道,7.2,3494,喜剧/惊悚/犯罪,美国,1995,25156.8\r\n墨水,7.1,3494,动作/科幻/奇幻,美国,2009,24807.4\r\n召唤恶魔阿萨谢尔OAD：赛亚篇 よんでますよ、アザゼルさん。,9,3493,动画/短片,日本,2010,31437\r\n幸福是一条温暖的毛毯,8.1,3493,剧情/喜剧/动画/家庭,美国,2011,28293.3\r\n七夜,5,3493,惊悚/恐怖,中国大陆,2005,17465\r\n小上校,8.3,3492,剧情/喜剧/家庭/犯罪,美国,1935,28983.6\r\n圣山,8.3,3491,奇幻/冒险,墨西哥/美国,1973,28975.3\r\n戒烟2,7.4,3491,喜剧/动画/短片,美国,2000,25833.4\r\n狮入羊口,6.8,3491,剧情/战争,美国,2007,23738.8\r\n持枪流浪汉,6.6,3491,动作/惊悚/犯罪/冒险,加拿大/美国,1905,23040.6\r\n瓶装火箭,7.1,3489,喜剧/犯罪,美国,1996,24771.9\r\n小镇怪客托马斯,6.8,3489,喜剧/悬疑/惊悚,美国,2013,23725.2\r\n政坛混战,6.5,3488,喜剧,美国,2012,22672\r\n孝子洞理发师,7.9,3487,剧情/喜剧,韩国,2004,27547.3\r\n橡皮轮胎杀手,6.5,3487,剧情/喜剧/科幻/悬疑/恐怖,法国,2010,22665.5\r\n黄铜茶壶,6.4,3484,喜剧/惊悚/奇幻,美国,2012,22297.6\r\nX战记 剧场版 X,7.6,3482,动作/动画/惊悚/恐怖/奇幻,日本,1996,26463.2\r\n同志圣诞节,7.3,3480,喜剧/同性/家庭,美国,2009,25404\r\n张震讲故事之鬼迷心窍,3.3,3480,悬疑/惊悚,中国大陆,2015,11484\r\n日以作夜 ,8.4,3479,剧情/喜剧/爱情,法国/意大利,1973,29223.6\r\n乌冬,7.1,3479,剧情/喜剧,日本,2006,24700.9\r\n苦役列车 苦役列,7.4,3478,剧情,日本,2012,25737.2\r\n一指城,8.4,3477,动画/短片,中国大陆,2015,29206.8\r\n这个高中没有鬼,6,3477,喜剧/恐怖,泰国,2013,20862\r\n真假公主,8,3476,剧情/历史,美国,1956,27808\r\n边域之城 ,6.7,3475,剧情/惊悚/恐怖/犯罪,法国/瑞士,2007,23282.5\r\n兽兵卫忍风帖 獣兵衛忍風,8.5,3474,动作/动画/惊悚/奇幻/冒险,日本,1993,29529\r\n正义联盟：两个地球的危机,7.1,3473,动作/科幻/动画,美国,2010,24658.3\r\n小叮当：永无兽传奇,7.8,3472,动画/家庭/冒险,美国,2014,27081.6\r\n脏话,6.9,3470,喜剧,美国,2013,23943\r\n丛林大反攻,6.5,3470,动画,美国,2010,22555\r\n中华赌侠,6.2,3469,喜剧/动作,香港,2000,21507.8\r\n情事,7.3,3468,剧情/爱情/情色,韩国,1998,25316.4\r\n大偷袭,7.1,3467,剧情/动作/战争,美国/澳大利亚,2005,24615.7\r\n费城故事,7.6,3465,喜剧/爱情,美国,1940,26334\r\n浪漫主义者,6.5,3465,剧情/喜剧/爱情,美国,2010,22522.5\r\n迷宫物语 迷宮物,8.1,3464,科幻/动画/恐怖/奇幻/冒险,日本,1987,28058.4\r\n限时追捕,6.8,3464,剧情/惊悚/犯罪,美国,2003,23555.2\r\n人鬼情未了 ゴースト もういちど抱きしめ,6.2,3462,剧情/爱情/悬疑/惊悚/奇幻,日本/韩国,2010,21464.4\r\n反恐特警组：火速救援,5.4,3462,动作/犯罪,美国,1905,18694.8\r\n荡寇,5.1,3462,惊悚,巴西/中国大陆/香港/日本,2008,17656.2\r\n点亮灯光,6.8,3461,剧情/同性,美国,1905,23534.8\r\n陆小凤传奇之血衣之谜,7.3,3459,剧情/动作/武侠/古装,中国,2007,25250.7\r\n杜玛,8.3,3457,剧情/冒险,美国,2005,28693.1\r\n指间的重量 指間的重,6.9,3457,剧情,台湾,2007,23853.3\r\n空山灵雨 空山靈,8.4,3455,剧情/武侠/古装,台湾/香港/韩国,1979,29022\r\n数码宝贝大冒险tri. 第1章：再会 デジモンアドベン,6.9,3455,动画/奇幻/冒险,日本,2015,23839.5\r\n冰冻之河,7.6,3453,剧情/犯罪,美国,2008,26242.8\r\n恋恋师情,6.9,3452,剧情/爱情/同性,美国,2006,23818.8\r\n恶魔的替身,7.1,3451,剧情/动作,比利时/荷兰,2011,24502.1\r\n黑暗 光明 ,8.9,3450,喜剧/动画/短片/奇幻,捷克斯洛伐克,1990,30705\r\n无头骑士异闻录：天下泰平 デュラララ!! 第2,8.7,3446,动画,日本,2011,29980.2\r\n一九零零,8.7,3446,剧情/爱情/历史/战争,意大利/法国/西德,1976,29980.2\r\n王牌大贱谍,6.4,3446,喜剧/动作/犯罪/冒险,美国,1999,22054.4\r\n黑暗弥漫,7.7,3445,剧情/战争,波兰/德国/加拿大,2012,26526.5\r\n上班一条虫,6.7,3445,喜剧,美国,1999,23081.5\r\n香料共和国 Πολίτικη κου,8.2,3444,剧情/喜剧,希腊/土耳其,2005,28240.8\r\n传教士,7.9,3442,喜剧,法国,2009,27191.8\r\n黑暗中的孩子们 闇の子供た,7.8,3441,剧情,日本,2008,26839.8\r\n女儿国的杰基,7.5,3440,喜剧,法国,2014,25800\r\n烈火青春,7.6,3438,剧情/爱情/惊悚,香港,1982,26128.8\r\n林则徐,7.3,3437,剧情/历史/战争,中国大陆,1905,25090.1\r\n窃听大阴谋,8,3436,剧情/悬疑/惊悚,美国,1974,27488\r\n亲爱的医生 ディア・ドク,8,3436,剧情,日本,2009,27488\r\n怪谈,4.6,3434,惊悚,中国大陆,2015,15796.4\r\n女人领地,6.7,3433,剧情/喜剧/爱情,美国,2007,23001.1\r\n马达加斯加企鹅：行动,8.2,3432,喜剧/动画/冒险,美国,2010,28142.4\r\n偷盗艺术,6.6,3432,喜剧,加拿大,2013,22651.2\r\n恶魔吹着笛子来 悪魔が来りて笛を吹,7.5,3431,悬疑/犯罪,日本,2007,25732.5\r\n纸片战记,8.3,3430,喜剧/动画/短片,中国大陆,2012,28469\r\n阿尔法9号上的可怕生物,8.3,3427,科幻/动画/惊悚/短片,美国,2009/2011-05-07,28444.1\r\n逗阵儿 逗陣,8.2,3426,喜剧/家庭,台湾,2013,28093.2\r\n无休无止 ,8,3422,剧情,波兰,1985,27376\r\n星际旅行6：未来之,7.6,3421,动作/科幻/悬疑/惊悚,美国,1991,25999.6\r\n基佬四十,7.6,3419,喜剧/同性,香港,1997,25984.4\r\n好男不当兵 ,7.5,3416,喜剧,德国,2007,25620\r\n随心所欲,8.4,3413,剧情,法国,1962,28669.2\r\n灵异拼图,6.1,3413,剧情/科幻/悬疑/惊悚,美国,2004,20819.3\r\n消防员,8.1,3410,剧情/爱情/家庭,美国,2008,27621\r\n控制游戏,5.3,3410,惊悚,美国,2015,18073\r\n阿祖尔和阿斯马尔,8.1,3409,动画/家庭/奇幻/冒险,法国/比利时/西班牙/意大利,2006,27612.9\r\n龍咁威,6.4,3409,喜剧,香港,2003,21817.6\r\n孔雀镇,7.2,3408,剧情/惊悚,美国,2010,24537.6\r\n希望温泉,6.7,3408,剧情/喜剧,美国,2012,22833.6\r\n机器的复兴：第1,9.1,3406,剧情/科幻/短片/奇幻,美国,2003,30994.6\r\n世界第一初恋：羽鸟芳雪的场合 世界一初恋 OVA 羽,8.4,3406,动画,日本,2011,28610.4\r\n吸血女伯爵,6.7,3406,剧情/历史/奇幻,斯洛伐克/捷克/英国/匈牙利/美国,2008,22820.2\r\n平行理论,6.4,3405,悬疑/惊悚/犯罪,韩国,2010,21792\r\n第九突击队 9 р,7.4,3402,剧情/动作/历史/战争,芬兰/俄罗斯/乌克兰,2005,25174.8\r\n墨斗先生,7,3402,剧情/喜剧,香港,2004,23814\r\n爱情不,4.9,3402,喜剧/爱情,中国大陆,2013,16669.8\r\n开始邮政,7.8,3400,喜剧/奇幻,英国,2010,26520\r\n疯城记：万圣节特辑,8.7,3397,喜剧/悬疑/恐怖,英国,2010,29553.9\r\n五号路口,7.9,3397,喜剧/短片,英国,2005,26836.3\r\n畅销书,6.3,3397,悬疑,韩国,2010,21401.1\r\n诸神混乱之女神陷阱,5.9,3397,剧情/动作/科幻/动画/犯罪,法国/意大利/英国,2004,20042.3\r\n海蒂,8.4,3395,剧情/家庭,美国,1937,28518\r\n最近，妹妹的样子有点怪 最近、妹のようすがちょっとおかしいんだが,5.3,3393,喜剧/爱情/奇幻,日本,2014,17982.9\r\n古墓迷途 Мы из будущ,7,3390,剧情/动作/战争/奇幻,俄罗斯,2010,23730\r\n假日,7.6,3389,剧情/动作/犯罪,韩国,2006,25756.4\r\n叫我爸爸,7.3,3388,剧情/短片,中国大陆,2012,24732.4\r\n诺比特,5.8,3387,喜剧/爱情,美国,2007,19644.6\r\n歌舞青春,4,3387,歌舞,中国大陆,2010,13548\r\n锦绣前程 錦繡前,7.4,3385,喜剧/爱情,香港,1994,25049\r\n豚鼠系列之2：血肉之花 ギニーピッグ2 ,5.6,3383,恐怖/短片,日本,1985,18944.8\r\n最后约翰死了,6.3,3381,喜剧/恐怖/奇幻,美国,2013,21300.3\r\n百万金臂,7.2,3380,剧情/传记/运动,美国,2014,24336\r\n火云传奇 火雲傳,6.3,3379,喜剧/动作/武侠/古装,香港,1994,21287.7\r\n西洋镜,7.4,3378,剧情/爱情/历史,中国大陆/德国/台湾/美国,2000,24997.2\r\n一命,7.4,3378,剧情,日本,2011,24997.2\r\n死亡空间：坍塌,6.7,3376,科幻/动画/恐怖,美国,2008,22619.2\r\n知法犯法,6.6,3376,动作/犯罪,香港,2001,22281.6\r\n铁男1：金属,7.2,3374,科幻/惊悚/恐怖,日本,1989,24292.8\r\n爱比死更冷,7.4,3373,喜剧/爱情/犯罪,西德,1969,24960.2\r\n洞,7.8,3370,剧情/歌舞/奇幻,法国/台湾,1998,26286\r\n露露情史 ,6.4,3369,剧情/情色,西班牙,1990,21561.6\r\n隐剑鬼爪 隠し剣 鬼,8.1,3368,剧情/爱情,日本,2004,27280.8\r\n非诚勿语,7.7,3368,喜剧/同性,意大利,2012,25933.6\r\n河流,7.5,3368,剧情/爱情/同性,台湾,1997,25260\r\n家族荣誉2：家门的危,6.7,3368,喜剧/动作/爱情,韩国,2005,22565.6\r\n魔鬼联队,7.8,3366,剧情/传记/运动,英国,2009,26254.8\r\n国家代表,8,3365,剧情/运动,韩国,2009,26920\r\n机动部队—人性,6.2,3363,剧情/惊悚/犯罪,香港,1905,20850.6\r\n小野寺姐弟 小野寺の弟・小野寺,7.6,3361,喜剧/家庭,日本,2014,25543.6\r\n暗金丑岛君 闇金ウシジマく,7.3,3360,剧情,日本,2012,24528\r\n夏目友人帐：猫咪老师首次变身使者 夏目友人帳 ニャンコ先生とはじめてのおつ,8.2,3357,剧情/动画,日本,2013,27527.4\r\n关山飞渡,8.1,3356,剧情/动作/爱情/西部,美国,1939,27183.6\r\n哆啦A梦：大雄与奇迹之岛 のび太と奇迹の岛～アニマル アドベン,6.8,3356,动画/冒险,日本,2012,22820.8\r\n爱的初体验,7.5,3351,剧情/喜剧/爱情/同性/运动,英国,1999,25132.5\r\n复仇,7.5,3351,剧情/爱情/惊悚/犯罪,奥地利,2008,25132.5\r\n最后的,7.3,3350,爱情/短片,美国/台湾,2012,24455\r\n超越边界,7.7,3349,剧情/爱情/战争/冒险,美国/德国,2003,25787.3\r\n鸦片战争,7.1,3348,剧情/历史/战争,中国大陆,1997,23770.8\r\n四人餐桌,5.6,3347,剧情/惊悚/恐怖,韩国,2003,18743.2\r\n星际旅行5：终极先,6.7,3345,动作/科幻/惊悚/冒险,美国,1989,22411.5\r\n夏日恋神马 戀夏戀夏戀戀,4,3345,剧情/喜剧/爱情,香港,2011,13380\r\n标靶,6.4,3343,动作/惊悚,韩国,2014,21395.2\r\n蜡笔小新之呼风唤雨！大人帝国的反击 クレヨンしんちゃん 嵐を呼ぶ モーレツ!オトナ帝,8.9,3342,喜剧/动画,日本,2001,29743.8\r\n当我们离开,8.1,3342,剧情,德国,2010,27070.2\r\n人类灭亡报告书,6,3342,剧情/科幻,韩国,2012,20052\r\n埋伏,7.6,3341,剧情/喜剧,中国大陆,1997,25391.6\r\n夺标 奪,5.3,3340,动作,香港,2008,17702\r\n休息时间,8.3,3339,动画/短片,苏联,1905,27713.7\r\n神的病历簿2 神様のカ,7.9,3337,剧情,日本,2014,26362.3\r\n20世纪少年 最终章 我们的旗帜 20世紀少年 ,7,3337,冒险,日本,2009,23359\r\n苏菲的世界,7.8,3336,剧情/历史/奇幻,挪威/瑞典,1999,26020.8\r\n维荣的妻子：樱桃与蒲公英 ヴィヨンの妻：桜桃とタンポ,7.6,3336,剧情,日本,2009,25353.6\r\n失真的画,6.4,3336,惊悚/恐怖/犯罪,美国,2007,21350.4\r\n大醉侠 大醉,7.5,3335,动作/武侠/古装,香港,1966,25012.5\r\n安阳婴儿,7,3334,剧情,中国,2001,23338\r\n一个国家的诞生,8,3333,剧情/爱情/历史/战争/西部,美国,1915,26664\r\n浮草,8.8,3331,剧情,日本,1959,29312.8\r\n神秘博士：火星之水,9,3330,科幻,英国,2009,29970\r\n五岁庵,8,3330,动画/家庭,韩国,2003,26640\r\n混沌理论,7.3,3330,剧情/喜剧/爱情/家庭,美国,2008,24309\r\n铁钩船长,6.9,3330,家庭/奇幻/冒险,美国,1991,22977\r\n无语问苍天,8.3,3328,剧情,美国,1990,27622.4\r\n百变爱人 D,4.5,3328,喜剧/爱情,香港/中国大陆,2014,14976\r\n传说中的故乡,5.7,3327,剧情/恐怖/历史,韩国,2007,18963.9\r\n爱心熊宝宝：新一代,7.9,3326,动画/家庭/奇幻,加拿大/美国,1986,26275.4\r\n哭泣的男人,6.3,3326,动作,韩国,2014,20953.8\r\n查理·巴特利,7.3,3324,剧情/喜剧,美国,2007,24265.2\r\n百万美元酒店,8,3322,剧情/悬疑/惊悚,德国/英国/美国,2000,26576\r\n单挑,7.6,3321,剧情/运动,美国,1998,25239.6\r\n神父有难,7.1,3314,剧情,英国/爱尔兰,2014,23529.4\r\n企业战士2：极限挑,5.9,3314,动作/冒险,法国/英国/西班牙,2005,19552.6\r\n陌生人,5,3314,惊悚/恐怖,美国,2008,16570\r\n在希尔维亚城中,7.4,3311,剧情,法国/西班牙,2007,24501.4\r\n给我一个爸,8.4,3309,剧情/喜剧,捷克,1996,27795.6\r\n摩天大楼,6,3308,剧情/科幻/悬疑,英国/爱尔兰/比利时,2015,19848\r\n我的舅舅,8.4,3307,喜剧,意大利/法国,1958,27778.8\r\n律政英雄 新电影,7,3305,剧情,日本,2015,23135\r\n光辉岁月,4.6,3305,剧情/动作/冒险,中国大陆,2013,15203\r\n陆上行舟,8.8,3304,剧情/传记/冒险,秘鲁/原西德,1982,29075.2\r\n使命召唤,5.8,3304,剧情/动作/犯罪,法国/英国/西班牙/美国,2015,19163.2\r\n吻,7.2,3302,爱情/短片/同性,法国,2007,23774.4\r\n赤裸羔羊,6.4,3302,动作/爱情/情色/犯罪,香港,1992,21132.8\r\n狙击精英：重装上阵,5.6,3301,动作,南非,1905,18485.6\r\n香草,7.8,3298,剧情,韩国,2007,25724.4\r\n没有面孔的眼睛,7.5,3298,剧情/悬疑/惊悚,法国/意大利,1960,24735\r\n飞天法宝,7,3298,喜剧/科幻/家庭,美国,1997,23086\r\n砂之女 砂の,8.4,3297,剧情/惊悚,日本,1964,27694.8\r\n机动警察剧场版1 機動警察パトレイ,8.2,3294,剧情/动作/科幻/动画/犯罪,日本,1989,27010.8\r\n机器的复兴：第2,9.1,3293,科幻/动画/短片,美国,2003,29966.3\r\n摇尾狗,8.1,3293,剧情/喜剧,美国,1997,26673.3\r\n袜子奇遇记,7.5,3293,喜剧/动画/短片,法国,1905,24697.5\r\n断掌事件,6.1,3292,剧情/悬疑,日本,2008,20081.2\r\n决战帝国,6.5,3291,剧情/动作/惊悚,法国,2006,21391.5\r\n达格纳姆制造,8.1,3290,剧情/喜剧/传记,英国,2010,26649\r\n神秘博士：死亡星球,8.6,3289,剧情/科幻/悬疑/惊悚/奇幻/冒险/灾难/鬼怪,英国,2009,28285.4\r\n挑战星期天,7.9,3287,剧情/运动,美国,1999,25967.3\r\n世界奇妙物语 25周年秋季特别篇 电影导演篇 世にも奇妙な物語 25周年記念！秋の2週,7.7,3287,悬疑/奇幻,日本,2015,25309.9\r\n2,7,3286,剧情,韩国,2012,23002\r\n花宵道中,5.8,3286,剧情/爱情,日本,2014,19058.8\r\n爱国者游戏,6.6,3284,剧情/动作/惊悚/犯罪,美国,1992,21674.4\r\n梦游,5,3284,悬疑/惊悚,香港/中国大陆,2011,16420\r\n哭泣的拳头,7.6,3283,剧情/运动,韩国,2005,24950.8\r\n第九日,7.5,3283,剧情/惊悚/战争,德国/Luxembourg/捷克,2005,24622.5\r\n金刚王：死亡救赎,5.3,3283,剧情/动作,中国大陆,2013,17399.9\r\n我为钱狂,6.8,3281,喜剧/惊悚/犯罪,美国,2008,22310.8\r\n精装追女仔之2 精裝追女,6.5,3280,喜剧/爱情,香港,1988,21320\r\n法外之徒 ,8.5,3278,剧情/犯罪,法国,1964,27863\r\n总统班底,7.9,3278,剧情/惊悚/历史,美国,1976,25896.2\r\n真爱同心,7.9,3277,剧情/喜剧/家庭,美国,1998,25888.3\r\n十二回合,6.2,3277,剧情/犯罪,美国,2009,20317.4\r\n飞行器里的好小伙，或我是怎样花25小时11分从伦敦,8.4,3276,喜剧/动作/冒险,英国,1965,27518.4\r\n小猪教室 ブタがいた教,7.6,3276,剧情/儿童,日本,2008,24897.6\r\n魅力四射,6.8,3274,喜剧/运动,美国,2006,22263.2\r\n梅与小猫巴士 めいとこねこバ,9,3273,动画/短片,日本,1905,29457\r\n垃圾男孩,7.5,3273,喜剧/犯罪/冒险,美国/巴西,2014,24547.5\r\n喜羊羊与灰太狼之喜气羊羊过蛇年,5.2,3273,喜剧/动画/家庭/冒险,中国大陆,2013,17019.6\r\n夏娃的时间 イヴの時,8.5,3272,动作/爱情/科幻,日本,2010,27812\r\n情话童真,7.3,3271,剧情/喜剧/爱情/奇幻,美国,1998,23878.3\r\n超时空来电,6.9,3271,悬疑/惊悚/犯罪,英国/波多黎各,2011,22569.9\r\n最高危机,7.2,3270,动作/惊悚/冒险,美国,1996,23544\r\n欠我十万零五千,5.4,3268,剧情/喜剧,中国,2009,17647.2\r\n我在一家黑公司上班，已经快撑不下去了 ブラック会社に勤めてるんだが、もう俺は限界かもしれな,6.7,3265,喜剧,日本,2009,21875.5\r\n缘分的天梯,6.2,3265,喜剧/爱情,韩国,2004,20243\r\n朝鲜名侦探：高山乌头花的秘密,6.6,3264,喜剧/犯罪,韩国,2011,21542.4\r\n美国怪谈,6.1,3264,悬疑/惊悚/恐怖,英国/加拿大/罗马尼亚/美国,2005,19910.4\r\n两个女人,6,3264,剧情/爱情,韩国,2010,19584\r\n美国空姐,6.5,3263,喜剧/爱情,美国,2003,21209.5\r\n故事中的故事 Сказка сказ,8.6,3260,动画/短片,苏联,1905,28036\r\n圈套剧场版1 トリック ,8.2,3259,喜剧/悬疑,日本,2002,26723.8\r\n虎与龙SP タイガー＆ドラゴンSP 「三,9.2,3255,剧情/喜剧,日本,2005,29946\r\n侦探的故事,8.9,3255,剧情/科幻/动画/短片/奇幻,美国,2003,28969.5\r\n六颗子弹,6.2,3253,动作/惊悚/犯罪,美国,2012,20168.6\r\n第87届奥斯卡颁奖,7.4,3251,真人秀,美国,2015,24057.4\r\n星际旅行7：斗转星,7,3251,动作/科幻/悬疑/惊悚,美国,1994,22757\r\n五虎将之决裂,6.7,3251,剧情/动作/惊悚/犯罪,香港,1991,21781.7\r\n砂之器 砂の,8.2,3250,悬疑/惊悚/犯罪,日本,1974,26650\r\n凶兆,7.4,3249,悬疑/恐怖,英国/美国,1976,24042.6\r\n白蛇,8.2,3247,动画/短片,中国大陆,1905,26625.4\r\n功夫熊猫之师傅的秘密,7.1,3247,喜剧/动作/动画/短片/武侠,美国,2011,23053.7\r\n终极密码战,6.7,3247,剧情/动作/惊悚/犯罪,美国,1998,21754.9\r\n超人,6.9,3244,动作/科幻,美国/英国,1980,22383.6\r\n天津闲人,7.6,3243,剧情/喜剧,中国大陆,2012,24646.8\r\n为了她,7.5,3243,剧情/爱情/惊悚/犯罪,法国,2008,24322.5\r\n穿越少女梦,7.4,3243,喜剧/爱情,法国/比利时,2010,23998.2\r\n爱丽舍宫的女大厨,7.1,3243,喜剧/传记,法国,2012,23025.3\r\n超能游戏者 Геймеры. В поисках,5.5,3243,动作/科幻/恐怖/犯罪/冒险,俄罗斯,2011,17836.5\r\n你只需要爱？,7.9,3242,剧情/短片/同性,美国,2012,25611.8\r\n永失我爱,7.2,3242,剧情,中国,1905,23342.4\r\n魔鬼末日,6.3,3242,动作/悬疑/惊悚/恐怖/奇幻,美国,1999,20424.6\r\n假戏真作,6,3241,剧情/喜剧/短片,香港,2010,19446\r\n驱魔人前传,6.6,3240,惊悚/恐怖,美国,2004,21384\r\n像小强一样活着,5.8,3240,喜剧,中国大陆,2011,18792\r\n男人使用说明书,5.5,3240,喜剧/爱情,韩国,2013,17820\r\n007之雷,6.9,3238,动作/犯罪/冒险,英国/美国,1985,22342.2\r\n存身,6.9,3236,剧情/悬疑/惊悚,美国,2011,22328.4\r\n炮弹专家,6.5,3235,动作/惊悚,美国/秘鲁,1994,21027.5\r\n下一个就是你,6.4,3235,悬疑/惊悚/恐怖,美国/法国,1998,20704\r\n圈套剧场版4：最后的舞台 トリック劇場版 ラストス,8,3234,爱情/悬疑,日本,2014,25872\r\n死人的复仇,5.9,3234,剧情/动作/犯罪,美国,2013,19080.6\r\n性与早餐,5.4,3234,剧情/喜剧/爱情,美国,2007,17463.6\r\n富贵开心鬼 富貴開心,6.8,3232,剧情/喜剧/惊悚,香港,1989,21977.6\r\n绅士大盗 ,6.2,3232,动作/爱情/犯罪,法国/意大利/西班牙/英国,2007,20038.4\r\n狼溪,5.8,3231,惊悚/恐怖,澳大利亚,1905,18739.8\r\n晚娘2,5.1,3231,剧情,泰国,2013,16478.1\r\n远离天堂,7.6,3227,剧情/爱情/同性,美国/法国,2002,24525.2\r\n玩具总动员：遗忘的时光,7.5,3227,动画/短片,美国,2014,24202.5\r\n亿万少年的顶级机密,7.5,3227,剧情/喜剧,泰国,2011,24202.5\r\n浮云 浮,8.7,3226,剧情/爱情,日本,1955,28066.2\r\n红字,7.2,3226,剧情/爱情,美国,1995,23227.2\r\n苏乞儿 蘇乞,6.5,3226,剧情/动作/武侠/古装,香港,1993,20969\r\n六壮士,6.1,3226,喜剧,香港/中国,2004,19678.6\r\n活死人之夜,7.2,3224,悬疑/恐怖,美国,1968,23212.8\r\n米尼,6,3224,爱情,中国,2007,19344\r\n艳贼,7.3,3223,剧情/爱情/悬疑,美国,1964,23527.9\r\n宝贝小情人,8.5,3222,剧情/喜剧/爱情,美国,1991,27387\r\n焦躁不安,7.6,3222,喜剧/动画/短片,加拿大,1905,24487.2\r\n勇往直前,8.3,3220,剧情/爱情,德国/土耳其,1905,26726\r\n戏梦人生 戲夢人,8.3,3219,剧情/传记/战争,台湾,1993,26717.7\r\n黄飞鸿笑传 黃飛鴻笑,6.3,3218,动作,香港,1992,20273.4\r\n夜关门：欲望之花,5.2,3215,剧情/爱情,韩国,2013,16718\r\n高举爱 高舉,6.2,3214,剧情/爱情,香港,2012,19926.8\r\n深闺疑云,7.4,3213,剧情/悬疑/惊悚,美国,1941,23776.2\r\n夜幕低垂,7.3,3212,剧情/爱情/同性,加拿大,1995,23447.6\r\n夜,8.8,3211,剧情/爱情,意大利/法国,1961,28256.8\r\n洛奇,7.5,3211,剧情/运动,美国,1990,24082.5\r\n超越极限,8.8,3210,科幻/动画/短片,美国,2003,28248\r\n瑜伽熊,6.2,3210,喜剧/动画/家庭/冒险,美国/新西兰,2010,19902\r\n最后的假期,8,3209,剧情/喜剧/冒险,美国,2006,25672\r\n末日戒备,6.6,3209,动作/惊悚,美国,1997,21179.4\r\nA-1头,6,3209,剧情/悬疑/惊悚,香港,2004,19254\r\n清道夫,6.6,3205,剧情/惊悚/犯罪,英国,2012,21153\r\n梵高传,8.4,3204,剧情/传记,美国,1956,26913.6\r\n夜曲,8.2,3203,动画/奇幻,西班牙/法国,2007,26264.6\r\n霓虹心,7.3,3203,剧情/同性,瑞典/台湾,2009,23381.9\r\n死亡邮件,3.3,3203,悬疑/犯罪,中国大陆,2014,10569.9\r\n黑司祭们,6.5,3201,剧情/悬疑,韩国,2015,20806.5\r\n亚子的秘密 ひみつのアッコちゃ,5.9,3201,剧情/喜剧,日本,2012,18885.9\r\n倒扣的王牌,8.7,3200,剧情/黑色电影,美国,1951,27840\r\n学校霸王 學校霸,6.6,3200,剧情/喜剧/动作,台湾/香港,1905,21120\r\n热浪球爱战 熱浪球愛,4.4,3199,剧情/爱情/运动,香港,2011,14075.6\r\n守望者：黑船传奇,7.9,3198,动作/动画/恐怖/短片/冒险,美国,2009,25264.2\r\n分手专家,6.6,3198,喜剧,德国,2013,21106.8\r\n赌圣2：街头赌圣 賭聖2街,5.9,3196,喜剧,香港,1995,18856.4\r\n心灵驿站,8.2,3195,剧情/喜剧,美国,2003,26199\r\n黄色大象 きいろいゾ,6.8,3195,剧情,日本,2013,21726\r\n亲·爱,7.1,3193,剧情/家庭,中国大陆,2013,22670.3\r\n最好的我,6.8,3193,剧情/爱情,美国,2014,21712.4\r\n浪客剑心：给维新志士的镇魂歌 るろうに剣心 -明治剣客浪漫譚- 維新志士,7.9,3191,剧情/动作/爱情/动画/历史/奇幻,日本,1997,25208.9\r\n恐怖幽灵,7.2,3189,喜剧/恐怖/奇幻,新西兰/美国,1996,22960.8\r\n金田一耕助VS明智小,6.4,3189,剧情/悬疑,日本,2013,20409.6\r\n起名风波 ,7.9,3186,喜剧,法国,2012,25169.4\r\n未来学大会,7.6,3186,科幻/动画,以色列/德国/波兰/卢森堡/法国/比利时,2013,24213.6\r\n别告诉爸爸,7.1,3186,剧情/喜剧,韩国,2004,22620.6\r\n曼斯菲尔德庄园,7,3186,剧情/喜剧/爱情,英国,1999,22302\r\n富贵黄金屋 富貴黃金,7.4,3182,喜剧,香港,1992,23546.8\r\n看不见的女朋友,6,3182,喜剧/爱情,中国大陆,2012,19092\r\n暗黑之地,6,3181,剧情/悬疑/惊悚,法国,2015,19086\r\n不当交易,7.2,3179,悬疑/惊悚,韩国,2010,22888.8\r\n天才侦探御手洗：难解事件档案之折伞的女人 天才探偵ミタライ～難解事件ファイル「傘を折る女」,6.3,3178,悬疑/犯罪,日本,2015,20021.4\r\n新悲惨世界 ,7.6,3177,剧情/爱情/历史/犯罪,英国/德国/美国,1998,24145.2\r\n罪孽天使,7.3,3177,剧情/惊悚/同性/犯罪/奇幻,德国/新西兰/英国,1994,23192.1\r\n橄榄树下的情人,8.3,3175,剧情,法国/伊朗,1994,26352.5\r\n上海皇帝之雄霸天下,7.7,3174,剧情/悬疑/犯罪,香港,1993,24439.8\r\n大雄兔,7.6,3172,喜剧/动画/短片,荷兰,2008,24107.2\r\n西楚霸王,7,3172,剧情/动作/历史/战争,香港/中国大陆,1994,22204\r\n挑战者 大冒險,6.2,3172,剧情/动作,香港,1995,19666.4\r\n40,4.6,3172,恐怖,泰国,2012-04-03（中国台湾）/2012-03-22,14591.2\r\n三月情流感,3.6,3171,喜剧/爱情,中国大陆,2013,11415.6\r\n大篷车,7.9,3169,喜剧/爱情/歌舞,印度,1905,25035.1\r\n记得香蕉成熟时 記得香蕉成熟,7.6,3167,喜剧/爱情,香港,1993,24069.2\r\n初到东京 東京に来たばか,6.3,3166,剧情/爱情,中国大陆/日本,2012,19945.8\r\n阿罗哈,5.7,3164,剧情/喜剧/爱情,美国,2015,18034.8\r\n娘家母亲,8.6,3163,剧情,韩国,2010,27201.8\r\n种树的牧羊人,9.1,3161,动画/短片,加拿大,1988,28765.1\r\n环游世界八十天,7.9,3161,剧情/科幻/冒险,美国/意大利/西德/南斯拉夫,1989,24971.9\r\n外出就餐,6.8,3159,喜剧/同性,美国,2004,21481.2\r\n为你钟情 為你鍾,7.2,3158,剧情/喜剧/爱情,香港,1985,22737.6\r\n功夫小子闯情关,6.2,3158,喜剧/爱情/武侠/古装,香港,1996,19579.6\r\n观光客,6,3158,喜剧,英国,2012,18948\r\n九二神雕之痴心情长剑 九二神鵰之痴心情長,6,3156,喜剧/奇幻/武侠,香港,1992,18936\r\n伊娃,6.9,3155,剧情/科幻/奇幻,西班牙,2011,21769.5\r\n丽人行,8.1,3154,剧情/喜剧/爱情,英国,1967,25547.4\r\n我最好朋友的女朋友,5.7,3154,喜剧/爱情,美国,2008,17977.8\r\n电影樱桃小丸子 大野君和杉山君 映画ちびまる子ちゃん 大野君と,8.9,3152,动画,日本,1990,28052.8\r\n我的国王,7.6,3152,剧情,法国,2015,23955.2\r\n变鬼,5.6,3152,爱情/恐怖,泰国,2009,17651.2\r\n3分钟先生 3分,5.8,3150,喜剧,香港,2006,18270\r\n黑郁金香,7.8,3148,喜剧/动作/冒险,法国/意大利/西班牙,1964,24554.4\r\n人民英雄,7.8,3146,剧情/动作/犯罪,香港,1987,24538.8\r\n不散,7.4,3146,剧情/喜剧,台湾,2003,23280.4\r\n特工插班生,7.8,3144,喜剧/惊悚/犯罪,德国/美国,1997,24523.2\r\n中国城,6.6,3144,剧情,韩国,2015,20750.4\r\n鬼撞墙,7.3,3143,动画/短片,美国,2006,22943.9\r\n间接伤害,6.3,3142,动作/惊悚,美国,2002,19794.6\r\n好男好女,7.6,3140,剧情/爱情/历史,台湾/日本,1995,23864\r\n红圈,8.3,3138,剧情/惊悚/犯罪,法国/意大利,1970,26045.4\r\n艾曼纽,6.6,3138,剧情/情色,法国,1974,20710.8\r\n红线,8.4,3137,动作/科幻/动画,日本,2010,26350.8\r\n花与蛇3 花,5,3137,剧情/情色,日本,2010,15685\r\n毛骨悚然,6.5,3136,悬疑/惊悚/恐怖,美国,2006,20384\r\n秘鲁大冒险,6.5,3136,动画/冒险,西班牙,2012,20384\r\n等着你回来,3.4,3136,恐怖,香港/中国大陆,2010,10662.4\r\n暗之光,8,3135,剧情/同性,以色列/美国/巴勒斯坦,2012,25080\r\n河上的爱情,6.7,3133,剧情/爱情/短片,中国/西班牙/法国,2008,20991.1\r\n轮盘记,8.3,3132,喜剧/动画/短片/奇幻,德国,2003,25995.6\r\n达令是外国人 ダーリンは外国,6.5,3132,喜剧,日本,2010,20358\r\n征服,5.7,3132,剧情/动作/历史/战争/冒险,土耳其,2012,17852.4\r\n乡下人,5.4,3132,剧情/喜剧,美国,2012,16912.8\r\n爱我就让我快乐,7.9,3131,剧情/喜剧,美国,1998,24734.9\r\n时空穿越者,6,3131,喜剧/奇幻,法国,2007,18786\r\n遥远的桥,8,3130,剧情/动作/历史/战争,美国/英国,1977,25040\r\n魔宫魅影,5,3130,剧情/爱情/惊悚,中国大陆/香港,2016,15650\r\n元气少女缘结神OAD 神様はじ,8.6,3129,剧情/动画,日本,2013,26909.4\r\n拼贴幸福,7.8,3129,剧情,英国,2012,24406.2\r\n混合宿舍,6.2,3129,喜剧/爱情/悬疑/犯罪,美国,2003,19399.8\r\n邻座的怪同学OAD：邻座的极道同学 となりの,8.1,3128,动画,日本,2013,25336.8\r\n名侦探柯南OVA7：来自阿笠的挑战书！阿笠对决柯南和少年侦探团 名探偵コナン 阿笠からの挑戦状! 阿笠,7.1,3128,动画,日本,1905,22208.8\r\n爱情故事 愛情故,6.3,3127,爱情,香港,2009,19700.1\r\n美丽生灵,5.6,3127,剧情/爱情/奇幻,美国,2013,17511.2\r\n灵契,7.2,3125,剧情/爱情,英国/罗马尼亚/加拿大,2008,22500\r\n住在家里的杰夫,6.7,3124,喜剧,美国,2012,20930.8\r\n黄昏之恋,7.7,3122,剧情/喜剧/爱情,美国,1957,24039.4\r\n租赁猫 レンタネ,7.1,3122,剧情,日本,2012,22166.2\r\n魔法圣婴,6.8,3122,剧情/历史,比利时/法国/英国/德国/荷兰,1993,21229.6\r\n生化寿尸,6.5,3122,喜剧/恐怖,香港,1998,20293\r\n女巫的扫帚,8.1,3120,喜剧/动画/短片/奇幻,英国,2012,25272\r\n钱,8.1,3120,剧情/犯罪,法国/瑞士,1983,25272\r\n闪魂,2.6,3119,惊悚/犯罪,中国大陆,2014,8109.4\r\n落叶,8.7,3118,喜剧/动作/科幻/动画/冒险,日本,2004,27126.6\r\n幸福已逝,7.8,3118,剧情/家庭,美国,2007,24320.4\r\n震荡效应,6.9,3118,剧情/传记/运动,英国/澳大利亚/美国,2015,21514.2\r\n错爱双鱼座,7,3117,爱情,韩国,2000,21819\r\n情侣们,7.2,3116,喜剧/爱情,韩国,2011,22435.2\r\n单曲人生,8.1,3115,喜剧/动画/短片,荷兰,2014,25231.5\r\n擒凶记,7.6,3115,惊悚,美国,1956,23674\r\n咒怨3(,5.4,3115,恐怖,美国,2009,16821\r\n超级无敌掌门狗：异想天开小发明,8.8,3114,喜剧/动画/短片,英国,2002,27403.2\r\n森冤,4.6,3114,惊悚/恐怖/犯罪,香港/中国,2007,14324.4\r\n火枪手,8.3,3112,喜剧/短片/西部,美国,2014,25829.6\r\n战斧骨,6.6,3112,恐怖/西部,美国,2015,20539.2\r\n异种,5.5,3112,科幻/惊悚/恐怖,美国,2004,17116\r\n富贵列车 富貴列,7.2,3110,喜剧/动作/西部,香港,1986,22392\r\n杀手·婚礼之路 キラー・ヴァージンロ,6.2,3110,剧情,日本,2009,19282\r\n绑架冰激凌,5,3110,喜剧,中国大陆,2010,15550\r\n卫生间的圣母像 トイレのピエ,7.4,3109,剧情,日本,2015,23006.6\r\n乡村医生 カフカ 田舎,8.3,3108,动画/短片,日本,2007,25796.4\r\n战国英豪 隠し砦の三悪,8.2,3108,动作/冒险,日本,1958,25485.6\r\n希望与反抗,8,3108,剧情/传记/历史/战争/犯罪,德国,2005,24864\r\n绑架门口狗,7.3,3108,喜剧,韩国,2000,22688.4\r\n女主角失格 ヒロイン失,6.2,3108,喜剧/爱情,日本,2015,19269.6\r\n稀人,6,3108,剧情/悬疑/恐怖/奇幻,日本,2004,18648\r\n年少轻狂,4,3108,喜剧/爱情,中国大陆,2015,12432\r\n特警新人类2：机动任,5.9,3107,动作,香港,2000,18331.3\r\n鬼玩人3：魔界英,6.9,3106,喜剧/恐怖/奇幻,美国,1993,21431.4\r\n红色星球,6.6,3105,动作/科幻/惊悚,美国/澳大利亚,2000,20493\r\n水,8.5,3103,剧情/爱情,加拿大/印度,2005,26375.5\r\n党同伐异,8.6,3102,剧情/爱情/历史,美国,1916,26677.2\r\n想听到说相爱,6.7,3102,爱情,泰国,2010,20783.4\r\n青春珊瑚岛,7.8,3101,剧情/爱情/冒险,美国,1980,24187.8\r\n神秘博士 圣诞入,9,3100,科幻/惊悚,英国,2005,27900\r\n黑天使,6.7,3099,剧情/爱情/惊悚/情色,意大利,2002,20763.3\r\n少林小子,6.8,3098,剧情/武侠/古装,香港,1984,21066.4\r\n赌侠,5.8,3098,剧情/喜剧,香港,2002,17968.4\r\n八脚怪,5.9,3097,喜剧/动作/科幻/惊悚/恐怖,美国/澳大利亚,2002,18272.3\r\n变种,6.4,3096,剧情/科幻/恐怖,美国,1997,19814.4\r\n笔仙惊魂,3.2,3096,悬疑/惊悚/恐怖,中国大陆,2014,9907.2\r\n蜂蜜,7.8,3095,剧情,土耳其/德国/法国,2010,24141\r\n大雄的结婚前夜 のび太の結婚前,8.6,3094,剧情/爱情/科幻/动画/短片,日本,1999,26608.4\r\n微笑的鱼,8.1,3093,动画/短片/家庭,台湾,2006,25053.3\r\n加州杀手,7,3093,剧情/惊悚/犯罪,美国,1993,21651\r\n星际旅行9：起,7.2,3092,动作/科幻/惊悚/冒险,美国,1998,22262.4\r\n庙街十二少,6.4,3092,剧情/爱情/犯罪,香港,1992,19788.8\r\n托卡列夫,5,3092,动作/惊悚/犯罪,美国/法国,2014,15460\r\n不射之射,8.6,3090,剧情/动画/短片,中国大陆,1905,26574\r\n世界的另一端 Другая сторо,8,3089,动画/短片,俄罗斯,1994,24712\r\n奥涅金,8.1,3088,剧情/爱情,英国/美国,1999,25012.8\r\n圈套剧场版2 T,7.9,3088,喜剧/悬疑/犯罪,日本,2006,24395.2\r\n天那边,7.3,3088,剧情,中国大陆,1905,22542.4\r\n神秘群岛,6.7,3088,剧情/悬疑/惊悚/恐怖,英国/德国,2006,20689.6\r\n中间人,5.9,3087,喜剧,英国,2011,18213.3\r\n他和她的孤独情事,6.5,3085,剧情/爱情,美国,2014,20052.5\r\n崩溃边缘的女人,7.8,3084,剧情/喜剧,西班牙,1988,24055.2\r\n轻音少女番外篇：Live House! け,8.8,3083,动画,日本,2010,27130.4\r\n尊严殖民地,7.5,3082,剧情/爱情/惊悚/历史,德国/卢森堡/法国,2015,23115\r\n死亡录像4：启示,5.4,3081,剧情/惊悚/恐怖,西班牙,2014,16637.4\r\n纽约行动,4.4,3081,剧情/动作/惊悚/犯罪,美国,2012,13556.4\r\n三个臭皮匠,6.5,3079,喜剧,美国,2012,20013.5\r\n白气球,8.3,3078,剧情/家庭,伊朗,1995,25547.4\r\n和其他人一样,7.7,3078,剧情/喜剧/爱情/同性/家庭,法国,2008,23700.6\r\n躲藏,6.8,3078,惊悚/恐怖,美国,2015,20930.4\r\n克里斯托弗及同党,7.3,3077,剧情/同性/传记,英国,2011,22462.1\r\n查理必死,6.4,3077,喜剧/动作/爱情,罗马尼亚/美国,2013,19692.8\r\n海军陆战队员,5.6,3077,剧情/动作/惊悚,美国,2006,17231.2\r\n柠檬树,8,3073,剧情,以色列/德国/法国,2008,24584\r\n真的爱你,7.3,3073,爱情,香港,1992,22432.9\r\n天堂此时,7.8,3072,剧情/犯罪,巴勒斯坦被占领区/法国/德国/荷兰/以色列,2005,23961.6\r\n阴阳路3：升棺发,6.3,3071,喜剧/恐怖,香港,1998,19347.3\r\n我嫁了个怪蜀黍！,8.1,3069,剧情/喜剧/动画/奇幻,美国,1998,24858.9\r\n她们,6.4,3069,剧情,法国/波兰/德国,2012,19641.6\r\nR2B：回,6.6,3068,剧情/动作,韩国,2012,20248.8\r\n春琴抄,8,3067,剧情,日本,1976,24536\r\n猪命,8.1,3066,剧情,德国,1905,24834.6\r\n死亡台球 デス・ビリヤ,7.9,3066,剧情/动画,日本,2013,24221.4\r\n名侦探柯南OVA5：目标是小五郎！少年侦探团的秘密调查 名探偵コナン 標的は小五郎!! 少,7.2,3066,动画,日本,1905,22075.2\r\n四个丘比特,5.2,3066,喜剧/爱情,中国大陆,2010,15943.2\r\n尼伯龙根的指环,7,3065,剧情/动作/奇幻/冒险,德国/英国/南非/意大利,2004,21455\r\n鸭王2 ,3.9,3065,剧情/情色,香港,2016,11953.5\r\n不死鸟,7.3,3064,剧情,德国/波兰,2014,22367.2\r\n宿命,6.4,3064,剧情,韩国,2008,19609.6\r\n罗马不设防 ,7.8,3062,剧情/战争,意大利,1945,23883.6\r\n民王特别篇：新的阴谋 民王スペシャル～新たなる陰謀,6.5,3061,剧情,日本,2016,19896.5\r\n勾引罗宾,6.1,3061,爱情,韩国,2006,18672.1\r\n降头 降,6.1,3060,恐怖,香港,2007,18666\r\n少年毛泽东,2.4,3058,动画/儿童/冒险,中国大陆,2015,7339.2\r\n一路有你,8,3057,剧情/喜剧/家庭,马来西亚,2014,24456\r\n红男爵,7.8,3056,剧情/动作/爱情/传记/战争/冒险,德国/英国,2008,23836.8\r\n一番街奇迹,7.1,3055,喜剧/爱情/运动,韩国,2007,21690.5\r\n黑蛇呻吟,6.7,3055,剧情,美国,2006,20468.5\r\n夏日时光 L,7.6,3054,剧情/家庭,法国,2008,23210.4\r\n爱若此时,8.1,3053,剧情/同性,美国,2012,24729.3\r\n眼前的生活,7.3,3053,剧情/惊悚,美国,2007,22286.9\r\n运转手之恋 運転手之,8.1,3052,喜剧,台湾,2000,24721.2\r\n古代人A片动,7.8,3052,动作/动画/短片,法国,1905,23805.6\r\n红色黎明,4.1,3052,动作,美国,2012,12513.2\r\n失忆少女物语 誰かが私にキスをし,6,3051,剧情/爱情,日本,2010,18306\r\n克里蒂，童话的小屋,8,3048,剧情/喜剧/动画/儿童/冒险,法国,2009,24384\r\n武侠七公主,6.3,3048,喜剧/动作,香港,1993,19202.4\r\n一维,7.6,3047,动画/短片,中国大陆,2013,23157.2\r\n游戏,7.3,3047,剧情/惊悚,韩国,2008,22243.1\r\n控制的极限,6.6,3047,剧情/悬疑/惊悚/犯罪,西班牙/美国/日本,2009,20110.2\r\n人吓人 人嚇,6.8,3046,喜剧/动作/恐怖/历史/奇幻,香港,1982,20712.8\r\n土豪,3.7,3044,喜剧/爱情,中国大陆,2015,11262.8\r\n迷局,4.6,3043,剧情/动作/犯罪,美国,2011,13997.8\r\n鬼镜,5.5,3040,悬疑/惊悚/恐怖,美国,2010,16720\r\n阳光下的罪恶,8.2,3039,剧情/悬疑/犯罪,英国,2001,24919.8\r\n布朗克斯的故事,8.7,3038,剧情/犯罪,美国,1993,26430.6\r\n止杀令,5.1,3038,剧情/动作/历史/战争,中国大陆,2013,15493.8\r\n变形金刚大电影,8.1,3037,动作/科幻/动画/家庭/冒险,美国/日本,1986,24599.7\r\n哆啦A梦：新·大雄的宇宙开拓史 映画ドラえもん 新・のび太の宇,7.6,3037,动画/冒险,日本,2009,23081.2\r\n录影带谋杀案,7.2,3037,科幻/惊悚/恐怖,加拿大,1983,21866.4\r\n青春荷尔蒙,3.8,3037,爱情,中国大陆,2012,11540.6\r\n金橘,8.4,3036,剧情/战争,爱沙尼亚/格鲁吉亚,2013,25502.4\r\n不惧风暴,7.7,3036,剧情/传记/历史,美国/英国,2009,23377.2\r\n无畏上将高尔察克 Адмирал,7.6,3036,剧情/历史/战争,俄罗斯,2008,23073.6\r\n好奇天使心,7.4,3035,喜剧/同性,比利时/美国,2006,22459\r\n狂蟒之灾,4.9,3033,动作/惊悚/冒险/灾难,美国/罗马尼亚,2008,14861.7\r\n正义联盟：亚特兰蒂斯的宝座,5.8,3031,动作/动画/冒险,美国,2015,17579.8\r\n牺牲,8.7,3030,剧情,瑞典/法国/英国,1986,26361\r\n出水芙蓉,8.4,3030,剧情/歌舞/传记,美国,1952,25452\r\n斯黛拉,8.2,3029,剧情,法国,2008,24837.8\r\n黑色皮革手册：白暗 黒革の手帖スペシャル〜白,7.8,3029,剧情/悬疑,日本,2005,23626.2\r\n忘年恋曲,6.7,3029,剧情,法国/澳大利亚,2013,20294.3\r\n黛子小姐,7.6,3028,动画/短片,中国大陆,2010,23012.8\r\n花与蛇 花と,6.3,3028,剧情/情色,日本,1974,19076.4\r\n生命是个奇迹,8.8,3027,剧情/喜剧/爱情/战争,塞尔维亚和黑山/法国/意大利,2004,26637.6\r\n钟楼怪人,7.6,3027,剧情/爱情/动画/歌舞/家庭,美国,1996,23005.2\r\n情色沙漠,5.7,3026,剧情/情色,法国/德国/美国,2004,17248.2\r\n青之驱魔师 剧场版 青の祓魔師 ,8,3025,动画,日本,2012,24200\r\n信 手,7.4,3022,剧情,日本,2006,22362.8\r\n特工狂花,7,3021,剧情/动作/悬疑/惊悚/犯罪,美国,1997,21147\r\n碧血金沙,8.6,3020,剧情/动作/西部/冒险,美国,1948,25972\r\n单刀直入,6.1,3020,剧情/动作/惊悚/犯罪,美国/德国,2003,18422\r\n谷子和鲻鱼,8.1,3019,剧情,法国,2007,24453.9\r\n特殊服务,6.7,3017,剧情/喜剧/短片,中国大陆,2012,20213.9\r\n亡国的阿基德第1章：翼龙降临 コードギアス 亡国のアキト 第1章 翼竜,7.3,3016,剧情/动作/科幻/动画/战争,日本,2012,22016.8\r\n十万火急,7.1,3016,动作/冒险/灾难,美国,1996,21413.6\r\n幸运情人草 クローバ,5.5,3016,爱情,日本,2014,16588\r\n越空狂龙,6.6,3014,动作/科幻/犯罪,美国,1993,19892.4\r\n放课后 アフタースクー,7.6,3013,喜剧,日本,2008,22898.8\r\n老娘说了算,6.5,3011,喜剧/爱情/家庭,美国,2007,19571.5\r\n罗马浴场2 テルマエ・ロ,6.4,3009,喜剧/奇幻,日本,2014,19257.6\r\n午夜微博,3.6,3008,悬疑/惊悚/恐怖,中国大陆,2013,10828.8\r\n盗亦有道,6.6,3006,剧情/动作,韩国,2012,19839.6\r\n迷失,7.1,3005,剧情/动作/惊悚/战争,英国,2014,21335.5\r\n万夫莫敌,7.7,3004,剧情/传记/运动,美国,2006,23130.8\r\n大虎,7.2,3004,动作/历史/冒险/古装,韩国,2015,21628.8\r\n太太万岁,8.4,3003,喜剧/家庭,中国大陆,1947,25225.2\r\n神秘洞穴,5.7,3002,惊悚/恐怖,美国,1905,17111.4\r\n给鲍比·朗的情歌,7.7,3001,剧情,美国,2004,23107.7\r\n萨维奇一家,7.7,3001,剧情/喜剧,美国,2007,23107.7\r\n致命武器,7.1,3001,动作/惊悚/犯罪,美国,1987,21307.1\r\n冬日奇缘,5.7,3000,剧情/悬疑/奇幻,美国,2014,17100\r\n世界奇妙物语 05春之特别篇 世にも奇妙な物語 ,8.3,2995,剧情,日本,2005,24858.5\r\n有人在吗？,7.8,2994,剧情,英国,2008,23353.2\r\n赤脚小子,6.9,2994,剧情/动作/爱情/武侠/古装,香港,1993,20658.6\r\n白色婚礼,8.3,2993,剧情/爱情,法国,1989,24841.9\r\n正义联盟：神魔之战,7.6,2993,动作/科幻/动画,美国,2015,22746.8\r\n烈火雄心,7.4,2992,剧情/动作/惊悚,美国,2004,22140.8\r\n上海伦巴,6.3,2992,剧情/爱情,中国,2006,18849.6\r\n尚衣院,6.6,2991,剧情,韩国,2014,19740.6\r\n安德烈·卢布廖夫 Андрей Рубл,8.9,2990,剧情/传记/历史/战争,苏联,1966,26611\r\n我们仍未知道那天所看见的花的名字 あの日見た花の名前を僕達はまだ知らない,7.5,2988,剧情,日本,2015,22410\r\n小叮当与海盗仙子,7.3,2988,动画/奇幻/冒险,美国,2014,21812.4\r\n精装追女仔,6.3,2988,喜剧,香港,2004,18824.4\r\n街角的商店,8.7,2987,剧情/喜剧/爱情,美国,1940,25986.9\r\n虔诚的鳏夫,7.8,2985,剧情/同性,荷兰,2013,23283\r\n法国万岁,7.3,2985,喜剧,法国,2013,21790.5\r\n孤独的死亡之所,6.3,2985,惊悚/恐怖,英国,2011,18805.5\r\n孤岛惊魂,2.8,2982,悬疑/惊悚/恐怖,中国大陆,2013,8349.6\r\n武林女大学生,5.8,2980,喜剧/动作/爱情,韩国,2008,17284\r\n小鬼当家,5.8,2979,喜剧/家庭/犯罪,美国,2012,17278.2\r\n无味神探 無味神,6.8,2978,剧情/动作/惊悚/犯罪,香港,1995,20250.4\r\n罗密欧点,6.8,2978,剧情/动作/惊悚/恐怖/战争,韩国,2004,20250.4\r\n欢乐树的朋友们：第三击,9.2,2977,喜剧/动画,美国,2004,27388.4\r\n悬崖上的野餐,7.5,2977,剧情/悬疑/惊悚/恐怖,澳大利亚,1975,22327.5\r\n鬼狗杀手,7.4,2977,剧情/惊悚/犯罪,法国/德国/美国/日本,1999,22029.8\r\n黑色面包,7.4,2977,剧情,西班牙,2010,22029.8\r\n武士,6.8,2977,剧情/动作/历史/战争,韩国/中国大陆,2001,20243.6\r\n少年透明人,6.4,2977,奇幻/冒险,意大利/法国,2014,19052.8\r\n双狙人,7.2,2976,剧情/动作/惊悚,美国/秘鲁,1993,21427.2\r\n大坏狼,7,2976,剧情/惊悚/犯罪,以色列,2013,20832\r\n雪山惊魂,6,2976,剧情/悬疑/惊悚/恐怖,挪威,2006,17856\r\n一轮明月,7.9,2974,剧情/传记,中国大陆,2005,23494.6\r\n哆基朴的天空,7.8,2972,动画/短片,韩国,2004,23181.6\r\n薇罗妮卡决定去死,6.9,2972,剧情,美国,2009,20506.8\r\n更多,8.5,2971,科幻/动画/短片,美国,1999,25253.5\r\n纽约的秋天,6.4,2971,剧情/爱情,美国,2000,19014.4\r\n罪恶的编年史,6.7,2969,惊悚,韩国,2015,19892.3\r\n阁楼,6.6,2969,惊悚,美国/比利时,2014,19595.4\r\nO型,7.9,2968,剧情,泰国,1998,23447.2\r\n冷血惊魂,7.7,2968,剧情/恐怖,英国,1965,22853.6\r\n旗鼓相当,7.1,2964,喜剧/运动,美国,2013,21044.4\r\n老虎出更,6.7,2964,剧情/喜剧/动作/惊悚/犯罪,香港,1988,19858.8\r\n少女特工队,6.1,2964,喜剧/动作/爱情,美国,2004,18080.4\r\n姐妹,5.9,2964,喜剧,美国,2015,17487.6\r\n死亡契约,6,2962,剧情/惊悚/犯罪,美国/德国,2006,17772\r\n小红脸和小蓝脸,8.3,2961,动画/短片/儿童,中国大陆,1905,24576.3\r\n决不让步,7.8,2960,剧情,美国,2005,23088\r\n变鬼,6.6,2959,剧情/喜剧/惊悚/恐怖,泰国,2003,19529.4\r\n尤里西斯的凝视 Το βλέμμα του Ο,9,2957,剧情/战争,法国/希腊/意大利/德国/英国/南斯拉夫/波黑/阿尔巴尼亚/罗马尼亚,1995,26613\r\n往日情怀,8.3,2957,剧情/爱情,美国,1973,24543.1\r\n攻壳机动队SAC：笑面男 攻,9.1,2956,动画,日本,2005,26899.6\r\n细雪 細,8.2,2956,剧情/爱情,日本,1983,24239.2\r\n飞天舞,5.7,2956,剧情/动作/爱情/奇幻,韩国,2000,16849.2\r\n金刚,7.5,2954,剧情/爱情/科幻/恐怖/奇幻/冒险,美国,1933,22155\r\n足不出户,7.1,2954,喜剧/悬疑/恐怖,新西兰,2014,20973.4\r\n一年之初,6.3,2953,剧情/奇幻,台湾,2006,18603.9\r\n好莱坞结局,7.4,2952,喜剧/爱情,美国,2002,21844.8\r\n巨神兵在东京出现 巨神兵東京に現わ,7,2951,科幻/短片,日本,2012,20657\r\n扣篮对决,6,2951,剧情/动作/家庭/运动,中国,2008,17706\r\n史瑞克外传：欢度圣诞,7.1,2950,喜剧/动画/短片/家庭/奇幻/冒险,美国,2007,20945\r\n超人与蝙蝠侠：公众之敌,7,2949,剧情/动作/动画/奇幻,美国,2009,20643\r\n男孩的生活,8.1,2948,剧情/传记,美国,1993,23878.8\r\n王牌特派员,6.5,2947,喜剧/惊悚,美国,1996,19155.5\r\n一席之地,7.5,2946,剧情,台湾,2009,22095\r\n暑期作业 暑期作,7.4,2944,悬疑/犯罪,香港,1905,21785.6\r\n乐翻天,5.1,2943,喜剧,中国大陆,2012,15009.3\r\n第三个人,5.4,2942,惊悚,中国大陆,2007,15886.8\r\n冲浪英豪,8.2,2941,剧情/运动,美国,2012,24116.2\r\n神鬼奇谋,8.1,2940,喜剧/犯罪,美国/加拿大,2001,23814\r\n在地球上恋爱,6.9,2939,剧情/喜剧/爱情,韩国,2008,20279.1\r\n漫游,5.6,2939,喜剧,美国,2012,16458.4\r\n举起金刚,8.2,2938,剧情/喜剧,韩国,2009,24091.6\r\n切除,5.7,2938,恐怖,美国,2012,16746.6\r\n禁忌的游戏,8.6,2937,剧情/战争,法国,1952,25258.2\r\n瘦身,5.6,2937,惊悚,香港/中国,2005,16447.2\r\n夺面解码,6.9,2936,悬疑/惊悚/犯罪/奇幻,法国,2002,20258.4\r\n恐怖蜡像馆,7.3,2933,恐怖,美国,1953,21410.9\r\n可玛猫 こま撮り映画・こま,8.9,2932,剧情/动画/儿童,日本,2009,26094.8\r\n圣女贞德蒙难记,8.7,2932,剧情/传记/历史/犯罪,法国,1928,25508.4\r\n玛丽娅·布劳恩的婚姻,8.3,2932,剧情,原西德,1979,24335.6\r\n布拉格练习曲 ,8.2,2931,剧情/喜剧,捷克/英国/丹麦,2007,24034.2\r\n火车大劫案,8.2,2931,短片/犯罪/西部,美国,1903,24034.2\r\n无论罗拉要什么,7.7,2931,剧情,加拿大/法国,2007,22568.7\r\n爱情灵药 愛情靈,7.5,2931,喜剧/悬疑/冒险,台湾,2002,21982.5\r\n幻世追踪,4.5,2931,动作/科幻/惊悚/冒险,美国,2015,13189.5\r\n罗丹岛之恋,6.9,2929,剧情/爱情,美国/澳大利亚,2008,20210.1\r\n百分百感觉 百分百感,6.3,2926,爱情,香港,1996,18433.8\r\n弗兰肯斯坦,9.4,2925,剧情/戏曲,英国,2011,27495\r\n红与黑,8.2,2924,剧情/爱情,法国/意大利/德国,1997,23976.8\r\n人鱼,8.1,2924,动画/短片,比利时,1905,23684.4\r\n死党,6.6,2923,剧情/动作/爱情/犯罪,泰国,2012,19291.8\r\n盗信情缘 ポストマン・ブル,8.5,2922,剧情/喜剧/动作/犯罪,日本,1997,24837\r\n今年夏天,6.4,2919,剧情/同性,中国,2001,18681.6\r\n女子大乱斗,5.4,2919,剧情/喜剧/动作/惊悚/犯罪,美国,2009,15762.6\r\n一路狂奔,3.1,2919,喜剧,中国大陆,2013,9048.9\r\n证明我爱你,7,2918,剧情,美国,2005,20426\r\n不道德的故事,6.4,2918,剧情/爱情/情色,法国,1974,18675.2\r\n火线追凶之血色刀锋,7.7,2917,剧情/动作,中国,2009,22460.9\r\n不忠者 ,6.3,2916,剧情/喜剧,法国,2012,18370.8\r\n铁窗喋血,8.1,2914,剧情/犯罪,美国,1967,23603.4\r\n9,7.8,2914,剧情/动画,以色列/澳大利亚,2008,22729.2\r\n德意志零年,8.3,2912,剧情,意大利,1948,24169.6\r\n莱利的初次约会,8.1,2911,喜剧/动画/短片,美国,2015,23579.1\r\n极秘搜查,6.8,2911,剧情/犯罪,韩国,2015,19794.8\r\n士兵之歌 Баллада о солд,9,2909,剧情/爱情/战争,苏联,1959,26181\r\n我的男人 私の,6.5,2909,爱情,日本,2014,18908.5\r\n血战台儿庄,8.1,2908,战争,中国,1905,23554.8\r\n蠢蛋搞怪秀,7.3,2908,喜剧,美国,2007,21228.4\r\n纽约客的故事,7.3,2908,剧情/喜剧,美国,2010/2010-02-18,21228.4\r\n欲望法则,8.1,2907,剧情/爱情/同性,西班牙,1987,23546.7\r\n佐州自救兄弟,6,2907,喜剧/动作,美国,2014,17442\r\n暗杀名单,5.8,2906,动作/惊悚,美国,2011,16854.8\r\n热带鱼 熱帶,8.4,2905,剧情/喜剧,台湾,1995,24402\r\n心灵想要大声呼喊 心が叫びたがってるんだ,7.6,2905,动画,日本,2015,22078\r\n色衰应召男,7,2905,喜剧,美国,2013,20335\r\n头师父一体,7,2905,喜剧/动作/犯罪,韩国,2001,20335\r\n追凶,7,2905,剧情/悬疑/犯罪,美国,2005,20335\r\n戴安娜,6,2905,剧情/传记,英国/美国/瑞典,2013,17430\r\n杀人偏差值70 殺人,5.9,2905,剧情/悬疑,日本,2014,17139.5\r\n足迹,8.4,2904,悬疑/惊悚,英国/美国,1972,24393.6\r\n总统浪漫史,6,2903,剧情/喜剧/爱情,韩国,2005,17418\r\n新机动战记高达W 无尽的华尔兹 特别篇 新機動戦記ガンダ,8.5,2902,剧情/科幻/动画,日本,1998,24667\r\n食客,6.4,2902,剧情/喜剧,韩国,2007,18572.8\r\n啦啦队夏令营,6,2902,喜剧,美国,2009,17412\r\n草莓棉花糖 OVA第1卷 ,8.8,2901,动画/短片,日本,2007,25528.8\r\n早安 お早よ,8.6,2901,喜剧,日本,1959,24948.6\r\n耶路撒冷,7.7,2901,剧情/动作/犯罪,南非,2011,22337.7\r\n郊游 郊,7.1,2901,剧情,台湾/法国,2013,20597.1\r\n女人就是女人,7.9,2900,剧情/喜剧/爱情/歌舞,法国/意大利,1961,22910\r\n召唤恶魔阿萨谢尔OAD：路西法篇 よんでますよ、アザゼルさん。 ル,9.1,2899,剧情/喜剧/动画/短片,日本,2012,26380.9\r\n日落号列车,7.4,2899,剧情,美国,2011,21452.6\r\n幸运蓝,7.4,2899,爱情/短片/同性,瑞典,2007,21452.6\r\n女王蜂,7,2899,剧情,日本,2006,20293\r\n小马快跑！,8.4,2898,喜剧/动画/短片,美国,2013,24343.2\r\n超时空要塞F:虚空歌姬 マクロスF 虚空歌姫～イツワリノ,7.5,2896,动画,日本,2009,21720\r\n会长是女仆 特别篇 会長はメイド様！特,7.8,2894,剧情/喜剧/爱情/动画,日本,2011,22573.2\r\n打工皇帝,6.7,2894,Comedy,香港,1985,19389.8\r\n自杀俱乐部 自殺サーク,6.3,2893,悬疑/惊悚/恐怖,日本,2002,18225.9\r\n如此美好,7.2,2892,喜剧/爱情,韩国,2015,20822.4\r\n一路惊心,5.4,2892,剧情/喜剧,中国大陆,2011,15616.8\r\n金猴降妖,8.9,2890,动画,中国大陆,1985年,25721\r\n肉之恋,7.8,2889,喜剧/爱情/短片/奇幻,英国/美国/西德,1905,22534.2\r\n上海之吻,6.5,2889,剧情/喜剧/爱情,美国,2007,18778.5\r\n蔡李佛,3.7,2889,剧情/动作,中国大陆/香港,2011,10689.3\r\n龙与地下城,5.3,2888,动作/奇幻/冒险,美国/捷克,2000,15306.4\r\n一键成名,7.4,2887,喜剧,法国,2012,21363.8\r\n孤独的人,6.8,2886,剧情/喜剧/爱情,美国,2009,19624.8\r\n神秘博士：逃跑新娘,8.9,2885,剧情/喜剧/科幻/奇幻/冒险,英国,2006,25676.5\r\n一千零一夜,7.3,2885,剧情/喜剧/情色/奇幻,意大利/法国,1974,21060.5\r\n哈洛与慕德,8.4,2884,剧情/喜剧,美国,1971,24225.6\r\n星守之犬 星守る,8.2,2884,剧情,日本,2011,23648.8\r\n鬼怪屋 HO,7.4,2884,喜剧/恐怖/奇幻,日本,1977,21341.6\r\n最后的旅程,7.7,2883,剧情,澳大利亚,2009,22199.1\r\nMR ,7.2,2883,剧情/惊悚/犯罪,法国,2008,20757.6\r\n彼岸花,8.3,2881,剧情/家庭,日本,1958,23912.3\r\n全职猎人剧场版：绯色的幻影 劇場版 HUNT,5.6,2880,动画,日本,2013,16128\r\n周恩来的四个昼夜,4.9,2877,剧情/历史,中国大陆,2013,14097.3\r\n志气 志,7.1,2876,剧情/运动,台湾,2013,20419.6\r\n勇者无惧,8.3,2875,剧情/悬疑/历史,美国,1997,23862.5\r\n地球停转之日,7.2,2875,剧情/科幻/惊悚,美国,1951,20700\r\n暴劫梨花,7.8,2873,剧情/犯罪,加拿大/美国,1988,22409.4\r\n过关斩将,6.6,2872,动作/科幻/惊悚,美国,1987,18955.2\r\n狼溪,6.5,2872,惊悚,澳大利亚,2014,18668\r\n书柜的故事,8.1,2870,动画/短片,捷克斯洛伐克,1905,23247\r\n大太监李莲英,7.1,2870,剧情/历史,中国大陆/香港,1991,20377\r\n神童,6.2,2869,科幻/动画,法国,2011,17787.8\r\n俄罗斯玩偶 ,7.5,2868,剧情/喜剧/爱情,法国/英国,2005,21510\r\n鬼屋大电影,5.7,2868,喜剧/恐怖,美国,2013,16347.6\r\n犹在镜中,8.4,2867,剧情,瑞典,1961,24082.8\r\n谜一样的双眼,6.3,2866,剧情/悬疑/惊悚,美国,2015,18055.8\r\n同居三人行,6,2866,喜剧/爱情,美国,2006,17196\r\n杀戮战场,8.3,2865,剧情/历史/战争,英国,1984,23779.5\r\n京骚戏画 京騒戯,8.1,2865,动画,日本,2011,23206.5\r\n不可思议,6.8,2864,喜剧/爱情,美国,2008,19475.2\r\n洋妞到我家,5.8,2864,剧情/喜剧/家庭,中国大陆,2014,16611.2\r\n老友有喜,6.1,2863,喜剧,美国,2011,17464.3\r\n流浪者之歌,9,2860,剧情/喜剧/犯罪/奇幻,意大利/英国/南斯拉夫,1988,25740\r\n二嫫,8.1,2859,剧情,中国大陆/香港,1994,23157.9\r\n小毕的故事 小畢的故,8.4,2858,剧情,台湾,1983,24007.2\r\n赛尔号大电影3之战神联,4.6,2858,动画/儿童/冒险,中国大陆,2013,13146.8\r\n爱丽丝,8.4,2857,动画/惊悚/奇幻,捷克/西德/瑞士/英国,1988,23998.8\r\n名侦探柯南OVA11：来自伦敦的秘密指令 名探偵コナン ロンド,6.8,2857,爱情/冒险,日本,2011,19427.6\r\n共产小子西游记,7.5,2856,喜剧,德国/美国,2010,21420\r\n瘦到死,6.5,2856,惊悚/恐怖,美国,1997,18564\r\n蚱蜢 グラスホッパ,5.9,2856,剧情,日本,2015,16850.4\r\nX圣治 C,7.8,2855,悬疑/惊悚/恐怖/犯罪,日本,1997,22269\r\n第一夫人的保镖,6.8,2855,喜剧,美国,1994,19414\r\n神秘博士：雪人,8.1,2854,科幻/奇幻/冒险,英国,2012,23117.4\r\n勇气,8,2852,剧情,美国,2011,22816\r\n冬狮,8,2850,剧情/历史,英国,1968,22800\r\n中华英雄,6.1,2848,动作/战争,香港/中国大陆,1986,17372.8\r\n上海小姐,8,2847,剧情/悬疑/犯罪/黑色电影,美国,1947,22776\r\n红线 赤い,6.7,2847,剧情,日本,2008,19074.9\r\n造物弄人,7.4,2846,剧情/传记,英国,2009,21060.4\r\n小鱼吃大鱼,6.3,2845,喜剧/爱情,中国大陆,2012,17923.5\r\n新最佳拍档 新最佳拍,6.7,2843,喜剧/动作/犯罪,香港,1989,19048.1\r\n空乘情人,5.9,2843,喜剧/同性,西班牙,2013,16773.7\r\n亲爱的奶奶 親愛的奶,8,2842,剧情,台湾,2012,22736\r\n学校风云 學校風,7.7,2842,剧情/动作/惊悚/犯罪,香港,1988,21883.4\r\n刺客学妹,4.7,2842,喜剧/动作/冒险,美国,2015,13357.4\r\n毛骨悚然撞鬼经 2012夏季特别篇 ほんとにあった怖い,6.3,2841,恐怖,日本,2012,17898.3\r\n虎度门,8.3,2839,剧情/喜剧,香港,1996,23563.7\r\n人在纽约 人在紐,7.4,2839,剧情,香港,1989,21008.6\r\n爱‧作,7.4,2838,动作/爱情,香港/中国大陆,2004,21001.2\r\n最强罗曼史,6.1,2838,喜剧/爱情,韩国,2007,17311.8\r\n功夫厨神 功夫廚,4.6,2838,喜剧/动作,中国大陆,2009,13054.8\r\n斗鱼,8.2,2837,剧情,美国,1983,23263.4\r\n中毒(美,6.1,2834,剧情/爱情/悬疑/惊悚,美国,2009,17287.4\r\n热力四射,7.5,2833,剧情/喜剧/家庭/运动,美国,2004,21247.5\r\n江城夏日,6.4,2833,剧情,中国/法国,2006,18131.2\r\n乡村牧师日记 ,8.4,2832,剧情/悬疑,法国,1951,23788.8\r\n三个奶爸一个娃,7.2,2831,剧情/喜剧,美国,1987,20383.2\r\n池袋西口公园SP--SOUP篇 池袋ウエストゲー,7.8,2830,剧情/悬疑/犯罪,日本,2003,22074\r\n维多利亚的秘密201,7.7,2830,舞台艺术,美国,2013,21791\r\n母女情深,7.3,2829,喜剧,法国,2008,20651.7\r\n情迷意乱 乱れ,9.1,2828,剧情/爱情/家庭,日本,1964,25734.8\r\n变鬼,5.8,2828,恐怖,泰国,2009,16402.4\r\n你还活着,8.1,2826,剧情,瑞典/德国/法国/丹麦/挪威/日本,2007,22890.6\r\n0.5,4.4,2825,爱情,中国大陆,2014,12430\r\n待绽蔷薇,7.5,2822,剧情,美国/英国,2012,21165\r\n鞋,6.9,2822,剧情/爱情/动画/短片,中国大陆,1905,19471.8\r\n壳中少女：压缩 マルドゥック・スクランブル,7.9,2821,剧情/动作/科幻,日本,2010,22285.9\r\n爱在招生部,5.9,2821,喜剧/爱情,美国,2013,16643.9\r\n铁甲衣,6.6,2820,动作/冒险,英国/美国,2011,18612\r\n铁马骝II之街头杀手 街,5.5,2820,动作,香港,1996,15510\r\n搜索者,7.7,2819,西部,美国,1956,21706.3\r\n高卢英雄大战凯撒王子 ,6.6,2818,喜剧/家庭/奇幻/冒险,法国/德国/西班牙/意大利/比利时,2008,18598.8\r\n蒙娜丽莎步下楼梯,7.7,2817,动画/短片,美国,1905,21690.9\r\n拜见希特勒 M,7.1,2817,剧情/喜剧/战争,德国,2007,20000.7\r\n圣血,8.3,2816,剧情/悬疑/惊悚/恐怖,墨西哥/意大利,1989,23372.8\r\n神秘博士：圣诞颂歌,8.6,2815,科幻/奇幻/冒险,英国,2010,24209\r\n机动部队—伙伴,6.1,2815,剧情/惊悚/犯罪,香港,1905,17171.5\r\n致命武器,6.4,2814,动作/惊悚/犯罪,美国,1998,18009.6\r\n死亡日记,5.8,2813,科幻/恐怖,美国,2008,16315.4\r\n黑板,8.2,2812,剧情/战争,伊朗/意大利/日本,2000,23058.4\r\n玻璃玫瑰,7.5,2811,剧情,法国/德国/希腊/英国,1991,21082.5\r\n樱桃小丸子 真人版2 ちびまる子ちゃん 実,8.7,2810,短片/家庭,日本,2006,24447\r\n杀妻2人组 殺妻,6.5,2809,喜剧,香港,1986,18258.5\r\n油炸绿番茄,8.5,2808,剧情/喜剧,美国,1991,23868\r\n希特勒：恶魔的崛起,7.5,2808,剧情/传记/历史,Canada/USA,2003,21060\r\n瓦嘉达,8.3,2806,剧情,沙特阿拉伯/德国,2012,23289.8\r\n天劫余生,8,2802,剧情/动作/冒险/灾难/运动,美国,1993,22416\r\n处女心经,6.9,2801,爱情,韩国,2000,19326.9\r\n虫洞效应,6.8,2800,剧情/科幻/家庭/奇幻/冒险,美国,2007,19040\r\n盲点,7.7,2799,剧情/喜剧/动画/短片,法国,1905,21552.3\r\n凤凰,6.9,2799,剧情/历史/战争,中国大陆/日本,2007,19313.1\r\n冷冻灵魂,6.7,2796,剧情/喜剧,美国/法国,2009,18733.2\r\n我会等待着下一个,7.8,2794,喜剧/爱情/短片,法国,2002,21793.2\r\n小王子,7.6,2794,剧情,韩国,2008,21234.4\r\n草莓之夜试播版 ストロベリーナイト パイロッ,7.4,2794,剧情,日本,2010,20675.6\r\n雪地狂奔,7.4,2794,喜剧/家庭/冒险/运动,加拿大/美国,2002,20675.6\r\n零,7.7,2793,动画/短片,澳大利亚,1905,21506.1\r\n秋日和,8.5,2790,剧情/家庭,日本,1960,23715\r\n独臂刀 獨臂,7.5,2790,剧情/动作/武侠/古装,香港,1967,20925\r\n悲伤故事的美好结局,7.9,2789,动画/短片,葡萄牙/加拿大/法国,2006,22033.1\r\n机动战士高达：逆袭的夏亚 機動戦士ガンダム：逆襲のシャ,8.9,2788,剧情/动作/科幻/动画/战争,日本,1988,24813.2\r\n大决战之辽沈战役,7.5,2788,剧情/历史/战争,中国大陆,1905,20910\r\n钮扣人 鈕扣,6.1,2787,动作/犯罪,香港,2008,17000.7\r\n战栗黑洞,7.5,2786,悬疑/恐怖/奇幻,美国,1995,20895\r\n生活艰难也许快乐 ピカ☆★☆ンチ L,7.4,2786,剧情/喜剧,日本,2014,20616.4\r\n宠物公墓,7.3,2786,剧情/悬疑/惊悚/恐怖/奇幻,美国,1989,20337.8\r\n暗夜列车,6.8,2785,动作/悬疑/惊悚/犯罪,美国/德国/罗马尼亚,2009,18938\r\n特朗勃,7.7,2784,剧情/传记,美国,2015,21436.8\r\n西部英雄约拿·哈克斯,5.3,2784,剧情/动作/惊悚/西部,美国,2010,14755.2\r\n西藏往事,6.6,2783,剧情/爱情,中国大陆,2011,18367.8\r\n团子大家族：另一个世界 杏篇 もうひとつの世界,8.4,2782,动画/短片,日本,2009,23368.8\r\n完美广播,6.5,2779,喜剧/爱情,韩国,2012,18063.5\r\n柳暗花明,8,2778,剧情,加拿大/英国/美国,2006,22224\r\nMW毒气风暴：恶魔的游戏 MW-ムウ：,6.8,2778,剧情/悬疑/冒险,日本,2009,18890.4\r\n雾都孤儿,8.1,2777,剧情/歌舞/家庭/犯罪,英国,1968,22493.7\r\n再过四年,8.3,2775,剧情/同性,瑞典,2010,23032.5\r\n地下情,7.5,2775,剧情,香港,1986,20812.5\r\n圣罗兰传,7.1,2775,剧情/同性/传记,法国,2014,19702.5\r\n王牌播音员,6.2,2775,喜剧,美国,2004,17205\r\n大地惊雷,7.7,2774,剧情/西部/冒险,美国,1969,21359.8\r\n燕麦饼干店,7.1,2773,喜剧,美国,2007,19688.3\r\n金牌制作人,7,2772,喜剧/歌舞,美国,2005,19404\r\n星语心愿之再爱,6,2772,爱情,中国大陆,2015,16632\r\n猛鬼大厦 猛鬼大,6.6,2767,喜剧/恐怖,香港,1905,18262.2\r\n空即是色,4.5,2767,剧情/喜剧/爱情,韩国,2015,12451.5\r\n我会好起来,8,2765,剧情,法国,2006,22120\r\n下一层,8,2765,短片,加拿大,2008,22120\r\n流金岁月 流金歲,7.2,2764,爱情,香港,1988,19900.8\r\n喜剧 喜,7.8,2763,剧情/动作/动画/短片/奇幻,日本,2002,21551.4\r\n对不起，谢谢你,7.7,2763,剧情,韩国,2011,21275.1\r\n银发的阿基多 銀色の髪のアギ,6.6,2761,剧情/爱情/科幻/动画,日本,2006,18222.6\r\n我爱红娘,8.1,2760,喜剧/爱情/歌舞/家庭,美国,1969,22356\r\n完美的蛇颈龙之日 リアル 完全なる首長竜,5.9,2760,剧情/爱情/科幻,日本,2013,16284\r\n王者万岁,7.5,2758,动作/科幻/短片,美国,2014,20685\r\n我呼吸的空气,7,2757,剧情/动作/爱情/惊悚/犯罪,墨西哥/美国,2007,19299\r\n大奥第一章特别篇 樱花落 大奥~第一章,8.1,2756,剧情/爱情/古装,日本,2005,22323.6\r\n宇宙英雄之超银河传说 大怪獣バトル ウルトラ銀河,6.9,2756,动作/科幻/家庭/奇幻/冒险,日本,2011,19016.4\r\n女生部里的秘密,5.7,2755,喜剧,美国,2012,15703.5\r\n玉女风流,8.8,2754,喜剧,美国,1961,24235.2\r\n双面罗密欧,7.1,2751,剧情/同性,德国,2011,19532.1\r\n铁拳,4.8,2751,剧情/动作/科幻/冒险,日本/美国,2010,13204.8\r\n水·彩,7.6,2749,剧情/爱情/同性,美国,2008,20892.4\r\n诚聘保姆,5.5,2749,惊悚/恐怖,美国,2008,15119.5\r\n我爱你，我爱你,7.3,2748,剧情/科幻,法国,1968,20060.4\r\n夜车,7.2,2747,剧情,法国/中国,2007,19778.4\r\n虚拟程序,8.7,2746,动作/科幻/短片,美国,2003,23890.2\r\n无人生还,7.9,2746,剧情/悬疑/惊悚/犯罪,美国,1945,21693.4\r\n复仇之角,5.3,2746,惊悚/恐怖/奇幻,美国,2013,14553.8\r\n少女洛荷,7.5,2745,剧情/惊悚/战争,德国/澳大利亚/英国,2012,20587.5\r\n跟别人睡了,6.6,2745,喜剧,美国,2015,18117\r\n夜叉,6.2,2745,剧情/犯罪,香港,1999,17019\r\n宛如阿修罗 阿修羅のごと,8.1,2744,剧情/喜剧/家庭,日本,2003,22226.4\r\n猎物,6.8,2744,动作/惊悚/犯罪,法国,2012,18659.2\r\n圣杯骑士,5.8,2744,剧情/爱情,美国,2015,15915.2\r\n人肉米粉,5.9,2743,惊悚/恐怖,泰国,2009,16183.7\r\n橘子,6.2,2742,剧情/喜剧/爱情,美国,2012,17000.4\r\n至尊无上 至尊無,7,2741,剧情,香港,1905,19187\r\n夺命剑 上意討ち －拝領妻始,8.8,2740,剧情,日本,1967,24112\r\n七十二家房客,7.4,2740,喜剧,香港,1973,20276\r\n呖咕呖咕对对碰,5.5,2739,喜剧,香港,2007,15064.5\r\n四月一日灵异事件簿·笼：徒梦 xxxH,9.2,2738,动画,日本,2011,25189.6\r\n早春二月,8.1,2738,剧情/爱情,中国大陆,1905,22177.8\r\n蠢蛋搞怪秀,7.5,2737,喜剧,美国,2011,20527.5\r\n夜长梦多,7.4,2736,悬疑/惊悚/犯罪/黑色电影,美国,1946,20246.4\r\n豪斯医生完季特别篇：天鹅挽歌,9.5,2735,剧情/悬疑,美国,2012,25982.5\r\n少林三十六房,7.6,2735,剧情/动作/冒险/武侠/古装,香港,1978,20786\r\n六月之蛇 六月の,7,2735,剧情/悬疑/情色,日本,2002,19145\r\n出轨幻想,6.9,2735,剧情/爱情,英国/美国/德国/比利时,2014,18871.5\r\n茶舞,7.4,2734,喜剧/动作/爱情/犯罪,新加坡,2006,20231.6\r\n花与树,7.8,2733,喜剧/爱情/动画/短片/歌舞/家庭,美国,1932,21317.4\r\n低能侦探,7.3,2733,动画/悬疑/惊悚/短片,美国,2012,19950.9\r\n善良的夏吾冬,8.4,2732,动画/短片/儿童,中国大陆,1905,22948.8\r\n13号,7.9,2732,喜剧/动作/动画/恐怖/短片,澳大利亚,2003,21582.8\r\n这个男子捡到了人鱼 この男子、人魚ひろいました,7.5,2732,剧情/动画/同性,日本,2012,20490\r\n偷情家族,5.8,2732,剧情/情色,韩国,2003,15845.6\r\n小英雄托托 ,8.5,2731,剧情,比利时/法国/德国,1991,23213.5\r\n月光集市到中国,5.8,2731,剧情/喜剧/动作/歌舞/奇幻/冒险,印度/美国,2009,15839.8\r\n小美人鱼3：爱丽儿的起,7.4,2729,动画/家庭/奇幻,美国,2008,20194.6\r\nW的悲剧 W,8,2728,剧情,日本,1984,21824\r\n9号谋杀,6.8,2728,悬疑/恐怖,美国,2001,18550.4\r\n飞出个未来大电影1：班德大行,8.5,2727,喜剧/动作/爱情/科幻/动画/冒险,美国,2007,23179.5\r\n少年,8.2,2727,剧情,日本,2013,22361.4\r\n新火烧红莲寺,6.6,2726,动作/冒险/武侠/古装,香港,1994,17991.6\r\n澄沙之味 あ,7.7,2725,剧情,日本/法国,2015,20982.5\r\n鲸奇,7.6,2725,剧情/爱情,美国/英国,2012,20710\r\n伦敦任务 Мисия Лонд,6.9,2724,喜剧,保加利亚/英国/匈牙利/马其顿/瑞典,2010,18795.6\r\n这一刻，爱吧！ 這一刻，愛吧,6.8,2724,短片,台湾,2012,18523.2\r\n探员卡特,7.6,2723,动作/科幻/冒险,美国,2013,20694.8\r\n暴风雪中的白鸟,6.2,2721,剧情/惊悚,法国/美国,2014,16870.2\r\n哭泣的草原 Τριλογία 1: Το Λιβάδι π,8.8,2720,剧情/爱情/历史,希腊/法国/意大利/德国,2004,23936\r\n双重危机,7.2,2718,剧情/悬疑/惊悚/犯罪,美国/德国/加拿大,1999,19569.6\r\n丰臣公主 プリンセストヨト,6.6,2718,剧情/悬疑,日本,2011,17938.8\r\n咕噜牛,7.3,2717,动画/家庭,英国,2009,19834.1\r\n黑海夺金,6.7,2717,惊悚/冒险,英国/美国/俄罗斯,2014,18203.9\r\n玉蒲团之偷情宝鉴 玉蒲團之偷情寶,6.5,2717,情色/古装,香港,1991,17660.5\r\n水仙女 Русалк,8.4,2716,剧情/喜剧/奇幻,俄罗斯,2007,22814.4\r\n公子多情,7,2716,喜剧/爱情,香港,1988,19012\r\n惊心食人族,6.2,2716,惊悚/恐怖,美国,2003,16839.2\r\n竞雄女侠秋瑾,6.3,2715,剧情/动作/传记,中国大陆/香港,2011,17104.5\r\n终极战役,8.5,2714,动作/科幻/动画/短片,美国,2003,23069\r\n皱纹,8.5,2714,剧情/动画,西班牙,2012,23069\r\n狗狗与你的故事 犬とあなたの物語 いぬのえ,7.5,2714,剧情/喜剧,日本,2011,20355\r\n麦子小姐 麦子さん,7.4,2714,剧情/喜剧,日本,2013,20083.6\r\n包法利夫人,7.3,2714,剧情/爱情,法国,1991,19812.2\r\n西班牙女佣,7.3,2714,剧情/喜剧/爱情/家庭,美国,2004,19812.2\r\n致命报应,6.2,2714,惊悚/恐怖,美国,2007,16826.8\r\n阿诗玛,7.8,2712,爱情/歌舞,中国大陆,1905,21153.6\r\n火山对对碰,6.7,2712,喜剧,法国/比利时,2014,18170.4\r\n变线人生,6.9,2709,剧情/惊悚,美国,2002,18692.1\r\n替身演员,7.1,2708,剧情/喜剧,法国/意大利/比利时,2006,19226.8\r\n代孕妈妈,6.1,2708,喜剧/爱情,美国,2008,16518.8\r\n谎言大作战,5.8,2708,剧情/短片,香港,2010,15706.4\r\n欢乐树的朋友们：寒假,9.2,2707,喜剧/动画/短片,美国,2004,24904.4\r\n奇诺之旅 活着的目标 生活继续 キノの旅 何かをす,8.8,2707,动画/短片,日本,2005,23821.6\r\n巧克力情人,7.7,2707,剧情/爱情,墨西哥,1992,20843.9\r\n中途岛之战,7.5,2707,剧情/动作/历史/战争,美国,1976,20302.5\r\n爱与诚 愛と,6.2,2707,剧情/爱情/犯罪,日本,2012,16783.4\r\n八墓村 八つ墓,7.4,2705,悬疑/恐怖/犯罪,日本,2004,20017\r\n一蚊鸡保镖 一蚊雞保,7,2705,喜剧,香港,2002,18935\r\n方舟,8,2703,科幻/动画/短片,波兰,2007,21624\r\n凶间疑影 ใค,6.2,2701,悬疑/惊悚/恐怖,泰国,2010,16746.2\r\n紫雨风暴,6.6,2700,动作,香港,1999,17820\r\n格林伯格,6.2,2700,剧情/喜剧,美国,2010,16740\r\n忍者神龟,7.4,2698,剧情/喜剧/动作/科幻/家庭/犯罪/冒险,美国/香港,1990,19965.2\r\n红气球,8.2,2696,动画/短片,中国大陆,1905,22107.2\r\n窗外,7,2695,爱情,台湾,1973,18865\r\n男人女人和孩子,6.8,2695,剧情/家庭,美国,2014,18326\r\n拳王开饭馆,6.4,2695,喜剧,美国,2009,17248\r\n午后之爱 ,8.2,2694,剧情,法国,1972,22090.8\r\n幸福的馨香 しあわせのかお,7.5,2692,剧情,日本,2008,20190\r\n黑色姐妹花,7.8,2691,动画/短片,英国,2007,20989.8\r\n画中仙 畫中,6.4,2691,喜剧/奇幻/冒险,香港,1988,17222.4\r\n爱与死,8.3,2690,喜剧/战争,美国/法国,1975,22327\r\n重返荣耀,7.5,2690,剧情/喜剧/爱情,美国,2000,20175\r\n乔,6.5,2690,剧情,美国,2013,17485\r\n嫁给大山的女人,2.1,2690,剧情,中国大陆,2009,5649\r\n鬼娃孽种,6.4,2689,喜剧/惊悚/恐怖,罗马尼亚/美国/英国,2005,17209.6\r\n楢山节考 楢山節,8.7,2688,剧情,日本,1958,23385.6\r\n伦敦上空的鹰,7.8,2687,剧情/战争,意大利/法国/西班牙,1969,20958.6\r\n天堂真的存在,7.1,2687,剧情,美国,2014,19077.7\r\n致命录像带,6.7,2687,惊悚/恐怖,美国/加拿大/印尼,2013,18002.9\r\n吝啬罗曼史,6.3,2687,喜剧/爱情,韩国,2010,16928.1\r\n燕尾蝶,8,2686,动画/短片,中国大陆,2007,21488\r\n好运之人,7.5,2686,剧情/喜剧/战争,美国,2008,20145\r\n阿瓦隆 アヴァロ,7.4,2686,剧情/科幻/奇幻,日本/波兰,2001,19876.4\r\n机械危情,5.7,2686,科幻/惊悚,英国,2013,15310.2\r\n坐着轮椅飞上天空 車イスで僕は空を飛,7.8,2685,剧情,日本,2012,20943\r\n高龄化家族,7.2,2685,剧情/喜剧/家庭,韩国,2013,19332\r\n午夜之爱,7.9,2680,剧情/爱情,泰国,2005,21172\r\n99,7.5,2680,剧情/喜剧,法国,2007,20100\r\n魔卡少女樱 剧场版 カードキャプターさくら ,8.2,2678,动画/奇幻/冒险,日本,1999,21959.6\r\n神勇飞虎霸王花 神勇飛虎霸王,6.7,2678,喜剧/动作,香港,1989,17942.6\r\n没有宇宙我们无法生存 Мы не можем жить без к,8.2,2677,动画/短片,俄罗斯,2014,21951.4\r\n时光情书,7,2676,爱情,泰国,2014,18732\r\n水浇园丁 ,8.5,2675,喜剧/短片,法国,1895-12-28,22737.5\r\n秘密花园 ひみつの花,8.4,2675,喜剧/犯罪,日本,1997,22470\r\n法兰基，我的爱,8.5,2672,剧情/爱情,英国,2004,22712\r\n少年往事,7.9,2672,剧情,香港,2003,21108.8\r\n无底洞,6.8,2669,剧情/喜剧/悬疑,中国大陆,2011,18149.2\r\n异度幻觉 猛鬼愛情故,5.8,2669,剧情/爱情/惊悚/恐怖,香港,2011,15480.2\r\n50,7,2667,剧情/科幻/悬疑/惊悚,美国,1971,18669\r\n玉战士,4.3,2666,剧情/动作/奇幻/冒险,芬兰/荷兰/中国/爱沙尼亚,2006,11463.8\r\n相约星期二,8.9,2665,剧情/传记,美国,1999,23718.5\r\n我的兄弟情人,6.4,2665,剧情/同性,泰国,2014,17056\r\n再见，我的王后 ,6,2665,剧情/同性/历史,法国/西班牙,2012,15990\r\n喜剧中心詹姆斯·弗兰科吐槽大会,8.1,2662,喜剧/脱口秀,美国,2013,21562.2\r\n小叮当：拯救精灵大作战,7.9,2661,动画/家庭/儿童/奇幻,美国,2010,21021.9\r\n异世浮生,7.4,2661,剧情/悬疑/惊悚,美国,1990,19691.4\r\n凶榜 兇,7,2661,恐怖,香港,1981,18627\r\n速度超越激情,6.7,2661,喜剧,美国,2015,17828.7\r\n兔子和公牛,7.4,2658,喜剧,英国,2009,19669.2\r\n口吃,7.3,2658,剧情/短片,英国,2015,19403.4\r\n一如既往,6.9,2658,剧情/喜剧/爱情,美国,2000,18340.2\r\n喜剧之王,8.1,2656,剧情/喜剧/犯罪,美国,1982,21513.6\r\n美味毒妇,7.8,2656,剧情/喜剧/犯罪,法国,2013,20716.8\r\n爱到尽头,7.6,2655,剧情/爱情,英国/美国,1999,20178\r\n小矮人,6.2,2655,喜剧/犯罪,美国/加拿大,2006,16461\r\n一路响叮当,6.8,2654,喜剧/动作/家庭/冒险,美国,1996,18047.2\r\n没有过去的男人,8.2,2652,剧情,芬兰/法国/德国,2002,21746.4\r\n蛋糕,6.7,2652,剧情,美国,2014,17768.4\r\n旅程,8.2,2651,剧情/喜剧/爱情/同性,美国,2002,21738.2\r\n女收藏家,7.9,2651,剧情/喜剧/爱情,法国,1967,20942.9\r\n一狱一世界：高登阔少蹲监日记 壹獄壹世界：高登闊少踎監日,6.4,2651,喜剧,香港,2015,16966.4\r\n火线狙击,7.3,2649,剧情/动作/惊悚,美国,1993,19337.7\r\n当少年遇到少年,6.5,2649,剧情/同性,韩国,1905,17218.5\r\n花旗少林,6.7,2648,动作/爱情/奇幻,香港,1994,17741.6\r\n职业男人,6.9,2647,剧情/家庭,芬兰,2007,18264.3\r\n恐怖极限游戏,5.4,2647,惊悚/恐怖,美国,2012,14293.8\r\n北村方向,7.5,2646,剧情,韩国,2011,19845\r\n刀走偏锋,6.8,2645,科幻/悬疑/惊悚,美国,2002,17986\r\n天堂之门 ヘブンズ・,7.3,2644,剧情,日本,2009,19301.2\r\n丧尸出笼,7,2643,科幻/恐怖,美国,1985,18501\r\n刺马 刺,7.7,2642,剧情/动作,香港,1973,20343.4\r\n致命快感,6.6,2641,动作/西部/冒险,美国/日本,1995,17430.6\r\n风雨同路 風雨同,6.7,2640,动作,香港,1990,17688\r\n天与地,7.1,2639,剧情,香港/美国,1994,18736.9\r\n七月十四,7.2,2638,惊悚/恐怖,香港,1993,18993.6\r\n柏林谍影,8.4,2636,剧情/惊悚,英国,1965,22142.4\r\n十个小黑人 Десять негрит,7.9,2636,悬疑/犯罪,苏联,1987,20824.4\r\n愉快的人生,7.5,2636,剧情/喜剧,韩国,2007,19770\r\n基卡,7.3,2636,剧情/喜剧,西班牙/法国,1993,19242.8\r\n晴空血战史,7.3,2636,剧情/动作/战争,美国,1949年,19242.8\r\n替身,6.5,2636,剧情/悬疑/惊悚/犯罪,美国,2011,17134\r\n大陆之所以漂移：第二部分,8,2635,喜剧/动画/短片,美国,2011,21080\r\n魅力四射4：一鼓作,6.7,2635,喜剧/运动,美国,2007,17654.5\r\n神秘博士：诅咒之旅,9,2634,剧情/科幻/冒险,英国,2007,23706\r\n身体里有只猫的狗狗,7.6,2633,剧情/动画,英国,2002,20010.8\r\n爱情赏味期,7.3,2633,剧情/爱情,法国,2004,19220.9\r\n勇闯黄金城,7.4,2632,喜剧/爱情/动画/家庭/冒险,美国,2000,19476.8\r\n笑八仙,6.3,2632,喜剧,香港,1993,16581.6\r\n男孩之爱 BOYS ,6.3,2630,剧情/同性,日本,2006,16569\r\n一路向南,5.9,2630,悬疑/惊悚/恐怖,美国,2015,15517\r\n南方大作战,7.4,2629,剧情/喜剧,韩国,2013,19454.6\r\n末世殖民地,5.4,2629,动作/科幻/惊悚/灾难,加拿大,2013,14196.6\r\n机动警察剧场版2 機動警察パトレイ,8.6,2628,剧情/科幻/动画/悬疑/惊悚,日本,1993,22600.8\r\n处女地,5.9,2627,剧情/喜剧/爱情/冒险,意大利/英国/法国/卢森堡,2007,15499.3\r\n谁来为我摘月亮,8.6,2626,剧情/喜剧,德国/日本/塔吉克斯坦/乌兹别克斯坦/奥地利/瑞士/法国/俄罗斯,1999,22583.6\r\n甩皮鬼,5.9,2626,恐怖,香港,1992,15493.4\r\n赌圣3无名小子 賭聖3無,5.9,2625,喜剧,香港,1905,15487.5\r\n龙兄鼠弟,6.6,2624,喜剧,美国,1988,17318.4\r\n时间裂缝,7.4,2623,科幻/悬疑/惊悚/恐怖,USA,1995,19410.2\r\n白烂贱客,7.1,2623,喜剧,美国,2001,18623.3\r\n机器人艺妓 ロボゲイシ,5.4,2623,喜剧/动作/科幻,日本,2009,14164.2\r\n键 ,6.7,2620,剧情/情色,日本,1997,17554\r\n因为爱你，所以没关系,6.3,2620,剧情/爱情,韩国,2006,16506\r\n你怎么知道,5.8,2620,剧情/喜剧/爱情,美国,2010,15196\r\n火线追凶之掘墓人,7.8,2619,剧情/动作,中国,2009,20428.2\r\n我们善熙,6.8,2618,剧情,韩国,2013,17802.4\r\n杀人的夏天 L,7.8,2617,剧情/悬疑/惊悚/犯罪,法国,1983,20412.6\r\n大都会传奇,7.3,2617,剧情/喜剧/爱情,美国,1989,19104.1\r\n东方秃鹰,7.3,2616,剧情/动作/战争,香港,1987,19096.8\r\n双生美莲达,7.3,2616,剧情/喜剧,美国,2004,19096.8\r\n龙战,7.1,2615,动画/家庭/奇幻/冒险,法国/德国/卢森堡,2008,18566.5\r\n地牢围攻,4.7,2615,剧情/动作/奇幻/冒险,德国/加拿大/美国,2007,12290.5\r\n她的回忆 彼女の想い,8.6,2614,科幻/动画/冒险,日本,1905,22480.4\r\n震撼性教育,6.5,2614,剧情/喜剧,美国,2002,16991\r\n左邻右里,7.8,2613,喜剧/动画/短片,比利时,2004,20381.4\r\n自画像,7.7,2612,动画/短片,中国大陆,2009,20112.4\r\n警界争雄 ,7.6,2611,剧情/动作/惊悚/犯罪,法国,2005,19843.6\r\n大李小李和老李,8.2,2610,剧情,中国大陆,1905,21402\r\n远方,8.2,2607,剧情,土耳其,2002,21377.4\r\n大喜临门 大囍臨,5.4,2606,喜剧,台湾/中国大陆,2015,14072.4\r\n布朗森,6.6,2605,剧情/动作/惊悚/传记/犯罪,英国,2009,17193\r\n功夫·咏春,5.5,2604,动作,中国大陆/香港,2010,14322\r\n家有杰克,7.7,2602,剧情/喜剧/奇幻,美国,1996,20035.4\r\n蒲公英 タンポ,8.3,2601,喜剧,日本,1985,21588.3\r\n邮差,6.7,2600,剧情,中国,1995,17420\r\n死亡派对,6,2600,剧情/悬疑,中国大陆,2014,15600\r\n我唾弃你的坟墓3：复仇在,5.1,2600,惊悚/恐怖/犯罪,美国,2015,13260\r\n查泰莱夫人的情人,6.5,2599,剧情/爱情,比利时/法国/英国,2006,16893.5\r\n一日钟情,7.4,2596,喜剧/爱情,美国,1996,19210.4\r\n杀戮时刻,7.5,2592,剧情/惊栗,美国,1996,19440\r\n大提琴,6.2,2590,悬疑/恐怖,韩国,2005,16058\r\n蜘蛛女之吻,8.2,2589,剧情/同性,美国/巴西,1985,21229.8\r\n送子先生,6.7,2588,喜剧,美国,2013,17339.6\r\n香港奇案之强奸 香港奇案之強,6.6,2587,情色,香港,1993,17074.2\r\n即时发生,6.4,2587,剧情/喜剧,美国,2008,16556.8\r\n亡命之计,6.4,2587,剧情/动作/惊栗,美国,1998,16556.8\r\n玛德琳,7.1,2586,爱情,韩国,2003,18360.6\r\n杂牌军东征,6.6,2585,喜剧/战争,美国,1981,17061\r\n异种,5.1,2585,科幻/惊悚/恐怖,美国,2007,13183.5\r\n傻瓜大闹科学城,7.5,2584,喜剧/科幻,美国,1973,19380\r\n恋风恋歌,7.3,2584,爱情,韩国,1999,18863.2\r\n爱我就陪我看电影,3.5,2584,喜剧/爱情,中国大陆,2015,9044\r\n夜幕,7.4,2583,剧情/爱情,美国/德国,2007,19114.2\r\n油脂,7.5,2582,爱情/歌舞,美国,1978,19365\r\n通往绞刑架的电梯 ,8.3,2581,剧情/惊悚/犯罪/黑色电影,法国,1958,21422.3\r\n一九四一,6.4,2581,喜剧/战争,美国,1979,16518.4\r\n战狼传说,6.5,2580,剧情/动作,香港,1997,16770\r\n鬼牌游戏 ジョーカー・ゲ,5.6,2580,剧情,日本,2015,14448\r\n圣哥传 OAD 聖☆おにいさん OAD 聖☆松田,8.7,2579,剧情/动画,日本,2012,22437.3\r\n思春的森林,6.2,2579,剧情/爱情/情色,西德/意大利,1977,15989.8\r\n未婚女子,5.3,2578,喜剧,美国,2012,13663.4\r\n战争公司,5.9,2577,喜剧/动作/惊悚,美国,2008,15204.3\r\n纽约纽约,5.5,2577,剧情/爱情,中国大陆/香港,2016,14173.5\r\n鬼迷心窍,5.8,2576,剧情/惊悚,美国,2009,14940.8\r\n八两金,8.1,2575,剧情/喜剧/爱情,香港,1989,20857.5\r\n平行宇宙,6.2,2575,动作/科幻,美国,2015,15965\r\n七年很痒,6,2575,喜剧/爱情,香港,2004,15450\r\n儿子,8.1,2574,剧情,韩国,2007,20849.4\r\n怪医杜立德,6.5,2574,喜剧/爱情/家庭,美国,2001,16731\r\n伊恩·斯通之死,5.8,2574,惊悚/恐怖,英国/美国,2007,14929.2\r\n燃眉追击,7.1,2572,剧情/动作/惊悚,美国,1994,18261.2\r\n捉奸侦探,6,2572,剧情/喜剧/惊悚,韩国,2012,15432\r\n我这一辈子,8.6,2571,剧情/历史,中国大陆,1905,22110.6\r\n死亡笔记特别篇2：L的继承者 デスノート リライト,8.1,2571,动画/悬疑/犯罪,日本,2008,20825.1\r\n朝我心脏开枪,7.3,2570,剧情,韩国,2015,18761\r\n美丽的谎言,6.9,2570,剧情,法国,2010,17733\r\n救我,5.9,2570,恐怖,中国大陆,2008,15163\r\n今夕何夕,8.4,2567,喜剧/科幻/动画/短片,美国,2015,21562.8\r\n蜜蜂的秘密生活,7.8,2566,剧情,美国,2008,20014.8\r\n校园风云,7.5,2565,喜剧,美国,1999,19237.5\r\n传说的拳头,6.7,2565,动作,韩国,2013,17185.5\r\n某科学的超电磁炮OVA とある科学の超電磁砲 御坂さんはいま注目の,8.1,2564,剧情/喜剧/动作/科幻/动画,日本,2010,20768.4\r\n杀妻同盟军,5.8,2564,喜剧,美国,2014,14871.2\r\n海明威与盖尔霍恩,6.7,2563,剧情/爱情/传记,美国,2012,17172.1\r\n敦煌,8.3,2562,剧情,中国大陆/日本,1988,21264.6\r\n慕德家一夜,8.4,2561,剧情,法国,1969,21512.4\r\n下班后,8.1,2561,剧情/喜剧/惊悚,美国,1985,20744.1\r\n圣袍千秋,6.7,2561,剧情,美国,1953,17158.7\r\n非亲兄弟,6,2559,喜剧,美国,2008,15354\r\n警花燕子,5.8,2559,剧情,中国大陆,2006,14842.2\r\n笼民 籠,8.7,2558,剧情,香港,1992,22254.6\r\n风流艳妇,6.7,2558,剧情/历史,英国,2015,17138.6\r\n失事,5.6,2556,惊悚,美国/加拿大,2011,14313.6\r\n百货战警,5.4,2555,喜剧/动作,美国,2015,13797\r\n鲸鱼马戏团 W,8.7,2554,剧情/悬疑,匈牙利/意大利/德国/法国,2000,22219.8\r\n艳娃传,7.3,2554,剧情/历史,美国,1978,18644.2\r\n火线追凶之绝命狙击,7.7,2553,剧情/动作,中国,2009,19658.1\r\n利欲两心,6.8,2553,剧情/惊悚/运动,美国,2005,17360.4\r\n死亡幻觉,5.5,2552,科幻/悬疑/惊悚/犯罪,美国,2009,14036\r\n爱的肢解,7.4,2551,悬疑/惊悚/恐怖/犯罪,韩国,1999,18877.4\r\n下一站，天国 ワンダフルライ,8.2,2550,剧情,日本,1998,20910\r\n潜龙轰天,6.8,2550,动作/惊悚,美国,1995,17340\r\n好奇的乔治,7.8,2549,喜剧/动画/家庭/冒险,美国,2006,19882.2\r\n痛击,8.2,2548,动作,印度,2010,20893.6\r\n东京公园 東京公,6.3,2548,剧情/爱情,日本,2011,16052.4\r\n凶兆,6.2,2548,惊悚/恐怖,美国,2006,15797.6\r\n快要坏掉的八音盒 こわれかけのオルゴー,7.9,2547,剧情/动画/短片/家庭,日本,2009,20121.3\r\n圈套剧场版3：灵异者大混战 劇場版TRICK 霊能力,7.5,2547,悬疑,日本,2010,19102.5\r\n怪谈新耳袋：幽灵公寓 怪談新耳袋 劇場版 幽霊マン,6.8,2547,恐怖,日本,2005,17319.6\r\n寻找埃里克,7.5,2546,剧情/喜剧/家庭/奇幻/运动,英国/法国/意大利/比利时/西班牙,2009,19095\r\n永不退缩,7.1,2546,剧情/动作/运动,美国,2008,18076.6\r\n北京，你早,8.1,2545,剧情,中国大陆,1905,20614.5\r\n世界第一初恋：横泽隆史的场合 劇場版 世界一初恋 横澤隆史,8.1,2545,剧情/喜剧/动画,日本,2014,20614.5\r\n我们的交换日记 ボクたちの交換日,7.6,2545,剧情,日本,2013,19342\r\n云下的日子,6.5,2545,剧情/喜剧,中国大陆,2011,16542.5\r\n不要向下看,7.4,2544,剧情/爱情/情色,阿根廷/法国,2008,18825.6\r\n三小强,5.4,2544,喜剧/动画,中国大陆,2014,13737.6\r\n灵虐,5.8,2543,悬疑/惊悚/恐怖,泰国,2008,14749.4\r\n六楼的女人 L,7.8,2542,剧情/喜剧,法国,2011,19827.6\r\n阿尔法城 ,7.7,2542,剧情/爱情/科幻/悬疑/惊悚,法国/意大利,1965,19573.4\r\n西班牙情事,6.7,2542,喜剧,西班牙,2014,17031.4\r\n鬼水怪谈,6.4,2542,剧情/惊悚/恐怖,美国,2005,16268.8\r\n多桑,8.7,2541,剧情,台湾,1905,22106.7\r\n音痴诊所,6.1,2539,喜剧,韩国,2012,15487.9\r\n蝙蝠,5.4,2539,惊悚/恐怖,美国,1999,13710.6\r\n爱因斯坦与爱丁顿,7.7,2537,剧情/传记/历史,英国/美国,2008,19534.9\r\n梵高,7.5,2537,剧情/传记,法国,1991,19027.5\r\n芳心谋杀案,6.8,2537,剧情/爱情/惊悚/犯罪,美国/德国,2006,17251.6\r\n隔壁的801酱 となり,6.5,2537,剧情,日本,2007,16490.5\r\n成为弗林,7,2536,剧情,美国,2012,17752\r\n圣公会主学堂,8.1,2535,喜剧/家庭,英国,2009,20533.5\r\n赌城大亨之新哥传奇 賭城大亨之新哥傳,6.5,2534,剧情,香港,1992,16471\r\n飞机总动员2：火线救,6.7,2533,喜剧/动作/动画,美国,2014,16971.1\r\n双腿生风,8.1,2532,喜剧,法国,2012,20509.2\r\n惊魂眼,6.6,2532,剧情/悬疑/惊悚/犯罪,美国,2000,16711.2\r\n大人物,3.7,2531,喜剧,中国大陆,2011,9364.7\r\n二加二,7.5,2530,剧情/短片,英国,2011,18975\r\n图书馆战争：记忆之书 図書館戦,7.7,2529,剧情/动作/科幻,日本,2015,19473.3\r\n乱步地狱 乱歩地,7.2,2529,恐怖/奇幻,日本,2005,18208.8\r\n情迷V女,7.8,2528,喜剧/爱情,美国,1994,19718.4\r\n浪漫天降,4.1,2528,喜剧/爱情,中国大陆,2015,10364.8\r\n樱时,8.3,2527,剧情/动画/短片/奇幻,台湾,1905,20974.1\r\n大决战！超奥特曼八兄弟 大決戦！超ウルトラ8,7.6,2527,剧情/科幻/家庭/奇幻/冒险,日本,2008,19205.2\r\n大幻影,8.4,2526,剧情/战争,法国,1937,21218.4\r\n天鹅湖 白鳥の,8.8,2525,爱情/动画/奇幻,日本,1905,22220\r\n彷徨之刃,7,2525,剧情/悬疑/惊悚,韩国,2014,17675\r\n隐秘的诱惑,5.8,2525,爱情/犯罪,韩国,2015,14645\r\n英雄好汉 英雄好,6.8,2524,剧情/动作/犯罪,香港,1987,17163.2\r\n爱4狂,6,2524,剧情/喜剧/动作/歌舞,泰国,2008,15144\r\n另一个故乡,8.6,2523,剧情/历史,德国/法国,2013,21697.8\r\n凡尔杜先生,8.7,2522,剧情/喜剧/犯罪,美国,1947,21941.4\r\n我的僵尸女友,5.3,2522,喜剧/恐怖,美国,2014,13366.6\r\n复印店,8.3,2521,剧情/短片,奥地利,2001,20924.3\r\n朦胧的欲望 ,8.3,2521,剧情/喜剧/爱情,法国/西班牙,1977,20924.3\r\n莫迪里阿尼,8,2521,剧情/传记,英国/德国/罗马尼亚/法国/意大利,2005,20168\r\n维多利亚的秘密201,7.8,2520,真人秀,美国,2014,19656\r\n有种,5.7,2520,剧情/爱情,中国大陆,2013,14364\r\n我爱熟女,4,2519,喜剧,美国,2010,10076\r\n淫乱书生,5.9,2518,喜剧/情色,韩国,2006,14856.2\r\n爱我别走,8.1,2517,剧情/爱情,日本,2002,20387.7\r\n克莱尔的膝盖,7.9,2517,剧情/爱情,法国,1970,19884.3\r\n天生一对,7.7,2516,剧情/喜剧/爱情/歌舞,印度,2008,19373.2\r\n情人别为我哭泣,6.5,2516,剧情/喜剧/情色,意大利,2000,16354\r\n小山回家,7.3,2515,剧情,中国大陆,1905,18359.5\r\n摘星梦难圆,7.2,2515,剧情/喜剧,美国,1937,18108\r\n结婚欺诈师 クヒオ大,6.5,2514,喜剧,日本,2009,16341\r\n蔑视 ,7.8,2513,剧情,法国/意大利,1963,19601.4\r\n隔壁的男孩,7.6,2513,剧情/短片/同性,美国,1905,19098.8\r\n心想事成,5.6,2512,喜剧/爱情/奇幻,香港,2007,14067.2\r\n男人们的大和 男たちの大和,7.1,2511,战争,日本,2005,17828.1\r\n侦探：开端,6.7,2511,喜剧/惊悚/犯罪,韩国,2015,16823.7\r\n异域 異,8.4,2510,战争,台湾,1905,21084\r\n小娇妻谋生记,6.8,2508,喜剧,中国大陆,1905,17054.4\r\n绝恋,8,2507,剧情/爱情,英国,1996,20056\r\n头号公敌续集 ,7.6,2507,剧情/动作/惊悚/传记/犯罪,法国/加拿大,2008,19053.2\r\n变身 変,6.1,2507,爱情,日本,2005,15292.7\r\n运财五福星,6.4,2506,剧情/喜剧,香港,1996,16038.4\r\n断线人生,7.6,2505,剧情,印度,2013,19038\r\n随风而逝,8,2504,剧情,伊朗/法国,1999,20032\r\n雪崩王子,7.2,2504,剧情/喜剧,美国,2013,18028.8\r\n囚禁,5.6,2502,惊悚/恐怖/犯罪,美国/俄罗斯,2007,14011.2\r\n精灵鼠小弟,6.8,2501,喜剧/动画/家庭/奇幻,美国,2005,17006.8\r\n最佳损友闯情关,6.5,2500,喜剧,香港,1988,16250\r\n将计就计 至尊卅六計之偷天換,6.8,2499,喜剧/动作/爱情/悬疑/惊悚,香港,1993,16993.2\r\n小猪宝贝2：小猪进,7.9,2498,剧情/喜剧/家庭/奇幻/冒险,澳大利亚,1998,19734.2\r\n请给予,7.2,2498,剧情/喜剧,美国,2010,17985.6\r\n生命的证据,7,2498,剧情/动作/惊悚/冒险,美国,2000,17486\r\n黑骏马,8.7,2497,剧情/爱情/家庭/冒险,美国/英国,1994,21723.9\r\n告别武器,6.3,2497,剧情/爱情/战争,美国,1932,15731.1\r\n野蛮入侵,7.9,2496,剧情/喜剧/爱情/悬疑/犯罪,加拿大/法国,2003,19718.4\r\n目标战,4.4,2496,动作/战争,中国大陆,2013,10982.4\r\n乐园放逐 楽園追,8.3,2495,科幻/动画,日本,2014,20708.5\r\n意外的旅程,7.7,2495,剧情/惊悚,加拿大/英国,2000,19211.5\r\n蜂巢幽灵 ,8.6,2494,剧情,西班牙,1973,21448.4\r\n我的爱我的新娘,6.7,2494,喜剧/爱情,韩国,2014,16709.8\r\n迷失太空,6.8,2493,动作/科幻/惊悚/冒险,美国,1998,16952.4\r\n魂魄唔齐,6.7,2493,喜剧/恐怖/奇幻,香港,2002,16703.1\r\n鬼债,5.3,2493,惊悚,美国,2015,13212.9\r\n围捕,7.8,2491,剧情/动作/历史/战争,法国/德国/匈牙利,2010,19429.8\r\n哭泣宝贝,7.3,2490,喜剧/爱情/歌舞,美国,1990,18177\r\n绿屋,7.1,2490,剧情,法国,1978,17679\r\n上帝创造女人 ,7.1,2489,剧情/爱情,法国/意大利,1956,17671.9\r\n叽哩咕历险记 ,7.9,2488,动画/家庭/冒险,法国/比利时/卢森堡,1998,19655.2\r\n吸血情圣,6.6,2488,爱情/惊悚,英国,1998,16420.8\r\n金色的海螺,8.4,2487,爱情/动画/短片,中国大陆,1963年,20890.8\r\n拉合尔茶馆的陌生人,8,2487,剧情,美国/英国/卡塔尔,2012,19896\r\n朝鲜男人在韩国,6.8,2487,喜剧,韩国,2003,16911.6\r\n亚历克斯·克洛斯,5.7,2486,动作/悬疑/犯罪,美国,2012,14170.2\r\n小花,7.4,2483,剧情/爱情/战争,中国大陆,1905,18374.2\r\n再造战士4：清算之,5.1,2483,动作/科幻/惊悚,美国,2012,12663.3\r\n奇招尽出,7.2,2482,喜剧/爱情,美国/法国/英国,2003,17870.4\r\n歌厅,8.8,2481,剧情/爱情/歌舞,美国,1972,21832.8\r\n其后 それか,8.6,2481,剧情,日本,1985,21336.6\r\n爱上验尸官,7.3,2481,剧情/同性/犯罪,法国,1905,18111.3\r\n早春,7.3,2481,剧情/喜剧/爱情,英国/西德,1970,18111.3\r\n杀回归家路,6.2,2480,喜剧/动作,英国/立陶宛,2014,15376\r\n生活秀,6.9,2479,剧情,中国大陆,2003,17105.1\r\n科里奥兰纳斯,6.9,2478,剧情/惊悚/战争,英国,2012,17098.2\r\n鳗女,4.9,2478,科幻/惊悚/短片,新西兰,1905,12142.2\r\n纽伦堡的审判,9,2477,剧情/历史,美国,1961,22293\r\n玉蝎子的魔咒,7.6,2477,喜剧/悬疑/犯罪,德国/美国,2001,18825.2\r\n旅馆大堂对面,6.5,2477,惊悚,美国,2009,16100.5\r\n山水有相逢,7.7,2476,喜剧,香港,1995,19065.2\r\n火线追凶之死亡地带,7.8,2475,剧情/动作,中国,1905,19305\r\n魔屋,5.7,2475,惊悚/恐怖,美国,1972,14107.5\r\n呼啸山庄,7.2,2474,剧情/爱情,英国/美国,1992,17812.8\r\n我爱夜来香 我愛夜來,7.4,2472,喜剧/动作,香港,1983,18292.8\r\n魔盒,4.9,2471,剧情/科幻/悬疑/惊悚,美国,2009,12107.9\r\n海滩的一天,8.3,2468,剧情/爱情,台湾,1905,20484.4\r\n偷窥狂,7.7,2468,剧情/惊悚/犯罪,英国,1960,19003.6\r\n西部意大利面,8,2467,动画/短片,美国,2009,19736\r\n了不起的偷拍 完美无缺的门房 ステキな隠し撮り 完全無欠のコンシェ,6.5,2467,剧情,日本,2011,16035.5\r\n异常 グロテス,5.8,2467,惊悚/恐怖/犯罪,日本,2009,14308.6\r\n两个坏小子,7.1,2466,喜剧/动作,韩国,2004,17508.6\r\n选角风云,6.6,2466,短片,美国,2015,16275.6\r\n占水师,6.8,2464,剧情/战争,澳大利亚/美国/土耳其,2014,16755.2\r\n拳霸,4.9,2464,动作,泰国,2010,12073.6\r\n原振侠与卫斯理 原振俠与衛斯,6.1,2462,动作/恐怖,香港,1986,15018.2\r\n敏感事件,5.1,2462,惊悚,中国大陆,2011,12556.2\r\n旅行者与魔法师,8.3,2461,剧情/冒险,澳大利亚/不丹,2003,20426.3\r\n人间色相,7.5,2461,喜剧,香港,1905,18457.5\r\n我女友的男朋友,6.4,2461,剧情/喜剧/爱情,韩国,2007,15750.4\r\n美人邦,3.6,2461,喜剧/爱情,中国大陆,2014,8859.6\r\n龙腾四海,6.5,2460,剧情/喜剧/动作/犯罪,香港,1992,15990\r\n何处寻真相,6.8,2459,剧情/悬疑/惊悚,加拿大/英国,2005,16721.2\r\n红胡子 赤ひ,8.5,2458,剧情,日本,1965,20893\r\n暴力小姐,6.7,2458,剧情,希腊,2013,16468.6\r\n天国与地狱 天国と地,8.5,2456,剧情/惊悚/犯罪,日本,1963,20876\r\n丑闻 醜,7.4,2456,剧情,日本,1950,18174.4\r\n进击的巨人OAD：伊尔泽的笔记 進撃の巨人 イルゼの手帳 ―ある調査兵,8.1,2455,剧情/动画/战争/奇幻/冒险/灾难,日本,2013,19885.5\r\n言语的秘密生活,8.2,2454,剧情,西班牙,2005,20122.8\r\n一次邂逅,7.2,2454,剧情/爱情,法国,2014,17668.8\r\n红酒烩鸡,6.8,2454,喜剧/家庭,德国,2013,16687.2\r\n濠江风云 濠江風,6.6,2454,犯罪,香港,1998,16196.4\r\n再见溪谷 さよなら渓,7.1,2453,剧情/爱情/犯罪,日本,2013,17416.3\r\n蓝色大海,6.7,2453,剧情/爱情/同性,日本,2003,16435.1\r\n卡到阴,5.9,2453,悬疑/恐怖,泰国,2006,14472.7\r\n第一次不是你,6.6,2452,剧情/爱情,香港,2013,16183.2\r\n如何抢银行,6.6,2451,喜剧/悬疑/惊悚/犯罪,美国,2007,16176.6\r\n儿子的大玩偶 兒子的大玩,8.1,2450,剧情,台湾,1983,19845\r\n心理学家成海朔的挑战：少女为何必须失忆？ なぜ少女は記憶を失わなければならなかったのか？～心の科学者・成海朔の挑,7.4,2450,剧情,日本,2014,18130\r\n第二阵风,8,2449,动画/短片,美国,1905,19592\r\n美丽坏东西,7.5,2449,剧情/惊悚/犯罪,英国,2002,18367.5\r\n沙漠驼影,7.4,2447,传记,澳大利亚,2013,18107.8\r\n魔鬼女大兵,7.2,2447,剧情/动作,美国,1997,17618.4\r\n六月日记,6.9,2447,剧情/悬疑/惊悚/犯罪,韩国,2005,16884.3\r\n狐狸与猎狗,8.2,2446,动画/冒险,美国,1981,20057.2\r\n至尊无上之永霸天下 至尊無上之永霸天,7.1,2446,剧情/动作/犯罪,香港,1991,17366.6\r\n四千金的情人 ,7,2446,剧情/喜剧/爱情,西班牙/葡萄牙/法国,1992,17122\r\n喧嚣贵族,6,2443,剧情/惊悚,英国,2014,14658\r\n我们拥有夜晚,6.4,2442,剧情/惊悚/犯罪,美国,2007,15628.8\r\n该死的歌德,7.6,2440,喜剧,德国,2013,18544\r\n我知道谁杀了我,5.8,2440,悬疑/惊悚/犯罪,美国,2007,14152\r\n屋顶上的小提琴手,8.5,2439,剧情/歌舞,美国,1971,20731.5\r\n麻烦中的女人,6.5,2439,喜剧,美国,2009,15853.5\r\n有你我不怕,8.3,2438,剧情/悬疑/惊悚/犯罪,意大利/西班牙/英国,2005,20235.4\r\n岳：冰峰救援 岳 ,7.5,2436,剧情,日本,2011,18270\r\n天桥星梦,7.3,2436,剧情/爱情,印度,2008,17782.8\r\n隔壁的男孩,5.1,2436,惊悚,美国,2015,12423.6\r\n阿克巴大帝,7.9,2435,动作/爱情/歌舞/传记/历史/冒险,印度,2008,19236.5\r\n怪谈新耳袋 百物语 怪談新耳袋 ,7.3,2435,惊悚/恐怖,日本,2010,17775.5\r\n布卢明顿,7.1,2433,剧情,美国,2010,17274.3\r\n神秘博士：博士、寡妇和衣橱,8.3,2432,剧情/科幻/悬疑/冒险,英国,2011,20185.6\r\n功夫料理娘,7.6,2432,动作/动画/短片,中国大陆,1905,18483.2\r\n黑眼圈,7.2,2432,剧情/喜剧,台湾/法国/奥地利/中国/马来西亚,2006,17510.4\r\n洞里春光,8,2431,剧情,比利时/德国/卢森堡/英国/法国,2007,19448\r\n好医生,6.8,2431,剧情/惊悚,美国,2011,16530.8\r\n恋爱超男女,6.7,2431,喜剧,泰国,2010,16287.7\r\n千尸屋,6.7,2431,惊悚/恐怖/犯罪,美国/德国,2005,16287.7\r\n马拉松 マラソ,8.6,2429,剧情,日本,2007,20889.4\r\n梦想奔驰,8,2429,剧情/家庭/运动,美国,2005,19432\r\n火箭科学,7.5,2429,剧情/喜剧,美国,2007,18217.5\r\n杨梅洲,7,2429,剧情/爱情/家庭,中国大陆,2012,17003\r\n单车上路,6.7,2429,剧情/爱情,韩国,2008,16274.3\r\n决战猩球,6.4,2429,动作/科幻,美国,1973,15545.6\r\n我在黑社会的日子 我在黑社會的日,6.5,2427,剧情/犯罪,香港,1989,15775.5\r\n大学之旅,6.3,2427,剧情/喜剧/家庭/冒险,美国,2008,15290.1\r\n乌鸦与麻雀,8.5,2425,剧情,中国大陆,1949,20612.5\r\n想做熊的孩子,8.4,2425,剧情/动画,丹麦/法国,2002,20370\r\n终极斗士,6.6,2425,剧情/动作/犯罪/运动,美国/德国,2002,16005\r\n丛林噩梦,5.7,2425,惊悚/恐怖,美国,2006,13822.5\r\n阿婴 阿,7.1,2424,剧情,台湾,1993,17210.4\r\n星期恋人：前篇 セブンデイズ,6,2424,喜剧,日本,2015,14544\r\n功夫兔系列1：少林兔与武当,7.9,2423,动作/动画/短片,中国,1905,19141.7\r\n孽扣,7.7,2423,剧情/爱情/惊悚,加拿大/美国,1988,18657.1\r\n飞天巨桃历险记,7.6,2423,动画/歌舞/家庭/奇幻/冒险,英国/美国,1996,18414.8\r\n隔窗未了缘,7.6,2423,剧情/爱情,意大利/土耳其/葡萄牙/英国,2003,18414.8\r\n法内情,7.4,2423,剧情/惊悚,香港,1988,17930.2\r\n年少轻狂,7.3,2423,剧情/喜剧,美国,1993,17687.9\r\n再见初恋,7,2423,剧情/爱情,法国/德国,2011,16961\r\n老鼠的麻烦,8.7,2422,喜剧/动画/短片/家庭,美国,1944,21071.4\r\n寄生灵,5.9,2422,剧情/惊悚/恐怖,韩国,2011,14289.8\r\n傻冒经理,7.1,2420,剧情,中国大陆,1905,17182\r\n独领风骚,7,2420,喜剧/爱情,美国,1995,16940\r\n复仇在我 復讐するは我にあ,8.3,2419,剧情/犯罪,日本,1979,20077.7\r\n欢乐满人间,8.3,2418,喜剧/歌舞/家庭/奇幻,美国/英国,1964,20069.4\r\n卡蜜儿,7.5,2418,剧情/喜剧/爱情/奇幻/冒险,英国,2007,18135\r\n纪子的餐桌 紀子の食,7.4,2418,剧情/恐怖,日本,2005,17893.2\r\n青山翠谷,8.2,2417,剧情/家庭,美国,1941,19819.4\r\n疯狂躲避球,6.1,2417,喜剧/运动,美国/德国,2004,14743.7\r\n哈拉上路,6.8,2416,喜剧/爱情,美国,2000,16428.8\r\n卡门,7.1,2415,剧情/爱情,西班牙/英国/意大利,2003,17146.5\r\n抢劫,6.4,2415,动作/惊悚/犯罪,美国,2015,15456\r\n绿灯侠：首次飞行,6.6,2414,动作/科幻/动画/冒险,美国,2009,15932.4\r\n一丝偶然,7.5,2412,剧情,阿根廷/西班牙,2011,18090\r\n杀死信使,6.8,2412,剧情/悬疑/犯罪,美国,2014,16401.6\r\n雾港水手,7.3,2411,剧情/同性,法国/西德,1982,17600.3\r\n不扣钮的女孩 不扣鈕的女,6.1,2411,剧情/爱情/情色,香港,1994,14707.1\r\n成为朱莉娅,8.3,2410,剧情/喜剧/爱情,加拿大/匈牙利/英国/美国,2004,20003\r\n蜡笔小新：呼风唤雨！金矛之勇者 クレヨンしんちゃん ちょー嵐を呼ぶ 金矛,6.6,2409,剧情/喜剧/动画/家庭/奇幻/冒险,日本,2008,15899.4\r\n我的小狗斯齐普,8,2408,剧情/家庭/运动,美国,2000,19264\r\n颠倒乾坤,7.5,2408,喜剧,美国,1983,18060\r\n单身男子俱乐部,6.5,2408,喜剧,美国,2003,15652\r\n狂蟒之灾,4.5,2408,动作/惊悚/冒险/灾难,罗马尼亚/美国,2009,10836\r\n天与地,8.2,2406,剧情/动作/传记/历史/战争,法国/美国,1993,19729.2\r\n女教皇,7.5,2406,剧情/爱情/历史,德国/英国/意大利/西班牙,2009,18045\r\n坎特伯雷故事集,7.3,2406,剧情/喜剧/情色/同性,意大利/法国,1972,17563.8\r\n小说,8.1,2405,剧情,中国大陆,1905,19480.5\r\n火线追凶之无罪辩护,7.8,2405,剧情/动作,中国,2009,18759\r\n鬼驱人,5.3,2405,惊悚/恐怖,美国,2015,12746.5\r\n疯草,7.1,2404,剧情/爱情,法国/意大利,2009,17068.4\r\n女同志吸血鬼杀手,4.2,2402,喜剧/动作/恐怖,英国,2009,10088.4\r\n纠结之旅,7,2401,喜剧,美国,2012,16807\r\n秋天里的春光 B,8.8,2399,剧情/喜剧/家庭,捷克,2001,21111.2\r\n爱情逆行,7.6,2398,爱情/短片,英国,2006,18224.8\r\n禁欲4,6.2,2398,剧情/喜剧/爱情,法国/英国/美国,2002,14867.6\r\n男得有爱,5.1,2398,喜剧/爱情,中国大陆,2011,12229.8\r\n探戈,8.2,2397,剧情/歌舞,西班牙/阿根廷,1998,19655.4\r\n事不过三,7.5,2397,剧情/喜剧,英国,2008,17977.5\r\n超异能快感,6.4,2397,喜剧/爱情/奇幻,美国/澳大利亚,1999,15340.8\r\n我是城堡之王,8.2,2396,剧情/惊悚,法国,1989,19647.2\r\n十四位演员的一分钟表演,7.6,2396,短片,美国,2010,18209.6\r\n战神传说,6.3,2395,动作/爱情/冒险,香港,1992,15088.5\r\n枕边有张脸,4,2395,悬疑/惊悚,中国大陆,2013,9580\r\n仁心与冠冕,8.5,2394,喜剧/犯罪,英国,1949,20349\r\n怒海沉尸,8.2,2394,剧情/惊悚/犯罪,法国/意大利,1960,19630.8\r\n人食人实录,6.1,2394,剧情/恐怖/冒险,意大利,1980,14603.4\r\n狐仙丽莎煞煞煞 Li,7.2,2392,喜剧/爱情/奇幻,匈牙利,2015,17222.4\r\n鬼咬鬼,6.8,2392,喜剧/动作/恐怖,香港,1990,16265.6\r\n我一直知道你去年夏天干了什么,5.3,2391,悬疑/惊悚/恐怖,美国,2006,12672.3\r\n卡拉瓦乔,8,2390,剧情/传记/历史,英国,1986,19120\r\n如果的事,6.6,2390,剧情/喜剧/爱情,爱尔兰/加拿大,2013,15774\r\n神盾顾问,7.5,2388,科幻/短片,美国,2011,17910\r\n天师斗僵尸 天師鬥殭,5.3,2385,喜剧/恐怖,香港,2014,12640.5\r\n最后的农场 ,8.7,2384,剧情/短片,冰岛,2004,20740.8\r\n大饭店,8.1,2384,喜剧/动作,法国,1966,19310.4\r\n天安门,6.7,2384,剧情/历史,中国大陆,2009,15972.8\r\n天才嘉年华,8.5,2382,动画,日本,2008,20247\r\n抽屉里的情书 引き出しの中のラブレタ,7.3,2382,剧情,日本,2009,17388.6\r\n请叫我英雄,4.7,2382,喜剧,中国大陆,2012,11195.4\r\n穆谢特,8.5,2379,剧情,法国,1967,20221.5\r\n獾,7.6,2379,喜剧/动画/短片,英国,2005,18080.4\r\n钢铁之泪,6.9,2379,科幻/短片,荷兰Netherlands,2012,16415.1\r\n女老师与女学生,6.5,2379,喜剧,韩国,2004,15463.5\r\n玩酷青春,6.5,2378,剧情/家庭/运动,中国大陆,2010,15457\r\n孤独先生,7.6,2377,剧情/喜剧,英国/法国/爱尔兰/美国,2007,18065.2\r\n惊爆十三天,7.8,2376,剧情/惊悚/历史,美国,2000,18532.8\r\n你是我的命运,7.8,2376,剧情/爱情,韩国,2005,18532.8\r\n对学生会长的忠告OVA1 生徒,7.5,2376,动画/同性,日本,2009,17820\r\n忍者乱太郎 忍たま乱太,6.2,2376,剧情/动作,日本,2011,14731.2\r\n青涩恋爱,7.6,2375,剧情/爱情,韩国,2001,18050\r\n火线追凶之狂魔再现,7.8,2373,剧情/动作,中国大陆,1905,18509.4\r\n阴阳路5：一见发,6.2,2373,恐怖,香港,1999,14712.6\r\n激浪青春,4.2,2373,爱情,中国大陆,2014,9966.6\r\n老爸当家,6.4,2371,喜剧,美国,2015,15174.4\r\n太平间闹鬼事件2：佐治亚鬼屋事,5.7,2371,剧情/惊悚/恐怖,美国,2013,13514.7\r\n五福星撞鬼,6.4,2370,喜剧/动作/鬼怪,香港,1992,15168\r\n好男孩,6.1,2370,喜剧/爱情,美国,2010,14457\r\n矩阵化,8.3,2369,科幻/动画/短片,美国/韩国,2003,19662.7\r\n博士的爱情方程式 博士の愛した数,8.2,2369,剧情/爱情/家庭,日本,2006,19425.8\r\n夺命之爱,6.5,2369,恐怖,澳大利亚,2009,15398.5\r\n射杀钢琴师,7.9,2368,剧情/爱情/惊悚/犯罪,法国,1960,18707.2\r\n刑柱之地,6.6,2368,恐怖,美国,2011,15628.8\r\n失去的周末,7.9,2367,剧情,美国,1945,18699.3\r\n特工008 Непобед,5.7,2367,动作,俄罗斯,2008,13491.9\r\n二楼传来的歌声,8.2,2365,剧情/喜剧,丹麦/挪威/瑞典,2000,19393\r\n灭绝,5.4,2365,剧情/科幻/恐怖,西班牙/美国/匈牙利/法国,2015,12771\r\n啊朋友还钱,5.1,2365,喜剧,中国大陆,2013,12061.5\r\n阿尔及尔之战,8.5,2364,剧情/历史/战争,意大利/阿尔及利亚,1966,20094\r\n迈阿密行动,6.1,2364,喜剧/爱情,法国,2012,14420.4\r\n绝命密码站,5.5,2364,动作/惊悚,英国/美国/比利时,2013,13002\r\n临时保姆,7.3,2363,喜剧,法国,2014,17249.9\r\n间谍,6.2,2363,喜剧,韩国,2013,14650.6\r\n爱很美,3.4,2362,爱情,中国大陆,2013,8030.8\r\n动物农场,8.1,2359,剧情/动画,英国,1954,19107.9\r\n爱奴 愛,6.8,2359,剧情/动作/情色/同性,香港,1972,16041.2\r\n群星会,6.8,2359,剧情/喜剧/奇幻,中国香港,1992年,16041.2\r\n生命的舞动,8.6,2358,剧情/喜剧,英国/爱尔兰/法国,2004,20278.8\r\n动物农场,8.1,2358,剧情/动画,英国,1954,19099.8\r\n小不列颠：现场版,9,2357,喜剧,英国,2006,21213\r\n爱奴,7.9,2356,剧情/爱情/惊悚,英国/西班牙/美国,2003,18612.4\r\n带路狗,7.9,2355,喜剧/动画/短片,美国,2004,18604.5\r\n食人虫,3.1,2355,科幻/惊悚/灾难,中国大陆,2014,7300.5\r\n我和少女，还有猫 グッドカミング トオルとネコ、たま,7.5,2353,爱情/奇幻,日本,2012,17647.5\r\n去见瀑布 滝を見にい,7.2,2352,剧情,日本,2014,16934.4\r\n日本沉没 日本沈,6.6,2352,剧情/科幻/惊悚/灾难,日本,1973,15523.2\r\n蝙蝠侠之子,6.4,2352,动作/动画/冒险,美国,2014,15052.8\r\n车票,6.1,2352,剧情,中国大陆/香港,2008,14347.2\r\n巴德尔和迈因霍夫集团,7.8,2350,剧情/动作/传记/历史/犯罪,德国/法国/捷克共和国,2008,18330\r\n急冻奇侠,6.4,2350,喜剧/动作/爱情/科幻,香港,1989,15040\r\n2012,3.6,2350,科幻/灾难,美国,2011,8460\r\nST 红白的搜查档案 ST 赤と白,6.9,2348,惊悚,日本,2015,16201.2\r\n幽灵人间II:鬼,6.3,2347,悬疑/恐怖,香港,2002,14786.1\r\n拂晓之街 夜明けの街,5.6,2346,剧情/犯罪,日本,2011,13137.6\r\n万能鉴定士Q：蒙娜丽莎之瞳 万能鑑定士Q モナ,6,2345,剧情/悬疑,日本,2014,14070\r\n关公大战外星人 戰,6.6,2344,科幻/奇幻,台湾,1976,15470.4\r\n激情,6.2,2343,剧情/悬疑/犯罪,德国/法国,2013,14526.6\r\n阿曼动画之超级无敌掌门狗系列,8.8,2342,喜剧/动画,英国,1995,20609.6\r\n三百斯巴达勇士,7.7,2342,剧情/历史/战争/冒险,美国,1962,18033.4\r\n加油站袭击事件,6.7,2342,动作,韩国,2010,15691.4\r\n战队长悠哉游哉的一天 わりとヒマな戦隊長の一,8,2341,剧情/动画,日本,2006,18728\r\n住货车的女士,7.6,2341,剧情/喜剧/传记,英国,2015,17791.6\r\n斗地主,4.7,2341,喜剧,中国大陆,2015,11002.7\r\n艾斯卡达的三次葬礼,7.8,2339,剧情/悬疑/犯罪/西部/冒险,美国/法国,2005,18244.2\r\n高跟鞋,6.5,2339,剧情/动作,韩国,2014,15203.5\r\n惊魂记 驚魂,7.4,2338,惊悚,香港,1989,17301.2\r\n麻雀之歌,8.7,2337,剧情,伊朗,2008,20331.9\r\n孤筏重洋,7.1,2337,剧情/动作/传记/历史/冒险,英国/挪威/丹麦,2012,16592.7\r\n男歌女唱,7.1,2337,喜剧,香港,2001,16592.7\r\n移民,6.6,2337,剧情/爱情,美国/法国,2013,15424.2\r\n龙子太郎 龍の子太,8.7,2336,动画/奇幻/冒险,日本,1979,20323.2\r\n第一次,6.7,2336,剧情/喜剧/爱情,美国,2012,15651.2\r\n严密监视的列车 ,8.2,2335,剧情/喜剧/战争,捷克斯洛伐克,1966,19147\r\n甜蜜电影 Сладкий Фил,7.3,2335,剧情/喜剧/情色,加拿大/法国/西德,1974,17045.5\r\n燃烧弹,6.4,2335,剧情/爱情/惊悚,英国,2008,14944\r\n冰菓OA,8.3,2332,剧情/动画,日本,2013,19355.6\r\n男孩遇见女孩,7.6,2332,剧情/爱情/同性,美国,2014,17723.2\r\n无形杀,6,2332,犯罪,中国,2009,13992\r\n婚姻生活,8.8,2331,剧情/爱情,瑞典,1973,20512.8\r\n小猫钓鱼,7.6,2331,动画/短片,中国大陆,1905,17715.6\r\n死神剧场版BLEACH 地狱,6.2,2331,动作/动画,日本,2010,14452.2\r\n高中学生会长暗杀事件,6.2,2330,喜剧/悬疑/犯罪,美国,2009,14446\r\n音恋 おと・,7.7,2329,剧情,日本,2009,17933.3\r\n桃色追捕令,6.6,2329,剧情/悬疑/惊悚/犯罪,美国,1997,15371.4\r\n功夫兔系列之2：兔子哪里,8.1,2328,喜剧/动画/短片,中国,1905,18856.8\r\n交通阻塞,7.7,2328,剧情/喜剧/短片,比利时,2002,17925.6\r\n百年情书,6.6,2326,传记,中国大陆,2011,15351.6\r\n朝鲜美女三剑客,4.7,2326,动作/古装,韩国,2014,10932.2\r\n乌鸦之日,7.4,2325,动画,法国,2012,17205\r\n交响情人梦OAD のだめカン,8.7,2324,剧情/喜剧/动画,日本,2009,20218.8\r\n爱丽丝城市漫游记,8.6,2324,剧情,西德,1974,19986.4\r\n最后的独角兽,8.3,2324,动画/奇幻,美国/英国/日本/西德,1982,19289.2\r\n女友礼拜五,8,2323,剧情/喜剧/爱情,美国,1940,18584\r\n鬼新娘,6.6,2323,剧情/喜剧/惊悚/恐怖,香港,1987,15331.8\r\n出狱一团糟,6.1,2322,喜剧/家庭/犯罪,美国,2010,14164.2\r\n苦路十四站,7.8,2321,剧情,德国,2014,18103.8\r\n蒙面达虎,6.7,2321,喜剧,韩国,2007,15550.7\r\n攻壳机动队：崛起1 攻殻機,7.3,2320,科幻/动画/犯罪,日本,2013,16936\r\n插画情缘,6.8,2319,剧情/喜剧/爱情,美国,2007,15769.2\r\n毛骨悚然撞鬼经 2011夏季特别篇 ほんとにあった怖い,6.2,2319,恐怖,日本,2011,14377.8\r\n服从,6.5,2318,剧情/惊悚,美国,2012,15067\r\n半夜不要照镜子,3.5,2317,悬疑/惊悚,中国大陆,2012,8109.5\r\n整蛊王 整蠱,6.2,2315,喜剧,香港,1995,14353\r\n南洋十大邪术 南洋十大邪,6.2,2314,剧情/恐怖/情色,香港,1995,14346.8\r\n魔女宅急便 真人版 魔女の宅,5.7,2313,剧情/奇幻,日本,2014,13184.1\r\n丑小鸭和小老鼠,7.2,2311,喜剧/动画,法国/德国/爱尔兰/英国/丹麦,2006,16639.2\r\n木更津猫眼 世界系列 木更津キャッツアイ ワールドシ,8.9,2309,剧情/喜剧,日本,2006,20550.1\r\n错了性别，不错爱,3.9,2309,爱情/同性,中国大陆,2016,9005.1\r\n试验 Испытани,8.2,2306,剧情/爱情,俄罗斯,2014,18909.2\r\n假期,8.3,2305,剧情/喜剧,韩国,2006,19131.5\r\n脱衣舞娘,6.1,2304,喜剧/惊悚/犯罪,美国,1996,14054.4\r\n破碎之家,7.5,2303,剧情/爱情/家庭,比利时/荷兰,2012,17272.5\r\n触摸恶魔,7.4,2303,短片/犯罪,美国,2011,17042.2\r\n欧洲人,6.9,2303,剧情/爱情,英国,1979,15890.7\r\n小夜游,6.5,2303,动画/短片,中国大陆,2014,14969.5\r\n神通乡巴佬,3.9,2303,剧情/喜剧/爱情,中国大陆,2012,8981.7\r\n最后一次心动,8.1,2302,剧情/爱情,德国,2004,18646.2\r\n关于上海的三个短片,7.3,2302,剧情/短片,中国大陆,2014,16804.6\r\n浮云世事,8.3,2301,剧情/喜剧,芬兰,1996,19098.3\r\n杀手安全套,7.2,2301,喜剧/爱情/恐怖/同性,德国/瑞士,1996,16567.2\r\n飞越长生,7.6,2300,喜剧,美国,1992,17480\r\n神奇手机,6.2,2300,喜剧/悬疑/奇幻,法国,2007,14260\r\n开国大典,7,2299,剧情/历史,中国大陆,1905,16093\r\n边城浪子 邊城浪,6.6,2299,剧情/动作/悬疑,香港,1993,15173.4\r\n龙在哪里？,5.6,2299,喜剧/动画,中国大陆/香港,2015,12874.4\r\n大宅男 大宅,4,2297,喜剧/爱情,台湾/中国大陆/香港,2014,9188\r\n跑吧孩子,8.3,2296,剧情/家庭,新加坡,2003,19056.8\r\n水之语 水のコト,8,2295,科幻/动画/短片,日本,2002,18360\r\n遗失物 オトシモ,5.8,2295,恐怖,日本,2006,13311\r\n夜半歌声,7.5,2294,爱情/恐怖,中国大陆,1905,17205\r\n罗尔娜的沉默,7.5,2293,剧情,法国/比利时/意大利/德国,2008,17197.5\r\n真相,7.5,2293,剧情/传记,美国,2015,17197.5\r\n洛杉矶大逃亡,6.4,2293,动作/科幻/惊悚/冒险,美国,1996,14675.2\r\n决战豪门,6.2,2293,惊悚/冒险,法国/比利时,2008,14216.6\r\n鸳梦重温,8.6,2292,剧情/爱情,美国,1942,19711.2\r\n绿鱼,7.6,2292,剧情,韩国,1997,17419.2\r\n意乱情迷,7.3,2288,剧情/爱情/同性,加拿大,2001,16702.4\r\n合法入侵,6.1,2288,剧情/惊悚/犯罪,美国,2008,13956.8\r\n劳拉现身,5.2,2288,剧情/喜剧/爱情/同性,美国,2009,11897.6\r\n夜店诡谈,3.3,2288,惊悚,中国大陆,2012,7550.4\r\n流浪者,8.3,2287,剧情/爱情/歌舞,印度,1954,18982.1\r\n傻瓜入狱记,8,2287,喜剧/犯罪,美国,1969,18296\r\n上海滩 上海,9.1,2286,剧情,香港,1983,20802.6\r\n蝴蝶的舌头,8.9,2286,剧情/战争,西班牙,1999,20345.4\r\n雨中的请求,8.6,2286,剧情/爱情,印度,2010,19659.6\r\n银幕黑塔利亚 銀幕ヘタリ,7.4,2284,剧情/动画,日本,2010,16901.6\r\n提防老千,5.9,2284,悬疑/犯罪,香港,2006,13475.6\r\n肮脏的哈里,7.5,2283,动作/惊悚/犯罪,美国,1971,17122.5\r\n魔翡翠,6,2283,喜剧/动作,香港,1986,13698\r\n四次,8.1,2282,剧情,意大利/德国/瑞士,2010,18484.2\r\n山之外,7.8,2282,剧情,罗马尼亚/法国/比利时,2012,17799.6\r\n火线追凶之黑枪疑云,7.7,2282,剧情/动作/悬疑,中国,2009,17571.4\r\n最爱 最,7.7,2282,剧情/爱情,香港,1986,17571.4\r\n小混乱,6.4,2282,剧情/喜剧/爱情,英国,2014,14604.8\r\n终极匹配,3.7,2282,爱情,中国大陆,2010,8443.4\r\n爱在阳光下 愛在陽光,8.2,2281,短片/歌舞,香港,1905,18704.2\r\n杀了我三次,6.3,2281,惊悚,美国/澳大利亚,2014,14370.3\r\n蜡笔小新 呼风唤雨！战国大合战 映画クレヨンしんちゃん 嵐を呼ぶ アッパレ！戦,8.5,2280,动画,日本,2002,19380\r\n风尘三侠,7.1,2280,喜剧,香港,1993,16188\r\n钢琴木马,5.3,2280,剧情/爱情/悬疑,中国大陆/台湾,2013,12084\r\n燃情迈阿密,7,2278,剧情/喜剧/爱情/同性,印度/美国,2008,15946\r\n不良男女,6.3,2278,喜剧,韩国,2010,14351.4\r\n荒岛惊魂,5.9,2278,剧情/惊悚/恐怖/冒险,美国/英国/卢森堡,2006,13440.2\r\n凶线,7.7,2277,剧情/悬疑/惊悚/犯罪,美国,1981,17532.9\r\n纯情,7.1,2277,剧情/爱情,韩国,2016,16166.7\r\n请点赞,6.7,2277,喜剧/爱情,韩国,2016,15255.9\r\nIRI,5.5,2277,剧情/犯罪,韩国,2010,12523.5\r\n外壳,5.7,2276,剧情/惊悚/恐怖,美国,2011,12973.2\r\n医生,4.3,2276,惊悚,韩国,2012,9786.8\r\n爸爸去出差,8.6,2275,剧情,南斯拉夫,1985,19565\r\n五个暴走的少年 シュアリー・サム,7.3,2274,剧情/喜剧,日本,2010,16600.2\r\n神勇双响炮,6.9,2273,喜剧/动作,香港,1984,15683.7\r\n一不留神,5.1,2273,喜剧,中国大陆,2010,11592.3\r\n新妈妈再爱我一次,4.3,2273,剧情/爱情/家庭,中国大陆,2012,9773.9\r\n人间蒸发,2.8,2273,悬疑/惊悚,中国大陆/香港,2013,6364.4\r\n不良少女莫妮卡,7.9,2272,剧情/爱情,瑞典,1953,17948.8\r\n曼德拉,6.9,2272,剧情/传记,英国/南非,2014,15676.8\r\n姿三四郎,7.5,2271,剧情/动作/冒险,日本,1943,17032.5\r\n拳神,5.1,2271,动作/科幻,香港,2001,11582.1\r\n短信一月追,4.8,2271,爱情,中国大陆,2005,10900.8\r\n侠骨仁心,6.7,2270,剧情/爱情,香港,2001,15209\r\n恐怖列车,5.3,2270,惊悚/恐怖,美国,2008,12031\r\n我们的家族 ぼくたちの家,7.6,2269,剧情,日本,2014,17244.4\r\n东尼泷谷 トニー滝,7.8,2267,剧情,日本,2005,17682.6\r\n消失在远空中 遠くの空に消え,7.7,2267,剧情,日本,2007,17455.9\r\n刑事,7,2266,动作/悬疑,韩国,2005,15862\r\n再一次初恋,6.9,2266,剧情/喜剧/奇幻,法国,2012,15635.4\r\n醉饿游戏,4.8,2266,喜剧,美国,2014,10876.8\r\n灵欲春宵,7.9,2265,剧情,美国,1966,17893.5\r\n干柴烈火,7.2,2265,剧情/情色/同性,法国,2000,16308\r\n75,4.7,2265,惊悚/恐怖,日本/美国,2014,10645.5\r\n黑手党只在夏天杀人,7.4,2264,喜剧/爱情/犯罪,意大利,2013,16753.6\r\n行者,6.4,2264,短片,中国大陆,2012,14489.6\r\n秘密,6.6,2262,惊悚,韩国,2009,14929.2\r\n宫女,5.9,2262,剧情/悬疑/惊悚,韩国,2007,13345.8\r\n丰胸秘,5.3,2262,喜剧,香港,2002,11988.6\r\n天桥不见了 天橋不見,7.5,2261,剧情/喜剧/短片,法国/台湾,2002,16957.5\r\n站直啰，别趴下,7.4,2261,喜剧,中国大陆,1993,16731.4\r\n热情似火,6.8,2261,喜剧,韩国,2008,15374.8\r\n三月女郎,5.7,2261,喜剧,美国,2009,12887.7\r\n黑侠,4.9,2261,剧情/动作/科幻,香港/美国,2002,11078.9\r\n地下拳击场,5.9,2260,剧情/动作/运动,美国,2009,13334\r\n为爱毁灭,7.9,2259,剧情/爱情/惊悚/歌舞,印度,2006,17846.1\r\n俄狄浦斯王,7.8,2259,剧情,意大利/Morocco,1967,17620.2\r\n天地无限,7.8,2257,剧情/爱情/西部,美国,2003,17604.6\r\n再造战士：重生,5.2,2257,剧情/动作/科幻/惊悚,美国,2009,11736.4\r\n疯女胡安娜,7.7,2256,剧情/爱情/传记/历史,西班牙/意大利/葡萄牙,2001,17371.2\r\n咒怨2 录像带版 呪怨2 ビデオオ,7.5,2256,恐怖,日本,2000,16920\r\n大庆典,6.4,2256,喜剧,韩国,2010,14438.4\r\n断头气,6.4,2256,喜剧/惊悚/恐怖,英国/德国,2006,14438.4\r\n最后的贵族,7.4,2255,剧情/历史,中国大陆,1905,16687\r\n圣诞精灵,6.8,2255,喜剧/家庭/奇幻,美国/德国,2003,15334\r\n大兵保镖,5.9,2255,喜剧,美国,2008,13304.5\r\n最后的骑士,5.6,2255,动作/冒险,韩国/捷克,2015,12628\r\n给野兽献花,5,2254,剧情/爱情,中国大陆,2012,11270\r\n完全没问题 全然大丈,7.7,2253,喜剧,日本,2008,17348.1\r\n肥皂,7.3,2253,剧情/喜剧,瑞典/丹麦,2006,16446.9\r\n婚姻生活,7.1,2252,剧情/爱情/家庭/犯罪,美国/加拿大,2008,15989.2\r\n驱魔道长,6.7,2252,喜剧/动作/恐怖,香港,1905,15088.4\r\n神秘博士：博士之时,8.5,2251,科幻,英国,2013,19133.5\r\n六宅一生 ララピ,6.8,2249,喜剧,日本,2009,15293.2\r\n鬼婆,8.1,2247,剧情/恐怖,日本,1964,18200.7\r\n五美元过一天,7.2,2246,剧情/喜剧,美国,2008,16171.2\r\n蛛丝马迹,6.7,2246,悬疑/惊悚/犯罪,德国/美国/加拿大,2001,15048.2\r\n男子高中生的日常 真人版 男子高校生の,5.8,2246,喜剧,日本,2013,13026.8\r\n小孩与鹰,8.5,2245,剧情,英国,1970,19082.5\r\n为你灿烂,8.3,2245,动画/短片/奇幻,英国,1905,18633.5\r\n德伯维尔家的苔丝,8.3,2245,剧情/爱情/犯罪,英国,1998,18633.5\r\n圣徒指南,7.3,2245,剧情/犯罪,美国,2006,16388.5\r\n速度与激情之A2,6.5,2245,喜剧/动作,德国/卢森堡,2004,14592.5\r\n极速漂移,6,2245,动作/惊悚/运动,德国,2008,13470\r\n丧家之女,5.5,2245,剧情/惊悚/恐怖,美国/英国,2015,12347.5\r\n如影随形,4.7,2245,剧情/惊悚/恐怖,美国,2008,10551.5\r\n雇佣兵,4.2,2245,动作/冒险,英国,2012,9429\r\n怒海救援,7.1,2244,剧情/动作/惊悚,美国,2016,15932.4\r\n火线追凶之惊魂宴,7.6,2243,剧情/喜剧,中国大陆,1905,17046.8\r\n僵尸至尊,6.8,2243,喜剧/动作/恐怖,香港,1991,15252.4\r\n我与长指甲,7.8,2242,剧情/喜剧,英国,1987,17487.6\r\n小孤星,8.2,2241,剧情/喜剧,法国,1996,18376.2\r\n诡婴吉咪 詭,3.7,2241,惊悚,中国大陆,2013,8291.7\r\n晚安妈咪,6.3,2240,剧情/恐怖,奥地利,2014,14112\r\n模特魅影,2.9,2240,剧情/悬疑/惊悚,中国大陆,2013,6496\r\n直到我们可以,8.6,2239,短片/同性,美国,2014,19255.4\r\n圣诞快乐 聖誕快,7.7,2239,喜剧,香港,1984,17240.3\r\n逃离猩球,7.4,2239,科幻/惊悚,美国,1971,16568.6\r\n杰莎贝尔,5.6,2239,惊悚/恐怖,美国,2014,12538.4\r\n狮口惊魂,5.5,2239,惊悚/恐怖,美国/南非,2007,12314.5\r\n男儿当入樽,5.3,2237,剧情/喜剧,香港,1994,11856.1\r\n格瑞的困扰,7.1,2236,喜剧/爱情,美国,2006,15875.6\r\n无籍者,5.6,2236,剧情/动作,韩国,2010,12521.6\r\n爱情我你他,8.2,2235,剧情/喜剧,美国/英国,2005,18327\r\n舞妓班 舞,7.2,2234,喜剧,日本,2007,16084.8\r\n午夜凶梦,3.5,2233,悬疑/惊悚/恐怖,中国大陆,2011,7815.5\r\n咫尺天涯,7.9,2232,短片,英国,1905,17632.8\r\n潜水艇,7.8,2232,剧情,丹麦/瑞典,2010,17409.6\r\n艾玛,7.7,2232,喜剧/爱情,英国,1996,17186.4\r\nDouble Face 潜入搜查篇,7.2,2231,悬疑/惊悚/犯罪,日本,2012,16063.2\r\n廷巴克图,7,2231,剧情,法国/毛里塔尼亚,2014,15617\r\n失陷猩球,6.4,2231,动作/科幻,美国,1970,14278.4\r\n一夜情未了,6.1,2231,喜剧/爱情,美国,2014,13609.1\r\n航运新闻,7.4,2230,剧情/爱情,美国,2001,16502\r\n死亡航班,5.2,2230,动作/恐怖,美国,2007,11596\r\n鬼马双星 鬼馬雙,7.3,2229,喜剧,香港,1974,16271.7\r\n神探夏洛克：最后的誓言,9,2228,剧情/悬疑/犯罪,英国,2014,20052\r\n诱僧 誘,6.8,2228,情色/古装,香港,1993,15150.4\r\n遇见比尔,6.3,2228,剧情/喜剧,美国,2007,14036.4\r\n飞出个未来大电影3：班德的游,7.9,2227,喜剧/动作/科幻/动画/奇幻/冒险,美国,2008,17593.3\r\n杀手蝴蝶梦,6.7,2227,爱情/惊悚,香港,1989,14920.9\r\n喷火女郎,6.2,2227,喜剧/动作,香港,1992,13807.4\r\n伏：铁炮娘的捕物帐 伏 鉄砲娘の捕,7.5,2226,剧情/动画,日本,2012,16695\r\n夜惊魂,3.8,2226,恐怖,中国大陆,2011,8458.8\r\n怪尸案,7.3,2225,喜剧/悬疑,美国,1955,16242.5\r\n残虐你，娱乐我,5.6,2225,惊悚/恐怖,美国,2009,12460\r\n飞狗巴迪,8.2,2224,喜剧/运动,美国/加拿大,1997,18236.8\r\n赤裸裸,7.9,2224,剧情,英国,1993,17569.6\r\n寂寞钢琴师,7.7,2224,剧情/传记,意大利,2007,17124.8\r\n一年级生,8.1,2223,剧情/传记,英国/美国/肯尼亚,2011,18006.3\r\n延坪海战,6.5,2223,剧情/战争,韩国,2015,14449.5\r\n撒旦探戈 Sá,8.9,2222,剧情/悬疑,匈牙利/德国/瑞士,1994,19775.8\r\n鹰爪铁布衫,7.2,2222,动作/武侠/古装,香港,1977,15998.4\r\n神鬼愿望,6.8,2221,喜剧/爱情/奇幻,美国/德国,2000,15102.8\r\n黑夜勿怕,5.5,2221,惊悚/恐怖,美国/澳大利亚,2011,12215.5\r\n真相大白,8.1,2220,剧情/喜剧,美国,2005,17982\r\n火星需要妈妈,6.4,2220,动画/家庭,美国,2011,14208\r\n驴子巴特萨,8.4,2219,剧情/犯罪,法国/瑞典,1966,18639.6\r\n婚前特急,6,2219,喜剧,日本,2011,13314\r\n周恩来,8.1,2218,剧情/传记,中国大陆,1992,17965.8\r\n甜蜜十六岁,7.8,2218,剧情/犯罪,德国/西班牙/英国,2002,17300.4\r\n奥黛丽·赫本的故事,6.7,2218,剧情/传记,美国,2001,14860.6\r\n台风,6.6,2218,剧情/动作/惊悚/冒险,韩国,2005,14638.8\r\n梦十夜 ユメ十,7.3,2217,奇幻,日本,2006,16184.1\r\n愿望树 願望,6.9,2217,剧情/喜剧/爱情,香港,2001,15297.3\r\n猛鬼屋,6.5,2217,悬疑/惊悚/恐怖,美国,1999,14410.5\r\n抢钱袋鼠,6.2,2217,喜剧/犯罪/冒险,美国/澳大利亚,2003,13745.4\r\n对不起，我爱你,3.8,2217,爱情,中国大陆/加拿大,2014,8424.6\r\n连理枝,6.4,2215,剧情/喜剧/爱情,韩国,2006,14176\r\n血战到底,5.6,2215,喜剧,中国,2006,12404\r\n黑猫警长电影版,5.5,2215,剧情/动画,中国大陆,2010,12182.5\r\n超级少女,6.5,2214,动作/科幻/冒险,英国/美国,1984,14391\r\n救世神棍,6.5,2214,剧情/喜剧,香港,1995,14391\r\n看球记,6.3,2214,短片/家庭,中国大陆,2011,13948.2\r\n我行我素,7.7,2213,剧情/喜剧/爱情/同性,意大利,2010,17040.1\r\n地中海厨娘 ,7.1,2213,喜剧,西班牙,2009,15712.3\r\n欺诈计划 at Ho,7,2213,剧情,日本,2015,15491\r\n朱门巧妇,8.3,2209,剧情,美国,1958,18334.7\r\n出棋制胜,7,2209,剧情/传记,美国,2014,15463\r\n缄默的迷宫,7.6,2208,剧情,德国,2014,16780.8\r\n心灵之境,7.5,2208,爱情/短片,香港,2012,16560\r\n飞跃情海 飛躍情,6.8,2208,剧情/同性,台湾,2004,15014.4\r\n甜蜜皮鞭 甘い,5.8,2208,悬疑/惊悚/情色,日本,2013,12806.4\r\n师奶兵团,6.6,2207,剧情,香港,2007,14566.2\r\n亚马逊萌猴奇遇记,7.6,2206,冒险,法国/巴西,2015,16765.6\r\n刀客外传,3.4,2205,喜剧,中国大陆,2010,7497\r\n极道鲜师：3年D组毕业特别篇 ごくせん卒業スペシャル&#39;09 ,6.8,2204,剧情/喜剧,日本,2009,14987.2\r\n三脚猫部队,6.1,2204,喜剧/动作/冒险,美国,2007,13444.4\r\n胖嘟嘟的革命,5.8,2204,喜剧/爱情,韩国/日本,2012,12783.2\r\n跳跃大搜查线：湾岸署史上最恶的3日间 踊る大捜,8.1,2202,喜剧/动作/犯罪,日本,1998,17836.2\r\n暗金丑岛君2 闇金ウシジマ,7.8,2202,剧情/喜剧/犯罪,日本,2014,17175.6\r\n寻找幸福的赫克托,6.9,2201,剧情/喜剧/冒险,德国/加拿大/英国/南非,2014,15186.9\r\n超人集中营,5.5,2201,动作/科幻/家庭/冒险,美国,2006,12105.5\r\n名人百态,7.4,2200,剧情/喜剧,美国,1998,16280\r\n巨乳娘战僵尸 巨乳ドラゴン 温泉ゾンビ VS ,4,2200,动作/恐怖,日本,1905,8800\r\n银妆刀,5.6,2199,喜剧/爱情,韩国,2003,12314.4\r\n我的军中情人,7.4,2198,爱情/同性,以色列Israel,2012,16265.2\r\n阿德曼动画精选：超级无敌掌门狗,8.9,2197,喜剧/动画,英国,1996,19553.3\r\n无人守护 誰も守ってくれな,7.4,2197,剧情,日本,2008,16257.8\r\n疯狂的导演,3.2,2197,喜剧,中国大陆,2013,7030.4\r\n至尊无赖 至尊無,5.4,2196,喜剧/动作,香港,2006,11858.4\r\n温蒂和露茜,7.4,2195,剧情,美国,2008,16243\r\n梅丽莎,6.6,2195,剧情,意大利/西班牙,2005,14487\r\n日本恐怖童话六部曲 拇指姑娘 コワイ童話 親,7.3,2194,恐怖,日本,1999,16016.2\r\n逆转胜 逆轉,6.9,2194,剧情/喜剧,台湾,2015,15138.6\r\n铁路劳工,6.4,2194,剧情,英国/澳大利亚,2013,14041.6\r\n美丽上海,7.5,2193,剧情/家庭,中国大陆,2004,16447.5\r\n精彩的一天,7.4,2193,剧情/爱情,韩国,2008,16228.2\r\n北京小妞,7.3,2193,家庭/奇幻,中国大陆,1905,16008.9\r\n白象,5.1,2192,动作/惊悚,美国,2011,11179.2\r\n爱上凯斯,7.5,2191,剧情/爱情,美国,2008,16432.5\r\n麻雀变王妃,5.8,2191,喜剧/爱情,美国,2006,12707.8\r\n双人床条约,5.3,2191,喜剧/爱情,中国大陆,2011,11612.3\r\n浪漫小夜曲,9.3,2190,喜剧/动画/短片,美国,1946,20367\r\n黑巷少女,8.2,2190,剧情/悬疑/惊悚/恐怖,加拿大/法国/美国,1976,17958\r\n不良教育,5.8,2190,喜剧,英国,2015,12702\r\n武士的家用帐 武士の家計,7.6,2189,剧情,日本,2010,16636.4\r\n笑拳怪招,6.4,2189,喜剧/动作,香港/韩国,1979,14009.6\r\n夜之女王,6.1,2189,喜剧/爱情,韩国,2013,13352.9\r\n火线追凶之突然死亡,7.7,2188,剧情/动作,中国大陆,1905,16847.6\r\n龙之心,6.8,2187,剧情/动作/奇幻/冒险,美国,1996,14871.6\r\n菜鸟总动员：毕业 R,8.4,2186,剧情/动作,日本,2009,18362.4\r\n美人鱼 Русалк,8.2,2186,动画/短片/奇幻,俄罗斯,1905,17925.2\r\n鼹鼠,8,2186,西部/奇幻/冒险,墨西哥,1971,17488\r\n地狱归来,6.6,2186,喜剧/动画/冒险,美国,2015,14427.6\r\n阿帕鲁萨镇,7,2184,剧情/动作/犯罪/西部,美国,2008,15288\r\n三陪保姆,5.6,2184,剧情,美国,2007,12230.4\r\n浮士德 Фаус,6.7,2183,剧情,俄罗斯,2011,14626.1\r\n漫画风云 漫畫風,5.6,2183,爱情,香港,2001,12224.8\r\n最卑贱的人,8.7,2182,剧情,德国,1924,18983.4\r\n卡洛尔的旅程,8,2182,剧情/家庭,西班牙,2002,17456\r\n应召女友,5.4,2182,剧情,美国,2009,11782.8\r\n奇诺之旅：疾病之国 -For You- ,7.9,2181,动画,日本,2007,17229.9\r\n无名的恋歌 BALLAD ,6.3,2180,剧情/动作/爱情,日本,2009,13734\r\n恶人报喜 惡人,4.8,2180,喜剧,香港/中国大陆,2016,10464\r\n鹰与鲨鱼,7.7,2179,喜剧/爱情,新西兰,2007,16778.3\r\n迪兹先生,6.6,2179,喜剧/爱情,美国,2002,14381.4\r\n勇敢爱之末日来电,6,2179,剧情/爱情,香港,2012,13074\r\n鬼讯号2白,6.4,2178,剧情/惊悚/恐怖/奇幻,美国/加拿大,2007,13939.2\r\n钢铁侠：噬甲危机,5.8,2178,动作/科幻/动画,日本,2013,12632.4\r\n代号美洲豹,5.1,2178,剧情/惊悚,中国大陆,1989,11107.8\r\n仙女 ,6.9,2177,喜剧/爱情/奇幻,法国/比利时,2011,15021.3\r\n七次机会,8.8,2176,喜剧/爱情/家庭,美国,1925,19148.8\r\n犯罪少年,6.9,2176,剧情/家庭,韩国,2012,15014.4\r\n太空堡垒卡拉狄加：血与铬,6.4,2176,动作/科幻,美国,2012,13926.4\r\n虫师 续章 荆棘之路 蟲師 続章,9.1,2175,剧情/动画/奇幻/冒险,日本,2014,19792.5\r\n死人的鞋子,7.1,2174,剧情/惊悚/犯罪,英国,2004,15435.4\r\n查泰莱夫人的情人,6.5,2174,剧情/爱情/情色,法国/英国/西德,1981,14131\r\n无可救药爱上你,7.6,2173,剧情/爱情/悬疑,美国/英国,2002,16514.8\r\n校园规则,8.3,2172,剧情/运动,瑞典/丹麦,2003,18027.6\r\n不在他处，正是此地 どこかではないこ,7.8,2172,动画/短片,日本,2013,16941.6\r\n乌鸦为什么是黑的,7.9,2171,剧情/喜剧/动画/短片,中国大陆,1905,17150.9\r\n午夜凶铃2(,6,2171,悬疑/恐怖,美国,2005,13026\r\n女王的教室特别篇 后篇～恶魔降临,8.7,2170,剧情,日本,2006,18879\r\n流浪的迪潘,7.2,2170,剧情/犯罪,法国,2015,15624\r\n地狱无门 地獄無,7.5,2169,喜剧/动作/惊悚/恐怖/奇幻/冒险/武侠,香港,1980,16267.5\r\n鬼雾,5.5,2169,动作/悬疑/惊悚/恐怖,美国/法国,2005,11929.5\r\n极道鲜师2 同窗会SP ごく,7.9,2168,剧情/喜剧,日本,2005,17127.2\r\n天皇,6.4,2168,剧情/历史/战争,美国/日本,2013,13875.2\r\n我出生了，但…… 大人の見る絵本 生れてはみたけ,9,2167,剧情/喜剧,日本,1932,19503\r\n丈夫、太太与情人,8.2,2167,剧情/爱情,美国,1992,17769.4\r\n主顾,7.4,2167,剧情/爱情,法国,2008,16035.8\r\n猛鬼街,6.8,2167,惊悚/恐怖/奇幻,美国,1987,14735.6\r\n高校新人 高校デビュ,5.8,2167,喜剧,日本,2011,12568.6\r\n蜡笔小新 呼风唤雨黄金的间谍大作战 クレヨンしんちゃん 嵐を呼ぶ黄金のスパイ,7.1,2166,动画,日本,2011,15378.6\r\n女子监狱,7,2166,剧情,香港,1988,15162\r\n重生,6.6,2166,剧情/悬念,美国/德国,2004,14295.6\r\n设计,8.3,2165,动画/短片,捷克斯洛伐克,1905,17969.5\r\n蒲公英的灰尘,8,2165,剧情/家庭,美国,2010,17320\r\n奇门遁甲 奇門遁,7.5,2165,喜剧/动作/恐怖/奇幻,香港,1982,16237.5\r\n购物车,7,2165,剧情,韩国,2014,15155\r\n完美情人,5.9,2165,喜剧/爱情/奇幻,香港,2001,12773.5\r\n少年魔法师电影版,6,2164,喜剧/科幻/家庭/儿童/奇幻/冒险,USA,2009,12984\r\n蝎子王3：救赎之,3.9,2164,动作/惊悚/奇幻,泰国,2012,8439.6\r\n新年头老日子,7.5,2163,剧情/短片/家庭,中国大陆,2013,16222.5\r\n适合分手的季节,7.4,2162,剧情,土耳其/法国,2006,15998.8\r\n圈套2014特别篇 トリック 新,7.3,2162,剧情/悬疑,日本,2014,15782.6\r\n心灵访客,8,2160,剧情,美国,2000,17280\r\n孟买日记,7.9,2160,剧情,印度,2011,17064\r\n比巧克力还甜,6.9,2159,剧情/喜剧/爱情/同性,加拿大,1999,14897.1\r\n银饰,5.9,2159,剧情,中国大陆,2005,12738.1\r\n最后的编织,7.9,2158,动画/短片,芬兰,2005,17048.2\r\n浪漫刺客,5.9,2158,喜剧/动作/爱情/奇幻,韩国,2003,12732.2\r\n性和死亡,6.2,2157,剧情/喜剧/爱情,美国,2007,13373.4\r\n明日的记忆 明日の記,8.1,2156,剧情,日本,2006,17463.6\r\n灰姑娘的故事,6.1,2156,喜剧/爱情/家庭,美国,2011,13151.6\r\n如果,8.1,2152,剧情,英国,1968,17431.2\r\n孤恋花 孤戀,7.5,2152,剧情/爱情/同性,台湾,2005,16140\r\n棕兔,6.8,2152,剧情,日本/美国/法国,2003,14633.6\r\n龙威2 龍咁威2之皇母,6.1,2150,剧情/喜剧/动作/爱情,香港,2005,13115\r\n卡贾基,7.4,2149,战争/冒险,英国,2014,15902.6\r\n末日浩劫 L,5.5,2148,科幻/惊悚/冒险/灾难,西班牙/法国,2014,11814\r\n万福玛丽亚,7.9,2147,剧情/惊悚/犯罪,哥伦比亚/美国/厄瓜多尔,2006,16961.3\r\n非秀不可,3.9,2147,剧情/爱情,中国大陆,2013,8373.3\r\n黄河大侠,7.3,2145,剧情/动作/武侠/古装,中国大陆,1988,15658.5\r\n赌城大亨II之至尊无敌 賭城大亨II,6.4,2145,剧情,香港,1992,13728\r\n七擒七纵七色狼 七擒七縱七色,3.9,2145,剧情/喜剧,香港,2007,8365.5\r\n星期恋人：后篇 セブンデイズ,6.1,2144,喜剧,日本,2015,13078.4\r\n金钱本色,7.3,2143,剧情/运动,美国,1986,15643.9\r\n蜡笔小新之布里布里王国的秘密宝藏 クレヨンしんちゃん ブリブリ王国の,7.7,2142,动画,日本,1994,16493.4\r\n森林王子,7.7,2141,动画/歌舞/家庭/冒险,美国,1967,16485.7\r\n致命武器,7,2141,喜剧/动作/惊悚/犯罪,美国,1989,14987\r\n王牌播音员,6,2141,喜剧,美国,2013,12846\r\n卖身契 賣身,7.7,2140,喜剧,香港,1978,16478\r\n丰山犬,6.9,2140,剧情,韩国,2011,14766\r\n大贏家,5.6,2140,喜剧,香港,1905,11984\r\n绝境逢生,7.2,2139,喜剧/战争,中国大陆,1905,15400.8\r\n车神,7,2139,动作/运动,法国,2004,14973\r\n赛尔号大电影5：雷神崛,3.5,2139,剧情/动画/儿童/冒险,中国大陆,2015,7486.5\r\n于洛先生的假期,8.1,2137,喜剧,法国,1953,17309.7\r\n星际宝贝史迪奇,8.1,2136,喜剧/动画/家庭,美国,2003,17301.6\r\n寻访千利休 利休にたずね,7.8,2136,剧情/古装,日本,2013,16660.8\r\n犬神家族 犬神家の一,6.8,2136,剧情/悬疑/惊悚,日本,2006,14524.8\r\n少数意见,7,2135,剧情,韩国,2015,14945\r\n五星物语 ファイブスター物,8.4,2134,动作/爱情/科幻/动画/奇幻,日本,1989,17925.6\r\n庆州,7.2,2134,剧情,韩国,2014,15364.8\r\n香气,5.1,2134,爱情,中国大陆,2014,10883.4\r\n极乐同盟,8.5,2133,喜剧/动画,捷克/瑞士/英国,1996,18130.5\r\n好家伙,6.7,2133,剧情/喜剧/爱情,美国,2008,14291.1\r\n租期,6.6,2133,剧情,中国,2006,14077.8\r\n重庆美女,3.5,2133,剧情/喜剧,中国大陆,2009,7465.5\r\n煤气灯下,8.1,2132,剧情/悬疑/惊悚/犯罪/黑色电影,美国,1944,17269.2\r\n一个烂赌的传说,8,2132,剧情,香港,2001,17056\r\n狂凶记,7.7,2132,惊悚/犯罪,英国,1972,16416.4\r\n一头抑郁的鲸鱼,7,2131,喜剧/动画/短片,美国,1905,14917\r\n呼吸,6.8,2131,剧情,法国,2014,14490.8\r\n王牌售车员,5.8,2131,喜剧,美国,2009,12359.8\r\n茶泡饭之味 お茶漬の,8.2,2130,剧情/家庭,日本,1952,17466\r\n被爱的人 ,7.3,2130,剧情/爱情/歌舞,法国,2011,15549\r\n青春爱人事件,6.5,2130,剧情,中国,2005,13845\r\n终极标靶,6.5,2130,动作/惊悚,美国,1993,13845\r\n线人,5.2,2130,剧情/惊悚/犯罪,美国/德国,2009,11076\r\n糖衣陷阱,7.1,2128,剧情/惊悚,美国,1993,15108.8\r\n玉蒲团之官人我要 玉蒲團之官人我,6,2128,爱情/情色/古装,香港,1998,12768\r\n四根羽毛,7.5,2127,剧情/战争/冒险,美国/英国,2002,15952.5\r\n少女杀手阿墨2 あ,6.3,2127,动作,日本,2005,13400.1\r\n像暴风雨般的恋爱 それは、突然、嵐のように,6.8,2126,爱情,日本,2004,14456.8\r\n双峰镇：与火同行,7.5,2125,剧情/悬疑/惊悚/恐怖,法国/美国,1992,15937.5\r\n义胆群英 義膽群,6.8,2125,动作,香港,1989,14450\r\n一个人和他的猪,6,2125,爱情/恐怖,比利时,1975,12750\r\n龙种,8.5,2124,剧情/历史/战争,美国,1944,18054\r\n钢索危情OVA1 タイトロープ 幼なじみは極道,7.1,2124,动画,日本,2012,15080.4\r\n啤酒谋杀案,8.5,2123,爱情/悬疑/犯罪,英国,2003,18045.5\r\n影子部队 ,8.5,2123,剧情/战争,法国/意大利,1969,18045.5\r\n哗！英雄 嘩！英,5.9,2123,喜剧/动作,香港,1992,12525.7\r\n可疑的顾客们,7.5,2122,喜剧,韩国,2011,15915\r\n阿呆闯学堂,6.2,2122,喜剧/爱情,美国,1995,13156.4\r\n家宴,8.2,2121,剧情,丹麦/瑞典,1998,17392.2\r\n网络上身,6.8,2121,剧情/动作/惊悚/犯罪,美国,1995,14422.8\r\n怪哉,7.8,2120,动画/短片,中国大陆,2009,16536\r\n马背上的法庭,7.6,2120,剧情,中国大陆,2006,16112\r\n自古英雄出少年,7.4,2120,动作/武侠/古装,香港/中国大陆,1905,15688\r\n埃洛伊塞,7.3,2119,剧情,西班牙,2009,15468.7\r\n人肉叉烧包Ⅱ天诛地灭 人肉叉燒包II天,5.8,2119,惊悚/情色,香港,1998,12290.2\r\n草莓松饼 ストロベリーショートケイク,7.3,2118,剧情,日本,2006,15461.4\r\n撕裂记忆体,6.1,2118,剧情/惊悚,美国,2008,12919.8\r\n雪季过客,8.3,2117,剧情/爱情,英国/加拿大,2006,17571.1\r\n意外制造公司,7.1,2117,剧情/爱情,荷兰/比利时/德国/爱尔兰,2015,15030.7\r\n擦枪走火,4.5,2116,喜剧/爱情,中国大陆,2015,9522\r\n夏天,7.5,2114,剧情,英国/德国,2008,15855\r\n奇异恐惧,6.7,2113,喜剧,英国,2012,14157.1\r\n魔法总动员,6.6,2113,喜剧/动画/冒险,比利时,2015,13945.8\r\n风烛泪,8.5,2112,剧情,意大利,1952,17952\r\n雏菊 ,8.2,2112,剧情/喜剧,捷克斯洛伐克,1966,17318.4\r\n向着阴天绽放 陰日向に咲,7.4,2112,喜剧,日本,2008,15628.8\r\n别闯阴阳界,6.4,2112,剧情/科幻/惊悚,美国,1990,13516.8\r\n元卓的天使,7.2,2111,喜剧,韩国,2006,15199.2\r\n007外传之巡,6.8,2111,动作/惊悚/冒险,英国/美国/西德,1983,14354.8\r\n行骗天下,6.8,2111,惊悚/犯罪,加拿大/德国/美国,2003,14354.8\r\n尸体解剖,5.7,2111,悬疑/惊悚/恐怖,美国,2008,12032.7\r\n恶魔,5.7,2110,惊悚/恐怖,美国/英国,2015,12027\r\n冬追夏赶,8,2109,动画/短片,法国,2013,16872\r\n年度推销员,7.1,2109,剧情/喜剧,印度,1905,14973.9\r\n翼：春雷记 ツバサ 春,8.4,2108,剧情/动作/动画/冒险,日本,2009,17707.2\r\n阿基尔，上帝的愤怒,8.1,2108,剧情/传记/历史/冒险,西德,1972,17074.8\r\n萨冈,7.5,2108,传记,法国,2008,15810\r\n橙子与阳光,7.6,2107,剧情,英国/澳大利亚,2011,16013.2\r\n蛐蛐,8.5,2106,动画/短片,中国大陆,1905,17901\r\n全能囧爸,7.5,2106,喜剧,中国大陆,2015,15795\r\n悲伤的贝拉多娜 哀しみのベラドン,8.6,2105,剧情/动画/奇幻,日本,1973,18103\r\n突然有一天之黑暗森林,5.8,2105,恐怖,韩国,2006,12209\r\n那是什么？,8.5,2104,剧情/短片,希腊,2007,17884\r\n左拉传,7.9,2103,剧情/传记,美国,1937,16613.7\r\n分秒间离,6.6,2103,惊悚,美国,2011,13879.8\r\n苏镇巫女,6.7,2102,剧情/喜剧/恐怖,西班牙,2013,14083.4\r\n爱上百分百英雄 愛上百份百英,6.3,2102,喜剧/动作,香港,1997,13242.6\r\n割草叔叔,8.7,2101,剧情,英国,1997,18278.7\r\n无尽的爱,5.9,2101,剧情/爱情,美国,2014,12395.9\r\n泰特罗,7.6,2100,剧情/悬疑,美国/意大利/西班牙/阿根廷,2009,15960\r\n大明星从军记,6,2099,喜剧,美国,2008,12594\r\n战·无双 戰•,3.8,2099,剧情/动作,香港/中国,2009,7976.2\r\n图书馆战争：革命之翼 図書館戦争 革命のつ,8.1,2098,剧情/爱情/动画,日本,2012,16993.8\r\n冒名顶替,6.8,2098,剧情/动作/科幻/惊悚,美国,2001,14266.4\r\n我之前的五位女友,6.5,2098,喜剧,英国,1905,13637\r\n下一个就是你,5.1,2098,恐怖,美国,2006,10699.8\r\n夫妻成长日记电影版 映画版 ふたりエ,4.4,2098,喜剧/爱情,日本,2011,9231.2\r\n波尔多的欲望天堂,7.7,2097,剧情/传记/战争,西班牙/意大利,1999,16146.9\r\n夏天的滋味 M,7.7,2097,剧情,越南/法国/德国,2000,16146.9\r\n周末情人,6.8,2097,剧情,中国大陆,1905,14259.6\r\n鬼女魔咒 コワイ,6.5,2097,悬疑/惊悚/恐怖,日本,2006,13630.5\r\n驴子潘趣,5.5,2097,剧情/惊悚,英国,2008,11533.5\r\n哥本哈根,7.4,2096,剧情/爱情/冒险,加拿大/美国/丹麦,2014,15510.4\r\n脆弱 ,6.4,2095,惊悚/恐怖,西班牙/英国,2005,13408\r\n心理测量者 剧场版 PSYCHO,8,2093,剧情/动画/悬疑/惊悚/犯罪/冒险,日本,2015,16744\r\n小孤儿,9,2092,喜剧/动画/短片/家庭,美国,1949,18828\r\n去见小洋葱的母亲 ペコロスの母に会いに行,7.7,2092,剧情/喜剧/家庭,日本,2013,16108.4\r\n中转,8.1,2090,剧情/动画/悬疑/短片,英国/荷兰,1905,16929\r\n文学少女 剧场版 劇場版“文学少,7.1,2090,喜剧/动画,日本,2010,14839\r\n离奇剧院,6.3,2090,恐怖,美国/法国,2011,13167\r\n蔡李佛拳,3.3,2090,动作,中国大陆/香港,2011,6897\r\n希尔维亚,7.4,2088,剧情/爱情/传记,英国,2003,15451.2\r\n哆啦A梦：大雄的平行西游记 ドラえもん のび太のパラレル,7.5,2087,科幻/动画/冒险,日本,1988,15652.5\r\n占卜师们,5.6,2087,喜剧/恐怖,韩国,2012,11687.2\r\n伊甸园之东,8.4,2085,剧情,美国,1955,17514\r\n十二月男孩,6.5,2085,剧情/爱情,澳大利亚,2007,13552.5\r\n气象女孩,6.3,2085,喜剧,美国,2009,13135.5\r\n我要当警察,5.8,2085,剧情/喜剧/犯罪,美国,2009,12093\r\n基佬大厨,7.6,2083,喜剧/爱情/同性/家庭,西班牙,2008,15830.8\r\n毒吻,6.8,2083,剧情/科幻/恐怖,中国大陆,1905,14164.4\r\n野芦苇,7.7,2082,剧情/同性,法国,1994,16031.4\r\n尸忆 屍,6.6,2082,惊悚/恐怖,台湾/日本,2015,13741.2\r\n无野之城 無野の,6.5,2082,剧情/运动,香港,2008,13533\r\n婚礼上的玛戈特,6.4,2081,剧情/喜剧,美国,2007,13318.4\r\n食客2：泡菜战,6.1,2081,喜剧,韩国,2010,12694.1\r\n农民宇航员,7.6,2080,剧情/冒险,美国,2007,15808\r\n恋爱求证,7,2080,爱情/同性,美国,1905,14560\r\n事先张扬的身后事件,8.1,2079,剧情/喜剧/爱情,美国/意大利,1997,16839.9\r\n逐爱天堂,6.7,2079,剧情/爱情,法国/英国/比利时,2007,13929.3\r\n绝命盗窃,5.8,2079,动作/惊悚,南非/美国,2015,12058.2\r\n大无畏,7.8,2078,剧情/短片,中国大陆,1905,16208.4\r\n二十五个孩子一个爹,6.7,2078,剧情/喜剧,中国大陆,2003,13922.6\r\n跳跃大搜查线2：封锁彩虹桥 踊る大捜査線 THE MOVIE 2 ,7.8,2076,喜剧/动作/犯罪,日本,2003,16192.8\r\n河豚,5.6,2076,剧情/爱情,台湾,2011,11625.6\r\n烈血天空,6.7,2075,剧情/动作/惊悚/犯罪,美国,1905,13902.5\r\n不良少妇,5.8,2075,喜剧/爱情,韩国,2008,12035\r\n祝生日,7.1,2074,剧情/动画/短片/战争,澳大利亚,2004,14725.4\r\n欢乐谷,8,2073,剧情/喜剧/奇幻,美国,1998,16584\r\n娼,7.1,2073,剧情/情色,韩国,1997,14718.3\r\n涩谷24小时 バ,7.2,2072,剧情,日本,1997,14918.4\r\n折磨,6.6,2072,悬疑/惊悚/恐怖,加拿大/美国,2013,13675.2\r\n坏中尉,7.1,2070,剧情/犯罪,美国,1992,14697\r\n性爱禁区,6.3,2070,剧情/情色,英国/美国,2006,13041\r\n海底两万里,7.7,2069,爱情/科幻/冒险,美国,1997,15931.3\r\n甜心大话王,7.7,2069,剧情/喜剧/爱情,英国/美国,2002,15931.3\r\n神秘失踪,6.9,2069,剧情/悬疑/惊悚/犯罪,荷兰/法国,1988,14276.1\r\n恐怖兔子 ラビット・ホ,5.1,2068,恐怖,日本,2011,10546.8\r\n公共场所,6.7,2067,短片,中国大陆,2001,13848.9\r\n东京暴族,5.7,2067,喜剧/动作/歌舞,日本,2014,11781.9\r\n公元,5.4,2067,动作/惊悚,香港/新加坡,2000,11161.8\r\n心碎往事,8.1,2066,剧情/喜剧,美国,2004,16734.6\r\n国家保安,6.5,2066,喜剧/动作/惊悚/犯罪,美国,2003,13429\r\n玩尽杀绝,6,2066,惊悚,美国,2004,12396\r\n练就下一个辉煌,9.1,2065,短片,美国,1905,18791.5\r\n哆啦A梦：大雄的太阳王传说 ドラえもん のび太の太陽,8,2065,科幻/动画/冒险,日本,2000,16520\r\n高山下的花环,8,2065,剧情/历史/战争,中国大陆,1985,16520\r\n留住有情人,7.9,2065,剧情/爱情,美国,1991,16313.5\r\n酒徒,6.8,2065,剧情,香港,2011,14042\r\n刺客战场,7.1,2063,动作/惊悚/犯罪,美国/法国,1995,14647.3\r\n何必有我,7.8,2062,剧情,香港,1985,16083.6\r\n魔鬼雷普利,7.1,2062,剧情/悬疑/惊悚/犯罪,意大利/英国/美国,2002,14640.2\r\n春香传,6.7,2062,剧情/爱情/歌舞,韩国,2000,13815.4\r\n热血之路 ホットロー,5.7,2062,剧情,日本,2014,11753.4\r\n心中的恶魔,5.7,2061,惊悚/恐怖,美国,2012,11747.7\r\n黄金时代,8.2,2060,剧情/爱情/战争,美国,1946,16892\r\n树,7.4,2060,剧情,法国/澳大利亚,2010,15244\r\n一诺千金,8.3,2059,剧情,比利时/法国/卢森堡,1996,17089.7\r\n弯曲吧！汤匙 曲がれ!スプ,7,2059,喜剧,日本,2009,14413\r\n芳香之城传奇,4.1,2059,爱情/奇幻,中国大陆,2011,8441.9\r\n茄子：安达卢西亚之夏 茄子 アンダルシア,8.4,2058,动画/冒险,日本,2003,17287.2\r\n送子成婚,7.6,2057,喜剧/同性,美国,2010,15633.2\r\n一个美国人在巴黎,7.2,2057,爱情/歌舞,美国,1951,14810.4\r\n海阔天空,8.6,2056,剧情,美国,1992,17681.6\r\n黑板 第1夜 ブラックボー,7.8,2055,剧情,日本,2012,16029\r\n苏姗娜的故事 ,7.5,2055,爱情,法国,1905,15412.5\r\n怀胎九月,6.5,2055,喜剧/爱情/家庭,美国,1995,13357.5\r\n呆呆精灵,6.3,2055,喜剧/动画/恐怖/奇幻/冒险,德国,2006,12946.5\r\n青涩恋爱,8,2054,爱情/短片/同性,阿根廷,2008,16432\r\n猜·情·寻,7.2,2054,剧情/喜剧/爱情,美国,1997,14788.8\r\n新世界,6.7,2054,剧情/爱情/传记/历史,美国/英国,2005,13761.8\r\n富江,5.7,2054,恐怖,日本,2005,11707.8\r\n赌侠马华力,7.4,2053,喜剧/西部/冒险,美国,1994,15192.2\r\n黎明的沙耶 トワイライト ささら,6.8,2053,剧情,日本,2014,13960.4\r\n领航员,8.5,2052,科幻/家庭/冒险,美国/挪威,1986,17442\r\n嘿店,3.3,2052,喜剧/惊悚,中国大陆,2011,6771.6\r\n恋恋山城,8.3,2051,剧情,法国/瑞士/意大利,1986,17023.3\r\n机动战士高达 THE ORIGIN I 青瞳的卡斯巴尔 機動,8.8,2050,剧情/动画,日本,2015,18040\r\n机器人变奏世界,7.8,2049,动画/短片,法国,1905,15982.2\r\n手塚治虫的佛陀：美丽的红色沙漠 手塚治虫のブッダ 赤い砂漠よ！美,6.7,2049,动画,日本,2011,13728.3\r\n囧人之越挠越痒,3.8,2049,剧情/喜剧,中国大陆,2013,7786.2\r\n伦巴,8.4,2047,喜剧,法国/比利时,2008,17194.8\r\n犬神家族 犬神家の一,7.5,2047,悬疑/犯罪,日本,2004,15352.5\r\n佣兵传奇,7.3,2047,剧情/惊悚/传记/历史/战争/冒险,西班牙,2006,14943.1\r\n感官新世界 SADA〜戯作,6.6,2046,剧情/传记,日本,1998,13503.6\r\n他人之颜 他人の,8.3,2045,剧情/科幻,日本,1966,16973.5\r\n欢乐糖果屋,7.8,2045,歌舞/家庭/奇幻,美国,1971,15951\r\n泡沫人生 ,7,2045,剧情/爱情/奇幻,法国,2013,14315\r\n新木马屠城记,6.8,2045,剧情/动作/冒险,美国,2003,13906\r\n人间失格 剧场版 人間失格 ディレクターズカ,8.6,2043,剧情,日本,2009,17569.8\r\n甜蜜幼儿园2,7.2,2043,喜剧/爱情,德国,2009,14709.6\r\n使者 ツナ,7.7,2042,剧情,日本,2012,15723.4\r\n幻影计划,6.4,2042,惊悚,美国,2013,13068.8\r\n后备空姐,2.9,2042,喜剧,中国大陆/马来西亚,2014,5921.8\r\n瑞奇,6.6,2041,剧情/喜剧/奇幻,法国/意大利,2009,13470.6\r\n头师父一体,6.7,2039,喜剧/动作,韩国,2006,13661.3\r\n阳光警察 陽光警,6.3,2038,剧情/动作/惊悚/犯罪,香港,1999,12839.4\r\n弗兰肯斯坦的军队 ,5.7,2038,动作/恐怖,荷兰/美国/捷克,2013,11616.6\r\n囧探佳人,4.2,2038,喜剧/惊悚,中国大陆,2011,8559.6\r\n奇异小子,7.5,2036,剧情,美国,1997,15270\r\n欲望和智慧,6.8,2033,剧情/爱情/历史/犯罪,英国/印度/美国/德国/日本,1996,13824.4\r\n太空堡垒卡拉狄加：利刃,7.6,2032,剧情/动作/科幻/惊悚,美国,2007,15443.2\r\n布鲁克林最愤怒的人,6.9,2032,剧情/喜剧,美国,2014,14020.8\r\n贝城歹徒,6.7,2032,喜剧/动作/犯罪,美国,2012,13614.4\r\n诺斯费拉图：夜晚的幽灵,7.8,2031,恐怖/奇幻,法国/西德,1979,15841.8\r\n超人与蝙蝠侠：启示录,6.5,2031,动画,美国,2010,13201.5\r\n攻壳机动队SAC 2nd GIG：,9.2,2030,动画,日本,2006,18676\r\n剧场版魔法少女小圆 前篇 起始的故事 劇場版 魔法少女まどか☆マギカ [前編,8.7,2030,动画,日本,2012,17661\r\n东京爱情故事特别篇 東京ラブストーリー 継続します！愛情のストーリの,8,2027,剧情/爱情,日本,1993,16216\r\n恶女帮,7,2027,剧情,美国,1996,14189\r\n吸血鬼学院,4.9,2027,爱情/恐怖/奇幻,美国,2014,9932.3\r\n一眼瞬间，再见爱 瞬 また,5.6,2025,爱情,日本,2010,11340\r\n勇敢骑士兔八哥,8.5,2024,喜剧/动画/短片/家庭/奇幻,美国,1958,17204\r\n小铃铛,8.2,2024,喜剧/儿童,中国大陆,1905,16596.8\r\n蝙蝠侠：血脉恩仇,6.8,2024,动作/科幻/动画/犯罪,美国,2016,13763.2\r\n我的狼人男友,7.3,2023,动画/短片/同性,美国,2015,14767.9\r\n鬼作秀,7.3,2023,喜剧/恐怖,美国,1982,14767.9\r\n柠檬可乐 檸檬可,7.1,2023,剧情/喜剧/爱情/歌舞,香港,1982,14363.3\r\n夏日之恋,7,2023,剧情/爱情/惊悚/同性,英国,2004,14161\r\n情不自禁爱上你,6.6,2022,剧情/喜剧/爱情,美国,2007,13345.2\r\n闪灵战士,6.5,2022,动作/恐怖,英国/卢森堡/美国,2002,13143\r\n聚会的目的,4.9,2022,剧情/情色,韩国,2015,9907.8\r\n一刀倾城 一刀傾,7.6,2021,动作/爱情/武侠/古装,中国大陆/香港,1993,15359.6\r\n放声大笑,6.3,2021,剧情/喜剧/爱情,美国,2012,12732.3\r\n卫斯理传奇 衛斯理傳,6.6,2020,动作/科幻/冒险,香港/西德,1987,13332\r\n爱丽丝的镜子 愛麗絲的鏡,5.9,2020,爱情,台湾,2005,11918\r\n打工老板,7.8,2019,剧情,中国大陆,2014,15748.2\r\n邪,7.3,2019,恐怖/奇幻,香港,1980,14738.7\r\n长牙,5.4,2018,剧情/喜剧/恐怖,美国,2014,10897.2\r\n盲女惊魂记,7.9,2017,剧情/惊悚/犯罪,美国,1967,15934.3\r\n你，我和他 ,7.3,2017,剧情/短片/同性,巴西,2007,14724.1\r\n美丽的约定,7.1,2017,剧情,法国,2006,14320.7\r\n山中传奇 山中傳,8.2,2016,动作/恐怖/奇幻/古装,香港,1979,16531.2\r\n香蕉,7.7,2016,喜剧,美国,1971,15523.2\r\n祝福,7.6,2015,剧情,中国大陆,1905,15314\r\n颠覆性学校 ,6.5,2015,剧情/同性,法国,2004,13097.5\r\n今天我休息,7.5,2013,剧情/喜剧,中国大陆,1905,15097.5\r\n幸福的黄色电影,7.3,2013,剧情/喜剧/情色,西班牙/丹麦,2003,14694.9\r\n落跑老爸,6.6,2013,喜剧/动作/惊悚,韩国,2013,13285.8\r\n该死的胖子,7.1,2012,剧情/短片,中国大陆,2011,14285.2\r\n再造战士,6.6,2012,剧情/动作/科幻,美国,1992,13279.2\r\n贼博士,7.7,2011,喜剧/惊悚/犯罪,英国,1955,15484.7\r\n匆匆十年,3.4,2011,家庭,中国大陆,2014,6837.4\r\n浑身是胆,6.8,2010,动作,香港,1998,13668\r\n惹鬼回路,5.8,2010,科幻/悬疑/惊悚/恐怖/奇幻,美国,2006,11658\r\n丛林赤子心,9.2,2009,剧情/冒险,美国,1987,18482.8\r\n与男孩同车,8.3,2009,剧情/喜剧/传记,美国,2001,16674.7\r\n公寓,8,2009,动画/短片/歌舞,法国,2005,16072\r\n神童,8,2009,剧情,德国,2011,16072\r\n变蝇人,7.4,2009,科幻/悬疑/恐怖,美国,1958,14866.6\r\n夏洛的网,8.2,2008,动画/歌舞/家庭,美国,1973,16465.6\r\n两个穿运动服的人 ジャージの二,7.6,2008,喜剧,日本,2008,15260.8\r\n数码宝贝大电影：我们的战争游戏 デジモンアドベンチャー ぼくらのウォーゲ,8.8,2006,科幻/动画/冒险,日本,2000,17652.8\r\n逃狱,7.4,2006,剧情/惊悚/犯罪,英国/爱尔兰,2008,14844.4\r\n戴维克罗的恋爱和魔法 MIRACLEデビク,6.1,2006,爱情,日本,2014,12236.6\r\n花旗小和尚,6,2006,动作,美国/香港,1992,12036\r\n荆棘,6.5,2005,剧情/惊悚,韩国,2014,13032.5\r\n赌侠之人定胜天 賭俠之人定勝,5.7,2005,喜剧,香港,2003,11428.5\r\n草莓棉花糖 OVA 3卷,9.1,2004,动画/短片,日本,2007,18236.4\r\n战争与和平 Война и ,8.8,2004,剧情/爱情/历史/战争,苏联,1966,17635.2\r\n只是爱的问题,7.8,2003,剧情/爱情/同性/家庭,法国,2000,15623.4\r\n爱之涡 愛の,6.5,2003,爱情/情色,日本,2014,13019.5\r\n妈妈的朋友,5,2003,剧情/喜剧/情色,韩国,2015,10015\r\n小鬼魔鞋,6.9,2002,喜剧/家庭/奇幻/运动,美国,2002,13813.8\r\n百战天虫,5,2002,喜剧/动作,美国,2010,10010\r\n东京合唱 東京の合,7.9,2001,剧情/喜剧,日本,1931,15807.9\r\n芭比之十二个跳舞的公主,7.6,2001,动画/家庭,美国,2006,15207.6\r\n家族荣誉3：家门的复,6.5,2001,剧情/喜剧/犯罪,韩国,2006,13006.5\r\n短暂的生命,6.2,2001,剧情/惊悚,香港,2009,12406.2\r\n少女怪谈,5.4,2001,恐怖,韩国,2014,10805.4\r\n外遇的好日子,6.2,1999,喜剧/爱情,韩国,2007,12393.8\r\n天鹅湖,9.4,1998,舞台艺术,英国,1998,18781.2\r\n惊变 驚,6.6,1998,剧情/爱情/犯罪,香港,1905,13186.8\r\n军情五处：利益之争,6,1998,剧情/动作/惊悚,英国,2015,11988\r\n劈腿困境,5.8,1998,剧情/喜剧,美国,2011,11588.4\r\n香颂鬼屋,5.8,1998,恐怖,泰国,2007,11588.4\r\n性事电影,5.8,1998,喜剧,美国,2009,11588.4\r\n连升三级,8.5,1996,动画,中国大陆,1905,16966\r\n桃花源记,8.2,1996,动画/短片,中国大陆,1905,16367.2\r\n坏小子巴比,8.1,1996,剧情/犯罪,澳大利亚/意大利,1993,16167.6\r\n衣食住行,8.1,1996,喜剧/动画/短片/家庭,英国,1989,16167.6\r\n耻,7.3,1996,剧情,澳大利亚/南非,2008,14570.8\r\n威龙猛探 威龍猛,6.1,1996,剧情/动作/犯罪,香港/美国,1985,12175.6\r\n偷吻 ,7.9,1995,剧情/喜剧/爱情,法国,1968,15760.5\r\n我人生中最美的一周,7.5,1995,剧情,韩国,2005,14962.5\r\n阿特拉斯耸耸肩,7.2,1995,剧情/科幻/悬疑,美国,2011,14364\r\n罐头里的精灵 ,8.1,1994,动画/短片,瑞士,2006,16151.4\r\n抢钱夫妻,8,1994,喜剧,香港,1993,15952\r\n三女休夫,5.7,1994,剧情/喜剧/古装,中国大陆,1994,11365.8\r\n替身 アナザ,4.8,1994,悬疑,日本,2012,9571.2\r\n天庭外传,5.3,1993,喜剧/动作/奇幻/武侠/古装,香港,1905,10562.9\r\n卷毛头,8.4,1992,爱情/歌舞/家庭,美国,1935,16732.8\r\n音响生命体 音響生命体ノイズマ,7.8,1992,动画/短片,日本,1997,15537.6\r\n杰克与豆茎,7.3,1992,剧情/奇幻/冒险,美国,2001,14541.6\r\n一小时快照,7.1,1992,剧情/惊悚,美国,2002,14143.2\r\n尸城 屍,4.1,1992,动作/恐怖,香港,2014,8167.2\r\n安全至下,8.8,1991,喜剧/爱情/惊悚,美国,1923,17520.8\r\n哆啦A梦：大雄与风之使者 ドラえもん のび太とふしぎ,7.9,1991,剧情/科幻/动画/儿童,日本,2003,15728.9\r\n末路爱神,7.6,1991,剧情/喜剧/爱情,英国,2006,15131.6\r\n天才与白痴 天才與白,7.4,1990,喜剧,香港,1975,14726\r\n堕落天使,6.9,1990,剧情/惊悚/战争/西部,美国,2006,13731\r\n迷魂之密室逃脱,4,1990,悬疑/惊悚,中国大陆,2013,7960\r\n你逃我也逃,8.5,1989,剧情/喜剧/战争,美国,1983,16906.5\r\n父亲的荣耀 ,8.4,1989,剧情/传记/冒险,法国,1990,16707.6\r\n走私者 スマグラー　おまえの未来を運,7.3,1989,剧情,日本,2011,14519.7\r\n沉默生机,6.7,1989,剧情/惊悚/犯罪,美国/澳大利亚,2001,13326.3\r\n纯真时代,5.6,1989,剧情/爱情/历史,韩国,2015,11138.4\r\n开罗宣言,2.9,1989,剧情/历史,中国大陆,2015,5768.1\r\n一分钟时间机器,8.3,1988,喜剧/爱情/科幻/短片,美国/英国,2014,16500.4\r\n斯通家族,6.4,1988,剧情/喜剧/爱情/家庭,美国,2005,12723.2\r\n古畑任三郎 大使杀人事件 古畑任三郎　すべて閣下の,8.3,1987,悬疑/犯罪,日本,2004,16492.1\r\n全国歌唱竞赛,6.4,1987,喜剧/爱情,韩国,2013,12716.8\r\n天伦之旅,8.7,1986,剧情,意大利/法国/美国,1990,17278.2\r\n不公平 电影版 アンフ,6.8,1986,剧情/动作/犯罪,日本,2007,13504.8\r\n钻石,5.6,1986,动作/惊悚/犯罪,法国/比利时/卢森堡,2009,11121.6\r\n蓝调之歌,8.1,1984,喜剧/动画/奇幻,美国,2008,16070.4\r\n禅,7.8,1984,剧情/传记,日本,2009,15475.2\r\n夺命金字塔,4.8,1984,恐怖,美国,2014,9523.2\r\n山村老尸 3 恶,4.6,1983,恐怖,香港,1905,9121.8\r\n异教徒,7.5,1982,悬疑/恐怖,英国,1973,14865\r\n送乡人,7,1981,剧情/西部,法国/美国,2014,13867\r\n百濑，朝向这边 百瀬、こっちを向いて,6.6,1981,剧情/爱情,日本,2014,13074.6\r\n母亲的城堡 ,8.6,1980,剧情/喜剧/爱情/传记/冒险,法国,1990,17028\r\n凶恶 凶,6.7,1979,惊悚,日本,2013,13259.3\r\n龙与虎OVA：便当的精髓 とらドラ!,8.2,1978,爱情/动画,日本,2011,16219.6\r\n宫本武藏续 一乘寺之决斗 続宮本武蔵 一乗寺,7.4,1977,剧情/动作/传记/历史/冒险,日本,1955,14629.8\r\n无人之子,5.7,1977,动作/惊悚/犯罪,美国,2011,11268.9\r\n纵身一跃,4.4,1976,短片,中国大陆,2011,8694.4\r\n智利说不,7.4,1975,剧情/历史,智利/美国/法国/墨西哥,2012,14615\r\n意乱情迷,5.9,1975,剧情/爱情,中国,2007,11652.5\r\n安塔芮丝,6.3,1974,剧情/情色,奥地利,2005,12436.2\r\n脑浆炸裂少女 脳漿炸裂ガー,4.5,1974,科幻/冒险,日本,2015,8883\r\n踩虎尾的男人 虎の尾を踏む男,7.5,1973,剧情/惊悚/冒险,日本,1952,14797.5\r\n危机四伏,6.7,1972,剧情/悬疑/惊悚/恐怖,美国,2000,13212.4\r\n铁扇公主,8.5,1971,剧情/动画,中国大陆,1941,16753.5\r\n在异国,6.7,1971,剧情/爱情,韩国,2012,13205.7\r\n圣诞前夜,6.1,1970,喜剧,美国,2015,12017\r\n赏金杀手,5.3,1970,动作/科幻/惊悚,美国,2013,10441\r\n惨死,5.5,1969,惊悚/恐怖,泰国,2010,10829.5\r\n死神蘑菇,5.4,1969,惊悚/恐怖,爱尔兰/丹麦/英国,2007,10632.6\r\n剧场版魔法少女小圆 后篇 永远的故事 劇場版 魔法少女まどか☆マギカ [後,8.9,1968,动画,日本,2012,17515.2\r\n我知道,7.8,1968,动画/短片,中国大陆,1905,15350.4\r\n同中有异,7.2,1968,剧情,德国,2009,14169.6\r\n我为勾勾狂,7.8,1966,喜剧/同性,美国,2013,15334.8\r\n三个夏天 三個夏,7.7,1966,剧情,台湾,1905,15138.2\r\n解剖外星人,7.5,1966,喜剧/科幻,德国/英国,2006,14745\r\n卿本佳人,5.9,1966,剧情/爱情/情色,香港,1991,11599.4\r\n纺织姑娘,7.2,1965,剧情,中国大陆,2010,14148\r\n93号,7.5,1964,剧情/历史/灾难,加拿大/美国,2006,14730\r\n画框中的男人 Человек в ра,7.9,1963,动画/短片,苏联,1905,15507.7\r\n年度人物,7.4,1963,剧情/喜剧/爱情/惊悚,美国,2006,14526.2\r\n就是闹着玩的,6.9,1963,喜剧,中国大陆,2012,13544.7\r\n鬼神传 鬼神,5.9,1963,剧情/动画,日本,2011,11581.7\r\n平面世界,8.5,1962,动画/短片,英国,1905,16677\r\n惩恶扬善！白领侠！！ 悪いのを倒せ!!サラリーマ,8.2,1962,喜剧/动画/短片,日本,2005,16088.4\r\n霹雳五号续集,8.1,1962,喜剧/科幻/家庭,美国,1988,15892.2\r\n与个人无关,7.7,1962,剧情,爱尔兰/荷兰,1905,15107.4\r\n国士无双 國士無,7.3,1962,喜剧/动作,台湾,2006,14322.6\r\n双姝奇恋,7,1962,剧情/喜剧/爱情,美国,1996,13734\r\n致命诱惑,7,1961,剧情/惊悚,美国,1987,13727\r\n尸骨无存,5.1,1961,惊悚/恐怖,美国,2009年,10001.1\r\n为所应为,8,1960,剧情,美国,1989,15680\r\n求偶一支公,7.1,1960,剧情/喜剧/爱情,韩国,2001,13916\r\n她找我,6.6,1960,剧情/喜剧/爱情,美国,2007,12936\r\n猛鬼街,6,1960,惊悚/恐怖/奇幻,美国,1985,11760\r\n热血男人帮,5.2,1960,喜剧,中国大陆,2015,10192\r\n梦回鹿鼎记,4.9,1960,动作/短片/武侠,中国大陆,2011,9604\r\n聪明的一休之反斗公主,5.4,1959,动画/悬疑,中国大陆/日本,2014,10578.6\r\n宫本武藏 完结篇 决斗岩流岛 宮本武蔵 完結篇 ,7.6,1958,剧情/动作/传记/历史/冒险,日本,1956,14880.8\r\n变身小姐,4.6,1958,喜剧,韩国,2013,9006.8\r\n台北夜蒲团团转 台北夜蒲團團,3.7,1958,喜剧/爱情,香港,2015,7244.6\r\n再见，在也不见 再見，在也不,7.6,1957,剧情/爱情/同性/家庭,中国大陆/新加坡/泰国/台湾,2016,14873.2\r\n心智相投,7.5,1957,悬疑/惊悚/恐怖/犯罪,澳大利亚/英国,2006,14677.5\r\n石中剑,7.7,1956,动画/家庭/荒诞,美国,1963,15061.2\r\n体热,7.5,1955,剧情/惊悚/犯罪,美国,1981,14662.5\r\n堕落指南,6.8,1955,喜剧,美国,2007,13294\r\n萨德侯爵,6.5,1955,剧情/传记/历史/犯罪,法国,2001,12707.5\r\n完美学分,6.2,1955,喜剧/犯罪,美国/德国,2004,12121\r\n礼物,6.9,1954,剧情,日本,2014,13482.6\r\n死亡占卜,5.2,1953,动作/惊悚/恐怖/冒险,美国,2014,10155.6\r\n上帝帮助女孩,6.8,1952,剧情/爱情/歌舞,英国,2014,13273.6\r\n失魂姐弟,6.6,1952,剧情,美国,2014,12883.2\r\n鬼娃的诅咒,5.3,1952,惊悚/恐怖,美国,2013,10345.6\r\n银色·性·男女,7.7,1950,剧情/喜剧,美国,1993,15015\r\n悍将奇兵,7.3,1950,悬疑/惊悚/犯罪,美国,1997,14235\r\n翼·年代记 剧场版 鸟笼国的公主 劇場版 ツバサ・クロニクル 鳥カ,7.3,1950,动作/爱情/动画/短片/奇幻/冒险,日本,2005,14235\r\n血与蜜之地,6.6,1950,剧情/爱情/战争,美国,2011,12870\r\n漩涡 うずま,5.6,1950,恐怖,日本,2000,10920\r\n学院男孩,8.4,1949,短片,加拿大,2013,16371.6\r\n何时是读书天 いつか読書する,8.2,1949,剧情/爱情,日本,2005,15981.8\r\n金色豪门,8.2,1949,剧情/爱情,德国/葡萄牙/丹麦/美国,1993,15981.8\r\n甘泉玛侬,8,1949,剧情/爱情,法国/意大利/瑞士,1986,15592\r\n光明的未来 アカルイミラ,8,1947,剧情,日本,2003,15576\r\n烈火中永生,7.6,1945,剧情,中国大陆,1905,14782\r\n恶灵空间,6,1945,剧情/悬疑/惊悚/恐怖,德国/新西兰/美国,2005,11670\r\n怕羞的黄莺,8,1944,动画/短片,中国大陆,1905,15552\r\n美女与野兽 ,7.8,1944,剧情/爱情/奇幻,法国,1946,15163.2\r\n神犬小巴迪,7.7,1944,喜剧/家庭,美国,2006,14968.8\r\n美丽在唱歌 美麗在唱,6.7,1944,剧情/同性,台湾,1997,13024.8\r\n坦克大决战,7.4,1943,剧情/动作/战争,美国,1965,14378.2\r\n天堂五分钟,7,1943,剧情/惊悚/犯罪,英国,2009,13601\r\n圆舞,6.9,1943,剧情/爱情,英国/奥地利/法国/巴西,2011,13406.7\r\n彻夜狂欢,6.3,1943,喜剧,美国,2004,12240.9\r\n吉星高照,3.1,1943,喜剧,香港/中国大陆/台湾,2015,6023.3\r\n第二十二条军规,7.5,1941,喜剧/战争,美国,1970,14557.5\r\n四戒,6.1,1941,剧情/喜剧,中国大陆,2012,11840.1\r\n巴阿里亚 ,7.6,1940,剧情/喜剧/历史/战争,意大利/法国,2009,14744\r\n我爱的男人,8.2,1938,剧情/同性,法国,1997,15891.6\r\n时失2公,7.4,1938,喜剧/恐怖,韩国,2004,14341.2\r\n盲目约会,6.8,1938,喜剧/爱情,美国,2006,13178.4\r\n恶梦侦探 悪夢探,6.5,1938,惊悚/恐怖/奇幻,日本,2007,12597\r\n跳跃大搜查线最终篇：新的希望 踊る大捜査線 THE ,7.9,1937,剧情/动作/犯罪,日本,2012,15302.3\r\n爱即所求,7.6,1937,剧情/喜剧/爱情/同性/家庭,德国,2009,14721.2\r\n我们是贵族,6.6,1937,喜剧,墨西哥,2013,12784.2\r\n芭比之真假公主,7.7,1936,喜剧/动画/歌舞/家庭,美国,2004,14907.2\r\n致命武器,6.8,1936,动作/惊悚/犯罪,美国,1992,13164.8\r\n从军记,8.8,1935,喜剧/战争,美国,1918,17028\r\n乐自芳邻来,6.9,1935,剧情/喜剧/爱情,美国,1998,13351.5\r\n哆啦A梦：大雄的宇宙开拓史 映画ドラえもん のび太の宇宙,8,1934,科幻/动画/冒险,日本,1981,15472\r\n自由的幻影 ,8.5,1933,剧情/喜剧,法国/意大利,1974,16430.5\r\n肮脏电影,5.6,1933,喜剧,美国,1905,10824.8\r\n沙西米,4,1933,喜剧/爱情,台湾,2015,7732\r\n南征北战,7.2,1932,剧情/战争,中国大陆,1905,13910.4\r\n欢乐叮当 歡樂叮,6.4,1932,喜剧,香港,1986,12364.8\r\n蔷薇的葬礼 薔薇の葬,8.1,1931,剧情/同性,日本,1969,15641.1\r\nX,6.6,1931,剧情/喜剧,英国,2014,12744.6\r\n恋爱的味道,6,1931,喜剧/爱情,韩国,2015,11586\r\n鲍比,7.5,1930,剧情/历史,美国,2006,14475\r\n太空牛仔,7.4,1930,惊悚/冒险,美国/澳大利亚,2000,14282\r\n大四喜,4.5,1930,喜剧,香港,2008,8685\r\n饲养乌鸦 ,8.5,1929,剧情,西班牙,1976,16396.5\r\n小早川家之秋 小早川家の,8.5,1929,剧情,日本,1961,16396.5\r\n开战日,7.2,1929,剧情/战争,丹麦,2015,13888.8\r\n约会电影,5.2,1929,喜剧/爱情,美国/瑞士,2006,10030.8\r\n浪荡儿,8.4,1928,剧情/喜剧,意大利/法国,1953,16195.2\r\n鬼作秀,7.4,1928,喜剧/科幻/惊悚/恐怖/奇幻,美国,1987,14267.2\r\n纳粹追凶,7,1928,剧情/惊悚,美国/加拿大/法国,1998,13496\r\n宇宙只有我和你,7.7,1927,剧情/喜剧/爱情,泰国/日本,2005,14837.9\r\n隐墙,7.2,1927,剧情/奇幻,德国/奥地利,2012,13874.4\r\n愤怒乒乓球,5.1,1926,喜剧/动作/爱情/犯罪/运动,美国,2007,9822.6\r\n乌鸦,8.1,1925,剧情/悬疑/惊悚/犯罪,法国,1943,15592.5\r\n匈奴大帝,7.2,1924,动作/传记/冒险,美国/立陶宛,2001,13852.8\r\n我最好的朋友,7.8,1923,喜剧,法国,2006,14999.4\r\n伟大的巴克·霍华德,6.8,1923,剧情/喜剧,美国,2008,13076.4\r\n蓝眼睛米奇,6.7,1923,喜剧/爱情/犯罪,英国/美国,1999,12884.1\r\n魔鬼游乐场,5.5,1922,动作/恐怖,英国,2010,10571\r\n漫游者,8.3,1921,科幻/动画/短片,美国,2014,15944.3\r\n长毛狗,6.6,1921,喜剧/家庭/奇幻,美国,2006,12678.6\r\n黄金岛历险记 黃金島歷險,6.4,1921,家庭/奇幻,香港,1996,12294.4\r\n查无此人,5.2,1921,剧情/悬疑,中国大陆,2012,9989.2\r\n天堂的孩子,8.8,1920,剧情/爱情,法国,1945,16896\r\n姜戈,7.7,1920,西部,意大利/西班牙,1966,14784\r\n金玫瑰洞 ,8.9,1919,爱情/奇幻,意大利,1991,17079.1\r\n呼风唤雨！光荣的烤肉之路 嵐を呼ぶ 栄光のヤキニクロ,8.1,1919,动画,日本,2003,15543.9\r\n侠僧探案传奇之聚义钱庄,7.2,1919,动作/悬疑/武侠/古装,中国大陆,2015,13816.8\r\n蛇少女 おろ,6,1919,恐怖,日本,2008,11514\r\n礼帽,8.2,1918,喜剧/爱情/歌舞,美国,1937,15727.6\r\n鹤屋和熏干酪 にょろーん ちゅるや,8,1918,动画,日本,2009,15344\r\n蒙古精神 Ург,8.4,1917,剧情,法国/苏联,1991,16102.8\r\n似水流年,8.2,1917,剧情,香港/中国大陆,1984,15719.4\r\n电梯惊魂,3.5,1917,悬疑/惊悚,中国大陆,2013,6709.5\r\n西鹤一代女 西鶴一代,8.3,1916,剧情,日本,1952,15902.8\r\n倾城,6.3,1916,剧情/犯罪/灾难,中国大陆,2013,12070.8\r\n妖狐×仆SS  TV未放送第13话 妖,8.1,1915,剧情/喜剧/动画,日本,2012,15511.5\r\n爱情,6.8,1915,剧情/爱情,泰国,2012,13022\r\n法国贩毒网,6.6,1915,剧情/动作/惊悚/犯罪,美国,1975,12639\r\n唐·海明威,6.1,1915,剧情/喜剧/犯罪,英国,2013,11681.5\r\n纪念日快乐,8.2,1914,爱情/动画/短片,中国大陆,2011,15694.8\r\n我的神秘之花,7.8,1914,剧情,西班牙/法国,1995,14929.2\r\n危险思想的自白,7.3,1914,剧情/喜剧/爱情/惊悚/传记/犯罪,美国/英国/德国,2002,13972.2\r\n壳中少女：燃烧 マルドゥック・スクランブル,8,1913,动画,日本,2011,15304\r\n推理要在晚餐后SP：风祭警部的事件簿 謎解きはディナーのあとで スペシャル～風祭警部の,6.9,1913,喜剧/悬疑/犯罪,日本,2013,13199.7\r\n侠女传奇,6.2,1912,动作,中国大陆/香港,1993,11854.4\r\n恶魔在身后,5.7,1912,悬疑/惊悚/恐怖,韩国,2007,10898.4\r\n鬼打鬼之黄金道士,6.6,1910,喜剧/动作/恐怖,香港,1992,12606\r\n三十极夜2：黑暗的日,4.7,1910,恐怖,美国,1905,8977\r\n性瘾者,6.9,1909,喜剧/情色/传记,美国,2005,13172.1\r\n笑侠楚留香 笑俠楚留,5.9,1909,喜剧/动作,香港,1993,11263.1\r\n不确定,6.2,1908,剧情,美国,2009,11829.6\r\n木更津猫眼 日本篇 木更津キャッツアイ 日本シ,8.7,1906,剧情/喜剧/运动,日本,2003,16582.2\r\n初恋从打嗝开始,6.2,1906,喜剧,丹麦,1999,11817.2\r\n死人岛,4.8,1906,恐怖,美国/加拿大,2009,9148.8\r\n回转,7.8,1905,剧情/爱情/短片,韩国,2008,14859\r\n西岳奇童,8.8,1904,动画,中国大陆,1905,16755.2\r\n生活的发现,7.6,1904,剧情,韩国,2002,14470.4\r\n布克和海尔,6.7,1904,喜剧/惊悚,英国,2010-10-29/2010-09-09（美国）,12756.8\r\n甜丝丝 甜絲,6.1,1904,喜剧,香港,2004,11614.4\r\n史前巨鳄,5.9,1904,喜剧/动作/惊悚/恐怖,美国,1999,11233.6\r\n科学怪人,7.5,1903,科幻/恐怖,美国,1931,14272.5\r\n渡江侦察记,7.4,1903,剧情/战争,中国大陆,1905,14082.2\r\n维多利亚的秘密201,8.7,1902,真人秀,美国,2010,16547.4\r\n台北异想 台北異,7.2,1902,剧情/喜剧,台湾,2009,13694.4\r\n我恨情人节,5.5,1902,喜剧/爱情,美国,2009,10461\r\n少林搭棚大师 少林搭棚大,7.3,1901,喜剧/动作,香港,1980,13877.3\r\n哥哥的烟火 おにいちゃんのハナ,8.1,1900,剧情,日本,2010,15390\r\n成长的烦恼：电影版,7.4,1900,喜剧/家庭,美国,2000,14060\r\n外星人报到,7.5,1899,喜剧/科幻/家庭,美国,1999,14242.5\r\n维莉蒂安娜,8.6,1898,剧情,西班牙/墨西哥,1961,16322.8\r\n南京大屠杀 南,7.2,1898,剧情/历史/战争,中国大陆,1996,13665.6\r\n黑暗来临,4.7,1897,惊悚/恐怖,美国/阿根廷/法国,2010,8915.9\r\n寻找幸福的起点 Итальяне,8.5,1896,剧情/家庭,俄罗斯,2005,16116\r\n警察与外星人,7.7,1896,喜剧/科幻/犯罪,法国,1979,14599.2\r\n禁止的爱：善良的小姨子,5.5,1896,剧情/爱情/情色,韩国,2015,10428\r\n小科学怪人,8,1895,剧情/喜剧/科幻/短片,美国,1984,15160\r\n新半斤八两,7.1,1895,喜剧,香港,1990,13454.5\r\n薄暮之光,7.8,1894,剧情/犯罪,芬兰/法国/德国,2007,14773.2\r\n那夜的武士 その夜の,6.7,1893,剧情,日本,2012,12683.1\r\n大学预备生,4.8,1893,喜剧,美国,2008,9086.4\r\n卡地亚真爱微电影,7.3,1892,爱情/短片,法国,2011,13811.6\r\nABC,8,1891,剧情/悬疑/犯罪,英国,1992,15128\r\n石榴坡的复仇 柘榴坂の仇,7.3,1891,古装,日本,2014,13804.3\r\n伯爵夫人,6.8,1891,剧情/爱情/历史/战争,英国/美国/德国/中国,2005,12858.8\r\n杰克去划船,6.7,1891,喜剧/爱情,美国,2010,12669.7\r\n他们非圣人,6.3,1891,剧情/爱情/犯罪,美国,2013,11913.3\r\n稍安勿躁,3.3,1891,剧情/喜剧,中国大陆,2012,6240.3\r\n咖啡,6.1,1890,剧情,韩国,2012,11529\r\n芭比之长发公主,7.6,1889,动画/家庭,美国,2002,14356.4\r\n扑克之夜,6.5,1889,动作/惊悚/犯罪,美国/加拿大,2014,12278.5\r\n大白鲨,6.4,1889,惊悚,美国,1978,12089.6\r\n绅士爱美人,7.8,1888,剧情/喜剧/爱情/歌舞,美国,1953,14726.4\r\n私恋失调,7.5,1888,剧情/喜剧/爱情,美国,2002,14160\r\n复活,7.2,1888,动作/科幻/动画/惊悚,法国/英国/卢森堡,2006,13593.6\r\n侠僧探案传奇之大夜叉,8,1887,动作/悬疑/武侠/古装,中国大陆,2015,15096\r\n落难见真情,7.5,1887,剧情/喜剧/冒险,美国,1987,14152.5\r\n夏夏夏,7.4,1887,剧情/喜剧/爱情,韩国,2010,13963.8\r\n诉讼,8.3,1886,剧情,以色列/法国/德国,2014,15653.8\r\n罗马妈妈,8.2,1886,剧情,意大利,1962,15465.2\r\n哆啦A梦：大雄与云之国 ドラえもん のび太と云,8.4,1884,科幻/动画/冒险,日本,1992,15825.6\r\n机动警察：废弃物13号 WXIII 機,7.8,1883,动作/科幻/动画/犯罪,日本,2002,14687.4\r\n美丽密语,7.3,1883,剧情/动画/奇幻,韩国,2002,13745.9\r\n一本漫画闯天涯II妙想,6,1883,喜剧,香港,1993,11298\r\n怪物 MONST,5.1,1883,科幻/惊悚,日本,2014,9603.3\r\n红楼梦,9,1882,剧情/爱情/戏曲,中国大陆,1905,16938\r\n诡爱,4.9,1882,悬疑/惊悚,中国大陆,2012,9221.8\r\n红色之路,7.3,1881,剧情/悬疑/惊悚,英国/丹麦,2006,13731.3\r\n茗记2：初织,7,1881,动画/短片,中国大陆,2010,13167\r\n花开伊吕波剧场版：甜蜜的家 劇場版 花咲くい,8.6,1880,剧情/喜剧/动画,日本,2013,16168\r\n非关正义特别篇：密码破解 アンフェア the special,7.4,1880,悬疑,日本,2006,13912\r\n聋哑部落 Плем,7.3,1880,剧情/犯罪,乌克兰/荷兰,2014,13724\r\n青春祭,8.3,1879,剧情,中国大陆,1905,15595.7\r\n变种外星人,8.1,1879,喜剧/科幻/动画,美国,2001-08-16/2002-01-09,15219.9\r\n机器人情缘 HIN,7.7,1879,剧情/科幻,日本,2005,14468.3\r\n安娜斯塔西娅,7.2,1879,剧情/动画/歌舞/家庭/冒险,美国,1997,13528.8\r\n五月之后 ,7.2,1879,剧情,法国,2012,13528.8\r\n人质,6.3,1879,惊悚/犯罪,美国,2013,11837.7\r\n警网铁金刚,7.6,1878,剧情/动作/悬疑/惊悚/犯罪,美国,1968,14272.8\r\n取款机杀人夜,4.7,1878,惊悚/恐怖,美国/加拿大,2012,8826.6\r\n贝贝·勒·默果 P,7.4,1877,剧情/爱情/犯罪,法国,1937,13889.8\r\n宝拉,7.2,1877,剧情/爱情/情色,法国/瑞士/德国/日本,1999,13514.4\r\n花眼,6.6,1877,剧情/爱情/奇幻,中国大陆,2002,12388.2\r\n写给上帝的信,7.9,1876,剧情/家庭,美国,2010,14820.4\r\n边境,7.4,1876,剧情,美国,2014,13882.4\r\n哆啦A梦：大雄的宇宙英雄记 映画ドラえもん のび太の宇宙,6.2,1875,剧情/科幻,日本,2015,11625\r\n地狱骑士,6.1,1875,剧情/动作/惊悚/冒险,美国,2008,11437.5\r\n老虎,7.8,1874,动画/短片,巴西,2006,14617.2\r\n婚礼专家,6.2,1874,喜剧/爱情,美国/德国,2001,11618.8\r\n起死回生,5.4,1874,科幻/惊悚/恐怖,美国,2015,10119.6\r\n日落巴黎,8,1873,剧情/爱情/短片,香港,1905,14984\r\n怒海孤舟,7.9,1873,惊悚/战争,美国,1944,14796.7\r\n两个头一个大,6.5,1873,喜剧,美国,2003,12174.5\r\n无名指,7.2,1872,剧情,法国/德国/英国,2005,13478.4\r\n恋爱二三事 恋愛あるある,6.8,1872,剧情,日本,2015,12729.6\r\n塞巴斯蒂安,6.8,1872,剧情/惊悚/同性/历史,英国,1976,12729.6\r\n魔鬼天使,5.7,1872,剧情/惊悚,台湾,1995,10670.4\r\n赖小子,7.4,1871,剧情,中国,2006,13845.4\r\n邮差总按两次铃,7.4,1871,剧情/爱情/悬疑/惊悚/犯罪/黑色电影,美国,1946,13845.4\r\n遗传学歌剧,7.1,1871,科幻/恐怖/歌舞,美国,2008,13284.1\r\n红眼,6,1871,恐怖,韩国,2005,11226\r\n紫霞,2.4,1871,爱情/奇幻,中国大陆,2015,4490.4\r\n飞出个未来大电影2：万背之,8.3,1870,喜剧/动作/爱情/科幻/动画,美国,2008,15521\r\n最伟大的,7.5,1870,剧情/爱情,美国,2009,14025\r\n一见钟情 一見鐘,7.3,1870,爱情,香港/美国,2000,13651\r\n新埃及艳后,7.3,1870,剧情/传记,德国/美国,1999,13651\r\n草莓棉花糖 OVA 2卷,9,1869,动画/短片,日本,2007,16821\r\n教宗的洗手间,8.2,1869,剧情,乌拉圭/巴西/法国,2007,15325.8\r\n喜剧中心查理·辛吐槽大会,8.7,1868,喜剧/脱口秀,美国,2011,16251.6\r\n雨水危机 ,7.9,1868,剧情/历史,西班牙/墨西哥/法国,2011,14757.2\r\n初恋风暴 初戀風,6.8,1867,爱情,台湾,2010,12695.6\r\n雷诺阿,6.7,1867,剧情/传记,法国,2012,12508.9\r\n绿灯侠：翡翠骑士,6.6,1867,动作/科幻/动画,美国,2011,12322.2\r\n遮蔽的天空,7.9,1866,剧情/冒险,英国/意大利,1990,14741.4\r\n人与神,7.8,1866,剧情,法国,2010,14554.8\r\n蓝色爱情,7.3,1865,爱情,中国,1905,13614.5\r\n赤裸而来,7,1865,剧情/爱情/同性/家庭,美国,2013,13055\r\n卡斯帕尔·豪泽尔之谜 ,8.6,1864,剧情/传记,原西德,1974,16030.4\r\n养蜂人 Ο μελισσοκ,8.4,1863,剧情,法国/希腊/意大利,1987,15649.2\r\n回转寿尸,6.5,1863,恐怖,香港,1997,12109.5\r\n图书馆员：圣杯的诅咒,6.2,1863,动作/奇幻/冒险,美国,2008,11550.6\r\n宫本武藏 宮本武,7.6,1862,剧情/动作/传记/历史/冒险,日本,1954,14151.2\r\n乘风破浪,7.8,1861,动画/短片/冒险/运动,奥地利,1905,14515.8\r\n天使的微笑,6.8,1861,剧情/喜剧/爱情,美国,2012,12654.8\r\n灯红酒绿杀人夜,4.8,1861,悬疑/惊悚/恐怖,美国/加拿大,2008,8932.8\r\n异空危情,4.1,1861,爱情/惊悚/情色,中国大陆,2010,7630.1\r\n白夜,8.3,1860,剧情/爱情,意大利/法国,1957,15438\r\n特殊交易,7.9,1860,剧情/短片,中国大陆,2013,14694\r\n骆驼客,7.7,1860,动作/爱情/冒险,中国大陆,2012,14322\r\n图书馆员：所罗门王的宝藏,6.5,1860,动作/奇幻/冒险,美国,2006,12090\r\n激情热线,6.1,1859,喜剧,美国,1905,11339.9\r\n君臣人子小命呜呼,8.5,1858,剧情/喜剧,英国/美国,1990,15793\r\n天云山传奇,7.8,1858,剧情,中国大陆,1981,14492.4\r\n顶楼大象,4.6,1858,剧情,韩国,2009,8546.8\r\n束缚自由,8.8,1857,动作/动画/短片,法国,2008,16341.6\r\n机器人嘉年华 ロボットカーニバ,8.4,1857,剧情/喜剧/科幻/动画/奇幻,日本,1987,15598.8\r\n桑格莉之夏,7.2,1857,剧情/爱情/同性,立陶宛/法国/荷兰,2015,13370.4\r\n英语老师,6.3,1857,剧情/喜剧,美国,2013,11699.1\r\n警察与小偷,8.8,1854,喜剧,意大利,1951,16315.2\r\n绅士决斗,7.4,1854,科幻/动画/短片,美国,1905,13719.6\r\n恐惧幻影,6.2,1853,恐怖,美国,1905,11488.6\r\n吸血莱恩,4.6,1853,动作/恐怖/奇幻/冒险,美国/德国,2005,8523.8\r\nG4,6,1852,动作,香港,1997,11112\r\n孤独的国王,8,1851,动画,法国,1905,14808\r\n群龙夺宝 群龍奪,7,1851,剧情/动作,香港,1988,12957\r\n诱惑法则,6.3,1851,剧情/喜剧/爱情/惊悚,美国/德国,2003,11661.3\r\n爱情碎片,5.8,1851,喜剧/爱情,美国,1905,10735.8\r\n战略力量,5,1851,动作,美国,1905,9255\r\n警察学校2：初露锋,7.4,1850,喜剧/犯罪,美国,1985,13690\r\n天上的恋人,7.3,1849,剧情,中国,1905,13497.7\r\n堂吉诃德外传,5.9,1849,动画/家庭,西班牙/意大利,2009,10909.1\r\n女孩闺房,5.8,1848,惊悚/恐怖,加拿大,2014,10718.4\r\n冬日之光,8.3,1847,剧情,瑞典,1962,15330.1\r\n拒绝再战,7.4,1847,剧情/战争,美国,2008,13667.8\r\n飞狐外传 飛狐外,6.4,1847,剧情/爱情/武侠/古装,香港,1993,11820.8\r\n甜蜜1,5.3,1847,剧情/爱情/家庭,中国大陆,2013,9789.1\r\n男孩遇见女孩,7.9,1846,剧情,法国,1984,14583.4\r\n最后的兵团,5.9,1846,动作/战争/奇幻/冒险,法国/英国/意大利/突尼斯,2007,10891.4\r\n风月奇谭,7.5,1845,喜剧/情色,香港,1972,13837.5\r\n坏品位,7.3,1845,喜剧/动作/科幻/恐怖,新西兰,1987,13468.5\r\n乌鼠机密档案 烏鼠機密檔,7,1844,剧情/动作/犯罪,香港,1905,12908\r\n邻人13号 ,6.6,1844,惊悚/恐怖,日本,2005,12170.4\r\n鬼娃回魂,6.1,1844,动作/惊悚/恐怖,英国/美国,1991,11248.4\r\n化妆师,3.1,1843,喜剧/惊悚,中国大陆,2014,5713.3\r\n莎乐美 ,8.8,1842,剧情,西班牙,2002,16209.6\r\n二十四只眼睛 二十四の,8.6,1842,剧情,日本,1954,15841.2\r\n鸽子也能上天堂 ,7.6,1842,剧情/科幻/动画/短片/奇幻,法国,2007,13999.2\r\n杨过与小龙女 楊過與小龍,6.6,1842,动作/爱情/武侠/古装,香港,1983,12157.2\r\n鹿铃,8.7,1841,动画/短片,中国大陆,1905,16016.7\r\n情人钥匙 Pres,7.3,1841,爱情,日本,2006,13439.3\r\n布鲁娜·瑟非斯丁,6.8,1841,剧情,巴西,2011,12518.8\r\n秘密与谎言,8.2,1840,剧情/喜剧/家庭,英国/法国,1996,15088\r\n老大靠边闪,6.7,1840,喜剧/犯罪,美国/澳大利亚,2002,12328\r\n阳光情人,8.5,1839,剧情/爱情/历史/战争,德国/奥地利/加拿大/匈牙利,1999,15631.5\r\n黑雨,7.2,1839,剧情/动作/惊悚/犯罪,美国,1989,13240.8\r\n蓝可儿之旅,4.9,1837,悬疑/惊悚/短片,中国大陆/美国/澳大利亚,2014,9001.3\r\n蜡笔小新之动感超人大战泳装魔王 クレヨンしんちゃん アクション仮面VSハイ,7.5,1836,喜剧/动画,日本,1993,13770\r\n公主追杀令,7.6,1835,剧情/动作/动画,德国/丹麦,2006,13946\r\n女大不中留,7.9,1834,剧情/喜剧/爱情,英国,1954,14488.6\r\n蓝色果冻海 ,7.9,1833,剧情,法国/以色列,2007,14480.7\r\n我的秘密城堡,7.4,1833,剧情/爱情,英国,2003,13564.2\r\n靓妹仔,7.2,1832,剧情,香港,1982,13190.4\r\n御姐玫瑰 お姉チャンバ,3.8,1832,动作/恐怖,日本,2008,6961.6\r\n另一部同志电影,6.1,1831,喜剧/同性,美国,2006,11169.1\r\n移民第二代,8.3,1830,剧情,美国,2007,15189\r\n米兰心事,8,1830,剧情,意大利,1963,14640\r\n人·鬼·情,8.2,1829,剧情,中国大陆,1905,14997.8\r\n夜色,6.6,1828,剧情/爱情/悬疑/惊悚,美国,1994,12064.8\r\n怪侠一枝梅 怪俠一枝,6.5,1828,喜剧/动作/犯罪,香港,1994,11882\r\n官能的法则,6.1,1828,喜剧/爱情,韩国,2014,11150.8\r\n米芽米咕人,7.8,1827,动画/家庭,法国/意大利,2008,14250.6\r\n夜深血红,7.8,1827,悬疑/恐怖/犯罪,意大利,1975,14250.6\r\n十亿韩元,6.5,1827,惊悚/冒险,韩国,2009,11875.5\r\n五十度黑,4.6,1827,喜剧,美国,2016,8404.2\r\n警员,7.5,1826,剧情,法国,2011,13695\r\n深狱父子情,6.9,1825,剧情,英国,2013,12592.5\r\n小猫奇缘 ネコナ,6.7,1825,剧情,日本,2008,12227.5\r\n雷顿教授与永远的歌姬 映画　レイトン教授と永遠の歌,7.6,1824,动画/悬疑/犯罪/冒险,日本,2009,13862.4\r\n白狗,7.9,1823,剧情/惊悚/恐怖,美国,1982,14401.7\r\n遗迹守护者 スプリガ,7.2,1823,科幻/动画/惊悚/冒险,日本,1998,13125.6\r\n安妮日记,8.3,1822,剧情/战争,美国,2001,15122.6\r\n沉默,8.4,1821,剧情,瑞典,1963,15296.4\r\n攻壳机动队 新剧场版 攻殻機動隊 新,7.1,1821,动作/科幻/动画,日本,2015,12929.1\r\n人之子 ,6.9,1821,剧情,法国,1997,12564.9\r\n绝命休息站,5.2,1820,惊悚/恐怖,美国,2006,9464\r\n军火,5.9,1819,喜剧/动作,日本/中国大陆,2003,10732.1\r\n白朗宁版本,8.6,1818,剧情,英国,1951,15634.8\r\n没牙的老虎,7.8,1818,动画,中国大陆,1905,14180.4\r\n诡影迷情,3.2,1818,悬疑/惊悚,中国大陆,2015,5817.6\r\n重建 Αναπαράστα,7.6,1816,剧情/犯罪,希腊,1905,13801.6\r\n唇语惊魂 ,7.2,1816,剧情/爱情/惊悚/犯罪,法国,2001,13075.2\r\n亚历克斯与艾玛,6.7,1815,喜剧/爱情,美国,2003,12160.5\r\n天使之眼,6.3,1815,剧情/爱情/惊悚,美国,2001,11434.5\r\n老虎都要嫁,6,1815,喜剧/爱情,中国大陆,2010,10890\r\n十字街头,8,1814,剧情,中国,1937,14512\r\n舞影随行,7.5,1814,剧情/同性/歌舞,美国,2013,13605\r\n花园里的萤火虫,6.8,1814,剧情/家庭,美国,2008,12335.2\r\n母语,6.6,1814,剧情/爱情/家庭,中国大陆,2012,11972.4\r\n老师嫁老大,6.5,1814,喜剧,马来西亚/新加坡,2008,11791\r\n最佳拍档之醉街拍档 最佳拍檔之醉街拍,6.1,1814,喜剧/动作,香港,1997,11065.4\r\n野良神 OAD1 ノラガミ ,8.3,1813,剧情/动画,日本,2014,15047.9\r\n非洲女王号,7.7,1813,剧情/爱情/战争/冒险,英国/美国,1951,13960.1\r\n的士判官,7.2,1813,动作,香港,1993,13053.6\r\n白河夜船,6.7,1813,剧情,日本,2015,12147.1\r\n为了皇帝,5.3,1813,动作/惊悚/犯罪,韩国,2014,9608.9\r\n守灵夜 寝ずの,7.7,1812,剧情/喜剧,日本,2006,13952.4\r\n芭蕾刑警 刑事バレリー,6.5,1812,剧情,日本,2016,11778\r\n同流者,8.5,1811,剧情,意大利/法国/西德,1970,15393.5\r\n硬汉奶爸,4.3,1811,喜剧/家庭,中国大陆,2014,7787.3\r\n短柄斧,4.6,1810,喜剧/恐怖,美国,2006,8326\r\n横空出世,8.1,1809,剧情/历史,中国大陆,1999,14652.9\r\n天使之卵 天使のたま,7.9,1809,剧情/科幻/动画/悬疑/恐怖/奇幻,日本,1985,14291.1\r\n派对恐龙,7.6,1809,喜剧/动画/短片,美国,2012,13748.4\r\n波蕾特的椅子 ポレットのイ,7.8,1808,动画/短片,日本,2014,14102.4\r\n我最喜爱的物什,7.7,1808,剧情/爱情/短片,英国,2009,13921.6\r\n30正,6.5,1807,喜剧/爱情,泰国,2011,11745.5\r\n爸爸喜欢女人,6.4,1806,喜剧/爱情,韩国,2010,11558.4\r\n2,6.6,1805,剧情,美国,2000,11913\r\n乌鸦 2：天使,6.5,1805,动作/惊悚/犯罪/奇幻,美国,1996,11732.5\r\n恐怖神棍节,4.6,1805,惊悚/恐怖,美国,2011,8303\r\n失业生 失業,7.6,1804,剧情,香港,1981,13710.4\r\n手机,6.7,1804,动作/惊悚,韩国,2015,12086.8\r\n小镇,7.8,1803,剧情,土耳其,1997,14063.4\r\n冰海沉船,8.3,1802,剧情/动作/历史/灾难,英国,1958,14956.6\r\n未来蝙蝠侠：小丑归来,7.2,1802,动作/科幻/动画/惊悚/犯罪,美国,2001,12974.4\r\n捷克惊魂夜 ,8.2,1801,动画/恐怖,捷克,2007,14768.2\r\n泥醉天使 酔いどれ天,8.1,1801,剧情/犯罪,日本,1948,14588.1\r\n偷心俏佳人,6.7,1801,喜剧/爱情/犯罪,美国,2001,12066.7\r\n一百英尺,5.2,1801,惊悚/恐怖,美国,2008,9365.2\r\n雅典娜：无间谍局,4.7,1801,动作/爱情/悬疑,韩国,2012,8464.7\r\n自由意志,7.7,1800,剧情/犯罪,德国,2006,13860\r\n忏悔 Покаяни,8,1799,剧情,格鲁吉亚/苏联,1987,14392\r\n图书馆员：寻找命运之矛的探险,6.2,1799,动作/奇幻/冒险,美国/德国,2004,11153.8\r\n战地军魂,8.4,1798,剧情/喜剧/战争,美国,1953,15103.2\r\n极乐岛杀人事件,6.1,1798,剧情/悬疑/惊悚,韩国,2007,10967.8\r\n疯狂粉丝王,5,1798,喜剧/爱情,香港,2007,8990\r\n哆啦A梦：大雄与梦幻三剑士 ドラえもん のび太と梦幻,8.2,1797,科幻/动画/冒险,日本,1994,14735.4\r\n小丑,7.8,1797,喜剧,意大利/法国/原西德,1970,14016.6\r\n追击8,6.3,1797,喜剧/科幻,香港/中国大陆,2004,11321.1\r\n杀死汝伴,6.3,1796,喜剧/惊悚/犯罪,英国,2015,11314.8\r\n金钱第一,5.2,1796,喜剧/动作/惊悚/犯罪,美国,2012,9339.2\r\n旅行的艺术,7.3,1794,冒险,美国,2008,13096.2\r\n一对一,5.9,1793,惊悚/犯罪,韩国,2014,10578.7\r\n幸福迷途,5.3,1793,剧情/爱情,中国大陆,2012,9502.9\r\n那些年我们疯狂的青春,7.6,1792,喜剧/爱情/歌舞,印度,2013,13619.2\r\n感谢分享,6.6,1792,剧情/喜剧,美国,2013,11827.2\r\n心在彼处,6.6,1792,剧情/喜剧,美国,2014,11827.2\r\n逆流的色彩,6.1,1792,剧情/科幻,美国,2013,10931.2\r\n鳄鱼邓迪,7.2,1791,喜剧/冒险,澳大利亚,1986,12895.2\r\n堕落街,7.5,1790,剧情/传记,西德,1981,13425\r\n白毛女,7,1790,剧情,中国大陆,1951,12530\r\n决斗,7.9,1789,悬疑/惊悚,美国,1971,14133.1\r\n不要忘记哥哥 にぃにのことを忘れない,7.4,1789,家庭,日本,2009,13238.6\r\n柏蒂娜的苦泪,7.8,1788,剧情,西德,1972,13946.4\r\n神,7.7,1788,喜剧/动画/短片,俄罗斯,1905,13767.6\r\n跳跃大搜查线3 踊る大捜査線 THE M,6.9,1788,剧情,日本,2010,12337.2\r\n封门村,2.8,1787,悬疑/惊悚,中国大陆,2014,5003.6\r\n新年行动,6.7,1786,喜剧/动作/爱情/犯罪,印度,2015,11966.2\r\n热爱岛,3.4,1786,喜剧/爱情,中国大陆/香港,2012,6072.4\r\n无敌当家,7.2,1785,喜剧/家庭,美国,2001,12852\r\n油鬼子,5.6,1784,恐怖,香港,1976,9990.4\r\n魅妆,4.4,1784,悬疑/惊悚,中国大陆,2012,7849.6\r\n迎春阁之风波 迎春閣之風,8.3,1783,剧情/动作/悬疑/武侠/古装,台湾/香港,1973,14798.9\r\n东方男孩,7.3,1783,剧情/同性,法国,2013,13015.9\r\n林中漫步,7,1782,剧情/喜剧/冒险,美国,2015,12474\r\n隔凶杀人,6.5,1782,惊悚,韩国,2002,11583\r\n半熟少年,7,1781,剧情/犯罪,美国,1995,12467\r\n类型片大赏,8.1,1780,喜剧/动画/短片,美国,1905,14418\r\n丛林之王,5.8,1780,动作/动画/冒险,德国,2014,10324\r\n恐怖旅馆,2.7,1780,喜剧/恐怖,中国大陆,2012,4806\r\n爱情来了 愛情來,8.1,1779,喜剧,台湾,1998,14409.9\r\n小双侠 ヤッターマ,6,1779,喜剧/动作,日本,2009,10674\r\n拉扎老师,7.8,1778,剧情/喜剧,加拿大,2011,13868.4\r\n伴我梦游,6.7,1778,剧情/喜剧/爱情,美国,2012,11912.6\r\n爱您爱到杀死您,6.2,1777,喜剧/爱情,香港,1997,11017.4\r\n无相劫,6.1,1777,动作/惊悚/犯罪,印度Indian,2013,10839.7\r\n自私的巨人,7.7,1776,剧情,英国,2013,13675.2\r\n玫瑰的故事,6.4,1776,剧情/爱情,香港,1986,11366.4\r\n杀人狂魔,5.7,1776,悬疑/恐怖/犯罪,美国,2013,10123.2\r\n光晕：传奇,7.3,1775,动作/科幻/动画,美国/日本,2010,12957.5\r\n天外来客,7.1,1775,剧情/科幻,英国,1976,12602.5\r\n美国风情画,7.7,1774,剧情/喜剧/爱情,美国,1974,13659.8\r\n炎热的夜晚,7.7,1774,剧情/悬疑/惊悚/犯罪,美国,1967,13659.8\r\n遗失在火中的记忆,7.3,1774,剧情,美国/英国,2007,12950.2\r\n四个毕业生,7.5,1773,剧情/喜剧/爱情,美国,1994,13297.5\r\n无事生非,7.4,1773,喜剧/爱情/战争,英国/美国,1993,13120.2\r\n黑白战场 黑白戰,6.2,1771,剧情/犯罪,香港,2005,10980.2\r\n天元突破剧场版：红莲篇 劇場版 天元突破グレンラガン ,8.6,1770,剧情/喜剧/动作/科幻/动画,日本,2008,15222\r\n10件或,7.7,1770,剧情/喜剧/爱情,美国,2006,13629\r\n玩命狙击,3.2,1770,动作/犯罪,泰国,2011,5664\r\n瑞典女王,8.3,1769,剧情/爱情/传记/历史/战争,美国,1933,14682.7\r\n魔诫坟场,7.6,1769,喜剧/爱情/恐怖,法国/意大利/德国,1994,13444.4\r\n与敌共眠,7,1769,剧情/惊悚/犯罪,美国,1991,12383\r\n少年特工科迪,6.2,1769,喜剧/动作/爱情/惊悚/家庭/犯罪/冒险,加拿大/美国,2003,10967.8\r\n反叛的鲁路修特别篇：暗黑的背叛 コードギアス 反逆のルルーシュ 特別,9,1768,动画,日本,2008,15912\r\n怪谈 怪,6.3,1768,剧情/爱情/恐怖,日本,2007,11138.4\r\n海的沉默,8.2,1767,剧情/爱情/战争,法国,1949,14489.4\r\n父女情,7.2,1767,剧情,美国/意大利,2015,12722.4\r\n游龙戏凤,6.9,1767,喜剧/爱情,英国/美国,1957,12192.3\r\n鬼讯号,6.2,1767,剧情/科幻/悬疑/惊悚/恐怖,加拿大/英国/美国,2005,10955.4\r\n最狂野的梦想：征服珠峰,8.7,1766,传记,美国,2010,15364.2\r\n杰克和露丝的情歌,7.9,1766,剧情,美国,2005,13951.4\r\n水中漫步,7.8,1766,剧情/悬疑/惊悚/同性,以色列/瑞典,2005,13774.8\r\n五毒,7.8,1766,动作,香港,1978,13774.8\r\n小鬼神偷,6.4,1766,喜剧/动作/家庭/犯罪/冒险,美国/德国,2004,11302.4\r\n名侦探柯南特典：怪盗基德诞生的秘密 名探偵コナンスペシャル 怪盗キッド誕生の,8,1764,剧情/悬疑/犯罪,日本,2010,14112\r\n阿茹茉妮 アルモ,7.9,1764,剧情/动画/短片,日本,2014,13935.6\r\n喜盈门,7.9,1763,剧情/家庭,中国大陆,1905,13927.7\r\n交易,7.5,1762,剧情/惊悚/犯罪,德国/美国,2007,13215\r\n结婚纪念日,6.5,1760,喜剧/爱情,美国,2005,11440\r\n恐怖母亲节,6.3,1760,惊悚/恐怖,美国,1905,11088\r\n猛龙特囧 猛龍特,4.4,1760,喜剧/动作,香港/中国大陆,2015,7744\r\n别动,7.9,1759,剧情/爱情,意大利/西班牙/英国,2004,13896.1\r\nO侯爵夫,7.3,1759,剧情/历史,法国/西德,1976,12840.7\r\n难兄难弟,7.8,1758,喜剧/犯罪,法国,1986,13712.4\r\n地狱醒龙,7,1758,剧情/动作/惊悚,美国,2003,12306\r\n环大西洋,3,1758,科幻,美国,2013,5274\r\n超级大坏蛋短片：毁灭按钮,6.7,1757,喜剧/动画/短片,美国,2011,11771.9\r\n国境边界,5.3,1757,剧情/动作/惊悚/犯罪,墨西哥/美国,2008,9312.1\r\n不惜一切回巴黎 ,6.6,1756,喜剧,法国,2013,11589.6\r\n女教授的隐秘魅力,4.7,1756,喜剧/爱情,韩国,2006,8253.2\r\n想爱就爱,4.6,1756,剧情/爱情,泰国,2015,8077.6\r\n小乌龟是如何长大的,7.8,1754,喜剧,英国,2015,13681.2\r\n冰峰游戏,5,1754,动作/冒险,芬兰/英国/德国,2014,8770\r\n不羁的美女,7.1,1753,剧情/情色,法国/瑞士,1991,12446.3\r\n2009迷,6.7,1753,剧情/动作/科幻/悬念,韩国/日本,2002,11745.1\r\n黑色喜剧 黑色喜,3.8,1753,喜剧,香港,2014,6661.4\r\n若世界属于我,7.1,1752,喜剧/爱情/同性/歌舞/奇幻/冒险,美国,2008,12439.2\r\n不惜一切,6.7,1752,喜剧/犯罪,英国/法国,1995,11738.4\r\n母与子 Мать и ,8.4,1751,剧情,俄罗斯/德国,1997,14708.4\r\n高山上的世界杯,8.5,1750,喜剧/运动,Bhutan/澳大利亚,2000,14875\r\n大奥华之乱 SP 悲恋的尽头 大奥～華の乱～,7.7,1749,古装,日本,2005,13467.3\r\n二龙湖浩哥之风云再起,6.5,1749,剧情/喜剧,中国大陆,2015,11368.5\r\n飞出个未来大电影4：绿色狂,8.1,1748,喜剧/动作/科幻/动画,美国,2009,14158.8\r\n我最好的朋友哈利,7.3,1748,剧情/喜剧/惊悚,法国,2000,12760.4\r\n灵气逼人 靈氣迫,6.7,1748,剧情/恐怖,香港,1984,11711.6\r\n海盗船与碰碰猫,8,1747,动画/短片,法国/加拿大,2004,13976\r\n生死抉择,6.2,1746,剧情,中国大陆,2000,10825.2\r\n那年阳光灿烂,8.4,1745,剧情/传记,西班牙/英国/法国/智利,2005,14658\r\n我愿意,7.4,1745,剧情/爱情/同性,美国,2012,12913\r\n图书馆战争2：最后的任务 図書館,7.2,1745,剧情/动作/科幻,日本,2015,12564\r\n美国制造,7,1745,悬疑/犯罪,法国,1966,12215\r\n蛇蝎美人,6.8,1745,惊悚/犯罪,法国,2002,11866\r\n爱情达阵,6.6,1745,剧情/喜剧/爱情/运动,美国/德国,2008,11517\r\n五个相扑的少年 シコふんじゃった,7.9,1744,喜剧/运动,日本,1992,13777.6\r\n卡夫卡,7.8,1744,剧情/喜剧/科幻/悬疑/惊悚,美国/法国,1991,13603.2\r\n海岸情深,5.7,1744,剧情/爱情,美国/法国,2015,9940.8\r\n白色上帝 ,7,1743,剧情,匈牙利/德国/瑞典,2014,12201\r\n非我吉日,6.8,1743,喜剧/动作/冒险,德国,2014,11852.4\r\n天与地 天と地,7.9,1742,剧情/动作/战争/冒险,日本,1990,13761.8\r\n爱在春天来临,8,1741,剧情/爱情/西部,美国,2003,13928\r\n飞向太空,6.6,1741,剧情/爱情/科幻/悬疑,美国,2002,11490.6\r\n剧场版 BL,6.5,1741,动画,日本,2012,11316.5\r\n开拓者,5.9,1741,剧情/动作/惊悚/历史/战争/冒险,美国,2007,10271.9\r\n跳支华尔兹,7.1,1740,剧情/喜剧,加拿大/西班牙/日本,2011,12354\r\n浮士德,8.6,1739,恐怖/奇幻,德国,1926,14955.4\r\n五月八月,7.9,1739,剧情/家庭/战争,香港,2002,13738.1\r\n大玩家,7.5,1739,剧情/喜剧/爱情/悬疑/惊悚/犯罪,美国,1992,13042.5\r\n烟雨红颜,6.4,1739,爱情,中国大陆,2002,11129.6\r\n我是谁,3.4,1739,喜剧/动作,中国大陆,2015,5912.6\r\nA片特攻,6.5,1738,喜剧,美国,2005,11297\r\n盗马贼,7.4,1737,剧情,中国大陆,1905,12853.8\r\n恐怖因素,6.4,1737,喜剧/动作/惊悚/冒险,美国,1999,11116.8\r\n天涯沦落女,8.2,1736,剧情,法国,1985,14235.2\r\n好莱坞庄园,6.5,1736,剧情/悬疑/惊悚/传记/历史/犯罪,美国,2006,11284\r\n回归者,6.4,1736,动作/科幻/冒险,日本,2002,11110.4\r\n杀人房间,5.4,1736,剧情/惊悚/恐怖,美国,2009,9374.4\r\n原始恐惧,5.3,1736,惊悚/恐怖,澳大利亚,2011,9200.8\r\n发薪日,8.9,1735,喜剧/短片,美国,1922,15441.5\r\n剧场版动画 忍者乱太郎 忍术学园 全员出动！ 劇場版アニメ 忍たま乱太郎 忍術学園 ,8,1735,动画,日本,2011,13880\r\n家长指导,7.2,1735,喜剧,美国,2012,12492\r\n深入敌后3：哥伦比,6,1735,动作/惊悚/战争,美国,2009,10410\r\nK 剧场版 ,7.7,1734,动作/科幻/动画/战争,日本,2014,13351.8\r\n大甩卖,7,1734,剧情/喜剧,美国,2011,12138\r\n爱与和平 ラブ&a,6.8,1734,剧情/科幻,日本,2015,11791.2\r\n全力扣杀 全力扣,4.8,1734,喜剧/动作,香港/中国大陆,2015,8323.2\r\n鲸的鱼跃 クジラの跳,8.4,1733,动画/短片/奇幻,日本,1905,14557.2\r\n野兽之都,7,1733,剧情/犯罪,韩国,1997,12131\r\n变蝇人,6.2,1733,科幻/恐怖,美国,1989,10744.6\r\n失业皇帝 失業皇,6.2,1733,喜剧/爱情,香港,1999,10744.6\r\n我们梦中见,7.6,1732,剧情/喜剧,美国,2015,13163.2\r\n蜡笔小新之森林里的暴风雨 クレヨンしんちゃん 嵐を呼ぶジャン,7.9,1731,喜剧/动画,日本,2000,13674.9\r\n欲蛇,4,1731,惊悚/恐怖/奇幻,印度/美国,1905,6924\r\n超时空要塞外传 マクロスプラ,8.8,1730,科幻/动画,日本,1994,15224\r\n蒲田进行曲 蒲田行進,8,1730,喜剧/爱情,日本,1982,13840\r\n维特根斯坦,7.8,1730,剧情/同性/传记/历史,英国/日本,1993,13494\r\n委托人,7.6,1730,剧情/悬疑/惊悚,美国,1994,13148\r\n追讨者,6.9,1730,喜剧/动作/科幻,美国,1984,11937\r\n四海本色,8.3,1729,惊悚/犯罪/运动/黑色电影,英国,1950,14350.7\r\n兰闺惊变,8.1,1729,剧情/惊悚,美国,1962,14004.9\r\n圆桌 円卓 こっこ、ひと夏のイマ,7,1729,喜剧,日本,2014,12103\r\n十月奏鸣曲,7.4,1728,爱情,泰国,2009,12787.2\r\n黑狱断肠歌之砌生猪肉 黑獄斷腸歌之砌生豬,6.9,1728,犯罪,香港,1997,11923.2\r\n男妇女主任,6.8,1728,剧情/喜剧,中国大陆,1999（中国大陆）,11750.4\r\n詹尼弗,6.8,1728,惊悚/恐怖,美国,2005,11750.4\r\n惊魂记,7.3,1727,悬疑/惊悚/恐怖,美国,1983,12607.1\r\n来自樱花的信：AKB48成员们的毕业物语 桜からの手紙 ～AKB,6.9,1727,剧情/喜剧/爱情,日本,2011,11916.3\r\n中俄列车大劫案 中俄列車大劫,6.3,1727,动作,香港,1995,10880.1\r\n阴阳路4：与鬼同,5.9,1727,喜剧/恐怖,香港,1998,10189.3\r\n这样的爱 ,8.1,1726,剧情,法国,2010,13980.6\r\n美丽新世界 As,7.4,1726,喜剧/家庭/奇幻/冒险,法国/德国/意大利,1999,12772.4\r\n入侵隐私,5.4,1726,剧情/惊悚/恐怖,英国/美国,2011,9320.4\r\n沙滩上的宝莲 ,8.1,1725,剧情/喜剧/爱情,法国,1983,13972.5\r\n带一片风景走 帶一片風景,7.6,1725,剧情,台湾,2011,13110\r\n妖兽都市 妖獣都,7.4,1725,科幻/动画/恐怖/奇幻,日本,1987,12765\r\n咒·丝,4.8,1725,惊悚,中国大陆,2013,8280\r\n紧急44,7.2,1724,剧情/动作/犯罪,美国,2003,12412.8\r\n战地巫师,6.9,1724,剧情,加拿大,2012,11895.6\r\n格雷塔,6.7,1723,剧情/爱情,美国,2009,11544.1\r\n冷酷的心 ,8.1,1722,剧情/爱情/冒险,墨西哥,1968,13948.2\r\n干爹,4.9,1722,剧情/短片,中国大陆,2012,8437.8\r\n杀人电梯,6.1,1721,喜剧/科幻/惊悚/恐怖/奇幻,荷兰,1983,10498.1\r\n美女食神,4.8,1721,喜剧,香港,2007,8260.8\r\n同性之光,7,1720,剧情/喜剧/同性,美国,2003,12040\r\n操行零分 Z,8.2,1718,剧情/喜剧/短片,法国,1933,14087.6\r\n鳄鱼藏尸日记,7.5,1718,剧情,韩国,1996,12885\r\n夏娃的诱惑：她的技巧,5.8,1718,剧情/惊悚,韩国,2007,9964.4\r\n白痴,7.5,1717,剧情/喜剧,丹麦/瑞典/法国/荷兰/意大利,1999,12877.5\r\n大使阁下的料理人 大使閣下の料理,6.1,1717,剧情,日本,2015,10473.7\r\n他人之子,8.2,1716,剧情,比利时/法国,2002,14071.2\r\n泥之河 泥の,8.9,1715,剧情,日本,1981,15263.5\r\n朝圣者,8.1,1715,喜剧,美国,1923,13891.5\r\n黑执事OVA：夏尔的仙境奇旅(上) 黒執事Ⅱ シエル・イン・,6.9,1715,剧情/动画,日本,2010,11833.5\r\n一个屌丝的自我修养,4.6,1715,剧情/喜剧,中国大陆,2014,7889\r\n花之锁 花の,6.9,1714,爱情/悬疑,日本,2013,11826.6\r\n恋极星 恋極,6.2,1714,剧情/爱情,日本,2009,10626.8\r\n送死,5.7,1714,剧情/惊悚/恐怖,泰国,1905,9769.8\r\n新你所不知道的世界 新あなたの知らない世,5.2,1714,恐怖/短片,日本,2011,8912.8\r\n鹳鸟踟蹰 Το μετέωρο βήμα του ,8.7,1713,剧情/爱情,法国/意大利/希腊/瑞士,1991,14903.1\r\n火柴厂女工,8.3,1713,剧情,芬兰/瑞典,1990,14217.9\r\n偏执,5.7,1713,剧情/动作/惊悚/犯罪,美国/法国,2013,9764.1\r\n中国鸟人 中国の鳥,7.5,1712,剧情/喜剧/奇幻/冒险,日本,1998,12840\r\n遥远的时空中·舞一夜 劇場版 遙かなる時空の中で ,7.6,1711,动画,日本,2006,13003.6\r\n黑色炸药,6.8,1711,喜剧/动作,美国,2009,11634.8\r\n塞瑟岛之旅 Ταξίδι στα Κ,8.5,1710,剧情,希腊/意大利/英国/西德,1984,14535\r\n母性光辉,6.7,1710,家庭,美国,2009,11457\r\n逃离魔窟 グシャノビンヅ,6.7,1709,科幻/恐怖,日本,2004,11450.3\r\n木棉袈裟,6.6,1709,动作/爱情/武侠/古装,中国大陆/香港,1985,11279.4\r\n联合舰队司令长官：山本五十六 聯合艦隊司令長官：山本五十,7.5,1708,传记/历史/战争,日本,2011,12810\r\n混合宿舍,5.8,1708,喜剧,美国,2006,9906.4\r\n败家仔,7.4,1707,喜剧/动作,香港,1981,12631.8\r\n征服,7.4,1707,剧情/历史,意大利/法国,2009,12631.8\r\n新岳父大人,7.3,1707,喜剧/家庭,美国,1991,12461.1\r\n飞虎狂龙,6.4,1707,剧情/喜剧/动作/惊悚/犯罪,美国,1996,10924.8\r\n千王,6.6,1706,喜剧,香港,1991,11259.6\r\n罪与错,8,1705,剧情/喜剧,美国,1989,13640\r\n碟形世界：魔法的色彩,6.8,1705,喜剧/家庭/奇幻/冒险,英国,2008,11594\r\n人生,8.2,1704,剧情,中国大陆,1905,13972.8\r\n百日红 百日紅 ,7.3,1704,剧情/动画/传记/历史,日本,2015,12439.2\r\n调情魔师,6.5,1704,剧情/爱情,美国/英国,2005,11076\r\n八墓村 八つ墓,7.4,1703,悬疑,日本,1996,12602.2\r\n奥斯汀乐园,6.6,1703,剧情/爱情,美国/英国,2013,11239.8\r\n湿度的爱情 マグマのごと,6.5,1703,情色,日本,2004,11069.5\r\n夏娃的诱惑：娇妻,6.3,1703,剧情/悬疑/情色,韩国,2007,10728.9\r\n超人,6.2,1703,动作/科幻/冒险,英国/美国,1983,10558.6\r\n人造天堂 ユリイ,8.4,1702,剧情,日本,2000,14296.8\r\n女王旅途,7.3,1702,剧情/喜剧,印度,2013,12424.6\r\n青春誓约,6.9,1702,剧情/传记/历史/战争,英国,2015,11743.8\r\n早熟,5.8,1701,喜剧,美国,2014,9865.8\r\n周而复始,8.2,1700,动画/短片,捷克,1905,13940\r\n玛德2号 瑪,4.5,1699,剧情/家庭,中国大陆/香港/台湾,2013,7645.5\r\n时光恋人,3.4,1699,剧情/爱情/奇幻,中国大陆,2013,5776.6\r\n雪人,8.9,1698,动画/短片,英国,1982,15112.2\r\n美丽谎言,7.8,1698,剧情,美国,2014,13244.4\r\n放松日,7.5,1698,剧情,英国,2009,12735\r\n尚格·云顿,7.5,1698,剧情/喜剧/动作/犯罪,比利时/卢森堡/法国,2008,12735\r\n不明影像：绝对点击禁止,6,1698,恐怖,韩国,2012,10188\r\n群斗,5.9,1698,动作/恐怖,法国,2010,10018.2\r\n黑暗之光,8.1,1697,剧情,台湾,1999,13745.7\r\n超时空要塞F 剧场版后篇：恋离之翼 劇場版マクロスF 恋離飛翼〜サヨ,7.7,1697,动画,日本,2011,13066.9\r\n千钧一发,6.6,1697,剧情/惊悚/犯罪,美国,1995,11200.2\r\n牛郎俱乐部 ウォーター,6.2,1697,剧情/喜剧/爱情,日本,2006,10521.4\r\n诊所惊魂,5.8,1697,悬疑/惊悚/恐怖/犯罪,澳大利亚,2010,9842.6\r\n赤色密室 赤い密室 禁断の王様ゲ,5,1697,恐怖,日本,1999,8485\r\n有只僵尸暗恋你 有隻僵屍暗戀,4.6,1696,剧情/喜剧/悬疑/惊悚/恐怖/犯罪,香港,2008,7801.6\r\n爱情神话,7.8,1695,剧情/奇幻,意大利,1969,13221\r\n诱惑假期 ,7.4,1694,剧情/爱情/同性,德国,2004,12535.6\r\n鬼恋,6.5,1694,悬疑/惊悚/恐怖,美国,1983,11011\r\n学生闹翻天,6.3,1694,喜剧/悬疑/恐怖,美国,1981,10672.2\r\n极限推理 極限推理コロシア,5.6,1694,悬疑,日本,2004,9486.4\r\n寒蝉鸣泣之时 ひぐらしのなく頃,5.3,1694,剧情/惊悚/恐怖,日本,2008,8978.2\r\n咒怨：完结篇 呪怨 ザ・ファ,4.6,1694,悬疑/恐怖,日本,2015,7792.4\r\n国境之南,7.6,1693,剧情,韩国,2006,12866.8\r\n寻找隐世快乐 ,8,1692,剧情/动画,意大利,2013,13536\r\n美丽时光 美麗時,7.8,1692,剧情/惊悚/犯罪,台湾,2002,13197.6\r\n夏日吊带裙 U,8,1690,短片,法国,1997,13520\r\n芭比之胡桃夹子,7.5,1690,动画/歌舞/家庭,美国,2001,12675\r\n感化院,8.3,1689,剧情,德国,2015,14018.7\r\n天使的心跳特别篇：通向天堂的阶梯,7.8,1689,动画,日本,2010,13174.2\r\n包法利夫人,7.5,1689,剧情,英国BBC,2000,12667.5\r\n九尾狐家族,6.1,1689,喜剧/歌舞/奇幻,韩国,2006,10302.9\r\n通往死刑台的电梯 死刑台のエレベータ,5.7,1687,剧情/惊悚/犯罪,日本,2010,9615.9\r\n旅行,8.8,1686,剧情/历史,阿根廷/墨西哥/西班牙/法国/英国,1992,14836.8\r\n红带高手,6.6,1686,剧情/动作/运动,美国,2008,11127.6\r\n大家，再见 みなさん、さような,7.4,1685,喜剧,日本,2013,12469\r\n热血青年,6.5,1685,恐怖,香港,2002,10952.5\r\n赤足情缘,7.9,1684,剧情/喜剧/爱情,德国,2005,13303.6\r\n等待黎明,7.7,1684,动作/战争,香港,1984,12966.8\r\n夏至物语,7.9,1683,剧情/短片,日本,1992,13295.7\r\n三亿日元抢劫案 三億円事,6.6,1683,剧情/犯罪,日本,2014,11107.8\r\n女虐,6,1683,悬疑/惊悚/恐怖,日本,1905,10098\r\n玩尽杀绝3：钻石计,5.8,1683,剧情/动作/悬疑/惊悚,美国,2005,9761.4\r\n怪物,5.7,1682,惊悚,韩国,2014,9587.4\r\n浪得过火,7.1,1680,剧情/喜剧/爱情/情色,法国,1996,11928\r\n黑金风暴,6.8,1680,剧情/喜剧/传记/犯罪,加拿大,2010,11424\r\n百分百感觉2003 ,6.1,1680,喜剧/爱情,香港,2003,10248\r\n幽魂学怨,5.8,1680,恐怖,泰国,2009,9744\r\n12岁的,8.2,1679,剧情,美国,2005,13767.8\r\n跨跃彩虹,8.4,1678,剧情/爱情,韩国,2002,14095.2\r\n黑帮大佬和平梦,8.2,1678,剧情/喜剧/爱情/歌舞/历史,印度,2006,13759.6\r\n群魔乱舞,6.8,1678,恐怖,德国,1905,11410.4\r\n女友的男友,8,1677,喜剧/爱情,法国,1987,13416\r\n美术馆旁的动物园,7.6,1677,爱情,韩国,2001,12745.2\r\n燃烬八月,7.1,1677,剧情/爱情/同性,美国,2011,11906.7\r\n寂静的地球,6.9,1677,剧情/科幻/悬疑,新西兰,1985,11571.3\r\n普通人,8,1676,剧情,美国,1980,13408\r\n晚期四重奏,7.6,1676,剧情,美国,2012,12737.6\r\n最后一场电影,8.1,1675,剧情,美国,1971,13567.5\r\n魔鞋,7.8,1675,喜剧/爱情,美国/法国,1990,13065\r\n梦中人,6.3,1675,剧情,香港,1986,10552.5\r\n一声惊雷,5.6,1675,动作/科幻/惊悚/冒险,德国/美国/英国/捷克,2005,9380\r\n明日，战争爆发时,5.1,1675,剧情/动作/冒险,澳大利亚/美国,2010,8542.5\r\n傻瓜回忆录,6.9,1673,剧情,英国,2008,11543.7\r\n金银岛,6.6,1673,冒险,爱尔兰/英国,2012,11041.8\r\n抱紧眼前人,6.5,1673,剧情/爱情/同性,美国,2007,10874.5\r\n雪山惊魂,6.1,1673,剧情/爱情/悬疑/惊悚/恐怖,挪威,2008,10205.3\r\n稻草人,8.5,1672,喜剧/历史/战争,台湾,1987,14212\r\n荒川爆笑团 电影版 荒川アンダー ザ ,6.6,1672,喜剧,日本,2012,11035.2\r\n呆呆向前冲,6.6,1672,喜剧/运动,美国,1998,11035.2\r\n白糖,7.6,1671,短片,荷兰,2010,12699.6\r\n陷阱,6,1671,惊悚,韩国,1997,10026\r\n我爱灰太狼,3.1,1671,喜剧/动画/冒险,中国大陆,2012,5180.1\r\n站稳了,7.1,1670,剧情/喜剧/运动,美国/德国,2006,11857\r\n胡萝卜小姐,5.8,1670,喜剧,韩国,2008,9686\r\n伯爵夫人的耳环,8.1,1669,剧情/爱情,法国/意大利,1953,13518.9\r\n厕所 トイレッ,7.9,1669,剧情,日本,2010,13185.1\r\n开心超人2：启源星之,5.4,1669,动画/冒险,中国大陆,2014,9012.6\r\n天元突破剧场版：螺岩篇 劇場版 天元突破グレンラガン ,9,1668,剧情/动画,日本,2009,15012\r\n征服者贝莱,8.5,1668,剧情,丹麦/瑞典,1987,14178\r\n江湖浪子,7.7,1668,剧情/爱情/运动,美国,1961,12843.6\r\n县厅招待课 県庁おもてなし,6.7,1668,喜剧/爱情,日本,2013,11175.6\r\n不脱袜的人 不脫襪的,7.4,1667,剧情/爱情,香港,1989,12335.8\r\n超人大战极英盟,7.1,1667,动画,美国,2012,11835.7\r\n杀人是我的职业，亲爱的,7.1,1667,喜剧/爱情/犯罪,德国,2009,11835.7\r\n神算,6.6,1667,喜剧/犯罪,香港,1992,11002.2\r\n压榨,6.1,1666,喜剧/爱情/犯罪,美国,2009,10162.6\r\n没女神探 沒女神,4.4,1666,喜剧,香港/中国大陆,2015,7330.4\r\n关于伊丽,8,1665,剧情/悬疑,伊朗,2009,13320\r\n皮囊之秘密派对特别篇,7.9,1665,剧情/喜剧,英国,2007,13153.5\r\n仙履奇缘3： 时间,7.1,1665,爱情/动画/家庭/奇幻,美国,2007,11821.5\r\n城市游戏,3.2,1665,动作/惊悚,中国大陆/美国,2014,5328\r\n哆啦A梦：大雄的海底鬼岩城 ドラえもん のび太の海底,8.3,1664,科幻/动画/冒险,日本,1983,13811.2\r\n大饭店,7.7,1663,剧情/爱情,美国,1932,12805.1\r\n最美的时候遇见你,5.5,1663,爱情,中国大陆,2015,9146.5\r\n极度重犯 極度重,6.5,1662,动作/惊悚/犯罪,香港,1998,10803\r\n冷静与热情之间 冷静と情熱のあい,7.1,1661,爱情,日本,2001,11793.1\r\n外星追缉令,6.3,1661,剧情/科幻/悬疑/恐怖,美国,1993,10464.3\r\n炫富战争,7.4,1660,喜剧/短片,瑞典,2015,12284\r\n马达加斯加的疯狂情人节,6.6,1660,动画/短片,美国,2013,10956\r\n挑逗性游戏,5.9,1660,动作/惊悚,美国,1995,9794\r\n代号：杀手,5.8,1660,喜剧/动作/犯罪,美国,2007,9628\r\n关灯以后,7.2,1659,恐怖/短片,美国,2013,11944.8\r\n鬼三惊,5,1659,恐怖,泰国,2014,8295\r\n天涯寻梦,8.2,1658,剧情,西班牙,2000,13595.6\r\n禁果,7.4,1658,剧情,芬兰/瑞典,2009,12269.2\r\n危险辩护,6.1,1658,悬疑/惊悚/犯罪,英国/美国,2013,10113.8\r\n水泥花园,7.8,1657,剧情,法国/德国/英国,1993,12924.6\r\n他们在毕业的前一天爆炸 精华,7.7,1657,剧情/爱情,台湾,2011,12758.9\r\n男神与女神的罗曼史 L,6.9,1657,剧情/爱情,法国/意大利/西班牙,2007,11433.3\r\n鲨鱼惊魂夜,4.2,1657,恐怖,美国,2011,6959.4\r\n修女传,7.9,1656,剧情,美国,1959,13082.4\r\n爱的亡灵 愛の亡,6.9,1656,剧情/爱情/恐怖,法国/日本,1978,11426.4\r\n白色情人节,6.7,1656,爱情,韩国,1999,11095.2\r\n七侠五义之五鼠闹东京 七俠五義之五鼠鬧東,6.1,1656,喜剧/动作/武侠/古装,香港,1905,10101.6\r\n冷酷祭典 L,8,1655,剧情/惊悚/犯罪,法国/德国,1995,13240\r\n染血将军的凯旋 ジェネラル・ルージュの,7.9,1654,剧情/喜剧/悬疑,日本,2009,13066.6\r\n人质,7.8,1653,动作/惊悚/短片/犯罪/冒险,美国,2002,12893.4\r\n寄生人,5.4,1652,惊悚,中国大陆/香港,2007,8920.8\r\n双重身份,4.3,1652,惊悚/犯罪,英国,2011,7103.6\r\n傀儡之城 のぼうの,7.1,1651,剧情/历史,日本,2012,11722.1\r\n兔八哥与坏蛋,8.8,1650,喜剧/动画/短片/家庭,美国,1954,14520\r\n芭比与魔幻飞马之旅,7.6,1650,爱情/动画/家庭,美国,2005,12540\r\n极道鲜师SP：鬼马校园毕业礼 ごくせん スペシャル さよなら３年Ｄ組…ヤンクミ,7.2,1650,剧情,日本,2003,11880\r\n明星伙伴,5.9,1649,喜剧,美国,2015,9729.1\r\n崎路父子情,7.9,1648,剧情/家庭/传记,英国/爱尔兰,2007,13019.2\r\n沉静的美国人,7,1648,剧情/爱情/悬疑/惊悚/战争,德国/美国/英国/澳大利亚/法国,2002,11536\r\n解放的潘多拉,5.7,1648,情色,法国,1905,9393.6\r\n美少女战士S剧场版：竹姬的恋人 劇場版 美少女戦士セーラー,8.4,1647,动作/爱情/动画/奇幻,日本,2000,13834.8\r\n致命请柬,2.6,1647,剧情/悬疑/惊悚/恐怖,中国大陆,2011,4282.2\r\n阿孖有难,5.6,1646,喜剧/犯罪,香港,2004,9217.6\r\n尤利西斯,7.6,1645,剧情,英国/美国,1967,12502\r\n这一刻，爱吧,7.1,1645,剧情/喜剧/爱情/短片,台湾,2014,11679.5\r\n陷阱,6.1,1645,剧情/惊悚/犯罪,美国,2012,10034.5\r\n极爆少年,5.5,1645,动作/科幻,新西兰/加拿大,2015,9047.5\r\n豪勇七蛟龙,7.5,1644,动作/西部,美国,1960,12330\r\n复仇少年,7.3,1644,剧情/动作/惊悚/犯罪,美国,2010,12001.2\r\n偷窥狂人,6.3,1644,剧情/情色,意大利,1994,10357.2\r\n有客到,5.3,1644,惊悚,香港,2015,8713.2\r\n无辜的人,7.9,1643,惊悚/恐怖,美国/英国,1961,12979.7\r\n普罗旺斯惊魂记 ,3.9,1643,剧情/悬疑/惊悚/恐怖,法国,2012,6407.7\r\n蜡笔小新之呼风唤雨！夕阳下的春日部男孩 クレヨンしんちゃん 嵐を呼ぶ!夕陽のカスカベボ,8.7,1642,动画/家庭,日本,2004,14285.4\r\n人头蛊,6.2,1642,惊悚,泰国,2007,10180.4\r\n冷酷媒体,7.9,1641,剧情/爱情,美国,1970,12963.9\r\n大辫子的诱惑,6.8,1641,爱情/历史,中国大陆/澳门,1905,11158.8\r\n纽约大地震,6.5,1640,动作/惊栗,美国/德国,1999,10660\r\n娚的一生 娚の一,6.5,1640,剧情,日本,2015,10660\r\n沙海漂流人,6.1,1640,剧情/犯罪,澳大利亚/美国,2014,10004\r\n乞力马扎罗的雪,7.8,1639,剧情/爱情/冒险,美国,1952,12784.2\r\n新七龙珠 新七龍,6.4,1639,动作/奇幻,台湾,1905,10489.6\r\n林家铺子,7.9,1638,剧情,中国大陆,1905,12940.2\r\n热血新仔,7,1638,喜剧,荷兰,2010,11466\r\n美景之屋,4.6,1638,爱情,韩国,2012,7534.8\r\n小神来了,3.3,1638,喜剧/家庭/儿童,中国大陆,2013,5405.4\r\n诗人之血 ,8.1,1637,剧情/奇幻,法国,1930,13259.7\r\n挡不住的疯情 擋不住的瘋,6.5,1637,剧情/悬疑/惊悚/情色,香港,1993,10640.5\r\n五郎八卦棍,7,1635,剧情/动作/武侠/古装,香港,1984,11445\r\n英雄战场,5.6,1635,剧情,阿根廷/美国,1994,9156\r\n芳心何处,7.7,1634,剧情/喜剧/爱情,美国,2000,12581.8\r\n实验者,7,1634,剧情/传记/历史,美国,2015,11438\r\n商务囧途,6,1634,喜剧,美国,2015,9804\r\n甜美的老鼠生活,9.3,1633,喜剧/动画/短片,美国,1905,15186.9\r\n进击的巨人OAD2：突然的来访者 進撃の巨人 ,7.2,1632,剧情/动作/科幻/动画/战争/冒险,日本,2014,11750.4\r\n监视,6.7,1631,剧情/悬疑/惊悚/犯罪,美国/德国,2008,10927.7\r\n海军陆战队员,5.2,1631,动作/惊悚,美国,2015,8481.2\r\n永远的北极熊,7.6,1630,剧情/喜剧,美国,2014,12388\r\n诅咒,5.3,1630,恐怖,中国/香港,2005,8639\r\n双狙人,6.7,1629,动作,美国,2002,10914.3\r\n大地之歌,8.8,1628,剧情,印度,1955,14326.4\r\n野兽,6.8,1628,动作/惊悚/犯罪,韩国,2006,11070.4\r\n孟菲斯美女号,8.4,1627,剧情/动作/战争,英国/日本/美国,1990,13666.8\r\n罗马风情画,8.3,1627,剧情/喜剧,意大利/法国,1972,13504.1\r\n黑潮,8,1627,剧情/传记/历史,美国/日本,1992,13016\r\n变形记,7.6,1627,动画/短片,美国/加拿大,2007,12365.2\r\n地狱奶奶,6.5,1627,喜剧,韩国,2015,10575.5\r\n第一千金,6.2,1627,剧情/喜剧/爱情,美国,2004,10087.4\r\n间谍女孩,6.1,1627,喜剧/动作/爱情,韩国,2004,9924.7\r\n印度往事,7.8,1626,剧情/爱情/歌舞/运动,印度,2001,12682.8\r\n恶魔奶爸 OAD べるぜバブ べるぜバブ 拾った赤,7.6,1626,动画,日本,2010,12357.6\r\n粉红豹,7.5,1626,喜剧/动画/短片/家庭,美国,1964,12195\r\n女妖,8,1625,动画/惊悚/短片/奇幻,比利时,1979,13000\r\n教会,7.9,1625,剧情/历史/冒险,英国,1986,12837.5\r\n后继有人,7.8,1625,剧情/运动,美国,2006,12675\r\n远离我所欲,7.6,1625,剧情/短片/同性,英国,1905,12350\r\n老妇与鸽子,8.3,1624,喜剧/动画/短片,加拿大/法国/比利时/英国,1998,13479.2\r\n特写,8.3,1624,剧情/犯罪,伊朗,1905,13479.2\r\n鼓手,7.8,1624,剧情,香港,1983,12667.2\r\n老虎学艺,7.8,1624,动画,中国大陆,1905,12667.2\r\n义盖云天 義蓋雲,6.6,1624,喜剧/爱情,香港,1986,10718.4\r\n摩根先生的第二春,7.1,1623,剧情/喜剧,德国/比利时/美国/法国,2013,11523.3\r\n鬼干部 鬼幹,6.6,1623,惊悚/恐怖,香港,1991,10711.8\r\n千金傲游记,5.9,1623,剧情/喜剧/家庭,美国,1905,9575.7\r\n致命追踪,5.5,1623,剧情/动作/惊悚,美国,2015,8926.5\r\n远大前程,7.9,1622,剧情/爱情,英国,1946,12813.8\r\n我要升职,6.3,1622,喜剧,美国,2008,10218.6\r\n豚鼠系列之3：他不会死 ギニーピッグ3 戦慄!,5.4,1622,喜剧/恐怖/短片,日本,1986,8758.8\r\n孤岛惊魂,5.1,1622,剧情/动作/冒险,德国/加拿大,2008,8272.2\r\n欢迎光临宇宙秀 宇宙ショーへようこ,7.5,1621,科幻/动画,日本,2010,12157.5\r\n混沌凶机 カオ,6.8,1621,悬疑/惊悚/犯罪,日本,2000,11022.8\r\n影子舞者,6.5,1621,剧情/惊悚,英国,2012,10536.5\r\n拍档闯情关 摩登神,5.8,1621,喜剧/爱情,香港,1985,9401.8\r\n山椒大夫,8.2,1620,剧情,日本,1954,13284\r\n乐高DC超级英雄：正义联盟大战异魔,7.2,1620,动画,美国,2015,11664\r\n强哲,6.4,1620,剧情,韩国,2013,10368\r\n布拉格狂想曲 ,8.4,1619,喜剧,捷克,2005,13599.6\r\n超决战！贝利亚银河帝国 ウルトラマンゼロ THE MOVIE ,6.6,1619,动作,日本,2012,10685.4\r\n龙头,6.6,1619,剧情/短片,中国大陆,2012,10685.4\r\n时空悍将,6.4,1619,动作/科幻/惊悚/犯罪,美国,1995,10361.6\r\n赛尔号大电影之寻找凤凰神兽,3.3,1619,动画/奇幻/冒险,中国大陆,2011,5342.7\r\n我爱你,8.2,1618,剧情/爱情/惊悚,香港,1998,13267.6\r\n借东西的小人,7.3,1618,喜剧/家庭/奇幻,英国,2011,11811.4\r\n穿梭阴阳界,6.8,1618,剧情/惊悚,美国,1999,11002.4\r\n工藤新一 京都新撰组杀人事件 工藤新一 京都新撰組殺,5.9,1618,剧情/爱情/悬疑/犯罪,日本,2012,9546.2\r\n川之光 川の,8,1617,动画,日本,2009,12936\r\n真爱无尽,7.5,1617,剧情/爱情/家庭/奇幻,美国,2002,12127.5\r\n校园风云,7.2,1616,剧情/运动,美国,1992,11635.2\r\n乔治·卡林：这对你不好,9.1,1615,脱口秀,美国,2008,14696.5\r\n墨东绮谭 濹東绮,7.7,1615,剧情,日本,1992,12435.5\r\n猪猪侠之勇闯巨人岛,3.8,1615,喜剧/动画/冒险,中国大陆,2014,6137\r\n神秘博士：时间冲撞,9.2,1614,剧情/喜剧/动作/科幻/奇幻/冒险,英国,2007,14848.8\r\n养鬼吃人,7.3,1614,剧情/惊悚/恐怖,英国,1988,11782.2\r\n夜玫瑰,6.7,1613,剧情/喜剧/爱情,中国,2009,10807.1\r\n迷恋,5.9,1613,惊悚,美国,2013,9516.7\r\n楼,2.8,1613,悬疑/惊悚,中国大陆,2013,4516.4\r\n都市情缘,8.1,1612,剧情/爱情,香港,1994,13057.2\r\n我爱你,7.9,1612,科幻/动画/短片,日本,2010,12734.8\r\n绿草地,7.7,1612,剧情/喜剧,中国大陆,2005,12412.4\r\n小鸡,7.7,1612,喜剧/短片,法国,1905,12412.4\r\n永远强大,7.3,1612,剧情/运动,美国,2008,11767.6\r\n1号通缉,6.7,1612,动作/惊悚,美国,1998,10800.4\r\n舞动夏令营,6.6,1612,剧情/喜剧/歌舞,美国,2003,10639.2\r\n加菲猫的狂欢节,5.8,1612,动画,美国/韩国,2008,9349.6\r\n脚注,7.6,1611,剧情,以色列,2011,12243.6\r\n中二病也要谈恋爱！ 闪耀的圣爆诞祭 中二病でも恋がしたい！ 煌めきの…聖,8.3,1610,剧情/动画,日本,2013,13363\r\n淑女本色,7.2,1610,剧情/爱情,英国/美国,1996,11592\r\n灌篮高手 剧场版4 スラムダンク 吠えろバスケットマン魂!! 花道,8.9,1609,剧情/动画/运动,日本,1995,14320.1\r\n华清春暖,8,1609,喜剧/爱情/歌舞,美国,1933,12872\r\n未来预想图 未来予想,7.1,1609,剧情/爱情,日本,2007,11423.9\r\n朝韩梦之队,6.5,1609,运动,韩国,2012,10458.5\r\nGhos,6.3,1609,恐怖,泰國,2006,10136.7\r\n强奸2：制服诱惑 強姦2制,5.5,1609,情色/犯罪,香港,1998,8849.5\r\n马桶妖怪,6.8,1608,喜剧/恐怖,美国,1987,10934.4\r\n爱娃的爱,6.1,1608,剧情/喜剧/爱情,美国,2003,9808.8\r\n东京暮色 東京暮,8.5,1607,剧情,日本,1957,13659.5\r\n岁月无情,7.1,1607,剧情/悬疑/犯罪,英国,1957,11409.7\r\n随爱沉沦,6.7,1607,喜剧/爱情,美国/德国,2003,10766.9\r\n请安静！,8.8,1606,喜剧/动画/短片/家庭,美国,1945,14132.8\r\n龙的世界,8.1,1606,奇幻/冒险,美国,1994,13008.6\r\n性的本质,7.3,1606,剧情/喜剧/爱情,英国,2006,11723.8\r\n锤子镰刀都休息,7.2,1606,剧情,中国大陆,1905,11563.2\r\n杨光的快乐生活,5.4,1606,喜剧,中国大陆,2013,8672.4\r\n天堂可以等待,8.3,1605,剧情/喜剧/爱情/奇幻,美国,1943,13321.5\r\n伯纳德与桃瑞丝,7.3,1605,剧情/喜剧/传记,美国/英国,2007,11716.5\r\n属于我们的圣诞节,7.3,1605,剧情/喜剧/家庭,法国,2008,11716.5\r\n洗黑钱 洗黑,6.5,1605,动作/犯罪,香港,1990,10432.5\r\n第二次爱情,7.2,1604,剧情,韩国/美国,2007,11548.8\r\n床事不过三,6.1,1604,喜剧,德国,2011,9784.4\r\n9路冥,5.3,1604,惊悚/恐怖,泰国,2012,8501.2\r\n爱森斯坦在瓜纳华托,7.6,1602,同性/传记/历史,荷兰/墨西哥/芬兰/比利时/法国,2015,12175.2\r\n单身指南,7,1602,喜剧/爱情,美国,2016,11214\r\n危机大逆袭,6.9,1602,剧情/喜剧,美国,2015,11053.8\r\n杀手·蝴蝶·梦,8.2,1601,剧情/惊悚,西班牙,1905,13128.2\r\n笃定发生,7.5,1601,科幻,英国,1936,12007.5\r\n劳工之爱情,8.1,1600,喜剧/爱情/短片,中国大陆,1905,12960\r\n我的朋友叫哈维,8,1600,剧情/喜剧/奇幻,美国,1950,12800\r\n电梯口,7.7,1600,动画/短片,中国大陆,2013,12320\r\n暴力圈,6.8,1600,动作/犯罪,韩国,2006,10880\r\n在我父亲的洞穴里,7.8,1599,剧情/悬疑/惊悚,新西兰/英国,2004,12472.2\r\n七宝奇谋,7.7,1599,喜剧/家庭/冒险,美国,1985,12312.3\r\n1303,5.4,1599,恐怖,日本/美国,2007,8634.6\r\n街头霸王,5.1,1599,动作/惊悚/犯罪,美国/日本,1994,8154.9\r\n宠物小精灵：梦幻与波导的勇者 劇場版ポケットモンスターアドバンスジェネレーション ミュウと波導の勇者 ル,7.9,1598,动作/动画/家庭/奇幻/冒险,日本,2005,12624.2\r\n野蛮比尔,7.8,1597,剧情,英国,2012,12456.6\r\n越狱二人组,7.4,1597,剧情/喜剧/动作,韩国,2007,11817.8\r\n通灵之六世古宅,4.1,1597,惊悚/恐怖,中国大陆,2015,6547.7\r\n剧匠魅影,9.4,1596,歌舞,英国,1998,15002.4\r\n红楼梦,7.8,1596,剧情,中国大陆,1905,12448.8\r\n咯咯咯的鬼太郎 ゲゲゲの鬼太,6.2,1596,奇幻,日本,2007,9895.2\r\n轻音少女番外篇：企划会议 けいおん!! 番外編 ,8.8,1595,动画,日本,2010,14036\r\n泡沫,7.8,1595,剧情/爱情/同性,以色列,2006,12441\r\n雾都孤儿,8.1,1594,剧情/犯罪/冒险,英国,1948,12911.4\r\n命运先生,7.9,1594,喜剧/奇幻,美国,1990,12592.6\r\n穿孔,6.7,1594,剧情,美国,2011,10679.8\r\n小菜一碟 ピース オブ ,6.1,1594,爱情,日本,2015,9723.4\r\n地上最强,5.5,1593,动作/冒险,香港,2001,8761.5\r\n残梦,3.8,1593,剧情,中国大陆,2012,6053.4\r\n对一个不容怀疑的公民的调查,7.8,1592,剧情/犯罪,意大利,1970,12417.6\r\n情迷维纳斯,7,1592,剧情/情色,美国,1995,11144\r\n不信弄不哭你,7.7,1591,喜剧/动画/短片,美国,1905,12250.7\r\n成长的烦恼：希瓦家归来,7.5,1591,喜剧/家庭,美国,2004,11932.5\r\n烈火金钢,7.4,1591,剧情/动作/战争,中国,1905,11773.4\r\n开心超人,6.8,1591,动画/冒险,中国大陆,2013,10818.8\r\n猫侍 剧场版 猫侍 ,6.7,1591,剧情/喜剧/古装,日本,2014,10659.7\r\n鬼入侵,6.3,1591,悬疑/惊悚/恐怖,美国,1999,10023.3\r\n冰雪谜案,6.2,1591,剧情/动作/惊悚,丹麦/德国/瑞典,1998,9864.2\r\n情狱,6.3,1590,剧情/爱情/同性,德国,2004,10017\r\n字母杀手,5.3,1590,剧情/惊悚/犯罪,美国,2008,8427\r\n东京变奏曲,7.5,1589,剧情,日本,2002,11917.5\r\n永无结局的故事,6.8,1589,喜剧/爱情,韩国,2012,10805.2\r\n艺校的秘密,7.2,1588,剧情/喜剧,美国,2006,11433.6\r\n伪造者,6.1,1587,剧情/惊悚/犯罪,美国,2015,9680.7\r\n影迷,8.4,1586,剧情,波兰,1979,13322.4\r\n年年有今日,7.6,1586,剧情/喜剧,香港,1994,12053.6\r\n异乡情愁,7.5,1586,剧情/爱情/惊悚,澳大利亚,1993,11895\r\n二见钟情之新好男人,5.8,1586,喜剧,美国,1996,9198.8\r\n刚果惊魂,6.7,1585,动作/科幻/悬疑/冒险,美国,1995,10619.5\r\n放学后的屋顶,6.6,1585,喜剧,韩国,2006,10461\r\n中环英雄 中環英,6.3,1585,喜剧,香港,1991,9985.5\r\n情到深处,7.6,1584,剧情/喜剧/爱情,美国,1989,12038.4\r\n会说话的照片,7.5,1584,剧情/喜剧/历史/战争,法国/葡萄牙/意大利,2003,11880\r\n汉城警事,6.9,1584,动作/犯罪,韩国,2003,10929.6\r\n杀手壕 殺手,5.8,1584,喜剧/动作,美国/香港,1980,9187.2\r\n关于一个女孩,7.4,1583,短片,英国,2001,11714.2\r\n复仇之溪,5.3,1583,惊悚/恐怖,美国,2009,8389.9\r\n西野的恋爱与冒险 ニシノユキヒコの恋と冒,6.5,1582,剧情,日本,2014,10283\r\n夺命回声,6,1582,剧情/悬疑/惊悚/恐怖,美国,2008,9492\r\n第十个夏天,7,1581,剧情/喜剧/家庭,德国,2003,11067\r\n鬼影实录：东京之夜 パラノーマル・アクティビティ,6.3,1581,惊悚/恐怖,日本,2010,9960.3\r\n真实故事,6.1,1581,剧情/悬疑/犯罪,美国,2015,9644.1\r\n再无可失,7.6,1580,喜剧/动作/犯罪/冒险,美国,1997,12008\r\n失控的校园,8.3,1579,剧情,爱沙尼亚,2007,13105.7\r\n哆啦A梦：大雄的大魔境 ドラえもん のび太の,8.1,1579,科幻/动画/冒险,日本,1982,12789.9\r\n我们学校的,7.3,1579,喜剧,韩国,2008,11526.7\r\n喜马拉雅,7.2,1579,剧情,韩国,2015,11368.8\r\n圣徒,7,1579,动作/爱情/科幻/惊悚,美国,1997,11053\r\n大地震,6,1578,剧情/动作/惊悚,美国,1974,9468\r\n堵车,2.8,1578,喜剧/动作,中国大陆,2011,4418.4\r\n哈姆雷特,8.5,1577,剧情,英国/日本/美国,2009,13404.5\r\n爱子,8.1,1577,剧情,韩国,2009,12773.7\r\n天生胆小,7.4,1577,剧情,中国,1905,11669.8\r\n重生爱人,4.5,1577,爱情/悬疑,中国大陆,2015,7096.5\r\n钢之炼金术师：师傅的故事 鋼の錬金術師 師匠物語／師匠初恋,9,1575,动画,日本,2010,14175\r\n明星,8.1,1575,喜剧/动作/短片,美国,2001,12757.5\r\n肉蛾天,7.4,1575,动画/短片,台湾,1905,11655\r\n猩球征服,6.7,1575,动作/科幻,美国,1972,10552.5\r\n达达,6.4,1575,剧情,中国,2009,10080\r\n印度之行,8,1574,剧情/历史/冒险,英国/美国,1985,12592\r\n猫和老鼠：胡桃夹子的传奇,7.6,1574,喜剧/动画/家庭,美国,2007,11962.4\r\n微不足道的事情,7.5,1574,剧情,墨西哥/西班牙,2008,11805\r\n3,7.3,1574,剧情/喜剧/动作/惊悚/犯罪,日本,1990,11490.2\r\n一切从遇见你开始 すべては君に逢えたか,6.7,1574,剧情/爱情,日本,2013,10545.8\r\n蜂蜜与四叶草 L特别篇 ハチミツとクローバー L話 ローマイヤ先,9,1573,动画,日本,2005,14157\r\n孤独的美食家新春SP：严冬之北海道·旭川出差篇 孤独のグルメお正月スペシャル！～真冬の北海道・旭,8.8,1573,剧情,日本,2016,13842.4\r\n在瑞士的日子,8.5,1573,剧情/家庭/传记,UK,2009,13370.5\r\n想飞的猫,7.6,1573,动画/短片/家庭,法国,1999,11954.8\r\n九度空间,6.8,1573,剧情/科幻/悬疑/奇幻,美国,2007,10696.4\r\n幽长周末,5.6,1573,恐怖,泰国,2013,8808.8\r\n肚脐,5.5,1573,喜剧,韩国,2013,8651.5\r\n极度失眠,7.4,1572,剧情/悬疑/惊悚/犯罪,挪威,1997,11632.8\r\n多情剑客无情剑 多情劍客無情,7.3,1572,动作/武侠/古装,香港,1977,11475.6\r\n社交恐惧症,6.5,1572,剧情,韩国,2015,10218\r\n哈拉猛男秀2:欧洲,6.2,1572,喜剧,美国,2005,9746.4\r\n金刚归来,6.1,1572,家庭/冒险,加拿大,2006,9589.2\r\n枪口朝下,6.2,1571,剧情/动作/惊悚,美国,1997,9740.2\r\n伸冤记,7.5,1570,剧情/犯罪/黑色电影,美国,1956,11775\r\n塔玛拉·德鲁,6.3,1570,喜剧,英国,2010,9891\r\n浮沉洛杉矶,6.7,1569,剧情/喜剧/爱情/同性,美国,2012,10512.3\r\n精装追女仔3之狼之一,6.1,1569,喜剧,香港,1989,9570.9\r\n我想要凯蒂,6.1,1569,喜剧,英国,2007,9570.9\r\n我的美丽乡愁,5.8,1569,剧情,中国,2002,9100.2\r\n潘多拉的世界,8.3,1568,科幻/短片,美国,2009,13014.4\r\n心动初体验,8.1,1568,剧情/喜剧/短片/同性,美国,2000,12700.8\r\n蜡笔小新 otakebe!春日部野生王国 映画クレヨンしんちゃん　オタケ,7.7,1568,动画,日本,2009,12073.6\r\n仲夏夜之梦,7.2,1567,喜剧/爱情/奇幻,意大利/英国/美国,1999,11282.4\r\n打蛇,6.8,1567,剧情,香港,1980,10655.6\r\n狗的生活,8.7,1566,喜剧/短片,美国,1918,13624.2\r\n笑破铁幕,8,1566,喜剧/动作/爱情,美国/英国,1984,12528\r\n蜜桃成熟时1997 ,6.3,1566,剧情/喜剧/情色,香港,1997,9865.8\r\n乐队男孩,7.8,1565,剧情,美国,1970,12207\r\n黑子的篮球第22.5Q：Ti,8.4,1562,剧情/喜剧/动画/运动,日本,2013,13120.8\r\n塑料树,6.5,1562,剧情/爱情/恐怖,韩国,2003,10153\r\n空之境界 未来福音 extra cho,9.1,1561,剧情/动画,日本,2013,14205.1\r\n公主夜游记,6.3,1561,剧情/爱情,英国,2015,9834.3\r\n亮眼睛,8.3,1560,剧情/喜剧/歌舞/家庭,美国,1935,12948\r\n小燕子,8.2,1560,动画/短片,中国大陆,1905,12792\r\n渔光曲,7.7,1560,剧情,中国大陆,1934,12012\r\n英伦战火,7,1560,爱情/历史/战争/冒险,英国,1937,10920\r\n交换温柔,5.9,1560,剧情,韩国,2001,9204\r\n三个未婚妈妈,4.1,1560,剧情,中国大陆,2012,6396\r\n流入山谷,7.2,1559,剧情/爱情/惊悚,美国,2005,11224.8\r\n东京僵尸 東京ゾン,7,1559,喜剧/动作/恐怖,日本,2005,10913\r\n太阳王子霍尔斯的大冒险 太陽の王子 ホルスの大,6.4,1559,剧情/动作/动画/家庭/奇幻/冒险,日本,1968,9977.6\r\n流氓差婆,6,1559,剧情/动作/犯罪,香港,1989,9354\r\n汉密尔顿夫人,8.2,1558,剧情/爱情/历史/战争,英国,1941,12775.6\r\n玛德莲堕落少女,7.9,1558,剧情,爱尔兰/英国,2002,12308.2\r\n我们的故事,7.8,1558,剧情/喜剧/爱情,美国,2000,12152.4\r\n天涯明月刀,7.4,1558,剧情/动作/武侠/古装,香港,1976,11529.2\r\n爱你爱我 愛你愛,6.8,1558,剧情/爱情,台湾/法国,2001,10594.4\r\n礼物,7.8,1557,剧情/爱情,韩国,2001,12144.6\r\n死不瞑目,5.5,1557,惊悚/恐怖,美国,2006,8563.5\r\n最后一次驱魔,4.7,1557,惊悚/恐怖,美国,2013,7317.9\r\n群众,8.6,1556,剧情/爱情,美国,1928,13381.6\r\n双姝怨,7.9,1556,剧情/同性,美国,1961,12292.4\r\n修罗雪姬 修羅雪,7.6,1556,剧情/动作/惊悚,日本,1973,11825.6\r\n杀手之吻,7.1,1556,剧情/惊悚/犯罪/黑色电影,美国,1955,11047.6\r\n超人：解放,6.2,1556,科幻/动画/冒险,美国,2013,9647.2\r\n火星上的最后时日,5,1555,科幻/惊悚,英国/爱尔兰,2013,7775\r\n粉红女郎之爱人快跑,3.3,1555,喜剧/爱情,中国大陆,2013,5131.5\r\n格列佛游记,7.7,1554,家庭/奇幻/冒险,英国/美国,1996,11965.8\r\n活死人归来,7,1554,爱情/科幻/恐怖,美国,1994,10878\r\n一代妖后,6.9,1554,剧情,香港/中国,1989,10722.6\r\n快乐的结局,8.6,1553,喜剧,捷克斯洛伐克,1968,13355.8\r\n战争,8.5,1553,剧情/战争/冒险,美国,1994,13200.5\r\n楚留香,7.6,1553,动作/悬疑/犯罪/冒险/武侠/古装,香港,1977,11802.8\r\n黑白游龙,7.6,1553,剧情/喜剧/运动,美国,1992,11802.8\r\n龙凤智多星 龍鳳智多,6.6,1553,剧情/喜剧/动作/犯罪,香港,1985,10249.8\r\n莫陌,3.6,1553,剧情,中国大陆,2013,5590.8\r\n我是大卫,8.4,1552,剧情,美国,2003,13036.8\r\n感情生活,5.4,1552,剧情,中国大陆,2010,8380.8\r\n四眼仔,6.4,1551,剧情,香港,1905,9926.4\r\n女神探沃莎斯基,6.4,1551,喜剧/动作/悬疑/犯罪,美国,1991,9926.4\r\n婚礼大斗阵,6.3,1551,喜剧,美国,2011,9771.3\r\n思春期游戏 思春期ごっ,6.2,1551,剧情,日本,2014,9616.2\r\n26种新,6,1551,喜剧/恐怖,美国/新西兰/加拿大/以色列/日本,2014,9306\r\n封门诡影,4.7,1551,悬疑/惊悚,中国大陆,2015,7289.7\r\n毒家新闻,7.6,1550,剧情/惊悚/传记/犯罪,美国/爱尔兰/英国,2004,11780\r\n天长地久 天長地,7.4,1550,剧情/爱情,香港,1993,11470\r\n玉熙的电影,7.4,1550,剧情,韩国,2010,11470\r\n年度最佳学生,6.7,1550,喜剧/爱情,印度India,2012,10385\r\n失贞,6.5,1550,喜剧,美国,2010,10075\r\n偷窥无罪 偷窺無,5.7,1550,剧情/悬疑/惊悚/情色/犯罪,香港,2002,8835\r\n与安娜的四个夜晚,7.7,1549,剧情/惊悚/犯罪,波兰/法国,2008,11927.3\r\n俺物语 俺物,7.2,1549,喜剧,日本,2015,11152.8\r\n狸御殿 オペレッタ狸御,5.5,1549,喜剧/爱情/歌舞/奇幻,日本,2005,8519.5\r\n侯爵,7.5,1548,喜剧/动画,比利时/法国,1989,11610\r\n夏天，有风吹过,6.3,1548,剧情,中国大陆,2008,9752.4\r\n棒球英豪 没有背号的王牌投手 タッチ 背番号のない,8.9,1547,剧情/爱情/动画,日本,1986,13768.3\r\n恋爱起义 戀愛起,7,1547,剧情/爱情/惊悚,香港,2001,10829\r\n调味的房子,6.7,1547,惊悚/恐怖,英国,2012,10364.9\r\n弹窗惊魂,6.3,1547,动作/惊悚/犯罪,法国/西班牙/美国,2014,9746.1\r\n勃艮第公爵,5.8,1547,剧情,英国,2014,8972.6\r\n幸福爱相随,7.3,1546,爱情,泰国,2012,11285.8\r\n太平洋幽灵,6.7,1546,冒险,美国,2015,10358.2\r\n日本最长的一天 日本のいちばん長い,6.6,1546,剧情/历史/战争,日本,2015,10203.6\r\n光逝,4.7,1546,剧情/惊悚,美国,2014,7266.2\r\n火焰山历险记,3.1,1546,动画/奇幻/冒险,中国大陆,2013,4792.6\r\n女孩坏坏 女孩壞,4.9,1545,喜剧/动作/爱情,台湾,2012,7570.5\r\n碧罗雪山,8,1544,剧情,中国大陆,2010,12352\r\n未来之人,6.8,1544,喜剧/奇幻,巴西,2011,10499.2\r\n第88届奥斯卡颁奖,6.1,1544,真人秀,美国,2016,9418.4\r\n梁山伯与祝英台 梁山伯與祝英,8.4,1543,爱情/戏曲,香港,1963,12961.2\r\n宠物小精灵：水都的守护神-拉帝亚斯与拉帝欧斯 劇場版ポケットモンスター 水の都の護神 ラティアスとラ,8.2,1542,动作/动画/家庭/犯罪/冒险,日本,2002,12644.4\r\n大寒桃花开,3,1542,爱情/武侠/古装,中国大陆,2014,4626\r\n罪恶天使,7.5,1541,剧情/惊悚/传记/犯罪,意大利/法国/罗马尼亚,2010,11557.5\r\n迷幻高中,6.9,1541,喜剧,美国,2012,10632.9\r\n武士阿非:复活 アフロサムライ：レザレクシ,7.5,1540,剧情/动画,美国/日本,2009,11550\r\n小富翁里奇 R,7.4,1540,喜剧/家庭,美国,1994,11396\r\n飞刀手 飛刀,7.1,1540,剧情/动作/武侠/古装,香港,1969,10934\r\n六发子弹的手枪,7.9,1539,短片,英国/爱尔兰,2004,12158.1\r\n墓地邂逅,5.8,1539,恐怖,加拿大/美国,2012,8926.2\r\n一棵树的刺激生活,7.6,1538,动画/短片,美国,2000,11688.8\r\n春风得意梅龙镇,6.5,1538,喜剧/爱情,中国大陆,1999,9997\r\n枪之子,5.9,1538,剧情/动作/犯罪,澳大利亚/英国/加拿大,2014,9074.2\r\n风与木之诗 風と木の詩 SANCT,7.8,1537,爱情/动画,日本,1987,11988.6\r\n终极尖兵,6.8,1537,喜剧/动作/悬疑/惊悚/犯罪,美国,1991,10451.6\r\n魔画情 魔畫,6.1,1537,爱情/奇幻,香港,1991,9375.7\r\n三只小孤儿猫,7.6,1536,喜剧/动画/短片/家庭,美国,1935,11673.6\r\n刑法第三十九条 39 刑法第,7.6,1536,剧情/犯罪,日本,1999,11673.6\r\n邻家小鬼,7.5,1536,喜剧/家庭,美国,1993,11520\r\n浪漫风暴 浪漫風,6.6,1536,剧情/动作,香港,1996,10137.6\r\n暗堡里的三恶人 隠し砦の三悪,6.5,1536,剧情,日本,2008,9984\r\n海上梦境,5.5,1536,剧情,荷兰,2008,8448\r\n枪神 剧场版 劇,8.2,1535,动作/科幻/动画/西部,日本,2010,12587\r\n死亡笔记特别篇：神之幻觉 デスノート リライト 幻視,8.4,1534,动画/悬疑/犯罪,日本,2007,12885.6\r\n死神有约：死后的生活,5.9,1534,剧情/喜剧/恐怖/奇幻,美国,2009,9050.6\r\n阿信 おし,7.8,1533,剧情,日本,2013,11957.4\r\n小丑回魂,7.2,1533,剧情/悬疑/恐怖,USA/Canada,1990,11037.6\r\n一屋哨牙鬼,6.5,1533,喜剧/恐怖,香港,1993,9964.5\r\n再爱我一次·逆爱,2.5,1533,爱情/短片/同性,中国大陆,2013,3832.5\r\n电话惊魂,7.6,1531,剧情/惊悚/黑色电影,美国,1948,11635.6\r\n北方的金丝雀 北のカナリアた,7.4,1531,剧情/悬疑,日本,2012,11329.4\r\n10年,6.9,1531,喜剧/同性,美国,2015,10563.9\r\n死魂曲 サイレ,6.4,1531,惊悚/恐怖,日本,2006,9798.4\r\n爱出猫 愛出,5.7,1531,喜剧,香港,2009,8726.7\r\n夜之亡灵,4.9,1531,悬疑/惊悚/恐怖,美国,2011-04-29（美国）,7501.9\r\n第十一个妈妈,7.8,1530,剧情,韩国,2007,11934\r\n神勇三蛟龙,7.7,1530,喜剧/西部/冒险,美国,1986,11781\r\n仙乐飘飘,6.6,1530,剧情/喜剧/爱情/歌舞,香港,1995,10098\r\n合家欢,7.3,1529,喜剧,香港,1989,11161.7\r\n小淘气尼古拉的假期,7.3,1529,喜剧,法国,2014,11161.7\r\n提线木偶,4.4,1529,惊悚/恐怖,韩国,2013,6727.6\r\n赤胆屠龙,8.3,1528,剧情/喜剧/爱情/西部,美国,1959,12682.4\r\n不结婚的女人,7.8,1528,剧情/喜剧/爱情,美国,1978,11918.4\r\n芭比之天鹅湖,7.7,1528,动画/家庭,美国,2003,11765.6\r\n仙履奇缘2：美梦成,6.7,1528,爱情/动画/家庭/奇幻,美国,2002,10237.6\r\n爱情白面包,6.4,1528,喜剧/爱情,香港,2001,9779.2\r\n快递惊魂,6,1528,动作,韩国,2011,9168\r\n夜巡,7.3,1527,剧情/悬疑/传记/历史,荷兰/加拿大/英国/法国/波兰,2007,11147.1\r\n男孩之爱 剧场版 B,6.7,1527,剧情/同性,日本,2007,10230.9\r\n太空巴迪,6.6,1526,科幻/家庭/奇幻/冒险,美国/加拿大,2009,10071.6\r\n冰冷的阵雨,6.4,1526,剧情,法国,2005,9766.4\r\n自杀森林,4.6,1526,恐怖,美国,2016,7019.6\r\n重整旗鼓,7.4,1525,剧情/运动,美国,2007,11285\r\n太空堡垒卡拉狄加：计划,6.8,1525,剧情/动作/科幻/冒险,美国,2009,10370\r\n男人的争斗,8.6,1524,剧情/惊悚/犯罪,法国,1955,13106.4\r\n家族的国度 かぞくのく,7.7,1524,剧情,日本,2012,11734.8\r\n天堂旅行,7.4,1524,剧情,美国/哥伦比亚,2008,11277.6\r\n探戈舞之恋,8.5,1523,喜剧/短片,比利时,2007,12945.5\r\n炭烧凶咒,6,1523,恐怖,香港,2000,9138\r\n毕业舞会,5.9,1523,剧情/喜剧,美国,2011,8985.7\r\n特殊的友情 L,8.3,1522,剧情/同性,法国,1964,12632.6\r\n喜剧中心贾斯汀·比伯吐槽大会,7.5,1522,喜剧/脱口秀,美国,2015,11415\r\n大喜事 大囍,6.6,1522,喜剧/爱情,新加坡,2009,10045.2\r\n跳跃大搜查线 2012夏SP 踊る大捜査線 THE LA,7.5,1521,剧情,日本,2012,11407.5\r\n大家早上好！ グッモーエビアン,6.8,1521,喜剧,日本,2012,10342.8\r\n下女,6.8,1521,剧情/惊悚/犯罪,韩国,1960,10342.8\r\n地中海,8.1,1520,剧情/喜剧/战争,意大利,1991,12312\r\n武训传,8,1520,剧情/传记,中国大陆,1951,12160\r\n军曹大电影3：克罗罗对克罗罗 天空大决战 超劇場版ケロロ軍曹3 ケロロ対ケロロ 天空大決戦,7.8,1520,剧情/喜剧/动画,日本,2008,11856\r\n智取威虎山,7.7,1520,歌舞/战争,中国大陆,1970,11704\r\n寒蝉鸣泣之时：猫杀篇 ひぐらしのなく頃に外伝 猫殺,7.6,1520,动画/短片,日本,2007年7月下旬,11552\r\n小幸感,6.6,1520,爱情/短片,台湾,2012,10032\r\n地球战场,4.4,1520,动作/科幻,美国,2000,6688\r\n我爱灰太狼,2.8,1520,喜剧/动画,中国大陆,2013,4256\r\n桑杰的超级战队,7.6,1519,动画/短片,美国,2015,11544.4\r\n圣诞巴迪,7.1,1519,家庭/冒险,美国/加拿大,2009,10784.9\r\n无言的山丘 無言的山,8.9,1518,剧情/历史,台湾,1992,13510.2\r\n乱云 乱れ,8.5,1518,剧情,日本,1967,12903\r\n青之驱魔师OVA：小黑出走记 青の祓魔師 特別番外編,7.8,1518,动画,日本,2011,11840.4\r\n别有动机,4.3,1518,动作/悬疑/犯罪,中国大陆,2015,6527.4\r\n兔八哥大战糙山姆,8.9,1517,喜剧/动画/短片/家庭,美国,1950,13501.3\r\n两个男人和一个衣柜,8,1515,短片/荒诞,波兰,1958,12120\r\n安妮,7.5,1515,歌舞/家庭,美国,1982,11362.5\r\nW的悲剧 W,6.6,1515,悬疑/惊悚/犯罪,日本,2010,9999\r\n购物惊魂记,5.4,1515,剧情/惊悚/犯罪,美国/德国/加拿大,2008,8181\r\n早春,8.3,1514,剧情/家庭,日本,1956,12566.2\r\n狗神,6.9,1514,剧情/爱情/惊悚/奇幻,日本,2001,10446.6\r\n日出前向青春告别 きょうのできご,6.9,1514,剧情/爱情,日本,2003,10446.6\r\n少妇的诱惑 ,6.5,1514,情色,意大利,1992,9841\r\n反托拉斯行动,7.1,1513,剧情/惊悚,美国,2001,10742.3\r\n新娘与偏见,6.7,1513,剧情/喜剧/爱情/歌舞,英国/美国,2004,10137.1\r\n鬼磨坊,6.3,1513,剧情/惊悚/奇幻,德国,2008,9531.9\r\n在商言商,6.2,1513,喜剧,荷兰,1971,9380.6\r\n倾国倾城 傾國傾,8,1512,剧情/古装,香港,1975,12096\r\n宠物小精灵：结晶塔的帝王 劇場版ポケットモンスター 結晶塔の,7.6,1512,动画/家庭/冒险/荒诞,日本,2000,11491.2\r\n十三太保,7.5,1512,剧情/动作/武侠/古装,香港,1970,11340\r\n太阳花,6.9,1512,剧情,中国大陆,1905,10432.8\r\n失落的王子,8.1,1511,剧情/传记,英国,2003,12239.1\r\n女子学校拷问部 ちょっとかわいいアイアンメイデ,5.2,1511,剧情,日本,2014,7857.2\r\n终极囚禁,4.7,1511,剧情/惊悚/恐怖,美国,2010,7101.7\r\n神父同志,8,1510,剧情/同性,英国,1995,12080\r\n机器鸡：DC漫画,9,1509,喜剧/科幻/动画,美国,2012,13581\r\n白鬃野马,8.4,1509,剧情,法国,1953,12675.6\r\n阿道夫,7.6,1509,剧情,法国,2002,11468.4\r\n1724妓房,6.2,1509,喜剧/动作/冒险,韩国,2008,9355.8\r\n攻壳机动队SSS 3,8.8,1507,动画,日本,2011,13261.6\r\n大话原子人之怪兽娶亲,7.3,1507,科幻/恐怖,美国,1955,11001.1\r\n麦田守望的女孩,7,1507,剧情/喜剧/爱情,美国/德国/荷兰,2002,10549\r\n数字谋杀案,6.3,1507,犯罪/惊栗,美国,2002,9494.1\r\n过客,8.4,1506,剧情/爱情/悬疑/惊悚,意大利/西班牙/法国,1975,12650.4\r\n猎豹行动 ,7.2,1506,动作/惊悚/犯罪,法国,2005,10843.2\r\n异形魔怪,6.1,1506,喜剧/动作/科幻/惊悚/恐怖,美国,1996,9186.6\r\n光棍终结者,4.5,1505,喜剧/爱情,中国大陆,2011,6772.5\r\n蓝色,6.9,1504,剧情/动作/战争,韩国,2003,10377.6\r\n聊斋三集之灯草和尚 聊齋三集之燈草和,5.8,1504,情色,香港,1992,8723.2\r\n迷与狂,3.3,1504,喜剧,中国大陆,2015,4963.2\r\n哆啦A梦：大雄的创世日记 ドラえもん のび太の创,8.2,1503,科幻/动画/冒险,日本,1995,12324.6\r\n小街,8,1503,剧情,中国大陆,1905,12024\r\n格斗术,6.7,1503,剧情/喜剧,韩国,2006,10070.1\r\nGO,5.8,1503,剧情/喜剧/动作/爱情,韩国,2012,8717.4\r\n春天的杜鹃 Кукушк,8.3,1502,剧情/喜剧/战争,俄罗斯,2002,12466.6\r\n航向热带岛屿的冰山 N,8.1,1502,剧情,冰岛/德国/英国/丹麦,2003,12166.2\r\n天师捉妖,7.3,1502,喜剧/恐怖,美国/英国,1967,10964.6\r\n中国姑娘,7.1,1502,剧情/喜剧,法国,1967,10664.2\r\n鬼镜,6.7,1502,悬疑/惊悚/恐怖/犯罪,韩国,2003,10063.4\r\n林中小屋,2.8,1502,爱情/悬疑,中国大陆/香港,2014,4205.6\r\n美国总统,6.8,1501,剧情/喜剧/爱情,美国,1995,10206.8\r\n好莱坞重案组,6.3,1501,喜剧/动作/惊悚/犯罪,美国,2003,9456.3\r\n喜乐长安,3,1501,动作/爱情/武侠/古装,中国大陆,2016,4503\r\n杀之恋 殺之,6.9,1500,爱情/惊悚,香港,1988,10350\r\n睡眠经销商,6.5,1500,科幻,美国/墨西哥,2008,9750\r\n四个月亮,7.8,1499,剧情/同性,墨西哥,2014,11692.2\r\n再世追魂,7.2,1499,惊悚/恐怖/犯罪,香港,1993,10792.8\r\n怪医黑杰克 ヤング ブラックジャ,6.2,1499,剧情,日本,2011-04-23夜9:00,9293.8\r\n失魂,6.2,1499,剧情/惊悚,台湾,2013,9293.8\r\n悸动青春 スキト,6.1,1498,剧情/同性,日本,2006,9137.8\r\n日日夜夜,5.9,1498,剧情,中国大陆/法国,2005,8838.2\r\n扁担·姑娘,6.9,1497,剧情/爱情/惊悚/犯罪,中国大陆,1998,10329.3\r\n花样男子 花より男,6.5,1497,爱情,日本,1995,9730.5\r\n再生缘,7.7,1496,剧情/喜剧/动作/爱情/惊悚/歌舞,印度,2007,11519.2\r\n缺席,6.8,1496,剧情/惊悚/同性,阿根廷,2011,10172.8\r\n原始轮回,5.9,1496,剧情/惊悚/犯罪,法国/意大利,2009,8826.4\r\n情人眼里出西施,5.8,1496,喜剧/爱情,韩国,2009,8676.8\r\n魔镜,4.9,1496,惊悚,中国大陆/韩国,2015,7330.4\r\n爱谁谁,4,1496,爱情,中国大陆,2012,5984\r\n浮生若梦,7.9,1495,喜剧/爱情,美国,1938,11810.5\r\n午夜快车,7.9,1495,剧情/惊悚/传记/犯罪,英国/美国,1978,11810.5\r\n顽固分子,6.8,1495,剧情,比利时/荷兰,2011,10166\r\n双重时间,6.6,1495,剧情/悬疑/惊悚,意大利,1905,9867\r\n最后的食人族世界,6.2,1495,恐怖/冒险,意大利,1977,9269\r\n有梦就去闯,8.3,1494,剧情/爱情,美国,2007,12400.2\r\n女佣,7.9,1494,剧情,智利/墨西哥,2009,11802.6\r\n愿嫁金龟婿,7.4,1494,剧情/喜剧/爱情,美国,1953,11055.6\r\n风中奇缘,6.4,1494,动画/家庭/冒险,美国,1998,9561.6\r\n意大利式离婚,8.3,1493,喜剧,意大利,1961,12391.9\r\n倩女幽魂,7.7,1493,爱情/恐怖/奇幻/古装,香港/台湾,1960,11496.1\r\n青鸟 青い,7.5,1493,剧情,日本,2008,11197.5\r\n金粉世界,7.1,1493,喜剧/爱情/歌舞,美国,1958,10600.3\r\n逃亡者,7.1,1493,剧情/爱情,美国,1960,10600.3\r\n割喉岛,6.8,1493,喜剧/动作/爱情/家庭/冒险,美国/法国/意大利/德国,1995,10152.4\r\n凶手就在门外,6.7,1493,悬疑/惊悚/犯罪,美国,1995,10003.1\r\n酒肉朋友,6.1,1493,剧情/喜剧/爱情,美国,2013,9107.3\r\n末日深眠,5,1493,科幻/惊悚,美国,2015,7465\r\n少年,8,1492,剧情,日本,1969,11936\r\n校园蓝调,7,1492,剧情/喜剧/爱情/运动,美国,1999,10444\r\n坡州,6.2,1492,剧情,韩国,2009,9250.4\r\n我为卿狂,5.8,1492,情色,香港,1905,8653.6\r\n让爱发光,7.6,1491,剧情/爱情,泰国,2007,11331.6\r\n罗曼史,6.4,1491,爱情,韩国,2006,9542.4\r\n颤涌 Ó,7.1,1490,剧情/同性,冰岛,2010,10579\r\n魍魉之匣 魍魎の,6.1,1490,犯罪,日本,2007,9089\r\n窈窕美眉,6.1,1490,喜剧/爱情,美国,1999,9089\r\n三岛由纪夫传,7.5,1489,剧情/传记,美国/日本,1985,11167.5\r\n你是哪里人,5,1489,剧情/喜剧,中国大陆,2011,7445\r\n残菊物语 残菊物,8.3,1488,剧情,日本,1939,12350.4\r\n证据,6.4,1488,悬疑/惊悚/恐怖,美国,2013,9523.2\r\n金田一耕助VS明智小五郎2 金田一耕助VS明智小,6.3,1488,剧情,日本,2014,9374.4\r\n上课小动作OAD：倒棒游戏&amp;猫 となりの,8.6,1487,剧情/动画,日本,2014,12788.2\r\n一部佳作的诞生,7,1487,剧情/喜剧/短片,中国大陆,1905,10409\r\n煞到你,5.9,1487,剧情/喜剧/爱情,美国,2000,8773.3\r\n差不多,7.7,1486,动画/短片,中国大陆,1905,11442.2\r\n冲突,7.7,1486,剧情/传记/犯罪,意大利/美国,1973,11442.2\r\n野人,7.4,1486,喜剧/动画/短片,美国,2005,10996.4\r\n蛊 ,7.1,1486,恐怖,香港,1981,10550.6\r\n构想完美,6.7,1486,剧情/喜剧/爱情,美国,1997,9956.2\r\n盖瑞,7.5,1485,剧情/冒险,美国,2002,11137.5\r\n天空之Escaflo,7.4,1485,剧情/动作/爱情/科幻/动画/惊悚/奇幻/冒险,日本,2001,10989\r\n人来，人往,7.1,1485,剧情/同性,美国,2013,10543.5\r\n屌丝骑士 やるっきゃ騎,4,1485,喜剧/情色,日本,2015,5940\r\n海蒂,9,1484,剧情/家庭,美国,1993,13356\r\n陌生男子,7.8,1484,剧情/悬疑,英国,1985,11575.2\r\n英雄连,5.2,1484,动作/战争,美国,2013,7716.8\r\n猫和老鼠：魔法戒指,8.8,1483,喜剧/动画,美国,2002,13050.4\r\n二弟,7.2,1483,剧情,香港/中国大陆,2003,10677.6\r\n挂线情未了,7,1483,剧情/喜剧/家庭,美国/德国,2000,10381\r\n你还记得多莉·贝尔吗,8.2,1482,剧情/喜剧/爱情,南斯拉夫,1981,12152.4\r\n威尼斯疑魂,7,1482,剧情/悬疑/恐怖,英国/意大利,1973,10374\r\n蝙蝠侠大战罗宾,6.6,1482,动作/动画/冒险,美国,2015,9781.2\r\n年轻母亲,5.3,1482,爱情/情色,韩国,2013,7854.6\r\n摄氏3,7.2,1481,剧情/动作/惊悚,香港,1996,10663.2\r\n候鸟 候,7,1481,喜剧/爱情,台湾,2001,10367\r\n圣诞坏公公,7,1481,剧情/喜剧/犯罪,美国/德国,2003,10367\r\n宠物小精灵：冥王龙与冰空的花束雪米 劇場版ポケットモンスター ダイヤモンド&amp;パール ギラティナと氷,7.5,1480,动画/家庭/奇幻/冒险,日本,2008,11100\r\n天地明察,7.2,1480,剧情/传记/历史,日本,2012,10656\r\n白夜,6.8,1480,剧情/爱情/同性,韩国,2012,10064\r\n女兵报到,6.7,1480,喜剧/家庭,加拿大/美国,2002,9916\r\n拿起枪的简,6.1,1477,剧情/动作/西部,美国,2016,9009.7\r\n波澜万丈,7,1476,科幻/短片/奇幻,韩国,2011,10332\r\n外出就餐4：戏剧,5.8,1476,剧情/喜剧/爱情/情色/同性,美国,2011,8560.8\r\n双虎屠龙,8.1,1475,剧情/爱情/西部,美国,1962,11947.5\r\n傲气盖天,7.8,1475,剧情/惊悚/传记/战争,英国/爱尔兰/美国,1996,11505\r\n极度空间,7.3,1475,动作/科幻/惊悚/恐怖,美国,1988,10767.5\r\n呐喊,8.3,1472,剧情,意大利/美国,1957,12217.6\r\n月亮星星太阳 月亮星星太,7.5,1472,剧情,香港,1988,11040\r\n四十九天的食谱 四十九日のレシ,7.4,1472,剧情,日本,2013,10892.8\r\n猎户座阴谋,7.2,1472,短片,法国,2009,10598.4\r\n春天情书 （ハル,8.4,1471,剧情/爱情,日本,1996,12356.4\r\n魔表,7.7,1471,科幻/儿童,中国大陆,1905,11326.7\r\n摩斯探长前传 试映,8.8,1470,剧情/悬疑/犯罪,英国,2012,12936\r\n满洲候选人,7.3,1470,剧情/爱情/悬疑/惊悚/战争,美国,1962,10731\r\n神秘感染：第二阶段,5.4,1470,剧情/惊悚/恐怖,美国,2015,7938\r\n袅袅夕阳情 まあだだ,8.4,1469,剧情,日本,1993,12339.6\r\n寻找196,8.2,1469,剧情/爱情,澳大利亚,2000,12045.8\r\n我行我素,7.8,1469,剧情/喜剧,美国/德国,2005,11458.2\r\n瀛台泣血,7.6,1469,剧情/历史/古装,香港,1976,11164.4\r\n全境封锁：特工起源,5.9,1469,动作/短片,美国,2016,8667.1\r\n午夜43路 恐,4.8,1469,惊悚/恐怖,香港,2015,7051.2\r\n人啊人 ,7.2,1468,剧情/悬疑,法国,2000,10569.6\r\n虎口巡航,6.3,1468,剧情/悬疑/惊悚/犯罪,美国/原西德,1980,9248.4\r\n名侦探哥顿 名探偵ゴード,7.9,1467,剧情/喜剧/动画/短片,日本,2007,11589.3\r\n圣·保罗医院之谜,7.6,1467,剧情/惊悚/犯罪,中国大陆,1905,11149.2\r\n夹缝求生,7.2,1467,剧情/喜剧,美国,2006,10562.4\r\n完全饲育 完全なる飼,6.7,1467,剧情,日本,1999,9828.9\r\n三少爷的剑 三少爺的,7.2,1466,剧情/动作/武侠/古装,香港,1977,10555.2\r\n乡下姑娘,6.7,1466,剧情/喜剧/爱情,美国,2007,9822.2\r\n探灵档案,4.2,1466,悬疑/惊悚,中国大陆,2015,6157.2\r\n上学路上,8,1465,家庭,中国,1905,11720\r\n太空先锋,7.9,1465,剧情/历史/冒险,美国,1983,11573.5\r\n生命翻筋斗,7.5,1465,剧情/爱情,澳大利亚,2004,10987.5\r\n史瑞克的万圣游戏,7.2,1465,喜剧/动画/短片,美国,2010,10548\r\n烈火终结者,7.1,1465,剧情/惊悚/运动,美国,1996,10401.5\r\n地心游记,7.7,1464,爱情/科幻/家庭/奇幻/冒险,美国,1959,11272.8\r\n罐头人生,7.6,1464,动画/短片/传记,意大利,1968,11126.4\r\n江南爱情故事,5,1464,爱情/战争,中国大陆,2014,7320\r\n"
  },
  {
    "path": "read",
    "content": ""
  },
  {
    "path": "scorepredict.py",
    "content": "#encoding:utf-8\r\nimport numpy as np\r\nimport pandas as pd\r\nimport matplotlib.pyplot as plt\r\nimport re\r\nfrom sklearn.linear_model import LinearRegression\r\n\r\n#绘图部分\r\ndata = pd.read_csv('lianxi/film-csv.txt',encoding = 'utf-8',delimiter = ';') #读取文件\r\ndata = data.iloc[:,:-1]   #去除文件中的非法数据\r\ndata = data.drop(0).drop_duplicates().reset_index().drop('index',axis = 1)    #由于第一行为空数据 去除 并去重 重置索引\r\n# print data\r\n\r\nt = []  #将电影类型按多种分割符切分\r\nfor i in range(len(data)):\r\n    a = re.split(u' / |/|，|、| | ',data[u'影片类型'][i])\r\n    for j in a:\r\n        t.append(j)\r\nt = set(t)  #将重复的类型去掉\r\ntt = []\r\nfor i in t: #将不规范的类型去除 得出所有存在的类型\r\n    if (len(i)<=2)|(i==u'合家欢'):\r\n        tt.append(i)\r\n\r\n#评分预测\r\nid = [1050,1114,1048,1488,1102] #五个用户id\r\ndata1 = pd.read_csv('lianxi/score.log',delimiter=',',encoding = 'utf-8',header=0,names = [u'电影名称',u'userid',u'score'])\r\ndata1 = data1[data1[u'userid'].isin(id)]   #去除五个用户 相关数据\r\n\r\ndata1[u'电影名称'] = data1[u'电影名称'].str.strip()   #去除电影名称的空格\r\nall = []#用来存预测结果\r\nfor k in range(len(id)):        #循环五次 建模 进行预测\r\n    dfp1 = data1[data1[u'userid']==id[k]].reset_index().drop('index',axis = 1)\r\n    datamerge = pd.merge(data,dfp1,on=u'电影名称')    #用merge 将电影详细信息 与新用户评分合并\r\n    lst = []\r\n    lsd = []\r\n    lsr = []\r\n    for i in range(len(datamerge)):  #切分出电影类型 和导演 以及对应的票房\r\n        for j in tt:\r\n            if j in datamerge[u'影片类型'][i]:\r\n                d = re.split(u'，|、|/| ',datamerge[u'导演'][i])\r\n                for k in d:\r\n                    lsd.append(k.replace(u' ', u''))\r\n                    lst.append(j.replace(u' ', u''))\r\n                    lsr.append(datamerge[u'score'][i])\r\n    lsd1 = list(set(lsd))\r\n    for i in range(len(lsd1)):  #将电影类型和票房转成 连续量 以便机器训练\r\n        for j in range(len(lsd)):\r\n            if lsd1[i] == lsd[j]:\r\n                lsd[j] = i + 1\r\n    for i in range(len(tt)):\r\n        for j in range(len(lst)):\r\n            if tt[i] == lst[j]:\r\n                lst[j] = i + 1\r\n    lsd = pd.DataFrame(lsd, columns=[u'导演'])\r\n    lst = pd.DataFrame(lst, columns=[u'影片类型'])\r\n    lsr = pd.DataFrame(lsr, columns=[u'评分'])\r\n\r\n    a = pd.concat([lsd, lst, lsr], axis=1)\r\n    trainx = a.iloc[:, 0:2]  # 电影类型和 导演 作为特征量\r\n    trainy = a.iloc[:, 2:3]  # 评分作为样本值\r\n    l = LinearRegression()  # 建模\r\n    l.fit(trainx, trainy)  # 训练\r\n\r\n    anstest = pd.DataFrame([[5,10]],columns=[u'导演',u'影片类型'])\r\n    ans = l.predict(anstest)#预测\r\n    all.append(ans[0][0]) #得出结果\r\nprint (u'评分最大值是'+'%.2f'%max(all)) #输出\r\nprint (u'评分最小值是'+'%.2f'%min(all))\r\nprint (u'评分中位数值是'+'%.2f'%np.median(all))\r\nprint (u'评分平均值是'+'%.2f'%np.mean(all))\r\n\r\n\r\n"
  }
]